* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 10px;
}

body {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

.main-container {
    background-color: #0F0F0F;
    width: 100%;
    height: 100%;
    padding: 15px;

    .content {
        height: 90%;
        width: 100%;
        background-color: #FAFAFA;
        border-radius: 20px;
    }

    .header {
        margin-top: 1vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

    }

    .logo-con {
        width: 8rem;
        height: 3rem;
        /* cursor: pointer; */
        webkit-tap-highlight-color: rgba(255, 255, 255, 0);
        -webkit-tap-highlight-color: transparent;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;

        /* &:active {
            opacity: 0.5;
        } */
    }

    .company-image {
        width: 100%;
        height: 100%;
        object-fit: cover;

    }

    .title {
        margin-top: 2vh;

        font-size: 3rem;
        font-family: 'Inter';
    }

    .flex-content {
        display: flex;
        width: 100%;
        height: 75%;
        max-width: 1550px;
        margin: auto;
        /* flex: 1; */

    }

    .slider-con {
        width: 50%;
        padding-inline: 3rem;
    }

    .slider-para {
        font-size: 1.5rem;
        font-family: 'Inter';
    }

    .label {
        font-size: 2rem;
        font-family: 'Inter';
        padding-block: 2rem;
    }

    .image-wrapper-con {
        width: 100%;
        height: 31rem;
        max-width: 560px;
        max-height: 310px;
        border-radius: 10px;
        background-color: #0F0F0F;
    }

    .slider-para {
        padding-block: 1rem
    }

    .form-con {
        width: 50%;

    }

    footer {
        height: 10%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-inline: 3rem;
    }

    .footer-cont-label {
        font-size: 1.5rem;
        color: #CFCFCF;
        font-family: 'Inter';
        text-decoration: none;
        cursor: pointer;
        webkit-tap-highlight-color: rgba(255, 255, 255, 0);
        -webkit-tap-highlight-color: transparent;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;

        &:active {
            opacity: 0.5;
        }

    }

    .footer-icon-wrapper {
        display: flex;
        column-gap: 1rem;
        align-items: center;
    }

    .icon-con {
        width: 3rem;
        height: 3rem;
        cursor: pointer;
        webkit-tap-highlight-color: rgba(255, 255, 255, 0);
        -webkit-tap-highlight-color: transparent;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;

        &:active {
            opacity: 0.5;
        }
    }

    .icon {
        width: 100%;
        height: 100%;
        object-fit: contain;
        cursor: pointer;
    }
}


























/* ===================================================  */

.form-con {
    flex: 0.4;
}

@font-face {
    font-family: 'General-Sans-Medium';
    src: url('./assets/fonts/GeneralSans-Medium.otf'),
}

@font-face {
    font-family: 'General-Sans-Regular';
    src: url('./assets/fonts/GeneralSans-Regular.otf'),
}

@font-face {
    font-family: 'General-Sans-Semibold';
    src: url('./assets/fonts/GeneralSans-Semibold.otf'),
}


.slider-container {
    flex: 0.65;
    width: 85vw;
    height: 100%;
    overflow: hidden;
    padding-block: 20px;
    /* padding: 20px; */
    text-align: center;
    position: relative;
    webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    justify-content: flex-start;
}

.slider {
    min-width: 70%;
    /* height: 300px; */
    border-radius: 10px;
    overflow: hidden;
    transform: scale(0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.slider h2 {
    font-size: 25px;
    font-family: 'General-Sans-Semibold', sans;
}

.slider p {
    margin-bottom: 7vh;
    font-size: 16px;
    line-height: 25px;
    font-family: 'General-Sans-Regular', sans;
    text-align: left;
}

.slider video {
    margin-block: 20px;
    width: 100%;

    overflow: hidden;
    border-radius: 20px;
    flex: 1;
    /* height: 100%; */
    object-fit: cover;
}

.slider.active {
    animation: scaleUp 0.5s forwards;
}

.slider.active .overlay {
    animation: opacity 0.5s forwards;
}


@keyframes opacity {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(0.65);
    }

    100% {
        transform: scale(1);
    }
}

.slider {
    transform: scale(0.65);
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* background: rgb(250,250,250); */
    background: linear-gradient(90deg, rgba(250, 250, 250, 0.785) 0%, rgb(250, 250, 250) 25%, rgba(250, 250, 250, 1) 100%);
    pointer-events: none;
    z-index: 2;
    opacity: 1;
    /* transition: opacity 0.5s ease-in-out; */
}

.overlay img {
    width: 100%;
    height: 100%;
}

.slider-controls {
    position: absolute;
    bottom: 3vh;
    right: 5vw;
    cursor: pointer;
    user-select: none;
}

.slider-controls:active {
    opacity: 0.8;
}

.form-con {
    position: relative;
}
.seperator {
    position: absolute;
    top: 45%;
    left: 5%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;

    background-color: #B9B9B9;
}

.form {
    position: absolute;
    top: 0;
    left: 5%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-inline: 4rem 5rem;
    gap: 1rem;
}

.form-title {
    font-size: 3rem;
    font-family: 'Inter';
    padding-block: 1rem;
}

.flex-con {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 11rem;
}

.input-field {
    padding-block: 1rem;
    font-size: 1.3rem;
    border-radius: 5px;
    padding-inline: 1rem;
    border: 1px solid #B5B5B5;
}

input:focus-visible {
    outline: none;
}

.input-label {
    font-size: 1.5rem;
    font-family: 'Inter';
    padding-block: 1rem;
}


.submit-btn {
    background-color: #0F0F0F;
    color: #FAFAFA;
    font-size: 1.3rem;
    font-family: 'Inter';
    border-radius: 25px;
    height: 35px;
    padding-inline: 2.5rem;
    padding-block: 2rem;
    cursor: pointer;
   
    webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    

    &:active {
        opacity: 0.5;
    }
}

.submit-btn span {
    font-size: 12px;
}

@media only screen and (max-width:700px) {
    .main-container {
        height: auto;

        .title {
            text-align: center;
            padding-inline: 3rem;
            padding-block: 3rem;
        }

        .content {
            height: auto;
            padding-block: 2rem;
        }

        .footer-icon-wrapper {
            column-gap: 4rem;
        }

        footer {
            padding-block: 2rem;
            gap: 4rem;
            display: flex;
            flex-direction: column-reverse;
        }

    }

    .flex-content {
        height: auto;
        width: 100%;
        flex: auto;
        flex-direction: column;
    }

    .seperator {
        position: static;
        width: 100%;
        margin: auto;
        margin-block: 2rem;
        margin-bottom: 4rem;
        height: 1px;
    }

    .form-con {
        width: 100% !important;
        flex: auto;

    }

    .form {
        position: static;
        padding-inline: 0rem;
        padding-bottom: 1rem;
    }

    .flex-con {
        height: 12.5rem
    }

    .input-field {
        padding-block: 1.5rem;
    }

    .slider-container {
        flex: 0.65;
        width: 100%;
        height: 100%;
        overflow: hidden;
        padding-block: 0px;
        /* padding: 20px; */
        text-align: center;
        position: relative;
    }

    .slider {
        min-width: 100%;
    }

    .slider h2 {
        font-size: 20px;

    }

    .slider p {
        margin-bottom: 4vh;
        font-size: 15px;
        font-family: 'Inter';
        color: #5E5E5E;
        font-weight: 500;

    }

    .slider-controls {
        position: static;
    }
}

#snackbar {
    visibility: hidden; 
    min-width: 250px;
    background-color: #565656;
    transform: translateX(-50%);
    border: 1px solid #8A8A8A;
    color: #fff; 
    text-align: center;
    border-radius: 50px;
    padding: 8px 15px; 
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

  }


  #toastIcon {
    width: 20px;
    height: 20px;
    margin-inline: 10px;
  }

  #toastMessage{
    width: max-content;
    font-size: 13px;
    font-family: 'General-Sans-Regular';
  }
  
  
  #snackbar.show {
    visibility: visible; 
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s forwards;
    animation: fadein 0.5s, fadeout 0.5s 2.5s forwards;
  }
  
  
  @-webkit-keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: -30px; opacity: 0;}
  }


  @media only screen and (max-width:550px) {
    #snackbar {
        width: 75%;
        flex-direction: row;
        padding: 8px 15px;
        border-radius: 15px;
    }

    #toastMessage{
        width: auto;
        text-align: left;
        min-width: 75%;
    }
  }

  .loader {
    border: 1px solid #30303000; /* Light grey */
    border-top: 1px solid #fff; /* Blue */
    border-radius: 50%;
    width: 0px;
    opacity: 0;
    height: 16px;
    animation: spin 1s linear infinite;
    transition: all 0.3s ease;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }