* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: #000;
    text-decoration: none;
}

.section-padding {
    padding: 80px 65px;
}

.section-max-width {
    max-width: 1150px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    /* 190% */
    letter-spacing: 0.24px;
}

.section-heading-line {
    background-color: #30A2FF;
    margin: 0 auto;
    width: 117px;
    height: 2px;
}

@media (max-width: 768px) {
    .animation-hide-container {
        overflow: hidden;
    }

    .animation-hide-container h5 {
        transform: translateY(66px);
        transition: transform .85s;
    }

    .animation-hide-container h5.show {
        transform: translateY(0px);
    }
}

/* header */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
    transition: top .4s, background-color .4s;
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .3);
}

.header li a {
    display: block;
    padding: 20px 20px;
    color: #fefefe;
    text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
    color: #f0f0f0;
}

.header .logo {
    display: block;
    float: left;
    font-size: 2em;
    padding: 20px 20px 0;
    text-decoration: none;
}

.header .logo img {
    width: 102px;
}

/* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.header .menu-icon .navicon {
    background: #fefefe;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
    border-radius: 100px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #fefefe;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
    border-radius: 100px;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}

/* menu btn */

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked~.menu {
    max-height: 240px;
}

.header .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
    .header {
        padding: 33px 65px 15px;
    }

    .header .logo {
        padding: 0;
    }

    .header .logo img {
        width: 153px;
    }

    .header ul {
        background-color: transparent;
    }

    .header li {
        float: left;
    }

    .header li a {
        padding: 0 30px 20px;
        font-size: 20px;
    }

    .header .menu {
        clear: none;
        float: right;
        max-height: none;
    }

    .header .menu-icon {
        display: none;
    }
}

/* Hero Section */

.sticky-contact-btn {
    border-radius: 5px;
    background: #30A2FF;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
    padding: 10px 18px;
    color: #EFEFEF;
    font-family: Arial;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    position: fixed;
    right: 20px;
    bottom: 20px;
    border: none;
    z-index: 10;
    transition: .3s;
    transform: translateY(100px);
    cursor: pointer;
}

.sticky-contact-btn.show {
    transform: translateY(0px);
}

.hero-section {
    width: 100%;
    position: relative;
    min-height: 100vh;
}

.hero-img {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -2;
}


.hero-section::after {
    z-index: -1;
    content: '';
    width: 100%;
    display: block;
    min-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%);
}

h1 {
    color: #FFF;
    font-family: Crimson Text;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 220px 0 33px;
}


h2 {
    color: #fefefe;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 200;
    margin-top: 12px;
}

.main-contact-btn {
    margin-top: 76px;
    border: none;
    color: #fefefe;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    border-radius: 10px;
    background: #30A2FF;
    padding: 10px 30px;
    cursor: pointer;
    transition: .2s;
    display: inline-block;
}

.main-contact-btn:hover {
    opacity: .8;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 20px;
    }

    .hero-img {
        left: -25%;
        width: 125%;
    }

    h1 {
        font-size: 40px;
        margin-top: 150px;
    }

    h2 {
        font-size: 20px;
        margin-top: 8px
    }

    .main-contact-btn {
        margin-top: 50px;
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Intro Questions Section */

.intro-questions-section {
    background-color: #333;
}

.intro-questions-section .p-1 {
    color: #EFEFEF;
    text-align: center;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
    /* 36.3px */
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
}

.intro-questions-section .p-1 span {
    font-weight: 700;
}

.intro-questions-section .line-1 {
    background-color: #30A2FF;
    width: 230px;
    height: 2px;
    margin: 50px auto 0;
}

.intro-questions-section .p-2 {
    margin-top: 50px;
}

.intro-questions-section .p-2,
.intro-questions-section .p-3 {
    color: #FEFEFE;
    text-align: center;
    font-family: Crimson Text;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 43px;
    /* 126.471% */
}

.intro-questions-section .p-2 span,
.intro-questions-section .p-3 span {
    color: #30A2FF;
}

.intro-questions-section .p-4 {
    color: #EFEFEF;
    text-align: center;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 164.99%;
    /* 36.298px */
    max-width: 760px;
    margin: 34px auto 0;
}

@media (max-width: 768px) {

    .intro-questions-section .p-1 {
        font-size: 18px;
    }

    .intro-questions-section .p-2,
    .intro-questions-section .p-3 {
        font-size: 25px;
        line-height: normal;
    }

    .intro-questions-section .p-3 {
        margin-top: 40px;
    }

    .intro-questions-section .p-4 {
        font-size: 18px;
    }

}

/* Three Boxes Section */

.three-boxes-section {
    background-color: #C1D9EC;
}

.three-boxes-section .section-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-inline: auto;
    max-width: 1150px;
}

.three-boxes-section .box-container {
    flex: 1;
}


.three-boxes-section .box {
    border-radius: 5px;
    overflow: hidden;
    background-color: #efefef;
    /* height: 770px; */
    transition: .3s;
}

.three-boxes-section .img,
.three-boxes-section .img,
.three-boxes-section .img {
    height: 258px;
    width: 100%;
    object-fit: cover;
}

.three-boxes-section .bottom-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    /* height: 500px; */
    transition: .3s;
}

.three-boxes-section .box.closed .bottom-content {
    /* height: 170px; */
    min-height: 170px;
}

.three-boxes-section h3 {
    padding: 16px 26px 0;
    color: #333;
    text-align: center;
    font-family: Arial;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.three-boxes-section p {
    padding: 44px 26px 0;
    color: #333;
    text-align: center;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 166.667% */
    transition: .3s;
}

.three-boxes-section .box.closed p {
    height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.three-boxes-section button {
    padding: 14px 27px;
    border-radius: 5px;
    border: 1px solid #333;
    margin: 50px auto 21px;
    display: block;
    cursor: pointer;
    background-color: transparent;
}

.three-boxes-section .box button img {
    transform: rotateX(180deg);
    transition: .3s;
    width: 19px;
}

.three-boxes-section .box.closed button {
    margin-top: 23px;
}

.three-boxes-section .box.closed button img {
    transform: rotateX(0deg);
}

@media (max-width: 937px) {
    .three-boxes-section h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    .three-boxes-section h3 {
        font-size: 24px;
    }

    .three-boxes-section .section-container {
        flex-direction: column;
    }

    .three-boxes-section .box {
        transition: .7s;
        transform: translateY(50px);
        opacity: 0;
    }


    .three-boxes-section .box.show {
        transform: translateY(0px);
        opacity: 1;
    }

    .three-boxes-section .box.closed .bottom-content {
        min-height: unset;
    }
}

/* Three Steps Section */

.three-steps-section {
    background-color: #333;
}

.section-heading {
    color: #EFEFEF;
}

.three-steps-section .section-max-width {
    background-color: #EFEFEF;
    border-radius: 5px;
    padding: 60px 0;
    margin: 80px auto 0;
    display: flex;
}

.three-steps-section .step {
    flex: 1;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.three-steps-section .step-2::before,
.three-steps-section .step-2::after {
    /* border-right: 2px solid #30A2FF;
    border-left: 2px solid #30A2FF; */
    content: "";
    width: 2px;
    height: 94%;
    background-color: #30A2FF;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}

.three-steps-section .step-2::after {
    right: 0;
    left: unset;
}

.three-steps-section h4 {
    margin-top: 40px;
    color: #333;
    text-align: center;
    font-family: Arial;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.three-steps-section .icon {
    margin-top: 48px;
}

.three-steps-section p {
    margin-top: 48px;
    color: #333;
    text-align: center;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 162%;
    /* 29.16px */
    letter-spacing: 0.216px;
    padding-bottom: 40px;
}

@media (max-width: 1000px) {
    .three-steps-section .section-max-width {
        flex-direction: column;
        padding: 30px 0;
    }

    .three-steps-section .step {
        padding: 0 25px;
    }

    .three-steps-section .number {
        transform: scale(.65);
    }

    .three-steps-section h4 {
        font-size: 18px;
        margin-top: 13px;
    }

    .three-steps-section .icon {
        transform: scale(.8);
        margin-top: 20px;
    }

    .three-steps-section p {
        margin-top: 30px;
    }

    .three-steps-section .step-2 {
        border-right: none;
        border-left: none;
        /* border-top: 2px solid #30A2FF;
        border-bottom: 2px solid #30A2FF; */
        padding: 30px 0 0;
        margin: 0 25px 40px;
    }

    .three-steps-section .step-2::before,
    .three-steps-section .step-2::after {
        /* border-right: 2px solid #30A2FF;
        border-left: 2px solid #30A2FF; */
        content: "";
        width: 117px;
        height: 2px;
        background-color: #30A2FF;
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .three-steps-section .step-2::after {
        bottom: 0;
        top: unset;
    }
}

/* Quick Tips Section */

.quick-tips-section {
    background-color: #efefef;
}

.quick-tips-section .section-heading {
    color: #333;
}

.quick-tips-section h4 {
    color: #333;
    text-align: center;
    margin: 50px auto 0;
    font-family: Crimson Text;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 43px;
    /* 110.256% */
    max-width: 760px;
}

.quick-tips-section .section-max-width {
    margin-top: 120px;
    display: flex;
    gap: 40px;
}

.quick-tips-section .tip {
    flex: 1;
}

.quick-tips-section h5 {
    color: #333;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 156.49%;
    /* 31.298px */
    padding: 0 0 17px 29px;
    border-left: 2px solid #30A2FF;
}

.quick-tips-section p {
    color: #333;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 163.49%;
    /* 29.428px */
    padding-left: 29px;
}

@media (max-width: 768px) {
    .quick-tips-section h4 {
        margin-top: 36px;
        font-size: 26px;
    }

    .quick-tips-section .section-max-width {
        flex-direction: column;
        margin-top: 65px;
    }
}

/* About Section */

.about-section {
    background-color: #C1D9EC;
}

.about-section .section-max-width {
    background-color: #EFEFEF;
    border-radius: 5;
}

.about-section .section-heading {
    color: #333;
}

.about-section h4 {
    color: #333;
    margin: 50px 0 0;
    font-family: Crimson Text;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 43px;
    /* 110.256% */
    max-width: 760px;
}

.about-section .top-half,
.about-section .bottom-half {
    display: flex;
    gap: 60px;
}

.about-section .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-section .img-container {
    flex: 1;
    height: 450px;
    overflow: hidden;
}

.about-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.about-section .top-half,
.about-section .bottom-half {
    margin-top: 80px;
}

.about-section h5 {
    color: #333;
    font-family: Crimson Text;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 380px;
}

.about-section p {
    color: #333;
    font-family: Arial;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.99%;
    /* 35.858px */
    margin-top: 20px;
    max-width: 380px;
}

@media (max-width: 1000px) {

    .about-section h5 {
        font-size: 22px;
        max-width: unset;
    }

    .about-section .second-heading {
        margin-top: 39px;
    }

    .about-section p {
        font-size: 18px;
        max-width: unset;
    }
}

@media (max-width: 768px) {

    .about-section h4 {
        font-size: 27px;
    }

    .about-section .top-half {
        flex-direction: column;
        gap: 50px;
    }

    .about-section .bottom-half {
        flex-direction: column-reverse;
        gap: 50px;
    }
}

/* F A Q */

.faq-section {
    background-color: #333;
}

.faq-section .questions {
    background-color: #EFEFEF;
    margin-top: 50px;
    border-radius: 5px;
}

.faq-section .question {
    color: #333;
    font-family: Crimson Text;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.faq-section .answer-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out, opacity .4s;
    opacity: 0;
}

.faq-item.open .answer-container {
    max-height: 380px;
    opacity: 1;
}

.faq-section p {
    color: #333;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 186.99%;
    /* 33.658px */
    border-left: 2px solid #30A2FF;
    padding-left: 23px;
    margin: 35px 0 79px 57px;
    margin-left: 57px;
    max-width: 820px;
}

/* switched from template faq  https://codepen.io/frogmcw/pen/deqRwa*/


.question {
    display: flex;
    align-items: start;
    gap: 32px;
    font-weight: 400;
    cursor: pointer;
    padding: 10px 0;
}


.question:focus::after {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.control-icon {
    fill: #646464;
    transition: .3s;
    pointer-events: none;
}

.faq-item {
    margin: 25px 0;
}

.faq-item.open .control-icon-expand {
    transform: rotate(45deg);
}


@media (max-width: 1000px) {
    .faq-section .question {
        font-size: 20px;
        gap: 15px;
    }

    .faq-section .question use {
        max-width: 65vw;
    }

    .faq-section .faq-item {
        margin: 18px 0;
    }

    .faq-section p {
        font-size: 18px;
        margin: 20px 0 45px 40px;
        margin-left: 40px;
        border: none;
        padding-left: 0;
    }
}

/* Reviews */

.reviews-section {
    background-color: #C1D9EC;
    padding: 80px 0;
}

.reviews-section .section-heading {
    color: #333;
}

.reviews-section .section-heading-line {
    background-color: #fefefe;
}

.reviews-section .review {
    padding: 35px 62px;
    background-color: #fefefe;
    border-radius: 5px;
    margin: 50px 50px 10px;
    background-image: url("images/reviews-quotation-mark.png");
    background-repeat: no-repeat;
    background-position: top center;
    margin-inline: 50px;
}

.reviews-section p {
    color: #333;
    text-align: center;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 163.99%;
    /* 32.798px */
    margin-top: 57px;
}

.reviews-section .stars {
    margin: 41px auto;
}

.reviews-section .name {
    margin: 41px auto;
    color: #333;
    text-align: center;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 163.99%;
    /* 29.518px */
}

.slick-dots li button::before {
    font-size: 15px;
}

@media (max-width: 1000px) {
    .reviews-section .review {
        margin-inline: 20px;
    }
}


@media (max-width: 678px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-section .review {
        padding: 16px 25px 43px;
        background-position: top right;
    }

    .reviews-section p {
        text-align: start;
        margin-top: 44px;
        font-size: 18px;
    }

    .reviews-section .stars {
        margin: 27px 0 0;
    }

    .reviews-section .name {
        text-align: start;
        margin: 27px 0 0;
    }

    .slick-dots {
        margin-top: 24px;
    }
}

/* Meat The Team Section */

.team-section {
    background-color: #efefef;
}

.team-section .section-heading {
    color: #333;
}

.team-section .section-max-width {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 118px;
}

.team-section .name {
    color: #333;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.216px;
    text-align: center;
    margin-top: 8px;
}

.team-section .title {
    color: #30A2FF;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.24px;
    text-align: center;
}

@media (max-width: 678px) {
    .team-section .section-max-width {
        gap: 50px;
    }

    .team-section img {
        width: 140px;
        margin-inline: auto;
    }

    .team-section .name {
        max-width: 140px;
    }

    .team-section .title {
        max-width: 140px;
        font-size: 18px;
        margin-top: 7px;
    }
}

/* Contact Section */


.contact-section {
    background-color: #333;
}

.contact-section form {
    max-width: 587px;
    display: flex;
    flex-direction: column;
    margin: 50px auto 0;
    gap: 25px;
}

.contact-section label {
    color: #fefefe;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    line-height: 29px;
    /* 161.111% */
    margin-left: 10px;
}

.contact-section input,
.contact-section textarea {
    font-size: 18px;
    padding: 7px 10px;
    border-radius: 5px;
    border: none;
}

.contact-section .top-line {
    display: flex;
    gap: 30px;
}

.contact-section .input-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-section button {
    border-radius: 10px;
    background-color: #30A2FF;
    border: none;
    color: #fefefe;
    font-family: Arial;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    padding: 10px 27px;
    align-self: flex-end;
    cursor: pointer;
    transition: .3s;
}

.contact-section button:hover {
    opacity: .8;
}

@media (max-width: 678px) {
    .contact-section .top-line {
        flex-direction: column;
    }

    .contact-section button {
        font-size: 16px;
        padding: 10px 35px;
    }
}

/* Footer */

footer {
    padding-bottom: 23px !important;
}

footer .logo {
    width: 60px;
}

footer .section-max-width {
    display: flex;
    justify-content: space-between;
}

footer .address {
    margin-top: 30px;
}

footer .address,
footer .email a {
    color: #333;
    font-family: Crimson Text;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 200% */
}

footer .line-1 {
    width: 117px;
    border-bottom: 2px solid #30A2FF;
    margin: 50px 0;
}

footer .footer-navigation {
    display: flex;
    gap: 42px;
    list-style: none;
}

footer li a {
    color: #333;
    font-family: Arial;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 145.455% */
}

footer .right-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .right-side p {
    max-width: 308px;
    color: #333;
    text-align: center;
    font-family: Crimson Text;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 94.118% */
}

footer .bottom-line {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    color: #666;
    font-family: Arial;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 200% */
}

footer .kuma-link {
    display: flex;
    align-items: end;
    gap: 5px;
    line-height: 27px;
}

footer .kuma-link a {
    display: flex;
}

footer .kuma-link img {
    max-width: 120px;
    opacity: .6;
    transition: .2s;
}

footer .kuma-link img:hover {
    opacity: 1;
}

@media (max-width: 850px) {
    footer .section-max-width {
        flex-direction: column;
    }

    footer .left-side {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .footer-navigation {
        flex-direction: column;
        gap: 25px;
    }

    footer .footer-navigation li {
        text-align: center;
    }

    footer .right-side {
        margin-top: 84px;
    }

    footer .bottom-line {
        flex-direction: column;
        align-items: center;
        gap: 21px;
        margin-top: 66px;
    }
}