:root {
    --first-font: "DM Sans", sans-serif;
    --second-font: "Source Serif 4", serif;
    --dark-color: #262223;
    --second-color: #d60d41;
    --third-color: #F4F3F2;
    --box-shadow: 0px 3px 8px 0px #0000000D, 0px 14px 14px 0px #0000000A, 0px 31px 19px 0px #00000008, 0px 56px 22px 0px #00000003, 0px 87px 24px 0px #00000000;
}

body {
    font-family: var(--first-font);
    overflow-x: hidden;
}



ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    font-size: 18px;
    font-weight: 200;
}

.pl-50 {
    padding-left: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-50 {
    margin-bottom: 50px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;

    .logo {
        width: 70px;
        display: inline-block;
    }
}



.head-wrap {
    padding: 15px 20px;
    background-color: #2622234d;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-top: 30px;
    position: relative;
}

.main-menu ul li {
    float: left;
}

.m-s-slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

.main-menu ul li {
    margin: 0 30px;
    padding: 12px 0;
}

.main-menu ul li a {
    font-size: 16px;
    color: #fff;
}

.dropdown {
    position: initial;
}

.dropdown .drop-icon {
    width: 10px;
    margin-left: 5px;
    transition: all .3s ease;
}

.dropdown:hover .drop-icon {
    transform: rotateX(180deg);
}

.mega-menu {
    position: absolute;
    left: 0;
    top: 90px;
    border-radius: 15px;
    right: 0;
    background: #555555;
    color: #fff;
    backdrop-filter: blur(20px);
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}

.dropdown:hover .mega-menu {
    visibility: visible;
    opacity: 1;
}

.mega-menu .left-content {
    width: 40%;
    float: left;
    z-index: 3;
    padding: 30px;

    .title {
        font-size: 28px;
        font-weight: 700;
    }

    .desc {
        font-size: 16px;
        font-weight: 200;
    }
}

.mega-menu .left-content .detail-btn:hover {
    background: #e50140;
    color: #fff !important;
}

.mega-menu .sub-menu {
    margin: 0;
    padding: 40px 0;
    float: left;
    border-left: 1px solid #6b6b6b;
    width: 20%;
    min-height: 350px;
}

.sub-menu li {
    margin: 10px 0 !important;
    width: 100%;
    float: left !important;
    padding: 0 !important;
}

.sub-menu li a {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #b0b0b0 !important;
    padding: 0 0 0 40px;
    border-left: 1px solid #6a6a6a;
    margin-left: -1px;
    transition: all .3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-menu li a img {
    transform: rotate(-90deg);
    height: 5px;
    margin-left: 10px;
}

.sub-menu li a:hover {
    color: #fff !important;
    border-left: 1px solid #fff;
}

.s-sub-menu {
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    padding: 40px 0;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}

.s-sub-menu li {
    padding: 0 !important;
}

.s-sub-menu li a {
    border-left: 0 !important;
}

.s-sub-menu a:hover {
    border-left: 0 !important;
}

.sub-menu li:hover .s-sub-menu {
    visibility: visible;
    opacity: 1;
}

.login-btn {
    background: var(--second-color);
    color: #fff;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 10px;

    &.active {
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .drop-icon {
        transition: all .3s ease;
    }

    &:hover .drop-icon {
        transform: rotateX(180deg);
    }

    &:hover {

        .login-menu {
            visibility: visible;
            opacity: 1;
        }
    }
}

.m-s-slide video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    pointer-events: none;
}

.m-s-slide .video-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 1;
}

.m-s-slide .desc .title {
    font-family: var(--second-font);
    font-size: 80px;
    line-height: 80px;
    font-weight: 600;
    margin-bottom: 70px;
    position: relative;
    float: left;
}

/* .m-s-slide .desc .title::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translate(-50%, 0);
} */

.m-s-slide .sep {
    float: left;
    width: 100%;
}

.m-s-slide .sep img {
    margin: auto;
}

.m-s-slide .desc {
    position: absolute;
    top: calc(50% + 100px);
    left: 50%;
    text-align: center;
    color: #fff;
    width: 35%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.m-s-slide .links {
    display: block;
    float: left;
    text-align: center;
    width: 100%;
    margin-top: 70px;
}

.m-s-slide .desc a {
    background: #fff;
    color: var(--dark-color);
    padding: 15px 26px;
    border-radius: 10px;
}

.home-counter {
    padding: 50px 0;
}

.c-single {
    border: 1px solid #E3DFDE;
    border-radius: 20px;
    padding: 40px;
    transition: all .5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #114386;
    text-align: center;
}

.c-single:hover {
    box-shadow: var(--box-shadow);
}

.c-single .icon img {
    height: 75px;
}

.c-single .value {
    font-weight: 500;
    font-size: 40px;
    color: #fff;
    margin-top: 30px;
    line-height: 40px;
}

.c-single .name {
    font-weight: 300;
    font-size: 18px;
    line-height: normal;
    color: #fff;
    margin-top: 10px;

    span {
        padding-right: 10px;
    }
}

.c-single .count-btn {
    border-radius: 20px;
    background: #d60d41;
    color: #fff;
    width: 65%;
    display: flex;
    padding: 0 20px;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    width: fit-content;
    margin: auto;
    padding: 10px 30px;
    transition: all .3s ease;

    &:hover {
        background: #ffffff;
        color: #1c3f7f;

    }
}

.c-single .icon-btn {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: 15px;
}

.c-single .count-btn img {
    height: 12px;
    margin-left: 10px;
}

.home-news {
    padding: 100px 0;
}

.home-news .title {
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    color: #104386;
}

.home-news .desc {
    font-size: 18px;
    font-weight: 200;
    color: #4E4546;
    margin-top: 50px;
}

.news-desc-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 100px;
}

.detail-btn {
    background: #E01E4F;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 10px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    width: fit-content;
    transition: all .3s ease;
    color: #fff;
}

.detail-btn:hover {
    color: #fff;
    background: #114386;
}

.detail-btn:hover svg {
    /* transform: rotate(45deg); */
}

/* .detail-btn:hover svg path {
    stroke: #fff;
} */

.detail-btn svg {
    width: 21px;
    height: 21px;
    margin-left: 20px;
    transition: all .3s ease;
}

.news-slider {
    margin-right: -35%;
}

.news-slider .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.n-s-slide {
    margin: 0 15px;
}

.n-s-slide .tags {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.n-s-slide .tags span:first-of-type {
    padding: 5px 10px;
    border: 1px solid #A99E9B;
    border-radius: 5px;
    margin-right: 10px;
}

.n-s-slide .tags span {
    font-size: 12px;
    font-weight: 400;
}

.n-s-slide .img img {
    border-radius: 10px;
}

.slide-tools .numbers {
    font-size: 64px;
    font-weight: 500;
    color: #104386;
}

.slide-tools .prev-btn,
.slide-tools .next-btn {
    width: 30px;
    height: 30px;
    background: #f4f3f2;
    text-align: center;
    line-height: 30px;
    float: left;
    cursor: pointer;
    transition: all .3s ease;
}

.slide-tools .prev-btn:hover,
.slide-tools .next-btn:hover {
    background: #E01E4F;
}

.slide-tools .prev-btn:hover svg path,
.slide-tools .next-btn:hover svg path {
    stroke: #F4F3F2;
}

.slide-tools .next-btn {
    transform: rotateY(180deg);
}

.news-scrollbar {
    width: 100%;
    height: 10px;
    background: #E3DFDE;
    margin-top: 10px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.news-scrollbar .bar-value {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #E01E4F;
    width: 50%;
    transition: all .3s ease;
}

.home-product {

    .title {
        font-size: 48px;
        font-weight: 600;
        line-height: 48px;
        color: #104386;
    }

    .home-p-boxes {
        margin-top: 30px;

        .box {
            border: 1px solid #dfdede;
            border-radius: 24px;
            padding: 24px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: self-start;
            background: #ecf2f9;

            .h-p-arrow {
                height: 48px;
            }

            .other-brand {
                margin-top: 30px;
            }

            .info {
                font-weight: 300;
                font-size: 16px;
                color: #26231e;
                display: flex;
                align-items: flex-end;
                justify-content: space-between;
                margin-top: 20px;
            }

            .btn {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: flex-end;
                margin-top: 30px;

                img {
                    height: 30px;
                    margin-left: 10px;
                }
            }
        }
    }
}

.home-sustainable {
    padding: 70px 0
}

.home-sustainable .title {
    font-size: 48px;
    font-weight: 600;
    line-height: 48px;
    color: #104386;
}

.home-sustainable .desc {
    font-size: 18px;
    font-weight: 200;
    color: #104386;
    margin-top: 30px;
}

.big-link {
    font-size: 32px;
    font-weight: 600;
    display: block;
    padding: 15px 0;
    border-bottom: 2px solid #E3DFDE;
    display: flex;
    align-items: center;
    transition: all .3s ease;
    color: #E01546;
    overflow: hidden;

    .icon {
        border: 1px solid #e3dfde;
        padding: 5px 15px;
        border-radius: 20px;
        line-height: 0px;
        margin-right: 15px;
        margin-left: -60px;
        transition: all .3s ease;

        svg {
            width: 20px;
            height: 20px;
            transition: all .3s ease;
            transform: rotate(45deg);
        }
    }
}

.big-link:hover {

    .icon {
        margin-left: 0;
    }
}

.big-link:hover svg {
    transform: rotate(45deg);

    path {
        stroke: #114386;
    }
}

.big-link span {
    transition: all .3s ease;
}

.big-link:hover span {
    color: #114386;
}

.big-link svg path {
    stroke: #E3DFDE;
    transition: all .3s ease;
}

.home-globe {
    padding: 100px 0;
}

.home-globe .title {
    font-family: var(--second-font);
    font-size: 48px;
    font-weight: 600;
    line-height: 48px;
}

.home-globe .desc {
    font-size: 18px;
    font-weight: 200;
    color: #4E4546;
    margin-top: 50px;
}

.home-portfolio {
    padding: 100px 0;
    position: relative;
}

.port-slider .slick-list {
    overflow: visible;
}

.p-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;

}

.p-slide .big-img {
    margin-top: -140px;
    margin-bottom: -180px;
    filter: drop-shadow(0px 20px 20px rgba(0, 0, 0, .3));
    float: right;
    width: 100%;
}

.p-slide .subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #F4F3F2;
    border-bottom: 1px solid #ffffffb4;
    padding-bottom: 10px;
    width: fit-content;
    padding-right: 15px;
}

.p-slide .title {
    font-family: var(--second-font);
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    margin-top: 40px;
}

.p-slide .desc {
    font-family: DM Sans;
    font-size: 18px;
    font-weight: 200;
    color: #fff;
    margin-top: 50px;
}

.port-arrows .prev-btn,
.port-arrows .next-btn {
    width: 45px;
    height: 45px;
    backdrop-filter: blur(3px);
    text-align: center;
    line-height: 42px;
    border-radius: 10px;
    float: left;
    cursor: pointer;
    transition: all .3s ease;
    background-color: #ffffff33;
}

.port-slide-tools {
    position: relative;
    margin-top: 40px;
}

.port-arrows svg path {
    stroke: #90827F;
}

.port-arrows svg {
    width: 25px;
    height: 25px;
}

.port-arrows .prev-btn:hover svg path,
.port-arrows .next-btn:hover svg path {
    stroke: #F4F3F2;
}

.port-arrows .next-btn {
    transform: rotateY(180deg);
    margin-left: 15px;
}

.home-last {
    padding: 150px 0;
}

.home-last .title {
    font-family: var(--second-font);
    font-size: 48px;
    font-weight: 600;
    line-height: 48px;
}

.home-last .desc {
    font-size: 18px;
    font-weight: 200;
    color: #4E4546;
    margin-top: 50px;
}

.home-last .big-link {
    font-family: var(--second-font);
    font-size: 32px;
    font-weight: 600;
    display: block;
    padding: 15px 0;
    border-bottom: 2px solid #E3DFDE;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #AE0338;
    transition: all .3s ease;
}

.home-last .big-link:hover {
    padding-left: 40px;
}

.home-last .big-link svg {
    width: 32px;
    height: 32px;
}

.home-last .big-link svg path {
    stroke: #E3DFDE;
}

footer {
    background: #012B5B;
    padding: 50px 0 30px 0;

    hr {
        margin: 25px 0;
        color: inherit;
        border: 0;
        opacity: 1;
        border-top: 1px solid #FFFFFF80;
    }
}

footer .foot-logo {
    width: 114px;
}

.foot-menu {
    padding: 0;
    margin: 0;
    float: left;
    width: 100%;
}

.foot-menu li {
    margin-bottom: 5px;
}

.foot-menu li a {
    color: #C8C2C0;
    font-size: 16px;
    font-weight: 400;

}

.back-to-top {
    color: #F4F3F2;
    border: 1px solid #FFFFFF80;
    font-size: 18px;
    font-weight: 200;
    display: flex;
    align-items: center;
    text-align: center;
    width: fit-content;
    padding: 10px 25px;
    border-radius: 10px;
}

.back-to-top img {
    margin-left: 15px;
}

.foot-social {
    float: left;
    margin-right: 20px;

    img {
        height: 30px;
    }
}

.foot-desc {
    color: #FFFFFF80;
    font-weight: 200;
    font-size: 18px;

    p {
        margin-bottom: 0;
        padding-right: 20px;
    }
}

.copyright {
    font-size: 18px;
    font-weight: 200;
    color: #FFFFFF80;
    border-top: 1px solid #FFFFFF80;
    margin-top: 25px;
    padding-top: 25px;

    .copy-info {
        font-size: 14px;
    }
}

.page-header {
    position: relative;
    text-align: center;
    background-size: cover;
    background-position: top center;
    padding: 250px 0 100px 0;
    color: #fff;
}

.page-title {
    font-size: 72px;
    font-weight: 500;
    text-align: center;
}

.page-header .desc {
    font-size: 18px;
    font-weight: 200;
}

.page-header .line {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translate(-50%, 0);
}

.about-first {
    padding: 100px 0 50px 0;
}

.red-btn {
    border: 1px solid #F60844;
    color: #F60844;
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 15px;
    display: inline-block;
}

.about-s {
    border: 1px solid #F4F3F2;
    box-shadow: 0px 3px 8px 0px #0000000D, 0px 14px 14px 0px #0000000A, 0px 31px 19px 0px #00000008, 0px 56px 22px 0px #00000003, 0px 87px 24px 0px #00000000;
    padding: 32px;
    border-radius: 8px;
}

.about-slider {
    position: relative;
    padding-bottom: 50px;
}

.big-img {
    width: 70%;
    float: right;

}

.slide-info {
    width: 30%;
    background: #fff;
    padding-right: 30px;
    position: relative;
    bottom: 0;
    float: left;
    padding-bottom: 60px;
}

.slide-info .title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 40px;
    color: #E01546;
}


.about-slider {

    .slide-bottom {
        position: absolute;
        left: 30px;
        bottom: 30px;
        width: 20%;
    }

    .news-arrow {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .slide-tools .numbers {
        font-weight: 500;
        font-size: 16px;
        color: #52525B;

        span:last-of-type {
            font-weight: 300;
            font-size: 16px;
        }
    }
}

.s-about {
    position: relative;


    .desc {
        font-size: 18px;
        font-weight: 400;
        line-height: 23.44px;
        color: #104386;
    }
}

.about-slider .slick-list {
    overflow: visible;
}

.about-last {
    padding: 100px 0;
}

.about-last .box-wrap {
    padding: 30px;
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 20px;
}

.about-last .box-wrap .title {
    font-family: var(--second-font);
    font-size: 40px;
    font-weight: 600;
}

.about-last .box-wrap .subtitle {
    font-size: 14px;
    font-weight: 500;
}

.mini-title {
    font-size: 22px;
    font-weight: 500;
    color: #AE0338;
}

.detail-first {
    padding: 100px 0;
}

.detail-second {
    padding-bottom: 100px;
}

.info-box {
    text-align: center;
    position: absolute;
    background: #fff;
    padding: 20px 80px;
    border-radius: 20px;
    right: 30px;
    bottom: -70px;
    box-shadow: var(--box-shadow);
}

.info-box .title {
    font-family: var(--second-font);
    font-size: 40px;
    font-weight: 600;

}

.info-box .desc {
    font-size: 14px;
    font-weight: 200;

}

.contact-info-wrap .title {
    font-size: 48px;
    font-weight: 600;
}

.accordion {
    margin-top: 50px;
}

.contact-info-wrap .accordion-collapse {
    background: #F4F3F2;
}

.contact-info-wrap .accordion-button {
    font-size: 18px;
    font-weight: 700;
    padding: 30px;
}

.contact-info-wrap .accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border: 1px solid #C8C2C0;
    border-radius: 0 !important;
    margin-bottom: 30px;
}

.accordion-item>.accordion-header .accordion-button {
    border-radius: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #f4f3f2;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion .c-title {
    font-size: 22px;
    font-weight: 600;
    color: #AE0338;
}

.accordion-body {
    padding: 0px 30px 30px 30px;
}

.c-info-wrap a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}

.form-wrap {
    padding-left: 50px;
}

form label {
    font-size: 14px;
    font-weight: 300;
    color: #90827F;
    width: 100%;
}

form input,
form select,
form textarea {
    border: 1px solid #E3DFDE;
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 300;
    color: #4E4546;
    background: transparent;
}

form textarea {
    height: 200px;
    padding: 15px;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: 0;
    box-shadow: none;
    border: 1px solid #5f5f5f;
}

.onay-wrap input {
    width: fit-content;
    margin-right: 15px;
}

.onay-wrap {
    display: flex;
    align-items: center;
}

form button {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #d60d41;
    border: 0;
    padding: 15px 50px;
    width: max-content !important;
    display: inline-block;
    border-radius: 10px;
}

.newsletter {
    background: #2C2728;
    color: #fff;
    padding: 70px 0;
    border-bottom: 1px solid #5A4E4F;
}

.newsletter .title {
    font-family: var(--second-font);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
}

.newsletter input {
    border-color: #5A4E4F;
    color: #fff;
}

/* CHECKBOX */

.checkbox-wrapper {
    box-sizing: border-box;
    --background-color: #fff;
    --checkbox-height: 17px;
    margin-right: 15px;
}

@-moz-keyframes dothabottomcheck-19 {
    0% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}

@-webkit-keyframes dothabottomcheck-19 {
    0% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}

@keyframes dothabottomcheck-19 {
    0% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}

@keyframes dothatopcheck-19 {
    0% {
        height: 0;
    }

    50% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}

@-webkit-keyframes dothatopcheck-19 {
    0% {
        height: 0;
    }

    50% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}

@-moz-keyframes dothatopcheck-19 {
    0% {
        height: 0;
    }

    50% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}

.checkbox-wrapper input[type=checkbox] {
    display: none;
}

.checkbox-wrapper .check-box {
    height: var(--checkbox-height);
    width: var(--checkbox-height);
    background-color: transparent;
    border: calc(var(--checkbox-height) * .1) solid #E3DFDE;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: border-color ease 0.2s;
    -o-transition: border-color ease 0.2s;
    -webkit-transition: border-color ease 0.2s;
    transition: border-color ease 0.2s;
    cursor: pointer;
}

.checkbox-wrapper .check-box::before,
.checkbox-wrapper .check-box::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    height: 0;
    width: calc(var(--checkbox-height) * .2);
    background-color: #34b93d;
    display: inline-block;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    border-radius: 5px;
    content: " ";
    -webkit-transition: opacity ease 0.5;
    -moz-transition: opacity ease 0.5;
    transition: opacity ease 0.5;
}

.checkbox-wrapper .check-box::before {
    top: calc(var(--checkbox-height) * .72);
    left: calc(var(--checkbox-height) * .41);
    box-shadow: 0 0 0 calc(var(--checkbox-height) * .05) var(--background-color);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.checkbox-wrapper .check-box::after {
    top: calc(var(--checkbox-height) * .37);
    left: calc(var(--checkbox-height) * .05);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.checkbox-wrapper input[type=checkbox]:checked+.check-box,
.checkbox-wrapper .check-box.checked {
    border-color: #34b93d;
}

.checkbox-wrapper input[type=checkbox]:checked+.check-box::after,
.checkbox-wrapper .check-box.checked::after {
    height: calc(var(--checkbox-height) / 2);
    -moz-animation: dothabottomcheck-19 0.2s ease 0s forwards;
    -o-animation: dothabottomcheck-19 0.2s ease 0s forwards;
    -webkit-animation: dothabottomcheck-19 0.2s ease 0s forwards;
    animation: dothabottomcheck-19 0.2s ease 0s forwards;
}

.checkbox-wrapper input[type=checkbox]:checked+.check-box::before,
.checkbox-wrapper .check-box.checked::before {
    height: calc(var(--checkbox-height) * 1.2);
    -moz-animation: dothatopcheck-19 0.4s ease 0s forwards;
    -o-animation: dothatopcheck-19 0.4s ease 0s forwards;
    -webkit-animation: dothatopcheck-19 0.4s ease 0s forwards;
    animation: dothatopcheck-19 0.4s ease 0s forwards;
}

/* CHECKBOX */

.newsletter .onay-wrap {
    margin-top: 15px;
}

.newsletter .checkbox-wrapper .check-box {
    border: calc(var(--checkbox-height)* .1) solid #5a4e4f;
}

.newsletter .checkbox-wrapper .check-box::before {
    box-shadow: 0 0 0 calc(var(--checkbox-height)* .05) #2c2728;
}

.newsletter .checkbox-wrapper {
    margin-top: 5px;
}

.foot-menu .title {
    font-size: 20px;
    font-weight: 600;
    color: #F4F3F2;

    a {
        font-size: 20px;
        font-weight: 600;
        color: #F4F3F2;
    }
}

.more-than-shape {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.home-intellectual {
    padding-bottom: 70px;
    padding-top: 40px;

    .h-i-wrap {
        background: #fff;
        box-shadow: 0px 3px 8px 0px #0000000D, 0px 14px 14px 0px #0000000A, 0px 31px 19px 0px #00000008, 0px 56px 22px 0px #00000003, 0px 87px 24px 0px #00000000;
        border-radius: 20px;
        padding: 30px 40px;
    }

    .h-i-bg {
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .i-card {
        padding: 50px 30px;

        .title {
            font-size: 48px;
            font-weight: 600;
            line-height: 48px;
            color: #104386;
            margin-bottom: 30px;
        }

        .desc {
            font-size: 18px;
            font-weight: 400;
            line-height: 23.44px;
            color: #104386;
            margin-bottom: 50px;
        }

        .icons {
            display: flex;
            align-items: center;

            .i-wrap {
                width: 50%;

                span {
                    font-weight: 700;
                    font-size: 16px;
                    color: #E01546;

                }

                img {
                    width: 56px;
                    height: 56px;
                    object-fit: contain;
                    margin-right: 10px;
                }

                a {
                    display: flex;
                    align-items: center;
                }
            }

            .i-wrap:first-of-type {
                /* border-right: 1px solid #E3DFDE; */
                padding-left: 0;
            }
        }
    }
}

.home-thinking {

    .title {
        font-size: 48px;
        font-weight: 600;
        line-height: 48px;
        color: #104386;
        margin-bottom: 30px;

    }

    .desc {
        font-size: 18px;
        font-weight: 400;
        line-height: 28.8px;
        margin-bottom: 50px;
        color: #104386;
    }

    .icons {
        display: flex;
        align-items: center;

        .i-wrap {
            width: 50%;

            span {
                font-weight: 700;
                font-size: 16px;
                color: #E01546;

            }

            img {
                width: 56px;
                height: 56px;
                object-fit: contain;
                margin-right: 10px;
            }

            a {
                display: flex;
                align-items: center;
            }
        }

        .i-wrap:first-of-type {
            /* border-right: 1px solid #E3DFDE; */
            padding-left: 0;
        }
    }
}

.about-first p {
    color: #104386;
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;

}

.about-firms {
    padding: 50px 0;

    .box {
        /* border: 1px solid #E3DFDE; */
        padding: 30px;
        border-radius: 20px;

        .title {
            font-size: 32px;
            font-weight: 700;
            line-height: 41.66px;
            color: #104386;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;

            img {
                height: 8px;
            }
        }

        .desc {
            font-size: 18px;
            font-weight: 300;
            line-height: 23.44px;
        }
    }

}

.our-philosophy {
    margin-bottom: 100px;
    scroll-margin: 200px;

    .title {
        font-size: 60px;
        font-weight: 700;
        color: #E01E4F;
        margin-bottom: 50px;
    }

    .desc {
        font-size: 18px;
        font-weight: 400;
        line-height: 28.8px;
        color: #104386;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;

        img {
            width: fit-content;
        }
    }
}

.our-vision {


    .box {
        padding: 30px;
        border: 1px solid #C8C2C0;
        border-radius: 20px;
        display: flex;
        gap: 50px;
        position: relative;

        .title {
            font-size: 32px;
            font-weight: 700;
            line-height: 41.66px;
            color: #104386;
            margin-bottom: 30px;

            img {
                height: 8px;
                margin-left: 10px;
            }
        }

        .desc {
            font-size: 18px;
            font-weight: 400;
            line-height: 28.8px;
            color: #104386;
        }

        .left,
        .right {
            width: 50%;
            position: relative;
        }

        .right img {
            width: 100%;
            object-fit: cover;
            border-radius: 20px;
        }
    }


}

.our-mission {
    margin-top: 50px;

    .box {
        padding: 30px;
        border: 1px solid #C8C2C0;
        border-radius: 20px;
        display: flex;
        gap: 50px;
        position: relative;

        .title {
            font-size: 32px;
            font-weight: 700;
            line-height: 41.66px;
            color: #104386;
            margin-bottom: 30px;

            img {
                height: 8px;
                margin-right: 10px;
            }
        }

        .desc {
            font-size: 18px;
            font-weight: 400;
            line-height: 28.8px;
            color: #104386;
        }

        .left,
        .right {
            width: 50%;
            position: relative;
        }

        .left img {
            width: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .right {
            text-align: right;
        }
    }


}

.sfg-investment {
    background: #F4F3F2;
    padding: 30px 0;
    margin: 100px 0 150px 0;

    .title {
        font-size: 48px;
        font-weight: 700;
        line-height: 62.5px;
        color: #E01E4F;
        text-align: center;
    }

    .box {
        box-shadow: 0px 1px 3px 0px #0000000A, 0px 6px 6px 0px #00000008, 0px 13px 8px 0px #00000005, 0px 24px 10px 0px #00000003, 0px 37px 10px 0px #00000000;
        background: #fff;
        border-radius: 20px;
        padding: 15px;
        height: 100%;
        text-align: center;

        span {
            font-size: 16px;
            font-weight: 700;
            line-height: 20px;
            color: #104386;
            margin-top: 15px;
            display: block;
            margin-bottom: 15px;
        }

        .icon {
            width: 80px;
            height: 80px;
            background: #1263B7;
            padding: 20px;
            border-radius: 50%;
            margin: -50px auto 0 auto;
        }

    }

    .box-list {
        margin-bottom: -100px;
        margin-top: 50px;
    }
}

.our-firms-first {
    padding: 100px 0 50px 0;

    .box {

        .title {
            font-size: 40px;
            font-weight: 700;
            line-height: 56px;
            color: #E01546;
            text-align: center;
            margin-bottom: 30px;
        }

        .desc {
            font-size: 18px;
            font-weight: 400;
            line-height: 28.8px;
            color: #104386;
            text-align: center;
        }
    }
}

.our-firms-brand-list {
    margin-top: -350px;
    position: relative;
    z-index: 2;

    .box {
        background: #fff;
        border: 1px solid #E3DFDE;
        border-radius: 20px;
        padding: 20px;
        min-height: 315px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        transition: all .3s ease;

        .tools {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
    }

    .box.active,
    .box:hover {
        box-shadow: 0px 7px 15px 0px #E01D4F1A, 0px 27px 27px 0px #E01D4F17, 0px 60px 36px 0px #E01D4F0D, 0px 107px 43px 0px #E01D4F03, 0px 167px 47px 0px #E01D4F00, 0px -4px 34px 0px #E01E4F80;
    }
}

.our-firms-slide-area {
    margin-top: -50px;
    margin-bottom: 100px;

    .o-slide {
        display: none;
    }

    .o-slide.active {
        display: block;
    }
}

.corporate-governance {
    padding: 100px 0;

    .title {
        font-size: 40px;
        font-weight: 700;
        line-height: 56px;
        color: #E01546;
        margin-bottom: 50px;
        text-align: center;
    }

    .mini-title {
        font-family: var(--first-font);
        font-size: 24px;
        font-weight: 700;
        line-height: 31.25px;
        color: #104386;
        margin-bottom: 30px;
    }

    .desc {
        font-size: 18px;
        font-weight: 400;
        line-height: 28.8px;
        color: #104386;
    }
}

.menu-btn,
.mobile-menu {
    display: none;
}

.o-mobile {
    display: none;
}

.o-desk {
    display: block;
}

.p-b-s {

    .desc-wrap {
        background: #ECF4FF;
        padding: 50px;
        border-radius: 20px;
        margin-top: 100px;
        position: relative;
        display: flex;
        align-items: center;

        .title {
            color: #104386;
            font-family: DM Sans;
            font-weight: 700;
            font-size: 40px;
            line-height: 50px;
        }

        .desc {
            font-weight: 400;
            font-size: 18px;
            color: #104386;
            margin-top: 30px;
        }

        .ptd {
            width: 45%;
            padding-right: 50px;
        }

    }

    .list-wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
        width: 55%;

        .title {
            font-weight: 700;
            font-size: 30px;
            line-height: 41.66px;
            color: #E01546;

        }

        .desc {
            margin-top: 15px;
        }

        .box {
            padding: 30px;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0px 4px 10px 0px #0000000D, 0px 17px 17px 0px #0000000A, 0px 39px 23px 0px #00000008, 0px 69px 28px 0px #00000003, 0px 108px 30px 0px #00000000;
            border: 1px solid #E3DFDE;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }
    }

    .pbs-shape {
        position: absolute;
        top: 15%;
        left: 33%;
        transform: translate(-50%, 0);
    }

    .box-close-btn {
        background: #104386;
        padding: 10px 20px;
        color: #fff;
        display: flex;
        align-items: center;
        width: fit-content;
        border-radius: 15px;
        font-size: 15px;
        margin-top: 30px;

        span {
            margin-left: 10px;
        }
    }
}

.p-b-s-2 {

    .desc-wrap {
        background: #ECF4FF;
        padding: 50px;
        border-radius: 20px;
        margin-top: 100px;
        position: relative;
        display: flex;
        align-items: center;

        .title {
            color: #104386;
            font-family: DM Sans;
            font-weight: 700;
            font-size: 40px;
            line-height: 50px;
        }

        .desc {
            font-weight: 400;
            font-size: 18px;
            color: #104386;
            margin-top: 30px;
        }

        .ptd {
            width: 45%;
            padding-left: 50px;
        }

    }

    .list-wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
        width: 55%;

        .title {
            font-weight: 700;
            font-size: 30px;
            line-height: 41.66px;
            color: #E01546;

        }

        .desc {
            margin-top: 15px;
        }

        .box {
            padding: 30px;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0px 4px 10px 0px #0000000D, 0px 17px 17px 0px #0000000A, 0px 39px 23px 0px #00000008, 0px 69px 28px 0px #00000003, 0px 108px 30px 0px #00000000;
            border: 1px solid #E3DFDE;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }
    }

    .pbs-shape {
        position: absolute;
        top: 15%;
        right: 0;
        transform: translate(-50%, 0);
    }

    .box-close-btn {
        background: #104386;
        padding: 10px 20px;
        color: #fff;
        display: flex;
        align-items: center;
        width: fit-content;
        border-radius: 15px;
        font-size: 15px;
        margin-top: 30px;

        span {
            margin-left: 10px;
        }
    }
}

.sp-in-venture-nexus {

    .box {
        box-shadow: 0px 5px 11px 0px #0000000A, 0px 20px 20px 0px #00000008, 0px 44px 27px 0px #00000005, 0px 79px 32px 0px #00000003, 0px 123px 34px 0px #00000000, 0px 4px 40px 0px #00000040;
        background: #fff;
        padding: 50px 30px;
        border-radius: 20px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;

        .title {
            font-weight: 400;
            font-size: 32px;
            line-height: 44.8px;
            color: #E01546;
            margin-bottom: 15px;
        }

        .mini-title {
            font-weight: 700;
            font-size: 32px;
            line-height: 44.8px;
            color: #104386;
            margin-bottom: 30px;
        }

        .box-icon {
            margin-bottom: 30px;
            height: 90px;
            width: fit-content;
        }

        .tools {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;

            span {
                font-weight: 400;
                font-size: 20px;
                line-height: 30px;
                color: #104386;

            }
        }
    }

    .mini-desc {
        font-weight: 400;
        font-size: 16px;
        line-height: 25.6px;
        color: #104386;
    }

    .seperator {
        width: 60%;
        height: 80px;
        margin-top: 50px;
        border-bottom: 2px solid #104386;
        position: relative;
    }

    .seperator::after {
        content: '';
        position: absolute;
        height: 100%;
        width: 2px;
        background: #104386;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .box-content {
        box-shadow: 0px 5px 11px 0px #0000000A, 0px 20px 20px 0px #00000008, 0px 44px 27px 0px #00000005, 0px 79px 32px 0px #00000003, 0px 123px 34px 0px #00000000, 0px 4px 40px 0px #00000040;
        background: #fff;
        padding: 50px 30px;
        border-radius: 20px;
        height: 100%;
        display: none;

        .box {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            box-shadow: none;
            background: none;
            padding: 0;
            width: 25%;
            border-right: 1px solid #e01546;
            border-radius: 0;
            padding-right: 30px;

            .title {
                font-weight: 400;
                font-size: 32px;
                line-height: 44.8px;
                color: #E01546;
                margin-bottom: 15px;
            }

            .mini-title {
                font-weight: 700;
                font-size: 32px;
                line-height: 44.8px;
                color: #104386;
                margin-bottom: 30px;
            }

            .box-icon {
                margin-bottom: 30px;
                height: 90px;
                width: fit-content;
            }

            .tools {
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-direction: column;
                align-items: start;

                span {
                    font-weight: 400;
                    font-size: 20px;
                    line-height: 30px;
                    color: #104386;

                }
            }
        }

        .big-content {
            width: 75%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding-left: 30px;

            .left {
                width: 25%;
                float: left;

                .mini-title {
                    font-weight: 700;
                    font-size: 25px;
                    line-height: 40px;
                    color: #104386;
                }
            }

            .right {
                width: 75%;
                float: left;
                font-weight: 400;
                font-size: 18px;
                color: #104386;
                padding-left: 30px;
            }

            .bottom {
                width: 100%;
            }
        }

        .box-button {
            background-color: #104386;
            display: flex;
            align-items: center;
            justify-content: end;
            width: 64px;
            border-radius: 38px;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            text-transform: capitalize;
            width: max-content;
            gap: 8px;
            padding: 16px 20px;
            min-height: 48px;
            border-radius: 8px;
            margin-top: 30px;
        }

        .box-button img {
            background-color: #FFF;
            border-radius: 50%;
            padding: 4px;
        }
    }
}

.opening-partnerships {
    .op-bg {
        background: #ECF4FF;
        padding: 70px;
        border-radius: 32px;

        .top-title {
            font-weight: 700;
            font-size: 32px;
            line-height: 44.8px;
            text-align: center;
            color: #104386;
            margin-bottom: 30px;
        }

        .top-desc {
            font-weight: 400;
            font-size: 16px;
            line-height: 25.6px;
            text-align: center;
            color: #104386;
            padding: 0 100px 30px 100px;
            border-bottom: 1px solid #104386;

        }

        .title {
            font-weight: 700;
            font-size: 32px;
            line-height: 44.8px;
            color: #E01546;
            display: flex;
            align-items: center;
            margin: 50px 0 30px 0;


            span {
                margin-left: 30px;
            }
        }

        .desc {
            font-weight: 400;
            font-size: 16px;
            line-height: 25.6px;
            color: #104386;
        }

    }

}

.npcm-desk {
    display: block;
}

.npcm-mobile {
    display: none;
}

.conclusion {
    margin-bottom: 100px;
    margin-top: 50px;

    .conc-bg {
        background-color: #104C8F;
        background-image: url(../img/conc-bg.png);
        padding: 70px;
        border-radius: 32px;
        color: #fff;
        background-position: right center;
        background-repeat: no-repeat;
        background-size: contain;

        .c-wrap {
            display: flex;
            align-items: center;

            .left {
                border-right: 1px solid #fff;
                padding-right: 15px;
            }

            .right {
                padding-left: 30px;
            }

            .left,
            .right {
                width: 50%;
            }
        }

        .title {
            font-weight: 700;
            font-size: 32px;
            line-height: 44.8px;
            margin-bottom: 30px;
        }

        .mini-title {
            font-weight: 700;
            font-size: 16px;
            line-height: 25.6px;
            color: #fff;
            margin-bottom: 30px;
        }

        .desc {
            font-weight: 400;
            font-size: 16px;
            line-height: 25.6px;
        }
    }
}

.vimdm-first {
    margin-bottom: 100px;

    .container {
        background: #ECF4FF;
        border-radius: 32px;

        .vmdm-1 {
            margin-right: -60px;
            margin-top: -30px;
            float: right;
        }

        .desc {
            font-weight: 400;
            font-size: 18px;
            line-height: 28.8px;
            color: #104386;
            padding: 50px;
        }
    }
}

.vimdm-second {
    .title {
        font-weight: 700;
        font-size: 40px;
        line-height: 56px;
        color: #E01546;
        margin-bottom: 50px;
    }

    .desc {
        font-weight: 400;
        font-size: 18px;
        line-height: 23.44px;
        color: #104386;
        padding-right: 100px;
    }
}

.sic-section {
    margin-bottom: 100px;

    .container {
        border: 1px solid #E3DFDE;
        background: #ECF4FF;
        box-shadow: 0px 4px 10px 0px #0000000D, 0px 17px 17px 0px #0000000A, 0px 39px 23px 0px #00000008, 0px 69px 28px 0px #00000003, 0px 108px 30px 0px #00000000;
        border-radius: 24px;
        padding: 70px 50px;

        .box-l,
        .box-r {
            padding-bottom: 30px;
            margin-bottom: 50px;

            .title {
                font-weight: 700;
                font-size: 32px;
                line-height: 32px;
                color: #E01546;
                display: flex;
                align-items: center;

                img {
                    margin-right: 30px;
                    height: 60px;
                }
            }

            .sic-btn {
                margin-top: 50px;
                display: block;
            }

            .desc {
                font-weight: 400;
                font-size: 18px;
                line-height: 28.8px;
                color: #104386;

                .mini-title {
                    font-weight: 700;
                    font-size: 18px;
                    line-height: 28.8px;
                    color: #0f4c8f;
                    margin-top: 50px;
                    margin-bottom: 30px;
                }
            }

            .box-button {
                background-color: #104386;
                display: flex;
                align-items: center;
                justify-content: end;
                width: 64px;
                border-radius: 38px;
                color: #fff;
                font-size: 14px;
                font-weight: 600;
                text-transform: capitalize;
                width: max-content;
                gap: 8px;
                padding: 16px 20px;
                min-height: 48px;
                border-radius: 8px;
                margin-top: 30px;
                display: none;
            }

            .box-button img {
                background-color: #FFF;
                border-radius: 50%;
                padding: 4px;
            }
        }

        .box-l:last-of-type,
        .box-r:last-of-type {
            border-bottom: 0;
            margin-bottom: 0;
        }

        .box-l.active,
        .box-r.active {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            .sic-btn {
                display: none;
            }

            .desc {
                display: block;
            }

            .box-button {
                display: block;
            }
        }


    }
}

.search-icon {
    margin-right: 20px;

    img {
        height: 20px;
    }
}

.search-area {
    position: fixed;
    top: 20%;
    z-index: 2;
    left: 50%;
    width: 50%;
    transform: translate(-50%, -900%);
    padding: 15px 20px;
    background-color: #2622234d;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all .3s ease;

    form {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    input {
        width: 90%;
        border: none;
        color: #fff;

        &:focus {
            outline: 0;
            box-shadow: none;
            border: 0;
        }

        &::placeholder {
            color: #ffffff9b;
        }
    }

    button {
        text-align: center;
        display: block !important;
        background: none;
        padding: 0 5px 0 0;
        width: 30px !important;
    }

    &.active {
        transform: translate(-50%, 0%);
    }
}

.login-wrap {
    padding: 100px 0;

    .desc {
        font-size: 17px;
    }

    .form-wrap {
        background: #f7f7f7;
        padding: 30px;
        border-radius: 30px;
        height: 100%;
    }

    .su-btn {
        background: #012b5b;
    }
}

.foot-doc {
    font-weight: 500;
    font-size: 14px;
    color: #E4E4E7;
    margin: 0 10px;
}

.login-menu {
    position: absolute;
    top: 90px;
    background: #555555;
    right: 20px;
    padding: 15px;
    visibility: hidden;
    opacity: 0;
    color: #fff;
    transition: all .5s ease;
    border-radius: 10px;

    a {
        width: 230px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px;

        img {
            transform: rotate(-90deg);
        }
    }
}

.cerez-izin {
    position: fixed;
    z-index: 999999;
    background: #ffffff;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 0;

    .title {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .info {
        display: flex;
        align-items: center;
        justify-content: space-between;

        .desc {
            width: 70%;
        }

        a {
            border: 2px solid #012b5b;
            padding: 10px 20px;
            border-radius: 40px;
        }
    }
}

.brand-slider {

    a {
        margin: 0 15px;
        height: 350px;
    }
}

.head-right {
    display: flex;
    align-items: center;
}

.login-page {
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.log-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    a.back-link {
        font-family: DM Sans;
        font-weight: 300;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #fff;

        img {
            transform: rotate(90deg);
            margin-right: 5px;
        }
    }
}

.log-form {
    padding: 50px 30px;
    background: #FFFFFF;
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .head {
        display: flex;
        align-items: center;
        margin-bottom: 50px;

        span {
            font-family: DM Sans;
            font-weight: 500;
            font-size: 18px;
            line-height: 140%;
            color: #11447b70;
            padding: 10px 30px;
            margin-left: 30px;
            border-left: 1px solid #E3DFDE;
        }
    }

    label {
        font-weight: 300;
        font-size: 14px;
        color: #90827F;
        display: block;
        margin-bottom: 5px;
    }

    input {
        font-weight: 300;
        font-size: 16px;
        line-height: 32px;
        color: #A99E9B;
        border: 1px solid #E3DFDE;
        border-radius: 10px;
        display: block;
        padding: 10px 15px;
        width: 350px;
        margin-bottom: 15px;
    }

    .btn-groups {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;

        a {
            font-weight: 400;
            font-size: 16px;
            color: #104386;
        }

        a:last-of-type {
            background: #DA1E4E;
            font-weight: 500;
            font-size: 16px;
            color: #fff;
            border-radius: 10px;
            padding: 10px 30px;
        }
    }
}

.firms-d-slider {
    margin-bottom: 100px;
    position: relative;

    .fd-single {
        margin: 0 15px;
    }

    .prev-arrow,
    .next-arrow {
        width: 40px;
        height: 40px;
        background: #F4F4F5;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        cursor: pointer;

        &:hover {
            background: #ce0c3f;

            svg path {
                stroke: #fff
            }
        }
    }

    .prev-arrow {
        left: 2%;
    }

    .next-arrow {
        right: 2%;
        transform: rotateY(-180deg);
    }
}

.invest-icon {
    height: 64px;
    margin-bottom: 15px;
}

.contact-sidebar {
    position: sticky;
    top: 150px;
    left: 0;

    a {
        font-weight: 400;
        font-size: 16px;
        color: #71717A;
        display: block;
        margin-bottom: 30px;
        transition: all .3s ease;

        &.active,
        &:hover {
            font-weight: 700;
            color: #1261A6;
        }
    }
}

.contact-info {
    display: flex;

    .info {
        width: 50%;
        padding-right: 50px;

        b {
            font-weight: 700;
            font-size: 18px;
            color: #1263B7;
            display: block;
            margin-bottom: 15px;
        }

        a {
            font-weight: 300;
            font-size: 18px;
            color: #4E4546;
            margin-bottom: 50px;
            display: block;
        }
    }

    .map {
        width: 50%;

        iframe {
            border-radius: 30px;
        }
    }
}

.factories-info-wrap {

    .f-info {
        border: 1px solid #E3DFDE;
        padding: 24px 32px;
        margin-bottom: 30px;

        .top {
            display: flex;
            justify-content: space-between;
            align-items: center;

            span {
                font-weight: 700;
                font-size: 18px;
                color: #4E4546;
                display: block;
                margin-bottom: 10px;

                &:nth-child(2) {
                    font-weight: 700;
                    font-size: 22px;
                    color: #AE0338;
                }

                &:nth-child(3) {
                    font-weight: 400;
                    font-size: 14px;
                    color: #4E4546;
                }
            }

            .show-btn {
                width: 30px;
                height: 30px;
                text-align: center;
                background: #ffffff;
                border-radius: 50%;
                font-size: 30px;
                line-height: 30px;
                cursor: pointer;
            }
        }

        .map {
            margin-top: 10px;
            display: none;
        }

        &.active {
            background: #F4F3F2;

            .map {
                display: block;
            }
        }
    }
}