* {
    margin: 0;
    padding: 0;
    font-family: "new-rubrik", sans-serif;
    font-size: 17px;
    font-weight: 600;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
  flex-direction: column;
}

li {
    list-style: none;
}

main {
    flex: 1;
  }


footer {
    min-height: 50px; 
}

a {
    display: block;
    text-decoration: none;
    color: #000;
}

section {
    margin-top: 60px;
}

#layout-header {
    min-height: 50px;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;   
    z-index: 10000;
    transition: background-color 0.3s ease;
    background-color: rgba(255, 255, 255, 1);
}

.activities .container, .projects .container, .companies .container {
    position: relative;
}

.header__inner {
    padding: 21px 0 21px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.alert.alert-success.alert-dismissible {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
}

.alert .close {
    padding: 10px;
    outline: none;
    border: 0;
    background: #F48E1D;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


.nav__link {
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}

.nav__link:last-child:hover::after {
    width: 0;
}

.nav__link::after {
    content: "";
    display: block;
    position: absolute;
    background-color: #000;
    width: 0%;
    height: 1px;
    bottom: 0;
    left: 0;
    z-index: 100;
    transition: .3s linear;
}

.header.scrolled .nav__link::after {
    background-color: #000;
}

.nav__link:hover::after {
    width: 100%;
}

.intro {
    color: #fff;
    position: relative;
}

.intro .container {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.intro__title {
    padding-top: 165px;
    font-size: 60px;
    line-height: 76.38px;
    text-align: center;
    text-transform: uppercase;
}

.intro__title h1 {
    font-size: 60px;
    line-height: 76.38px;
    text-align: center;
    text-transform: uppercase;
}

.intro__subtitle {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro__subtitle p {
    font-size: 22px;
    width: 668.5px;
    font-weight: 400;
    color: #d5d5d5;
    text-align: center;
}

.intro__groups {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    place-items: flex-start;
    padding-bottom: 20px;
    z-index: 100;
}

.intro__group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.intro__group-title {
    font-weight: 700;
    line-height: 35.64px;
    font-size: 28px;
    text-align: center;
}

.intro__group-text {
    width: 383.75px;
    text-align: center;
}

.section__general {
    margin-bottom: 30px;
}

.section__title {
    font-size: 42px;
    line-height: 48px;
    position: relative;
}
.swiper__card {
    position: relative;
    display: inline-block; /* Adjust as needed */
}

.swiper__card img {
    display: block; /* Ensures the image fits the container without extra spacing */
    z-index: 1;
}

.swiper__card-title {
    margin-top: 22px;
    font-size: 22px;
    line-height: 25px;
}

.swiper {
    width: 100%;
    height: 450px;
}

.swiper-button-next {
    right: -50px;
}


.swiper-button-prev {
    left: -50px;
}

.swiper-scrollbar-drag {
    background: #F48E1D !important;
}

.image-container a:first-child {
    height: 100%;
}
    

.swiper__a {
    height: 100%;
}
.swiper__a {
    cursor: pointer;
    margin-bottom: 60px;
    display: block;
    height: 40px;
    width: 40px;
    background-image: url('../images/strelka2.svg');
    background-color: #F48E1D;
    background-size: 17px 17px; /* Set the size of the background image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-position: center; /* Center the image within the pseudo-element */
    z-index: 1000;
    position: absolute;
    right: 0;
    bottom: -50px;
}

.swiper-button-prev, .swiper-button-next {
    background-color: #fff;
    width: 30px !important;height: 30px !important;
    border: 1px solid #C2C2C2;
}

.swiper-button-next {
    transform: rotate(180deg);
}

.swiper-button-prev::after, .swiper-button-next::after {
    content: "" !important;
}

.section2 {
    padding: 126px 0 126px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 36px;
    text-align: center;
}

.section2__title {
    font-size: 42px;
    line-height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.section2__desc p {
    font-size: 22px;
    line-height: 30px;
    color: #D5D5D5;
}

.invest {
    background: url('../images/invest.svg') no-repeat;
    background-size: cover;
    color: #fff;
}

.btn {
    border: 0;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    padding: 19px 43px 19px 43px;
    transition: .3s linear;
    cursor: pointer;
}

.btn.btn-orange {
    width: 265px;
    background-color: #F48E1D;
}


.third {
  border-color: #F48E1D;
  color: #fff;
  box-shadow: 0 0 40px 40px  #F48E1D inset, 0 0 0 0  #F48E1D;
  transition: all 150ms ease-in-out;
}

.third:hover {
    box-shadow: 0 0 10px 0 #F48E1D inset, 0 0 10px 4px #F48E1D;
    background-color: transparent;
    border-color: transparent;
  }

.project-left {
    width: 100%;
    max-width: 488px;
}

.project__data {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
    margin-bottom: 20px;
}

.contacts__datal-d p {
    font-size: 22px;
}


#email a {
     color: #F48E1D;
}

#email a:hover {
    text-decoration: #F48E1D underline;
    transition: .4s linear;
}

.project__data-t {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.project__image {
    position: relative;
    margin-bottom: 20px;
}


.footer__nav .nav__link::after {
    display: none;
}

.project__image a {
    position: absolute;
    bottom: 0px;
    left: 0;
}


.project__data-text {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    width: 270px;
    text-align: right;
    color: #666666;
}

.project__data::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;

    background-color: #EAEAEA;
    position: absolute;
    bottom: -15px;
    left: 0;
}

.project__data:last-child:after {
    width: 0;
}

.projectr__text-el {
    display: flex;
    justify-items: center;
    align-items: center;
    gap: 15px;
}

.project {
    display: flex;
    gap: 32px;
    padding-bottom: 20px;
}

.project-right {
    width: 100%;
    border: 1px solid #EAEAEA;
    padding: 30px 40px;
}

.swiper-projects {
    height: 100%;
}

.projectr {
    margin-bottom: 26px;
}

.projectr__title {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.projectr__text-el {
    color: #666666;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.solution__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 140px;
}

.solution__inner .section__general {
    padding-top: 66px;
}

.solution__inner .section__text p {
    margin-top: 20px;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;color: #666;
}



.solution__inner .section__title {
    width: 300px;
}

.companies-swiper {
    height: 100%;
}

.companies-swiper .swiper-wrapper {
    padding-bottom: 20px;
}

.inner__service ul li {
    list-style: unset;
    list-style-type: disc;
    margin-top: 10px;
}

.companies .swiper-slide img {
    width: 100%;
}

.footer {
    background-color: #08101D;
    color: #fff;
}

.footer__inner {
    padding: 44px 0 44px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__title a {
    display: flex;
    gap: 15px;
    color: #8d8d8d;
    font-weight: 400;
    font-size: 16px;line-height: 16px;
    align-items: center;
}

.footer__nav {
    display: flex;
    gap: 23px;
}

.footer__nav .nav__link {
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
}

.line {
    border-left: 1px solid #454545;

}

.btn.btn-white { 
    color: #fff;
    border: 1px solid #fff;
    background-color: #08101D;
}

.btn.btn-white:hover {
    background-color: #fff;
    color: #000;
}

.btn.btn-white:hover svg path {
    stroke: #000;
}

.footer__nav .nav__link img{
    width: 25px;
    height: 15px;
}

.footer__right {
    display: flex;
    align-items: center;
    gap: 55px;
}

.footer__under {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__undert, .footer__undert a {
    text-transform: uppercase;
    color: #4F4F4F;
    font-size: 16px;
    font-weight: 400;
}

.header__shadow {
    box-shadow: 0px 0px 12px 0px #00000026;
}

.margin {
    margin-top: 60px;
}

.about__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 104px;
}

.about__title, .service__titlet {
    font-size: 42px;
    line-height: 48px;
    font-weight: 600;
}

.about__title h1, .service__titlet h1{
    font-size: 42px;
    line-height: 48px;
    font-weight: 600;
}

.about__text {
    font-size: 20px;
    color: #666;
    line-height: 28px;

}
.service__card {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #D9D9D9;
}

.service__card:last-child {
    border-bottom: 1px solid #D9D9D9;
}

.service__card:nth-of-type(even) {
    direction: rtl;
}

.service__card:nth-of-type(even) > * {
    direction: ltr;
}

.service__card:nth-of-type(even) .service__cardl {
    border-right: 0;
    border-left: 1px solid #D9D9D9;
}

.project__image {
    overflow: hidden;
    position: relative;
    aspect-ratio: 3 / 2; 
}

.project__image img {
    cursor: pointer;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
}

.project__image img:hover {
    transform: scale(1.15);
}


.service__card:nth-of-type(even) .service__cardr {
    border-left: 0;
}

.service__cardl {
    padding: 30px;
}

.service__cardr {
    border-left: 1px solid #d9d9d9;
    padding: 30px;
    place-content: center;
}

.service__cardl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.service__cardr-title {
    font-size: 27px;
    color: #444;text-transform: uppercase;
}

.footer__undert {
    display: flex;
    gap: 5px;
    align-items:center;
}

.footer__undert span {
    font-size: 16px;
}

.service__cardr-list ul li {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 10px;
    color: #777;
    font-weight: 400;
    line-height: 26px;
}

.number {
    font-size: 28px;
    color: #999999;
    font-weight: 300;
}

.service__title {
    margin-bottom: 40px;
}


.contacts__datal {
    border: 1px solid #d6d6d6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 33px 40px 33px 40px;
}

.contacts__data-d {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative; /* Ensure the container is positioned relative for the pseudo-element */
    padding: 32px;
}

.contacts__data-d::before {
    content: "";
    position: absolute;
    top: 50%; /* Start at the middle */
    left: 0;
    transform: translateY(-50%); /* Offset by half the border height */
    height: 92px;
    width: 1px;
    background-color: #d6d6d6;
}


#address {
    width: 334px;
}

.map__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 44px;
    height: 520px; /* Ensure the container's height is set */
}

.map__inner iframe {
    width: 100%;
    height: 520px; /* Set the iframe height */
}

.form {
    border: 1px solid #EAEAEA;
    padding: 38px 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 520px; /* Set the form height to match the iframe */
    box-sizing: border-box; /* Ensure padding is included in the height calculation */
}

.form__title {
    font-size: 26px;
    line-height: 30px;
}

.image-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 327.44px;
}

.main-swiper .swiper__card {
    height: 387px;
}

.image-container img {
    object-fit: cover;
    transition: transform 0.5s ease;
      width: 100%;
      height: 100%;
}

.image-container img:hover {
  transform: scale(1.15);
}

#unbtn {
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #858585;
}

.form input {
    border: 1px solid #EAEAEA;
    padding: 25px 13px;
    outline: none;
}

#btnform {
    color: #fff;
    width: 100%;
}

.contacts__datal-d {
    margin-top: 40px;
}

#open-modal {
    color: #000;
}

#open-modal .form {
    margin-top: 30px;
}

.modal-window {
	 position: fixed;
	 background-color: rgba(0, 0, 0, 0.25);
	 top: 0;
	 right: 0;
	 bottom: 0;
	 left: 0;
	 z-index: 10000000000;
	 visibility: hidden;
	 opacity: 0;
	 pointer-events: none;
	 transition: all 0.3s;
}
 .modal-window.active {
	 visibility: visible;
	 opacity: 1;
	 pointer-events: auto;
}
 .modal-window > div {
	 width: unset;
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 transform: translate(-50%, -50%);
	 padding: 2em;
	 background: white;
}
 .modal-window header {
	 font-weight: bold;
}
 .modal-window h1 {
	 font-size: 150%;
	 margin: 0 0 15px;
}
 .modal-close {
	 color: #aaa;
	 line-height: 50px;
	 font-size: 30px;
	 position: absolute;
	 right: 0;
	 text-align: center;
	 top: 0;
	 width: 0;
	 padding: 0 35px;
	 text-decoration: none;
}
 .modal-close:hover {
	 color: black;
}
 
.container {
  max-width: 1246px;
  padding: 0 15px;
  margin: 0 auto;
}

.header__title img {
    height: 45px;
}

@media screen and (max-width: 1550px) {
    .intro__title {
        padding-top: 165px;
    }
    .intro {
        height: 88vh;
    }
}

@media screen and (max-width: 1280px) {
    .swiper {
        width: 95%;
    }
    .swiper-button-next {
        right: 0;
    }
    .swiper-button-prev {
        left: 0;
    }
    .intro__title {
        padding-top: 100px;
    }
    .section2 {
        padding: 100px 0 100px 0;
        gap: 25px;
    }
}

.mobile{ 
    display: none;
}

@media screen and (max-width: 1024px) {
    .swiper {
        width: 100%;
    }
    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
    .footer .btn.btn-white {
        width: 100%;   
    }
    #burger-menu {
        cursor: pointer;
        height: 27px;
        width: 27px;
        overflow: visible;
        position: relative;
        z-index:100000000312;
      }
      #burger-menu span,
      #burger-menu span:before,
      #burger-menu span:after {
        background: #000;
        display: block;
        height: 4px;
        opacity: 1;
        position: absolute;
        transition: 0.3s ease-in-out;
      }
      #burger-menu span:before,
      #burger-menu span:after {
        content: "";
      }
      #burger-menu span {
        right: 0px;
        top: 13px;
        width: 27px;
      }
      #burger-menu span:before {
        left: 0px;
        top: -10px;
        width: 16px;
      }
      #burger-menu span:after {
        left: 0px;
        top: 10px;
        width: 20px;
      }
      
      #burger-menu.close span {
        transform: rotate(-45deg);
        top: 13px;
        width: 27px;
        background: #fff;
      }
      #burger-menu.close span:before {
        top: 0px;
        transform: rotate(90deg);
        background: #fff;
        width: 27px;
      }
      #burger-menu.close span:after {
        top: 0px;
        left:0;
        transform: rotate(90deg);
        
        opacity:0;
        width:0;
      }
      
      #menu{
        z-index:100000000;
        min-width:100%;
        min-height:100%;
        position: fixed;
        top:0;
        height:0;
        visibility: hidden;
        opacity: 0;
        text-align:center;
        padding-top:20px;
        transition: all 0.3s ease-in-out;
        
      }
      
      #menu.overlay{
        visibility: visible;
        opacity: 1;
        padding-top:100px;
        background:rgba(0,0,0,0.7);
      }
      
      #menu li{
        list-style:none;
      }
      #menu a{
        color:#fff;
        display:block;
        font-size: 24px;
        margin-bottom:30px;
        text-decoration:none;
      }
      #menu a::after {
          display: none;
      }
    .pc {
        display: none;
    }
    .mobile{ 
        display: block;
    }
    .intro__title {
        padding-top: 140px;
        font-size: 50px;
    }
    .intro__group-text {
        width: 100%;
    }
    .image-container img {
        object-fit: cover;
        width: 100%;
    }
    .solution__inner {
        gap: 0;
    }
    .footer__top {
        align-items: unset;
    }
    .footer__right {
        align-items: unset;
        flex-direction: column;
    }
    .about__left img {
        width: 400px;
    }
    .service__cardr {
        padding: 20px;
    }
    .service__cardl img {
        object-fit: contain;
    }
    .service__cardr-list ul li {
        font-size: 14px;
    }
    .service__cardr-title {
        font-size: 22px;
    }
    .number {
        font-size: 24px;
    }
    .solution__image, .solution__image img, .about__left, .about__left img {
        width: 100%;
        object-fit: coverc;
    }
    .project-right {
        padding: 20px 30px;
    }
    .project__image img {
        width: 100%;
    }
    a.btn.btn-orange {
        width: 200px;
    }
    .solution__inner, .about__inner {
        flex-direction: column;
    }.solution__inner .section__title {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .service__cardl {
        padding: 30px 0;
    }
    .service__cardr {
        padding: 20px 0;
    }
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }
    .intro__groups {
        grid-template-columns: repeat(1,1fr);
        gap: 40px;
        margin-top: 50px;
    }
    .footer__under {
        flex-direction: column;
        align-items: unset;
        gap: 20px;
    }
    #form {
        width: 100%;
    }
    .footer__undert:last-child {
        flex-wrap: wrap;   
    }
    .service__card {
        grid-template-columns: repeat(1, 1fr);
    }
    .service__cardr, .service__cardl, .service__card:nth-of-type(even) .service__cardl {
        border-right: 0;
        border-left: 0;
    }
    .project {
        flex-direction: column;
    }
    .project-left {
        width: 100%;
        max-width: unset;
    }
    .project-right {
        width: auto;
    }
    .map__inner iframe {
        width: 100%;
    }
    .map__inner {
        height: 100%;
        flex-direction: column;
    }
    .form {
        width: 100%;
        height: 100%;
    }
    #btnform {
        width: auto;
    }
    .contacts__datal {
        padding: 23px 30px;
    }
    .contacts__data-d {
        padding: 20px;
    }
    #address { 
        width: 250px;
    }
    .intro__title {
        font-size: 40px;
        line-height: 65px;
        padding-top: 50px;
    }
    .intro__subtitle p {
        font-size: 18px;
    }
    .intro__group-title {
        font-size: 24px;
    }
    .intro__group-text {
        width: 70%;
        font-size: 14px;
    }
    .swiper {
        height: auto;
    }
    .main-swiper {
        padding-bottom: 30px !important;
    }
    .contacts__datal {
        flex-direction: column;
        align-items: unset;
    }
    .contacts__data-d::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        /* transform: translateY(-50%); */
        height: 1px;
        width: 100%;
        background-color: #d6d6d6;
    }
    .contacts__data-d {
        padding: 20px 0 20px 0;
    }
}
@media screen and (max-width: 560px) {
    .contacts__data-d span , #address{
        width: 100%;
    }
        .map__inner iframe {
        width: 100%;
        height: 400px;
        }
    .leaflet-popup-content-wrapper {
        width: 280px !important;
    }
    .swiper__card-title {
        font-size: 18px;
    }
    .project-right {
        padding: 20px 20px;
    }
    .about__title h1, .service__titlet h1 {
        font-size: 35px;
    }
    .service__cardr-list ul li {
        gap: 15px 
    }
    .service__cardr-title {
        font-size: 20px;
    }
    .inner__service p, .inner__service p strong {
        font-size: 16px;
    }
    .intro__title h1 {
    font-size: 40px;
    line-height: 60px;
    }
    .btn.btn-orange {
        width: auto;
    }
    .intro .container {
        gap: 20px;
    }
    .header__inner {
        padding: 10px 0;
    }
    .footer__nav {
        flex-direction: column;
    }
    .footer__nav a {
        justify-content: flex-start;
    }
    .modal-window > div {
        width: 90%;
        padding: 15px;
    }
    section:not(.intro) {
        margin-top: 40px;   
    }
    .solution__inner .section__general {
        padding-top: 20px;
    }
    .intro__groups {
        margin-top: 20px;   
    }
    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
    .footer__undert span {
        font-size: 13px;
    }
    .intro__title {
        padding-top: 20px;
        line-height: 54px;
    }
    .swiper-slide .swiper__card {
        width: 100%;
    }
    .footer__top {
        flex-direction: column;
    }
    .footer__title {
        margin-bottom: 40px;
    }
    .about__inner {
        gap: 20px;
    }
    .intro__title h1{ 
        font-size: 40px;
    }
}

@media screen and (max-width: 430px) {
    .section2 {
        padding: 50px 0;
    }
    .intro__group-text p {
        font-size: 15px;
    }
    .section2__title, .section__title {
        font-size: 30px;
    }
    .intro .container {
        gap: 20px;
    }
    .section2__desc p {
        font-size: 18px;
    }
    .intro__title {
        font-size: 30px;
        line-height: 40px;
    }
    .footer__undert, .footer__undert a {
        font-size: 13px;
    }
    .intro__title {
        padding-top: 30px;
    }
}

@media screen and (max-width: 375px) {
    .intro__title h1 {
    font-size: 35px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
}
    .projectr__title {
        font-size: 16px;
    }
    .about__title, .service__titlet {
        font-size: 35px;
    }
    .header__title img {
        width: 100%;
    }
    
    .footer__nav .nav__link {
        justify-content: left;
    }
    

    .intro__group-title {
            font-size: 18px;
    line-height: 20px;
    }
    .intro__subtitle {
        font-size: 16px;
    }
    .intro .container {
        gap: 20px;
    }
    .intro__title {
        font-size: 25px;
        line-height: 40px;
    }
    .intro__subtitle p {
        font-size: 16px;
    }
    .section2__title, .section__title {
        font-size: 35px;
    }
    .project__data div {
        font-size: 16px;   
    }
}

@media screen and (max-width: 344px) {
    .contacts__data-d {
        
        padding: 10px 0 10px 0;
    }
    .btn.btn-orange {
        width: auto;
    }
    a.btn.btn-orange {
        width: auto;   
    }
    .intro__title h1 {
        font-size: 35px;
        line-height: 45px;
        text-align: center;
        text-transform: uppercase;
    }
}    
