@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --first-font: "Plus Jakarta Sans", serif;
    --blue-color: #1261A6
}

body {
    font-family: var(--first-font);
}
#hi{
    display: none;
}
a {
    text-decoration: none;
    color: inherit;
}

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

.pr-50 {
    padding-right: 50px;
}
.m-menu, .d-hide {
    display: none;
}
header {
    background: #FFFFFF;
    box-shadow: 0px 6px 13px 0px #0000000D, 0px 24px 24px 0px #0000000A, 0px 54px 32px 0px #00000008, 0px 96px 38px 0px #00000003, 0px 150px 42px 0px #00000000;
}

.mt-50 {
    margin-top: 50px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-200 {
    margin-top: 200px;
}

.mt-250 {
    margin-top: 250px;
}

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

.logo {
    height: 48px;
}

.main-head {
    padding: 30px 0;
    transition: top .5s ease;
    position: relative;
}

.main-head.sticky {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 9999;
    transition: top .5s ease;
    box-shadow: 0px 6px 13px 0px #0000000D, 0px 24px 24px 0px #0000000A, 0px 54px 32px 0px #00000008, 0px 96px 38px 0px #00000003, 0px 150px 42px 0px #00000000;
}

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

.main-menu ul {
    float: right;
}

.map {
    width: 100%;
    height: 450px;
}

.main-menu ul li a {
    font-size: 14px;
    font-weight: 500;
    color: #A1A1AA;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
    transition: all .3s ease;

    &:hover {
        color: #1261A6;
    }
}

.main-menu ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background: #1261A6;
    border-radius: 10px;
    width: 0%;
    transition: all .3s ease;
}

.main-menu ul li a:hover::after {
    width: 100%;
}

.main-menu ul li a.active {
    color: #1261A6;

    &::after {
        width: 100%;
    }
}

.top-head {
    padding: 15px 0;
    border-bottom: 1px solid #00000033;
}

.social-media a {
    margin-right: 10px;
}

.social-media a img {
    height: 20px;
}

#spinner {
    display: none;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.top-contact {
    font-size: 14px;
    font-weight: 400;
    color: #1261A6;
    display: flex;
    align-items: center;
    float: left;
    padding: 0 15px;
    border-right: 1px solid #0000001A;
}

.top-contact:first-of-type {
    border-left: 0;
}

.top-contact svg {
    height: 20px;
    margin-right: 10px;
}

.top-user {
    float: left;
    margin-left: 15px;
}

.top-user img {
    height: 20px;
}

.main-slider {
    position: relative;
}

.home-first {
    padding: 30px 0;

    .box {
        display: block;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        height: 100%;
        width: 100%;
        float: left;

        &.multiple {
            height: calc(50% - 0.75rem);
        }

        .bg {
            height: 100%;
            object-fit: cover;
        }

        .info {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 20px;
            z-index: 2;

            .date {
                font-weight: 300;
                font-size: 14px;
                color: #fff;
            }

            .name {
                font-weight: 700;
                font-size: 18px;
                color: #fff;
                line-height: 18px;
                margin-top: 10px;
            }
        }

        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40.97%, rgba(0, 0, 0, 0.518194) 62.98%, rgba(0, 0, 0, 0.6) 100%);
        }

        svg {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
        }
    }
}

.home-slider {
    padding: 50px 0;
    position: relative;

    .home-slider-wrap {
        padding: 30px;
        border-radius: 8px;
        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;

        .h-slide {
            display: flex;

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

                .title {
                    font-weight: 600;
                    font-size: 24px;
                    color: #1261A6;
                    margin-bottom: 30px;
                }

                .desc {
                    font-weight: 300;
                    font-size: 16px;
                    padding-left: 0;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-line-clamp: 4;
                    -webkit-box-orient: vertical;
                }
            }

            .img {
                width: 65%;
            }
        }
    }

    .slide-nums {
        position: absolute;
        left: 8%;
        bottom: 80px;
        display: flex;
        align-items: center;


        .nums {
            font-weight: 300;
            font-size: 16px;
            margin: 0 30px;

            b {
                font-weight: 600;
                font-size: 16px;
            }
        }

        .prev-btn,
        .next-btn {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #F4F4F5;
            transition: all .3s ease;
            cursor: pointer;

            &:hover {
                background: #2287D5;

                svg path {
                    stroke: #fff;
                }
            }
        }

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

    }
}

.twitterMain {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    .twitCol {
        padding: 0 20px 20px 0;
    }
}

.m-s-slide {
    height: 100vh;
    position: relative;
}

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

.m-s-slide .overlay {
    background: rgba(0, 0, 0, .6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slide-btn {
    font-size: 16px;
    font-weight: 600;
    color: #0F2743;
}

.m-s-slide .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    text-align: center;
}

.m-s-slide .title {
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    text-transform: uppercase;
}

.m-s-slide .title span {
    display: block;
    font-size: 40px;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.m-s-slide .slide-content p {
    font-family: Plus Jakarta Sans;
    font-size: 16px;
    font-weight: 300;
    color: #D4D4D8;
    margin-top: 30px;
}

.m-s-slide .slide-btn {
    font-size: 16px;
    font-weight: 600;
    color: #0F2743;
    background: #fff;
    padding: 15px 40px;
    border-radius: 10px;
    display: flex;
    margin: 40px auto 0 auto;
    text-transform: uppercase;
    width: fit-content;
    align-items: center;
}

.m-s-slide .slide-btn img {
    margin-left: 17px;
    height: 17px;
}

.main-slide-nav {
    position: absolute;
    bottom: 0;
    z-index: 2;
    left: 0;
    right: 0;
    width: 100%;
}

.s-ms-n {
    padding: 30px 50px;
    color: #fff;
    border-right: 1px solid #ffffff36;
    display: flex !important;
    align-items: center;
    position: relative;

    .slide-title {
        font-size: 15px;
        font-weight: 500;
        color: #a1a1aa;
        width: 200px;
        margin-left: 20px;
    }

    .slide-num {
        background: rgba(255, 255, 255, .1);
        width: 50px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        border-radius: 50%;
    }

    .loader {
        position: absolute;
        top: 0;
        left: 0;
        height: 3px;
        background: rgb(255 255 255 / 30%);
        width: 100%;
    }

    .loader .bar {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0%;
        background: #fff;
    }
}

.s-ms-n.slick-current {
    backdrop-filter: blur(20px);
    background: #ffffff2b;

    .slide-title {
        color: #fff;
    }

    .slide-num {
        background: rgba(0, 0, 0, .2);
    }
}

.mini-title {
    font-size: 16px;
    font-weight: 400;
    color: #A1A1AA;
}

.join-us {
    padding: 100px 0;
}

.join-us .section-title {
    font-size: 48px;
    font-weight: 800;
}

.section-title {
    margin-top: 15px;
    font-size: 32px;
    font-weight: 700;
}

.join-us p {
    font-size: 16px;
    font-weight: 400;
    color: #27272A;
}

.in-login-btn {
    padding: 15px 30px;
    background: var(--blue-color);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 30px;
    display: flex;
    align-items: center;
    width: fit-content;
}

.in-login-btn img {
    margin-right: 10px;
}

.why-us {
    position: relative;
}

.why-us video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
}

.why-us .overlay {
    background: linear-gradient(180deg, #143E65 0%, #093C72 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .95;
}

.why-us .content {
    padding: 100px;
    position: relative;
    z-index: 2;
}

.why-us .content .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #fafafa;
    margin-bottom: 100px;
}

.why-us .counter-wrap {
    background: rgba(255, 255, 255, .10);
    padding: 50px 30px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    box-shadow: 0px 22px 22px 0px #0000000A, 0px 50px 30px 0px #00000008, 0px 90px 36px 0px #00000003, 0px 140px 39px 0px #00000000, 0px 4px 4px 0px #00000040;
    backdrop-filter: blur(5px);
    text-align: center
}

.why-us .counter-wrap .big-num {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.why-us .counter-wrap .desc {
    font-size: 16px;
    font-weight: 500;
    color: #e4e4e7;
}

.why-us .counter-wrap .count-btn {
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    color: #d4d4d8;
    text-transform: uppercase;
    background: #00000033;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-top: 30px;
    border-radius: 5px;
}

.why-us .counter-wrap .count-btn svg {
    margin-left: 10px;
    fill: #fff;

    path {
        fill: #d4d4d8
    }
}

.why-us .col-lg-3:nth-of-type(even) .counter-wrap {
    margin-top: 100px;
}

.news {
    padding: 100px 0;
}

.all-news-btn {
    padding: 15px 30px;
    background: var(--blue-color);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 50px auto 0 auto;
    display: flex;
    align-items: center;
    width: fit-content;

    svg {
        margin-left: 10px;
    }
}

.news-slider {
    margin-top: 100px;
}

.news .section-title {
    font-size: 32px;
    font-weight: 700;

}

.news-slider .s-news {
    margin: 0 15px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    filter: grayscale(1);
    opacity: .5;
    transition: all .3s ease;


    .content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 30px;
        backdrop-filter: blur(5px);
        color: #fff;
        pointer-events: none;

        .date {
            font-size: 14px;
            font-weight: 300;
            margin-bottom: 10px;
        }

        .title {
            font-size: 20px;
            font-weight: 700;
            line-height: normal;
        }
    }

    .hover {
        background: #fff;
        color: #000;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: absolute;
        pointer-events: none;
        font-weight: 500;
        color: #0255c9;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        transition: opacity .3s ease;

    }

    a {
        cursor: none;
    }
}

.news-slider .s-news.slick-active {
    filter: grayscale(0);
    opacity: 1;
}

.logos {
    padding: 0 0 100px 0;

    .s-logo {
        padding: 50px;
    }
}

.home-video {
    padding: 100px 0;
    background: #F4F4F5;

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

    .desc {
        margin-top: 50px;
    }

    .home-video-w {
        border-radius: 10px;
        overflow: hidden;
        position: relative;

        .play-btn {
            width: 80px;
            display: inline-block;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(1);
            transition: all .3s ease;
            z-index: 2;
        }

        .play-btn:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }
    }
}

.newsletter {
    padding: 100px 0;
    background: #0F2743;
    border-bottom: 1px solid rgb(255 255 255 / 10%);

    .section-title {
        color: #fafafa;
    }

    label {
        font-size: 14px;
        font-weight: 500;
        color: #d4d4d8;
        display: block;
        margin-bottom: 5px;
    }

    input {
        width: 100%;
        display: block;
        height: 50px;
        background: rgb(255 255 255 / 10%);
        border: none;
        padding: 20px;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 400;
        color: #fff;
    }

    input::placeholder {
        color: rgba(255, 255, 255, .5);
    }

    .i-group {
        width: 70%;
    }

    button {
        font-size: 16px;
        font-weight: 600;
        background: #1261A6;
        color: #fff;
        border: none;
        padding: 10px 30px;
        border-radius: 5px;
        float: right;
        height: 50px;
        width: 25%;
    }

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

}

footer {
    padding: 50px 0 0 0;
    background: #0F2743;

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

    .foot-desc {
        color: #E4E4E7;

        .title {
            font-family: Plus Jakarta Sans;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
        }

        p {
            margin-top: 15px;
            font-size: 14px;
            font-weight: 400;
        }


    }

    .foot-social {
        text-align: right;

        a {
            margin-right: 15px;
        }
    }


    .foot-agree {
        font-size: 14px;
        font-weight: 500;
        color: #e4e4e7;
        display: inline-block;
        margin: 0 30px;
        position: relative;
    }

    .foot-agree::before {
        content: '●';
        position: absolute;
        top: 50%;
        right: -35px;
        transform: translate(0, -50%);
    }

    .foot-agree:last-of-type::before {
        content: none;
    }

    .copyright {
        background: #143E65;
        padding: 15px 0;
        margin-top: 30px;
        font-size: 14px;
        font-weight: 500;
        color: #C1DDF8;
    }

    .foot-menu {
        border-top: 1px solid #FFFFFF1A;
        margin-top: 50px;
        padding-top: 50px;

        a {
            font-weight: 400;
            font-size: 14px;
            color: #E4E4E7;
            padding: 5px 0;
            display: block;

            .footer-icon{
                margin-right : 5px
            }
        }

        .f-title {
            font-weight: 600;
            font-size: 16px;
            color: #fff;
            text-transform: uppercase;
        }
    }
}

.page-title {
    background-size: cover;
    padding: 240px 0 150px 0;
    position: relative;
    background-position: center;
}

.page-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
}

.page-title h1 {
    font-size: 88px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}

.bread-scroll {
    width: 64px;
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: 15px;
    z-index: 3;
    transform: translate(-50%, 0);
    mix-blend-mode: luminosity;
}

.detail-content {
    padding: 100px 0;
    display: flex;
    justify-content: space-between;
}

.detail-content .sidebar {
    width: 25%;
}

.detail-content .right-cont {
    width: 70%;
    padding-right: 100px;

    .vm-title {
        font-weight: 700;
        font-size: 24px;
        color: #1261A6;
        margin-bottom: 15px;
    }

    .desc {
        font-weight: 400;
        font-size: 16px;
        color: #27272A;
    }
}

.detail-content .counter-wrap {
    background: #fff;
    padding: 50px 30px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    text-align: center;
    box-shadow: 0px 5.45px 10.9px 0px #0000000D, 0px 19.99px 19.99px 0px #0000000A, 0px 45.44px 27.26px 0px #00000008, 0px 81.78px 32.71px 0px #00000003, 0px 127.22px 35.44px 0px #00000000;
}

.detail-content .counter-wrap .big-num {
    font-size: 64px;
    font-weight: 700;
    color: #1261A6;
    margin-bottom: 30px;
}

.detail-content .counter-wrap .desc {
    font-size: 16px;
    font-weight: 500;
    color: #A1A1AA;
}

.detail-content .counter-wrap .count-btn {
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    color: #27272A;
    text-transform: uppercase;
    background: #F4F4F5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-top: 30px;
    border-radius: 5px;
}

.detail-content .counter-wrap .count-btn svg {
    margin-left: 10px;
    fill: #27272A;

    path {
        fill: #27272A
    }
}

.count-img {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.detail-content {
    .home-video-w {
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        margin-top: 50px;

        .play-btn {
            width: 80px;
            display: inline-block;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(1);
            transition: all .3s ease;
            z-index: 2;
        }

        .play-btn:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }
    }
}

.sidebar-menu {
    position: sticky;
    top: 170px;
    left: 0;
}

.sidebar-menu li a {
    font-weight: 400;
    font-size: 16px;
    color: #71717A;
    padding-left: 80px;
}

/* .sidebar-menu li a::after {
    content: '';
    height: 0.5px;
    background: #D4D4D8;
    position: absolute;
    left: 0;
    width: 60px;
    top: 50%;
    transform: translate(0, -50%);
    transition: all .3s ease;
} */

.sidebar-menu li a.active {
    font-weight: 700;
    font-size: 16px;
    color: #1261A6;
}

.sidebar-menu li a:hover {
    color: #1261A6;
}

.sidebar-menu li a:hover::after {
    content: '';
    background: #1261A6;
    width: 90px;
}

.sidebar-menu li a.active::after {
    content: '';
    height: 2px;
    background: #1261A6;
    width: 90px;
}

.sidebar li:first-of-type {
    padding-top: 0;
}

.sidebar-menu li {
    padding: 20px 0;
}

.cont-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.cont-mini-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cont-desc {
    font-size: 14px;
    font-weight: 500;

}

.project-wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 12px 25px 0px #00000008, 0px 46px 46px 0px #00000008, 0px 104px 62px 0px #00000005, 0px 184px 74px 0px #00000000, 0px 288px 81px 0px #00000000;
    display: block;

    .p-img,
    .p-desc {
        width: 100%;
        float: left;
    }

    .p-desc {
        padding: 20px;

        .p-date {
            font-size: 14px;
            font-weight: 300;
        }

        .p-title {
            margin-top: 15px;
            font-size: 16px;
            font-weight: 700;
        }
    }
}

.s-vission {
    padding: 50px;
    text-align: center;
    box-shadow: 0px 5.45px 10.9px 0px #0000000D, 0px 19.99px 19.99px 0px #0000000A, 0px 45.44px 27.26px 0px #00000008, 0px 81.78px 32.71px 0px #00000003, 0px 127.22px 35.44px 0px #00000000;
    background: #fff;

    .icon {
        margin-bottom: 30px;
    }

    .icon img {
        height: 48px;
    }

    .v-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 30px;
    }
}

.s-goals {
    padding: 50px;
    text-align: center;
    box-shadow: 0px 5.45px 10.9px 0px #0000000D, 0px 19.99px 19.99px 0px #0000000A, 0px 45.44px 27.26px 0px #00000008, 0px 81.78px 32.71px 0px #00000003, 0px 127.22px 35.44px 0px #00000000;
    background: #fff;
    height: 100%;
    border-radius: 4px;

    .icon {
        margin-bottom: 30px;
    }

    .icon img {
        height: 64px;
    }

    .g-title {
        font-weight: 600;
        font-size: 16px;
        color: #000000;
    }

    .g-desc {
        font-weight: 400;
        font-size: 16px;
        color: #27272A;
        margin-top: 15px;
    }

    .g-desc ul {
        padding-left: 15px;
    }

    .g-desc ul li {
        list-style: disc;
        margin: 10px 0;


    }

    li::marker {
        font-size: .8em;
        color: #A1A1AA;
    }
}

.val-mini-title {
    font-weight: 700;
    font-size: 24px;
    color: #1261A6;
    margin-bottom: 50px;
}

.val-wrap {
    position: relative;
    width: 100%;
    float: left;

    .s-box {
        width: 50%;
        background: #fff;
        padding: 50px;
        box-shadow: 0px 8px 16px 0px #0000001A;
        position: relative;

        .title {
            font-size: 22px;
            font-weight: 700;
            color: #1261A6;
            margin-bottom: 30px;
        }

        .icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #1261A6;
            padding: 5px;
            position: absolute;
            right: -24px;
            top: 40px;
            z-index: 2;
            line-height: 34px;
        }

        .icon img {
            height: 30px;
        }
    }

    .s-val {
        display: block;
        width: 100%;
        float: left;
    }

    .s-val:nth-child(even) .s-box {
        float: right;

        .icon {
            right: auto;
            left: -24px;
        }
    }
}

.val-wrap::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 0;
    bottom: 0;
    width: 4px;
    background: #1261A6;
}

.principles-wrap {
    background: #fff;
    padding: 50px;
    box-shadow: 0px 5.45px 10.9px 0px #0000000D, 0px 19.99px 19.99px 0px #0000000A, 0px 45.44px 27.26px 0px #00000008, 0px 81.78px 32.71px 0px #00000003, 0px 127.22px 35.44px 0px #00000000;

    .title-w {
        display: flex;
        align-items: center;
        margin-bottom: 30px;

        .title {
            font-size: 16px;
            font-weight: 600;
            color: #1261A6;
            margin-left: 15px;

        }

        .icon {
            width: 60px;
        }
    }


}

.principles-wrap:not(:last-of-type) {
    margin-bottom: 50px;
}

.s-news {
    position: relative;
    display: block;

    img {
        border-radius: 5px;
    }

    .desc-wrap {
        padding: 30px;

        .date {
            font-size: 14px;
            font-weight: 300;
            color: #27272A;
        }

        .title {
            font-size: 16px;
            font-weight: 700;
            color: #27272A;
            margin-top: 10px;
        }
    }

    .tag {
        position: absolute;
        top: 15px;
        right: 15px;
        font-weight: 700;
        font-size: 14px;
        color: #fff;
        padding: 5px 20px;
        border-radius: 20px;
        background: #11619FE5;

        &.makale {
            background: #11619FE5;
        }

        &.haber {
            background: #119F30E5;
        }
    }
}

.news-detail {
    header {
        background: #143E65;
    }

    .detail-content {
        padding: 250px 0 100px 0;
    }

    .title {
        font-size: 32px;
        font-weight: 700;
        color: #27272A;
        margin-bottom: 50px;
    }

    .news-d-img {
        margin-bottom: 50px;
    }
}

.contact-content {
    padding: 100px 0;

    .title {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .b-desc {
        font-weight: 400;
        font-size: 14px;
        color: #27272A;
        margin-bottom: 30px;
    }

    .desc {
        font-weight: 400;
        font-size: 14px;
        color: #27272A;
    }

    label {
        font-size: 14px;
        font-weight: 500;
        display: block;
        margin-bottom: 5px;
    }

    input {
        width: 100%;
        font-size: 16px;
        font-weight: 400;
        border: 1px solid #E4E4E7;
        border-radius: 8px;
        padding: 20px 20px;
        transition: all .3s ease;
        margin-bottom: 30px;
    }

    input::placeholder,
    textarea::placeholder {
        font-size: 16px;
        font-weight: 400;
        color: #A1A1AA;
    }

    input:focus,
    textarea:focus {
        box-shadow: none;
        outline: 0;
        border: 1px solid #000;
    }

    textarea {
        border: 1px solid #E4E4E7;
        border-radius: 8px;
        padding: 20px 20px;
        transition: all .3s ease;
        width: 100%;
        height: 250px;
        resize: none;
    }

    .count {
        font-size: 14px;
        font-weight: 400;
        color: #a1a1aa;
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: #fff;
        padding: 10px;
    }

    .warning {
        font-size: 14px;
        font-weight: 400;
        color: #a1a1aa;
    }

    button {
        border: none;
        padding: 15px 40px;
        border-radius: 5px;
        background: #1261A6;
        color: #fff;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        margin-top: 30px;
    }

    iframe {
        border-radius: 16px;
        border: 1px solid #E4E4E7;
        box-shadow: 0px 5px 11px 0px #0000000D, 0px 21px 21px 0px #0000000A, 0px 47px 28px 0px #00000008, 0px 83px 33px 0px #00000003, 0px 129px 36px 0px #00000000;
    }
}

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

.onay-wrap {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

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

@-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;
}

.onay-wrap label {
    font-size: 16px;
    font-weight: 500;

    a {
        color: #1261A6;
        text-decoration: underline;
    }
}

.cont-info {
    padding: 30px;
    background: #fff;
    box-shadow: 0px 8px 16px 0px #0000001A;
    height: 100%;
    border-radius: 16px;

    .title {
        font-weight: 500;
        font-size: 14px;
        display: flex;
        align-items: center;

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

.home-join-us {
    padding: 200px 0;
    background: url(../img/join-us-bg.png) no-repeat;
    background-size: cover;
    background-position: bottom center;
    position: relative;

    .mini-title {
        font-weight: 400;
        font-size: 18px;
        color: #fff;
        position: relative;
        z-index: 1;
    }

    .title {
        font-weight: 800;
        font-size: 32px;
        color: #fff;
        position: relative;
        z-index: 1;
    }

    .desc {
        font-weight: 400;
        font-size: 16px;
        color: #FAFAFA;
        margin-top: 30px;
        padding-right: 50px;
        position: relative;
        z-index: 1;
    }

    .link-group {
        display: grid;
        align-items: center;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        position: relative;
        z-index: 1;

        a {
            text-align: center;
            background: #fff;
            display: inline-block;
            padding: 30px 40px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 18px;
            color: #1261A6;

            .name {
                margin-top: 15px;
            }
        }
    }

    .shape {
        position: absolute;
        top: 100px;
        width: 100%;
        left: 0;
    }
}

.home-feed {
    padding: 100px 0 50px 0;

    iframe {
        width: 100%;
        min-height: 671px;
    }
}

.target-wrap {

    .box {
        background: #FAFAFA;
        padding: 32px 40px;
        margin-bottom: 30px;
        transition: all .3s ease;

        .top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;

            .name {
                font-weight: 600;
                font-size: 16px;
                color: #2287D5;
            }

            .more-btn {
                width: 30px;
                height: 30px;
                border: 2px solid #1161a6;
                border-radius: 50%;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #A1A1AA;
                cursor: pointer;
                font-weight: 700;

                span {
                    margin-top: -3px;
                }
            }
        }

        .desc {
            font-weight: 300;
            font-size: 15px;
            color: #27272A;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }

        &.active {
            background: #F4F4F5;

            .desc {
                display: block;
            }

            span {
                transform: rotateX(180deg);
                margin-top: 3px !important;
            }
        }
    }
}

.president-message {

    .president {
        width: 300px;
        float: left;
        margin-right: 30px;
        margin-bottom: 15px;
    }

    b {
        display: block;
        margin-bottom: 30px;
    }

}

.bilgi-detail {

    .title {
        font-weight: 700;
        font-size: 32px;
        color: #27272A;
        margin-bottom: 50px;
    }

    .news-d-img {
        margin-bottom: 50px;
    }

    .tags {
        display: flex;
        align-items: center;
        background: #F4F4F5;
        padding: 8px 12px;
        width: fit-content;
        border-radius: 10px;
        float: left;
        margin: 10px;

        span {
            font-weight: 400;
            font-style: italic;
            font-size: 16px;
            color: #27272A;
            margin-left: 5px;
        }
    }

    .other-title {
        font-weight: 700;
        font-size: 32px;
        color: #27272A;
    }
}

.faaliyet-slider {
    position: relative;

    .navigation {
        padding: 0 30px;

        .nav-slide {
            background: #FAFAFA;
            font-weight: 400;
            font-size: 14px;
            padding: 15px 20px;
            border-right: 1px solid #F4F4F5;

            span {
                width: 20ch;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                display: block;
            }

            &.slick-center {
                border-bottom: 2px solid #1261A6;
                background: #F1F7FE;
                color: #1261A6;
            }
        }
    }

    .big-slider-wrap {
        border: 1px solid #F4F3F2;
        border-radius: 8px;
        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;
        position: relative;
        padding-bottom: 30px;
        margin-top: 30px;
    }

    .f-big-slider {


        .f-slide {
            padding: 32px;

            .title {
                font-weight: 700;
                font-size: 24px;
                color: #1261A6;
                margin-bottom: 40px;
            }

            .desc {
                font-weight: 300;
                font-size: 16px;
                color: #4E4546;
            }
        }
    }

    .nav-prev,
    .nav-next {
        position: absolute;
        background: #F4F4F5;
        width: 30px;
        top: 0;
        height: 51px;
        line-height: 51px;
        text-align: center;
    }

    .nav-prev {
        transform: rotateY(-180deg);
    }

    .nav-next {
        right: 0;
    }
}

.iklim-duyarliligi {

    .box {
        display: flex;
        align-items: center;
        width: 100%;
        float: left;
        margin-bottom: 30px;

        .num {
            background: radial-gradient(50% 50% at 50% 50%, #86DC06 0%, #71C200 100%);
            width: 200px;
            height: 200px;
            border-radius: 50%;
            display: flex;
            flex-shrink: 0;
            border: 10px solid #fff;
            text-align: center;
            position: relative;
            z-index: 2;
            font-family: Plus Jakarta Sans;
            font-weight: 700;
            font-size: 72px;
            text-align: center;
            color: #fff;
            align-items: center;
            justify-content: center;
        }

        .desc {
            background: #F8FFE5;
            padding: 30px 30px 30px 120px;
            border: 1px solid #DBFF95;
            border-radius: 20px;
            margin-left: -80px;
            width: 80%;

            .title {
                font-weight: 600;
                font-size: 18px;
                color: #71C200;
                margin-bottom: 15px;
            }

            p {
                font-weight: 400;
                font-size: 14px;
                color: #0F2743;
            }
        }

        &:nth-child(even) {
            flex-direction: row-reverse;

            .desc {
                background: #F8FFE5;
                padding: 30px 120px 30px 30px;
                border: 1px solid #DBFF95;
                border-radius: 20px;
                margin-right: -80px;
            }
        }
    }
}

.arrow-group {
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    margin-top: 50px;

    .big-arrow {
        background: #F4F4F5;
        width: 250px;
        display: flex;
        padding: 15px;
        align-items: center;
        min-height: 100px;
        cursor: pointer;

        img {
            margin-right: 15px;
            width: 40px;
        }

        span {
            font-family: Plus Jakarta Sans;
            font-weight: 600;
            font-size: 14px;
            color: #2287D5;
        }

        &:nth-child(2) {
            flex-direction: row-reverse;

            img {
                margin-right: 0;
                margin-left: 15px;
                transform: rotateY(180deg);
            }
        }
    }
}

.home-president {
    background: #FAFAFA;
    padding: 30px 0;
    position: relative;

    .wrap {
        background-image: url('../img/home-president-bg.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        position: relative;
        border-radius: 32px;
        overflow: hidden;
                padding: 50px;
        width: 100%;
        float: right;
                display: flex;
        align-items: center;
        justify-content: space-between;

        &::after {
            content: '';
            position: absolute;
            background: linear-gradient(270deg, rgba(18, 97, 166, 0.2) 0%, rgba(18, 97, 166, 0.4) 16.51%, rgba(18, 97, 166, 0.7) 45.83%, rgba(18, 97, 166, 0.8) 100%);
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            transform: rotateY(180deg);
        }

        .title,
        .btns,
        .desc {
            position: relative;
            z-index: 2;
        }

        .title {
            font-weight: 700;
            font-size: 24px;
            color: #fff;
            margin-bottom: 30px;
        }

        .desc {
            font-weight: 400;
            font-size: 16px;
            color: #fff;
        }

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

            a {
                background: #1261A6;
                font-weight: 600;
                font-size: 16px;
                color: #fff;
                padding: 16px 32px;
                border-radius: 4px;
                text-transform: uppercase;
                margin-top: -70px;
            }

            .name {
                text-align: left;
                margin:30px 0px 20px 0;

                h1 {
                    font-weight: 800;
                    font-size: 32px;
                    color: #fff;
                }

                span {
                    display: block;
                    font-weight: 400;
                    font-size: 16px;
                    color: #fafafa;
                }
                img {
                    margin-top: 15px;
                }
            }
        }
    }

    .president {
        width: 30%;
        position: relative;
        z-index: 2;
        margin-bottom: -50px;
        margin-right: 50px;
    }
}

.login-btn {
    font-size: 14px;
    font-weight: 500;
    color: #A1A1AA;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
    transition: all .3s ease;
    background: #1261A6;
    color: #fff;
    display: flex;
    align-items: center;
    border-radius: 4px;
    width: fit-content;
    float: right;
    padding: 12px 20px;

    span {
        margin: 0 10px;
    }

    .login-arrow {
        transform: rotateX(180deg);
    }
    &.active{

        .login-arrow {
        transform: rotateX(0deg);
    }
    }
}

.login-menu {
    background: #fff;
    border-radius: 4px;
    position: absolute;
    right: 6%;
    z-index: 22;
    top: 170px;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;

    &.active{
        opacity: 1;
        visibility: visible;

        
    }

    a {
        display: block;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        color: #27272A;
        padding: 20px;

        &:first-of-type {
            border-bottom: 1px solid #F4F4F5;
        }
    }
}

@media(max-width:969px) {

  header {
    position: relative;
  }

    .social-media{
        text-align: center;
        margin-bottom: 15px;
    }
    .justify-content-end {
        justify-content: center !important;
    }

    .top-contact {
        padding: 0 10px;
        border-right: 1px solid #0000001A;  
    }
    
    .top-contact:nth-child(2) {
        border: none;
    }

    .main-menu {
        display: none;
    }

    .login {
        display: none;
    }

        
   

    .home-president {
        .president {
            width: 80%;
            position: absolute;
            left: 10%;
            bottom: 0;
                        top: 50px;
        }
        .content{
                margin-top: 0px;
        }
        .wrap {
            border-radius: 24px;
            overflow: hidden;
            padding: 60px 20px 60px 20px;
            width: 100%;
            float: none;
            background-position: top;
            background-size: cover;

           .btns {
            display: block;
            align-items: center;
            padding-bottom: 90px;
            
            a {
                position: absolute;
                bottom: 10px;
            }

            .name {
                h1 {
                    font-weight: 800;
                    font-size: 28px;
                    color: #fff;
                }
            }
        }
    }
    }

    .home-slider {
        .home-slider-wrap {
            padding-bottom: 85px;
            .h-slide {
                display: block;
            
                .info {
                    width: 100%;
                    padding-right: 0px;
                }

                .img {
                    width: 100%;
                    margin-top: 30px;
                }
            }
        }

        .slide-nums {
        bottom: 90px;
        }
    }

    .home-feed {
        padding-top: 50px;
        

            iframe {
                width: 100%;
                min-height: 350px !important;
                margin-bottom: 30px;
            }
    }
    .news {
        padding: 50px 0;
    }
  

    .newsletter {
         padding: 80px 0;

        .section-title {
            margin-top: 15px;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
         }

        form {
        display: block;
            }
        
        .i-group {
        width: 100%;
        }

            button {
        float: none;
        height: 50px;
        width: 100%;
        margin: 20px 0 0 0;
        }
    
    }

   footer {
     text-align: center;

        .foot-social {
            text-align: center;
            padding-top: 30px;
        }

        .foot-menu {
            padding-top: 30px;
            
                .f-title {
                font-weight: 600;
                font-size: 18px;
                color: #fff;
                text-transform: uppercase;
                }

                a {
                    font-size: 16px;
                }
         }

    .foot-agree {
        width: 100%;
        padding: 10px;
        margin: 0;
    }

    .foot-agree::before {
        display: none;
        }
    }

   
    .text-end {
        text-align: center !important;
        padding-top: 20px;
    }
    .col {
        width: 100%;
        flex: none;
        padding-bottom: 20px;
    }

    #hi {
        display: block;
    }

    .menu {
        position: absolute;
        bottom: 0;
        right: 0%;
        transform: translate(-50%, -50%);
        cursor: pointer;
        transition: 0.5s ease;
        height: 50px;
        z-index: 9999;

        &:hover .bar {
            /*box-shadow: 1px 1px 7px 1px RGBa(0, 0, 0, 0.3);*/
        }

        .bar {
            width: 40px;
            height: 5px;
            background: #3982d0;
            border-radius: 2px;
            transition: 0.4s ease;

            &:not(:first-child) {
                margin-top: 10px;
            }
        }
    }

    #hi {
        position: absolute;
        left: -999px;
        top: -999px;
    }

    body:has(#hi:checked) nav {
        display: block;
        transition: all .5s;
        display: block;
        transition: all .5s;
        position: fixed;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, .95);
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20% 0;
        z-index: 999;
    }

    #hi:checked+.menu {
        transform: translate(-50%, -50%) rotatey(180deg);
       /* bottom: 70px;*/


        .bar {
            transform: rotatey(180deg) rotatex(360deg);

            &:first-child {
                transform: rotate(-45deg);
                margin-top: 20px;
            }

            &:nth-child(2) {
                opacity: 0;
            }

            &:nth-child(3) {
                margin-top: -20px;
                transform: rotate(45deg);
            }
        }
    }

    .sticky #hi:checked+.menu {
        transform: translate(-50%, -50%) rotatey(180deg);
        bottom: 0px;
    }
    
    .main-menu ul {
        float: none;
        width: 100%;
    }

    .main-menu ul li {
    float: none;
    margin-left: 0;
    text-align: center;
    padding-bottom: 40px;
    width: 100%;
    }

    .main-menu ul li a {
        font-size: 16px;
        font-weight: 500;
        color: #3982d0;
        text-transform: uppercase;
        padding: 10px 0;
        position: relative;
        transition: all .3s ease;
    }

    .mobile-m-4 {
        margin-top: 1.5rem !important;
    }

    .news-slider {
    margin-top: 50px;
    }

    .page-title {
    padding: 150px 0 150px 0;
    background-position: right;
        
    h1 {
            font-size: 50px;
        }
    }

    .detail-content {
        padding: 50px 0;
        display: block;
        justify-content: space-between;

        .sidebar {
            width: 100%;

            .sidebar-menu li {
                padding: 10px 0;
                text-align: center;

                a {
                    padding-left: 0;
                }
            }
        }

        .right-cont {
            width: 100%;
            padding: 0 5%;
            margin-top: 50px;
         }


    }

    .president-message {
        .president {
            width: 100%;
            float: none;
            margin-right: 0px;
            margin-bottom: 40px;
           
        }
    }

    .target-wrap {
     .box {
        .top {
            .more-btn {
                width: 30px;
                height: 30px;
                position: absolute;
                right: 8%;
                
            }
        }
    }
}

        .arrow-group {
            padding: 0px 0px;
            margin-top: 50px;
        }

        .pr-50 {
            padding-right: 0px;
        }
    .contact-content {
        padding: 50px 0;
    }
        .map {
    width: 100%;
    height: 350px;
    margin-top: 3rem !important;
    }

    .mobile-b-1 {
      margin-bottom: 1rem !important;  
    }

    .m-menu {
    display: block; 
    }

    .navigation {
        display: none;
    }

    .f-slide {
            .title {
                font-weight: 700;
                font-size: 24px;
                color: #1261A6;
                margin-bottom: 40px;
                margin-top: 30px;
            }
    }

    .faaliyet-slider {
        .nav-prev, .nav-next {
            position: absolute;
            background: #F4F4F5;
            width: 50px;
            top: 0;
            height: 51px;
            line-height: 51px;
            text-align: center;
        }
    }

    .m-hide {
        display: none;
    }

    .d-hide {
        display: block;
    }

    .drop-icon {
        margin-left: 10px;
    }

} 