/* New Partner page CSS last modified by NK on 24-04-2023 at 16:30 Hours */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200;1,300;1,400;1,500;1,600&display=swap');

* {
    font-family: 'Montserrat',
        sans-serif;
}

/* Snackbar CSS begins below :- */

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    background-color: #333;
    /* Black background color */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 1;
    /* Add a z-index if needed */
    left: 50%;
    /* Center the snackbar */
    bottom: 30px;
    /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

/* Banner section CSS starts below :- */

section.banner-section {
    margin-bottom: 0px;
    background-repeat: no-repeat;
    background: url(https://storage.googleapis.com/infiflexnew.appspot.com/new-banner-infiflex_home.png);
    margin-top: 70px;
    padding-bottom: 5em;
}


section.banner-section article.banner-wrapper article.banner-text-content {
    left: 3%;
    top: 5em;
    position: relative;
    margin-top: 0;
}

section.banner-section article.banner-text-content p {
    color: #5e6162;
    margin-bottom: 1em;
    line-height: 1.6;
    font-size: 1.5em;
    letter-spacing: -0.4px;
    width: 75%;
}

section.banner-section article.banner-text-content p.banner-note {
    text-transform: uppercase;
    font-size: 1.25em;
    letter-spacing: 0.3px;
    font-weight: 700;
    margin-bottom: 10px !important;
    position: relative;
    left: 1%;
}

section.banner-section article.banner-text-content .digital-line-banner {
    width: 10%;
    height: 4px;
    margin: 1em 0 1em 0;
    background-color: #1E8999;
    position: relative;
    left: 1%;
}

section.banner-section article.banner-text-content h1.banner-text-main-heading {
    font-weight: 600;
    font-size: 3.5em;
    letter-spacing: -1.4px;
    width: 75%;
    color: #252525;
    margin-bottom: 0.4em;
    margin-top: 0.7em;
}

section.banner-section article.banner-text-content h1.banner-text-main-heading .banner-span {
    font-weight: 700;
    letter-spacing: 0px;
    color: #1E8999;
}

section.banner-section article.banner-text-content ul.banner-points {
    width: 80%;
    padding-left: 1.9em;
}

section.banner-section article.banner-text-content ul.banner-points,
section.why-partner-with-us article.text-content ul.why-partner-with-us-reasons-list {
    list-style: none;
}

section.banner-section article.banner-text-content ul.banner-points i {
    font-size: 1em;
    color: #1E8999;
    right: 1.85em;
    position: relative;
    top: 1.6em;
}

section.banner-section article.banner-text-content ul.banner-points li {
    font-size: 1.25em;
    font-weight: 500;
    margin-bottom: -0.3em;
}

section.banner-section article.partner-form-wrapper {
    margin-top: 15px;
}

section.banner-section article.partner-form-wrapper form#partnerForm input::placeholder,
section.banner-section article.partner-form-wrapper form#partnerForm textarea::placeholder,
section.banner-section article.partner-form-wrapper form#partnerForm .form-control>option {
    color: #202124;
}

section.banner-section article.partner-form-wrapper form#partnerForm .form-control {
    background: transparent;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #202124;
    border-radius: 0;
    margin-bottom: 1.5em;
    color: #202124;
    font-weight: 600;
}

section.banner-section article.partner-form-wrapper form#partnerForm {
    padding: 2em;
    background: #f6f6f6;
    position: relative;
    opacity: 0.7;
    right: 3em;
    top: 2em;
}

section.banner-section article.partner-form-wrapper form#partnerForm::-webkit-input-placeholder,
section.banner-section article.partner-form-wrapper form#partnerForm:-ms-input-placeholder {
    /* Edge */
    color: #202124;
}

section.banner-section article.partner-form-wrapper form#partnerForm .button-wrapper {
    padding-top: 2em;
}


section.banner-section article.partner-form-wrapper form#partnerForm button.submit-button {
    background-color: #1f8999;
    color: #ffffff;
    padding: 10px 25px;
    font-size: 1.1em;
    letter-spacing: 0.6px;
    font-weight: 600;
    width: 60%;
    text-transform: uppercase;
    border-radius: 4px;
    transition: ease-in-out 0.35s;
    border: 2px solid #1E8999;

}

section.banner-section article.partner-form-wrapper form#partnerForm button.submit-button:hover {
    background: #1E8999;
    color: #fff;
    border-color: #fff;
}

/* Why partner with Infiflex section CSS starts here :- */
.why-partner-with-us {
    display: none;
}

/* Media Queries section starts below :- */

/* @media only screen and (min-width: 800px) and (max-width: 1600px) {
    .container {
        width: 90vw !important;
    }
} */
@media only screen and (min-width: 320px) and (max-width: 480px) {
    section.banner-section article.partner-form-wrapper {

        margin-top: 30px;
        padding: 15px;
    }

    section.banner-section article.partner-form-wrapper form#partnerForm {
        padding: 15px;
        background: #f6f6f6;
        position: relative;
        opacity: 0.7;
        right: 0;
        width: 100%;
    }

    section.banner-section article.partner-form-wrapper form#partnerForm button.submit-button {
        width: 100%;
    }

}

@media only screen and (min-width: 481px) and (max-width: 520px) {
    section.banner-section article.partner-form-wrapper {

        top: 30px;
        padding: 15px;
    }

    section.banner-section article.partner-form-wrapper form#partnerForm {
        padding: 15px;
        background: #f6f6f6;
        position: relative;
        opacity: 0.7;
        right: 0;
        width: 100%;
    }

    section.banner-section article.partner-form-wrapper form#partnerForm button.submit-button {
        width: 100%;
    }

}

@media only screen and (min-width: 521px) and (max-width: 600px) {
    section.banner-section article.partner-form-wrapper {

        margin-top: 30px;
        padding: 15px;
    }

    section.banner-section article.partner-form-wrapper form#partnerForm {
        padding: 15px;
        background: #f6f6f6;
        position: relative;
        opacity: 0.7;
        right: 0;
        width: 100%;
    }

    section.banner-section article.partner-form-wrapper form#partnerForm button.submit-button {
        width: 100%;
    }


}

@media only screen and (min-width: 601px) and (max-width: 720px) {}

@media only screen and (min-width: 721px) and (max-width: 800px) {}

@media only screen and (min-width: 801px) and (max-width: 1200px) {}

@media only screen and (min-width: 1600px) {

    .container {
        width: 90vw !important;
    }

    .top-bar {
        height: 7em;
        padding: 1em;
    }

    .top-bar a.navbar-brand {
        height: auto;
        position: relative;
        top: 2px;
    }

    .top-bar a.navbar-brand .logo {
        width: auto !important;
    }

    div#inner_menu {
        position: relative;
        top: 12px;
    }

    #inner_menu .nav>li>a,
    #inner_menu .nav li .dropbtn,
    #inner_menu .nav li .dropdown-content {
        font-size: 1.2em;
    }

    div#inner_menu .navbar-nav li .dropbtn {
        position: relative;
        bottom: 3px;
        font-size: 1.2em;
    }

}

@media only screen and (max-width: 768px) {

    /* ===== For Mobile and small Tab screen view ===== */
    .top-bar .navbar-toggle {
        border: 1px solid #238391;
        border-radius: 2px;
    }

    .top-bar .navbar-toggle span.icon-bar {
        background-color: #238292;
    }

    .top-bar .col-xs-12 {
        padding: 0;
    }

    #inner_menu {
        text-align: center;
        background: #fff;
        z-index: 1000;
        position: relative;
    }

    #inner_menu .navbar-nav {
        margin: 0;
        display: flex;
        flex-direction: column;
        padding: 5px 0 10px 0;
        align-items: center;
    }

    #inner_menu .nav>li {
        padding: 5px 0;
        width: 75%;
        border-bottom: 1px solid #aeacac;
    }

    #inner_menu .nav>li:last-child {
        border: none;
    }

    section.banner-section {
        height: auto;
        margin-bottom: 30px;
    }

    section.banner-section article.banner-wrapper {
        height: 75vh;
    }

    .section-title h2 {
        font-size: 2em;
        left: 0.85em;
    }

    section.banner-section .banner-text-content {
        width: 90%;
    }
}

section.banner-section .banner-text-content {
    top: 0;
    padding-top: 5em;
}

.btn-blue {
    width: auto;
    height: auto;
}