@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --main-color: #327bac;
}


section {
    scroll-margin-top: 200px;
}

*:not(i) {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    list-style: none;
}

b {
    font-weight: 700 !important;
}



header.sticky .whitelogo,
header.active .whitelogo,
header.ham-active .whitelogo {
    display: none;
}

header.active ul.navul>li>a,
header.sticky ul.navul>li>a {
    padding: 10px 0 10px;
}

header.sticky a.uzvluk,
header.active a.uzvluk,
header.sticky button.uzvluk,
header.active button.uzvluk {
    color: #fff !important;
    padding: 12px 10px;
    font-size: 12px;
}

header.sticky .darklogo,
header.active .darklogo,
header.ham-active .darklogo {
    display: block;
}

header.sticky nav ul li a,
header.active nav ul li a,
header.sticky nav ul li span,
header.active nav ul li span {
    color: #000;
    font-size: 13px;
}

header.sticky button,
header.active button {
    color: #000;
    padding: 15px 10px;
}

header.sticky .upper-nav,
header.active .upper-nav {
    gap: .5rem !important;
}

header.sticky .both-nav,
header.active .both-nav {
    flex-direction: row !important;
    align-items: center;
    /*gap: 0.5rem !important*/
}

.lang {
    text-transform: uppercase;
}


.lang a {
    margin: 0 !important;
    padding: 0 !important;
}

header.sticky .lang a:hover,
header.active .lang a:hover {
    border: 1px solid transparent;
    color: #fff;
}

header.sticky,
header.active {
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    animation: smoothScroll 1s;
    padding: 15px 0;
}

header.active {
    position: sticky;
    top: 0;
}


@keyframes smoothScroll {
    0% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0px);
    }
}

header.sticky .navbar nav ul,
header.active .navbar nav ul {
    gap: .5rem !important;
}

header.ham-active .logo.whitelogo {
    display: none;
}

header.ham-active .logo.darklogo {
    display: none;
}

header.ham-active .line,
header.active .line,
header.sticky .line {
    background: #000;
}

.navbar {
    justify-content: flex-end;
}

header.sticky .logo img,
header.active .logo img {
    height: 110px;
    filter: brightness(100%) !important;
    object-fit: contain;
}

@media(max-width:576px) {
    .modal-form {
        gap: 10px !important
    }

    header.sticky .logo img,
    header.active .logo img {
        width: 85px !important;
        height: inherit;
    }
}

header.sticky .ham-wrapper i,
header.active .ham-wrapper i {
    color: black;
}

header.sticky button,
header.active button {
    font-size: 12px;
}

header.ham-active {
    background: #fff;
}

nav ul li {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}


.fa-navicon {
    display: inline;
    padding: 5px;
    color: #000;
}



header nav ul li:hover .drop-menu {
    opacity: 1;
    visibility: visible;
}

header {
    background-color: transparent;
    z-index: 999;
    width: 100%;
    padding: 20px 0;
    position: fixed;
    transition: .4s all ease;
}

header .darklogo {
    display: none;
}

.lang {
    text-transform: uppercase;
}

.both-nav {
    float: right;
}

.upper-nav {
    justify-content: flex-end;
    align-items: center;
}

.logo img {
    width: 320px;
    filter: brightness(10000%);
}

.lang a {
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul li {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}


ul.navul>li>a {
    padding: 10px 0 20px
}

nav ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
    transition: .4s all ease;
    position: relative;
    padding-bottom: 5px;
    cursor: pointer;
}


.drop-menu li a {
    color: #000;
    width: 100%;
}

.bottom-nav ul li>a::after {
    bottom: 12px;
}

.bottom-nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: .4s all ease;
}

.bottom-nav ul li a:hover::after {
    width: 100%;
}



.lang a {
    border: .5px solid #fff;
    color: #fff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding: 8px;
    transition: .4s all ease;
    font-weight: 600;
}

.lang a:hover {
    color: #fff;
    background: var(--main-color);
    border: 1px solid transparent;
    box-shadow: 0 0 19px 0 var(--main-color);
}

header a.uzvluk,
header button.uzvluk {
    outline: none;
    position: relative;
    float: right;
    padding: 15px 20px;
    border-radius: 7px;
    border: 2px solid transparent;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    background: var(--main-color);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 0 30px -1px var(--main-color)57;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

@media only screen and (max-width: 1200px) {
    nav ul li a {
        font-size: 14px;
    }
}

header a.uzvluk:hover,
header button.uzvluk:hover {
    background: #fff;
    box-shadow: none;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    color: #000 !important;
    border: 2px solid var(--main-color);
    transition: all 0.2s ease-out;
}

header a.uzvluk:hover::before,
header button.uzvluk:hover::before {
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
}

header a.uzvluk::before,
header button.uzvluk::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
}

@keyframes sh02 {
    from {
        opacity: 0;
        left: 0%;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
        left: 100%;
    }
}

header a.uzvluk:active,
header button.uzvluk:active {
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
}

.openable-acc li {
    padding: 10px 0 !important;
}

.hamburger-menu span~.openable-acc {
    padding-top: 20px;
    padding-left: 20px;
    display: none;
}

.hamburger-menu {
    position: fixed;
    top: -1000%;
    background: #fff;
    transition: .4s all ease;
}

.hamburger-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hamburger-menu ul li {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.hamburger-menu ul li a {
    font-size: 17px;
    color: #000;
}

header ul {
    display: flex;
    margin-bottom: 0;
}



@media screen and (max-width: 768px) {

    .ham-wrapper,
    .pushNav {
        display: block;
    }
}

@media only screen and (max-width: 992px) {

    .ham-wrapper {
        display: block;
    }

    .logo img {
        width: 180px;
    }

    .bottom-nav,
    .languages {
        display: none !important;
    }

    header .uzvluk {
        padding: 15px 25px;
        width: 100%;
        text-align: center;
    }
}

@media only screen and (max-width: 1200px) {

    header a.uzvluk,
    header button.uzvluk {
        padding: 13px 8px;
        font-size: 10px;
    }

    .logo img {
        width: 140px;
    }

    .languages {
        gap: 0.3rem !important;
        position: relative;
    }

    .lang {
        transition: .3s;
    }

    .lang a {
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .lang:not(:first-child) {
        /*position: absolute;*/
        bottom: -45px;
        height: 39.2px;
        /*opacity: 0;*/
        /*visibility: hidden;*/
        left: 0;
    }

    .lang:last-child {
        /*position: absolute;*/
        bottom: -90px;
        height: 39.2px;
        left: 0;
    }

    .languages:hover .lang {
        opacity: 1;
        visibility: visible;
    }
}

@media only screen and (max-width: 1340px) {

    header a.uzvluk,
    header button.uzvluk {
        padding: 13px 8px;
        font-size: 10px;
    }

    .logo img {
        width: 140px;
    }
}

/* header end */
/* slider */

.owl-carousel.sponsorlar {
    display: none;
}

.slider-logos {
    position: absolute;
    width: 100%;
    bottom: 20px;
    z-index: 48134;
    border-top: 1px solid #515151;
    padding-top: 20px;
}

.slider-alls {
    display: flex;
    justify-content: space-between;
    /* gap: 70px; */
    flex-wrap: wrap;
    row-gap: 15px;
}

.slider-logo {
    width: 120px;
    height: 120px;
}

.slider-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}




#slider {
    height: 100vh;
}


.swiper {
    height: 100%;
}

.swiper-img,
.swiper-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.swiper-img {
    position: relative;
}

.swiper-img::after {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    content: " ";
    background: linear-gradient(to right, rgba(0, 0, 0, 0.537), rgba(0, 0, 0, 0.4));
}


.swiper-inside {
    position: relative;
    height: 100%;
}

.swiper-content {
    position: absolute;
    top: 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    width: 50%;
}

.swiper-content h2,
.swiper-content p {
    color: #fff;
    text-shadow: 0 0 7px black;
}

.swiper-content h2 {
    font-size: 40px;
    text-transform: uppercase;
    line-height: 1.4;
    font-weight: 600;
}

.swiper-content p {
    font-size: 22px;
    color: #eee;
    line-height: 29px;
}

.swiper-content a {
    text-shadow: 0 0 7px black;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    font-size: 20px;
    letter-spacing: 1px;
    padding: 0 5px 5px 5px;
    width: fit-content;
    transition: .4s all ease;
}

.swiper-content a:hover {
    border-bottom: 1px solid transparent;
}

.slide-numbers {
    position: absolute;
    color: #fff;
    top: 50%;
    right: 250px;
    transform: translateY(-50%);
    align-items: flex-end;
    justify-content: center;
    font-size: 30px;
    letter-spacing: 1px;
    gap: 35px;
    display: flex;
    flex-direction: column;
    max-width: 81%;
    width: fit-content;
    z-index: 9;
    border-right: 1px solid #eee;
}

.slide-numbers span.active {
    transform: scale(1.7) translateX(-10px);
    opacity: 1;
    border-right: 2px solid #fff;
}

.slide-numbers span {
    padding-right: 15px;
    opacity: .5;
    transition: .4s all ease;
    cursor: pointer;
}

@media screen and (max-width: 768px) {

    .slider-logos {
        bottom: 10px;
    }

    .slider-logo {
        width: 100%;
    }
}

@media only screen and (max-width: 992px) {

    .myEvents {
        grid-template-columns: 1fr !important;
    }

    .onfooter__content {
        grid-template-columns: 1fr !important;
        padding: 20px 30px !important;
    }


    .slider-logos {
        border-top: 0;
    }

    .slider-logo {
        height: 80px;
    }

    .owl-carousel.sponsorlar {
        display: block;
    }

    .swiper-content {
        width: 100%;
        top: 30%;
    }

    .swiper-content h2 {
        font-size: 25px;
        line-height: 33px;
    }

    .slide-numbers {
        transform: translateY(0);
        flex-direction: row;
        height: initial;
        border: none;
        border-bottom: 1px solid #fff;
        padding-bottom: 12px;
        align-self: flex-end;
        display: flex;
        max-width: 100%;
        bottom: 18%;
        width: 100%;
        left: 0;
    }

    .slider-alls {
        display: none;
    }

    .slide-numbers span {
        padding-right: 0;
    }

    .slide-numbers span.active {
        transform: scale(1.2);
        opacity: 1;
        border: none;
    }

}

.mySwiper,
.mySwiper .swiper-wrapper,
.mySwiper .swiper-slide {
    height: 100vh;
    /* заставляет Swiper рассчитывать слайды на всю высоту экрана */
}

@media (max-width:768px) {
    .mySwiper .swiper-wrapper {
        flex-direction: row !important;
    }

    .swiper-vertical {
        touch-action: pan-y !important;
    }
}

@media (max-width: 767px) {
    #slider {
        /* или тот контейнер, у которого вы ставили 100vh */
        height: auto !important;
    }
}

/* slider end */
/* about */
#about {
    padding: 50px 0;
    background-color: #eee;
}

.about-left-title h2 {
    font-size: 2rem;
    letter-spacing: -.01em;
    line-height: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-left-list ul li {
    display: flex;
    gap: 1rem;
}

.about-left-list ul li h3 {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.about-left-list ul li p {
    color: rgba(18, 29, 43, .6);
    line-height: 1.5rem;
    width: 85%;
}


.about-left-list i.fa-solid.fa-check {
    color: #fff;
    background: var(--main-color);
    padding: 8px;
    height: fit-content;
    font-size: 14px;
    border-radius: 50%;
}

.about-right-imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

@media (min-width:992px) {

    header.sticky .lang a,
    header.active .lang a {
        color: #000;
        padding: 6px;
        font-size: 12px;
        border: 1px solid #000;
    }
}

@media only screen and (max-width: 992px) {


    .about-left-title h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
}

/* about end */

/* services */
.swiper {
    height: 100%;
}

#newevents {
    background: #f0f0f0;
    border-radius: 32px;
    padding: 48px;
    margin-top: 50px;
}

.myEvents {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.newevents-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 860px;
}

.newevents-text h2 {
    color: #000;
    font-size: 54px;
    /*line-height: 70px;*/
}

.newevents-text p {
    color: #000;
    font-size: 20px;
    line-height: 28px;
}

#newevents .swiper {
    width: 100%;
    height: 100%;
}

#newevents .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 420px;
    border-radius: 24px;
    cursor: pointer;
    background: #1c2f5c;
}

#newevents .swiper-slide:hover .project-btn {
    visibility: visible !important;
    opacity: 1 !important;
}

#newevents .swiper-text {
    position: absolute;
    color: #fff;
    z-index: 5;
    bottom: 25px;
    /*left: 25px;*/
    padding: 0 15px;
    gap: 12px;
    display: flex;
    flex-direction: column;
    z-index: 6;
}

#newevents .swiper-text h2 {
    font-size: 20px;
    line-height: 26px;
    text-align: left;
}

.swiper-slide span {
    position: absolute;
    z-index: 5;
    color: #000;
    background: #fff;
    top: 25px;
    left: 25px;
    padding: 8px 16px;
    border-radius: 36px;
    font-weight: 600;
    letter-spacing: .2px;
    font-size: 15px;
}

span.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 1 !important;
    /* width: 200px; */
    border-radius: 0;
    height: 3px;
    width: 100%;
}

#newevents .swiper-pagination2 {
    display: flex;
    padding-top: 1rem;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--main-color) !important;
}

#newevents .swiper-text p {
    font-size: 18px;
    line-height: 24px;
    opacity: .5;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

#newevents .swiper-slide::after {
    background: linear-gradient(180deg, transparent, #000);
    bottom: 0;
    content: "";
    display: block;
    height: 190px;
    left: 0;
    position: absolute;
    width: 100%;
    border-radius: 23px;
    transition: .4s all ease;
    z-index: 5;
}

.swiper-slide:hover .project-btn {
    visibility: visible;
    opacity: 1;
}

#newevents .project-btn {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 0;
}

.project-btn {
    border: none;
    transition: .4s;
    background: var(--main-color);
    color: #fff;
    padding: 16px 32px;
    z-index: 7;
    border-radius: 16px;
    font-size: 16px;
    transition: .4s all ease;
    font-weight: 600;
    margin-top: 20px;
}

.project-btn:hover {
    opacity: .7;
}

#newevents .swiper-slide:hover::after {
    background: #0000009c;
    top: 0;
    height: 100%;
}

#newevents .swiper-slide:hover span {
    z-index: 4;
}

.swiper-text {
    transition: .4s all ease;
}

#newevents .swiper-slide:hover .swiper-text {
    visibility: hidden;
    opacity: 0;
}

#newevents .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    /*transform: scale(.8);*/
}

#newevents .swiper-pagination2 {
    z-index: 5;
}

.event-button {
    cursor: pointer;
    padding: 1rem 4rem;
    border: 0;
    background-color: var(--main-color);
    color: white;
    transition: all 0.4s ease-in-out;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    margin-top: 2rem;
    margin-left: auto;
    width: 300px;
    margin-right: auto;
    display: flex;
    align-items: center;
    border: 2px solid transparent;
    justify-content: center;
    white-space: nowrap;
}

.event-button:hover {
    box-shadow: none;
    background-color: #fff;
    border: 2px solid var(--main-color);
    color: #000;
}

.event-button:active {
    box-shadow: 0px 5px 0px 0px rgb(122, 71, 173);
    text-shadow: 0 0px 0px #000;
}



@media screen and (max-width: 768px) {

    .event-button {
        width: 100%;
    }

    #newevents {
        padding: 30px 15px;
        border-radius: inherit;
    }

    .newevents-text h2 {
        font-size: 30px;
        text-align: center;
    }

    .newevents-text p {
        font-size: 14px;
        text-align: center;
    }

    .newevents-text {
        gap: 20px;
    }

    .newevents-text {
        padding-bottom: 1rem !important;
    }

    .event-button {
        padding: 1rem 2rem;
    }
}

/* services end */

/* membership */

#membership {
    padding: 50px 0;
    background-color: #eee;
}

#membership {
    margin-top: 50px;
}


#membership {
    overflow: hidden;
}

.membership-title h2 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 50px;
    letter-spacing: .5px;
}

.number-circle {
    width: fit-content;
    background: var(--main-color);
    color: #fff;
    height: 4rem;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    position: relative;
    z-index: 3;
    width: 4em;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    border: 1px solid transparent;
    transition: .4s all ease;
}

.member-card .number-circle:hover {
    background: #fff;
    /*border: 1px solid #000;*/
    color: #000;
}

.number-bottom-circle {
    width: fit-content;
    background: #fff;
    color: var(--main-color);
    height: 4rem;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    width: 4em;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    transition: .4s all ease;
    border: 1px solid transparent;
}

.number-bottom-circle:hover {
    border: 1px solid #eee;
    background: var(--main-color);
    color: #fff;
}

.number-circle p,
.number-bottom-circle p {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}

.members-bottom {
    height: 11.25rem;
    padding: 0 7rem;
    border-radius: 0.5rem;
    background-color: var(--main-color);
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
}

.member-info p {
    font-size: 14px;
    color: #b49898;
    line-height: 19px;
}

.member-bottom-info h3 {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.3;
    width: 60%;
    font-weight: 600;
}

.member-info h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.member-card {
    position: relative;
    width: 33.3333%;
}

.member-bottom-card {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.member-card::before {
    content: "";
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    z-index: 1;
}

.members-upper {
    display: flex;
}

.member-info {
    width: 80%;
}

.member-card:last-child::after {
    position: absolute;
    z-index: 1;
    top: 2rem;
    left: 100%;
    width: 50vw;
    height: 1px;
    background-color: var(--main-color);
    content: "";
}

.members-bottom::before {
    position: absolute;
    top: 5.5rem;
    left: -50vw;
    height: 1px;
    width: 50vw;
    background-color: var(--main-color);
    content: "";
}

.members-bottom::after {
    position: absolute;
    z-index: 1;
    top: 5.5rem;
    left: 0;
    height: 1px;
    width: 13.1rem;
    background-color: #fff;
    content: "";
}

.members-bottom-img img {
    width: 150px;
}


@media screen and (max-width: 768px) {

    .member-bottom-card {
        flex-direction: column;
    }
}

@media only screen and (max-width: 992px) {

    .member-card::before,
    .member-card::after {
        display: none;
    }

    .member-card {
        width: 100%;
        display: flex;
        gap: 15px;
    }

    .members-upper {
        flex-direction: column;
        /*padding-left: 1.5rem;*/
        gap: 30px;
    }

    .members-bottom::after,
    .members-bottom::before {
        display: none;
    }

    .members-bottom {
        height: auto;
        padding: 1rem;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .members-bottom-img img {
        width: 100px;
        margin: auto;
        display: block;
    }

    .members-bottom-img {
        margin: auto;
    }

    .number-bottom-circle {
        width: 4rem;
        height: 4rem;
    }

    .member-bottom-info h3 {
        width: 100%;
    }
}



/*****PRICE-FORM START*****/
#price-form .modal-content {
    padding: 20px 0 0 0;
    max-width: 500px;
    margin: auto;
}

#price-form .modal-body {
    padding: 10px 40px 40px 40px
}

#price-form .modal-title {
    font-size: 18px !important
}

#price-form .modal-header {
    margin: 0 40px 10px 40px;
    padding-left: 0;
    padding-right: 0;
    border: none;
    border-bottom: 1px solid var(--main-color);
}

#price-form .modal-title {
    font-weight: 700;
    color: #000
}

#price-form input.effect,
#price-form .custom-form select.effect {
    height: 50px
}

#price-form .effect,
.projects-full-story__form .effect {
    width: 100%;
    border: 2px solid #e6ecf2;
    padding: 12px 20px;
    margin: 0 0 16px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    font-size: 14px;
    -webkit-appearance: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
}

#price-form .modal-content .btn-close {
    display: block;
    height: 20px;
    opacity: .5;
    position: absolute;
    right: 50px;
    top: 34px;
    width: 20px;
    z-index: 100;
    padding: 0;
    outline: transparent;
}

.modal-backdrop {
    opacity: .8 !important
}

#price-form .btn-close:focus {
    box-shadow: none !important
}

#price-form .submit-btn:hover {
    background-color: var(--main-color);
}

#price-form .submit-btn,
.projects-full-story__form .submit-btn {
    background-color: var(--main-color);
    color: #fff;
    border-radius: 4px;
    height: 50px;
    line-height: 50px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding: 0 26px;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
}

/* ---- Four‑column company footer ---- */
.company-footer {
    background: #1c2f5c;
    /* dark navy */
    color: #fff;
    padding: 60px 0 40px;
    border-top: 4px solid var(--main-color);
}

.company-footer .four-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.company-footer .footer-head {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--main-color);
}

.company-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

.company-footer li+li {
    margin-top: 6px;
}

.company-footer b {
    font-weight: 600;
}

.company-footer a {
    color: #fff;
    text-decoration: none;
    transition: opacity .25s ease;
}

.company-footer a:hover {
    opacity: .8;
}

/* Small screens: stack columns neatly */
@media (max-width: 576px) {
    .company-footer .four-cols {
        gap: 24px;
    }

    .company-footer .footer-head {
        font-size: 20px;
    }
}


/*onfooter*/
.onfooter {
    padding: 70px 0;
    background: #2a2a2a;
}

.onfooter__content {
    width: 100%;
    margin: 0 auto;
    padding: 60px 80px;
    border-radius: 20px;
    background-color: #fff;
    min-height: 360px;
    display: flex;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.onfooter__content img {
    width: 100%;
    border-radius: 16px;
    height: 100%;
}

.onfooter__content h2 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 28px;
    font-weight: 500;
}

.onfooter__content h2 img {
    width: 34px;
}

.onfooter__content-head p {
    opacity: .4;
    margin-top: 20px;
}

.onfooter__content-head {
    height: 100%;
}

.onfooter__content-head img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.onfooter__content-head button {
    background: var(--main-color);
    color: #fff;
    border-radius: 12px;
    height: 56px;
    display: flex;
    justify-content: center;
    font-size: 22px;
    align-items: center;
    border: none;
}

.onfooter form textarea {
    height: 200px;
}

.onfooter .logo {
    margin-top: 70px;
    max-width: 200px !important;
}

.onfooter__content-left {
    max-width: 600px;
}

.onfooter form {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.onfooter form input,
.onfooter form select,
.onfooter form textarea {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    min-height: 56px;
    padding: 17px 18px 17px;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    color: #f7f7f5;
    font-size: 16px;
    font-family: inherit;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    background-color: #f7f7f5;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color .2s ease-in-out;
    transition: border-color .2s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.onfooter form select {
    color: black;
}

.partners {
    padding: 60px 0;
}

.partners.partners-2 .partners__content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.partners__content {
    position: relative;
}

.partners .swiper {
    padding: 20px 0;
}

.partners .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 25.361px;
    background: #fff;
    box-shadow: 0 4.058px 15.217px 0 rgba(96, 96, 96, .25);
}


.partners .swiper-slide img {
    width: 100%;
    object-fit: contain;
    height: 80px;
}

.partners__content .swiper-pagination {
    bottom: -20px;
}

.partners__content .swiper-pagination .swiper-pagination-bullet {
    background: #b1b1b1;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #b1b1b1 !important;
    background: #fff;
    cursor: pointer;
}

.partners__content .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #b1b1b1 !important;
}