*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    scroll-behavior: smooth;
}


body {
    font-family: Poppins, Cormorant Infant;
    min-height: 1000px;
}

.btn {
    font-size: 1em;
    color: #fff;
    text-decoration: none;
    background: #ff0157;
    display: inline-block;
    padding: 10px 30px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 500ms;
}

.btn:hover {
    letter-spacing: 6px;
}

p {
    font-weight: 300;
    color: #111;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 100000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 500ms;
}


header .logo {
    color: #fff;
    font-weight: 700;
    font-size: 2em;
    text-decoration: none;
}

header.sticky {
    background: #fff;
    padding: 10px 100px;
    box-shadow: 0 5px 20px rgb(0, 0, 0, .05);
    color: #111;
}

header.sticky .logo {
    color: #111;

}

header.sticky .navigation li a {
    color: #111;
}


header .logo span {
    color: #ff0157;
}



header .navigation {
    position: relative;
    display: flex;
}


header .navigation li {
    list-style: none;
    margin-left: 30px;

}


header .navigation li a {
    text-decoration: none;
    color: #fff;
    font-weight: 300;

}


header .navigation li a:hover {
    color: #ff0157;
}




.banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(images/bg.jpg);
    background-size: cover;
}


.banner .content {
    max-width: 900px;
    text-align: center;
}

.banner .content h2 {
    font-size: 5em;
    color: #fff;
}

.banner .content p {
    font-size: 1em;
    color: #fff;
}


section {
    padding: 100px;
}

.row {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.row .col50 {
    position: relative;
    width: 45%;
}

.title-text {
    color: #111;
    font-size: 2em;
    font-weight: 300;
}

.title-text span {
    color: #ff0157;
    font-weight: 700;
    font-size: 1.5em;
}

.row .col50 .imgBx {
    position: relative;
    width: 100%;
    min-height: 300px;
}

.row .col50 .imgBx img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.menu .content {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    margin-top: 40px;
}

.menu .content .box {
    width: 340px;
    margin: 20px;
    border: 15px solid #fff;
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.08);
}

.menu .content .box .imgBx {
    position: relative;
    width: 100%;
    height: 300px;
}

.menu .content .box .imgBx img {
    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.menu .content .box .text {
    padding: 15px 0 5px;
}

.menu .content .box .text h3 {
    font-weight: 400;
    color: #111;

}

.expert .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 40px;
}



.expert .content .box {
    width: 250px;
    margin: 15px;
}

.expert .content .box .imgBx {
    position: relative;
    height: 300px;
}


.expert .content .box .imgBx img {
    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.expert .content .box .text h3 {
    font-weight: 400;
    color: #111;
}


.testimonials {
    background: url(images/bg2.jpg);
    background-size: cover;
}

.white .title-text,
.white p {
    color: #fff;
}

.testimonials .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 40px;

}

.testimonials .content .box {
    width: 340px;
    margin: 29px;
    padding: 40px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
}

.testimonials .content .box .imgBx {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials .content .box .imgBx img {
    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.testimonials .content .box .text {
    text-align: center;
}

.testimonials .content .box .text p {
    color: #666;
    font-style: initial;
}

.testimonials .content .box .text h3 {
    margin-top: 20px;
    color: #ff0157;
    font-size: 1em;
    font-weight: 600;
}

.contact {
    background: url(images/bg3.jpg);
    background-size: cover;
}

.contact-form {
    padding: 75px 50px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.contact-form h3 {
    color: #111;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 500;

}

.contact-form .input-box {
    width: 100%;
    margin-bottom: 20px;

}

.contact-form .input-box input,
.contact-form .input-box textarea {
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 2px solid #555;
    padding: 10px;
    color: #111;
    font-size: 16px;
    font-weight: 300;
    resize: none;
    font-family: Poppins;
}

.contact-form .input-box textarea {
    padding-bottom: 0;
}

.contact-form .input-box input[type="submit"] {
    font-size: 1em;
    color: #fff;
    display: inline-block;
    letter-spacing: 2px;
    max-width: 100px;
    font-weight: 500;
}

.copyright-text {
    padding: 8px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.copyright-text p {
    color: #333;
}

.copyright-text a {
    color: #ff0157;
    font-weight: 500;
    text-decoration: none;
}


@media (max-width:991px) {
    section {
        padding: 20px;
    }


    header,
    header.sticky {
        padding: 10px 20px;
    }

    header .navigation {
        display: none;
    }


    header .navigation.active {
        width: 100%;
        height: calc(100% - 60px);
        position: fixed;
        top: 60px;
        left: 0;
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: #fff;
        color: #111;
        font-size: 1.6rem;
    }


    .menu-toggle {
        position: relative;
        width: 40px;
        height: 40px;
        background: url(images/menu.png);
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
    }

    .menu-toggle.active {
        background: url(images/close.png);
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
    }

    header.sticky .menu-toggle {
        filter: invert(1);
    }

    .bannner .content h2 {
        font-size: 3em;
        color: #fff;
    }


    .row {
        flex-direction: column;
    }

    .row .col50 {
        position: relative;
        width: 100%;

    }

    .row .imgBx {

        height: 300px;
        margin-top: 20px;
    }

    .menu .content {
        margin-top: 20px;
    }

    .menu .content .box {
        margin: 10px;
    }

    .menu .content .box .imgBx {
        height: 260px;
    }

    .title {
        text-align: center;
    }

    .title-text {
        font-size: 1.6em;
        line-height: 1, 5;
        margin-bottom: 15px;
    }

    .testimonials .box {
        margin: 10px;
        padding: 20px;
    }

    .contact-form {
        padding: 35px 40px;
        margin-top: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width:450px) {
    .banner{
        padding-top: 3em;
    }
}