@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,400;0,500;0,600;0,700;0,900;1,400;1,700&family=Poppins:ital,wght@0,200;0,400;0,500;0,600;0,700;1,200;1,400;1,500;1,600;1,700&display=swap');


:-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }


body {
    --color: #47b2e4;
    --color-hover: #73c5eb;
    --back-color: #fff;
    --text-color: #121212;
    --back-color2: #f3f5fa;
    background-color: var(--back-color);
    font-family: "Montserrat", sans-serif;
    color: var(--text-color);
}


a {
    color: var(--color);
    text-decoration: none;
}

    a:hover {
        color: var(--color-hover);
        text-decoration: none;
    }


.button,
button {
    background: var(--color);
    border: 0;
    padding: 12px 34px;
    color: var(--back-color);
    transition: 0.4s;
    border-radius: 50px;
}

    button:hover,
    .button:hover {
        background: var(--color-hover);
        color: var(--back-color)
    }

    button.small,
    .button.small {
        font-size: 80%;
        padding: 8px 24px;
    }


.part {
    padding: 40px;
    transition: all 0.2s;
    border-radius: 4px;
}

    .part p {
        min-height: 100px;
        text-align: center;
        font-size: 15px;
    }

    .part.justify p {
        text-align: justify;
    }

    .part.auto p {
        height: auto;
    }

    .part img {
        display: block;
        width: 400px;
        height: 300px;
        object-fit: scale-down;
        margin-left: auto;
        margin-right: auto;
    }

        .part img.small {
            height: 150px;
        }

    .part h3 {
        font-weight: 500;
        margin-bottom: 15px;
        font-size: 20px;
        text-align: center;
    }

   /* .part:hover {
        transition: all 0.2s;
        box-shadow: 0px 4px 10px 0px rgba(71,178,228,0.7);
        -webkit-box-shadow: 0px 4px 10px 0px rgba(71,178,228,0.7);
        -moz-box-shadow: 0px 4px 10px 0px rgba(71,178,228,0.7);
    }*/

/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/

.accordion-list ul {
    padding: 0;
    list-style: none;
}

.accordion-list li + li {
    margin-top: 15px;
}

.accordion-list li {
    padding: 20px;
    border-radius: 4px;
}

.accordion-list a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
}

.accordion-list span {
    color: var(--color);
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.accordion-list p {
    margin-bottom: 0;
    padding: 20px;
}

.accordion-list .icon-show {
    display: none;
}

.accordion-list a.collapsed {
    color: var(--text-color);
}

    .accordion-list a.collapsed:hover {
        color: var(--color);
    }

    .accordion-list a.collapsed .icon-show {
        display: inline-block;
    }

    .accordion-list a.collapsed .icon-close {
        display: none;
    }



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--back-color);
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid var(--back-color);
        border-top-color: var(--color);
        border-bottom-color: var(--color);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 85px;
    z-index: 996;
    background: var(--color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 24px;
        color: var(--back-color);
        line-height: 0;
    }

    .back-to-top:hover {
        background: var(--color-hover);
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
}

    #header.header-scrolled,
    #header.header-inner-pages {
        background: rgb(243, 245, 250, 0.9);
    }

    #header .logo {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        z-index: 9999;
    }

        #header .logo img {
            max-height: 40px;
        }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 15px;
        font-weight: 600;
        white-space: nowrap;
        transition: 0.3s;
        color: var(--text-color);
    }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: var(--color);
        }


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: var(--text-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: var(--text-color);
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--back-color);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 36px;
        right: 12px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 80px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
        color: #47b2e4;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
}

    #hero .container {
        padding-top: 72px;
        display: flex;
        flex-wrap: wrap-reverse;
        gap: 20px;
    }

        #hero .container > * {
            flex: 1;
            min-width: max(min(445px,100%), 50% - 16px);
        }

    #hero h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
    }

    #hero .hero-left {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }


    #hero h2 {
        margin-bottom: 50px;
        font-size: 24px;
    }

    #hero .animated {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

    #hero .hero-img {
        max-height: min(500px,50vh);
        text-align: center;
    }

        #hero .hero-img img {
            max-height: 100%;
            max-width: 100%;
        }



    #hero .hero-brand img {
        max-height: 60px;
    }

    #hero .slogan {
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 50px;
    }


@media (max-width: 991px) {
    #hero {
        text-align: center;
    }

        #hero .slogan {
            margin-left: 0 !important;
        }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}


.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

    .section-title h3 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

    .section-title h2::before {
        content: '';
        position: absolute;
        display: block;
        width: 120px;
        height: 1px;
        background: #ddd;
        bottom: 1px;
        left: calc(50% - 60px);
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        display: block;
        width: 40px;
        height: 3px;
        background: var(--color);
        bottom: 0;
        left: calc(50% - 20px);
    }

    .section-title p {
        margin-bottom: 0;
    }


/*--------------------------------------------------------------
# Arge
--------------------------------------------------------------*/

.arge .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (max-width: 1024px) {
    .arge .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .arge .img {
        min-height: 400px;
    }

    .arge .accordion-list {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .arge .img {
        min-height: 200px;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    padding: 30px;
    width: 100%;
}

    .contact .info i {
        font-size: 20px;
        color: var(--color);
        float: left;
        width: 44px;
        height: 44px;
        background: #e7f5fb;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

    .contact .info h4 {
        padding: 0 0 0 60px;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .contact .info p {
        padding: 0 0 10px 60px;
        margin-bottom: 20px;
        font-size: 14px;
    }


.contact .php-email-form {
    width: 100%;
    padding: 30px;
}

    .contact .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form .form-group {
        margin-bottom: 20px;
    }

    .contact .php-email-form label {
        padding-bottom: 8px;
    }

    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        border-radius: 4px;
    }

        .contact .php-email-form input:focus,
        .contact .php-email-form textarea:focus {
            border-color: #47b2e4;
        }

        .contact .php-email-form input:not([type="checkbox"]) {
            height: 44px;
        }

    .contact .php-email-form textarea {
        padding: 10px 12px;
    }



@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-size: 14px;
    background: var(--back-color2);
}



    #footer .footer-top {
        padding: 60px 0 30px 0;
    }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: bold;
            position: relative;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }



        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: var(--color);
            color: var(--back-color);
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: var(--color-hover);
                text-decoration: none;
            }

        #footer .footer-top ul {
            list-style-type: none;
            gap: 5px;
            padding: 0
        }

        #footer .footer-top a {
            text-decoration: none;
            /* color: black; */
            font-size: 15px;
        }

    #footer .footer-bottom {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    #footer .copyright {
        float: left;
    }

    #footer .credits {
        float: right;
        font-size: 13px;
    }

        #footer .credits a {
            transition: 0.3s;
        }

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }

    #footer .credits {
        padding-top: 4px;
    }
}


.g-20 {
    gap: 20px !important;
}

.w-150 {
    width: 150px !important;
}

.w-60 {
    width: 60px !important;
}

.d-inline-block {
    display: inline-block !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.p-50 {
    padding: 50px !important;
}

.h-16 {
    height: 16px !important;
}

.h-20 {
    height: 20px !important;
}

.h-290 {
    height: 290px !important;
}

.border-0 {
    border: 0 !important;
}

.align-self-center {
    align-self: center !important;
}
