@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;300;700&display=swap');

body {
    margin: 0;
    font-family: "Jost", Arial, sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.3;
    color: silver;
    background-color: black;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

/* Page */
.page {
    overflow: hidden;
    max-width: 2500px;
    margin: 0 auto;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.gradient-button {
    text-align: center;
    text-decoration: none;
    margin: 15px 0 0 0;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    font-family: "Avenir Next", Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: black;
    padding: 16px 40px;
    width: fit-content;
    background-color: #469cd4;
    margin-top: 30px;
    border-radius: 50px;
}

.gradient-button:hover {
    background-color: #537f3b;
}


/*Home page projects*/
.footer-cta{
    display: flex;
    flex-direction: row;
    justify-content: left;
}

.footer-cta .brochureProject{
    margin-right: 20px;
}

.brochureProject {
    padding: 20px 40px;
    background-color: black;
    display: flex;
    flex-direction: row;
    width: fit-content;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 50px;
    margin-top: 40px;
}

.projectBrochureText {
    cursor: pointer;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    line-height: 1;
    margin: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brochureProject:hover{
    background-color: #3b7228;
}

.btn-top{
    width: fit-content;
    margin: 40px auto 0 auto;
}

.projectBrochureImg {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 20px;
}

.cta-box{
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cta-box a{
    cursor: pointer;
    text-decoration: none;
}

.btn_animation {
    -webkit-animation: pulsescale3d 1.25s infinite;
    animation: pulsescale3d 1.25s infinite;
    background-color: #ad8f54;
}

@-webkit-keyframes pulsescale3d {
    10%, 90% {
        -webkit-transform: translate3d(-1px, 0, 0);
        transform: translate3d(-1px, 0, 0); }
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(173, 143, 84, 1);
        box-shadow: 0 0 0 0 rgba(173, 143, 84, 1); }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1); }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 30px rgba(14, 207, 84, 0);
        box-shadow: 0 0 0 30px rgba(14, 207, 84, 0); }
}

@keyframes pulsescale3d {
    10%, 90% {
        -webkit-transform: translate3d(-1px, 0, 0);
        transform: translate3d(-1px, 0, 0); }
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(173, 143, 84, 1);
        box-shadow: 0 0 0 0 rgba(173, 143, 84, 1); }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1); }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 30px rgba(14, 207, 84, 0);
        box-shadow: 0 0 0 30px rgba(14, 207, 84, 0); }
}

/* Container */
.container {
    width: 100%;
    max-width: 1700px;
    padding: 0 100px;
    margin: 0 auto;
    position: relative;
}

#myVideo {
    width: 100%; /* Set the width of the video */
    height: auto; /* Set the height of the video */
}

@media (max-width: 1200px){
    .brochureProject {
        padding: 20px 45px;
        margin-top: 40px;
    }
    .projectBrochureText {
        font-size: 13px;
    }
    .projectBrochureImg {
        width: 22px;
        height: 22px;
        margin-right: 10px;
    }
    .container {
        padding: 0 70px;
    }
}

@media (max-width: 1100px) {
    .container {
        padding: 0 50px;
    }
}

@media (max-width: 1000px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 700px){
    .container {
        padding: 0 20px;
    }
}

/******** fly */

#marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    height: 7em; /* Adjust as needed based on font size */
    background-color: #000000;
    bottom: 0;
}

#running-text, #running-text2 {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-size: 80px;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 50px;
    text-transform: uppercase;

    background: -webkit-linear-gradient(#f3e0ba, #dda62d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-200%); }
}

@media (max-width: 700px) {
    #running-text, #running-text2 {
        font-size: 50px;
        letter-spacing: 10px;
        padding: 10px 0;
    }
    #marquee-container {
        height: 6.5em;
    }
}


/* Intro */
.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #242424;
    background-color: white;
    background-position: center;
    background-size: cover;
}

.video-title{
    font-size: 90px;
    font-family: "Avenir Nex", Arial;
    text-transform: uppercase;
    color: #fff;
    font-weight: 200;
    line-height: 1.5;
    letter-spacing: 5px;
    text-align: center;
    z-index: 2;
}

.intro__inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    z-index: 1;
}

.intro__suptitle {
    font-size: 90px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 10px;
    text-align: center;

    background: -webkit-linear-gradient(#f3e0ba, #dda62d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-small{
    font-weight: 300;
    font-size: 45px;
    line-height: 1;
    margin: 15px 0 0 0;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px black;
}

.line{
    position: relative;
    width: fit-content;
    margin-bottom: 40px;
    font-size: 40px;
    font-family: "Raleway", Arial;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 10px;
    margin-right: -5px;

    background: -webkit-linear-gradient(#f3e0ba, #dda62d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overlay {
    background-color: #0000006b;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
}

.subtitle{
    margin: 30px 0;
    font-size: 28px;
    letter-spacing: 4px;
    line-height: 1.5;
    font-weight: 400;
    text-transform: uppercase;
}

.intro_text{
    color: white;
    letter-spacing: 0.025rem;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
}

.catalogue-btn{
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: black;
    padding: 20px 50px;
    width: fit-content;
    text-decoration: none;
    background-color: #6ad446;
    transition: all 0.3s;
    margin: 30px auto 0 auto;
    border-radius: 50px;
}

.catalogue-btn:hover{
    background-color: #3b7228;
}

/*about*/
.section-company{
    background-color: #161616;
    padding: 200px 0;
}

.footer{
    padding: 100px 0;
}

.map{
    width: 100%;
    height: 400px;
    margin: 30px 0
}

.footer h3{
    font-weight: 300;
}

@media (max-width: 1700px) {
    .subtitle {
        font-size: 22px;
    }
    .video-title {
        font-size: 70px;
    }
}

@media (max-width: 1500px) {
    .video-title {
        font-size: 55px;
    }
}

@media (max-width: 1400px) {
    .line {
        font-size: 30px;
    }
    .intro_text {
        font-size: 13px;
    }
    .video-title {
        font-size: 55px;
    }
    .section-company {
        padding: 150px 0;
    }
}

@media (max-width: 1300px) {
    .video-title {
        font-size: 45px;
    }
}

@media (max-width: 1200px) {
    .intro__suptitle {
        font-size: 60px;
    }
    .intro-small {
        font-size: 32px;
    }
    .intro_text {
        font-size: 11px;
    }
    .cta_box li{
        font-size: 10.5px;
    }
    .subtitle {
        font-size: 18.5px;
    }
    .catalogue-btn {
        font-size: 13px;
        padding: 15px 30px;
        margin-top: 25px;
    }
    .video-title {
        font-size: 40px;
    }
    .section-company {
        padding: 120px 0;
    }
    .footer h3{
        font-size: 15px;
    }
    .map{
        height: 350px;
    }
}

@media (max-width: 1100px) {
    .catalogue-btn {
        font-size: 11px;
    }
    .video-title {
        font-size: 37px;
    }
    .line {
        font-size: 20px;
        margin-bottom: 15px;
        letter-spacing: 3px;
    }
    .intro {
        min-height: 650px;
    }
}

@media (max-width: 1000px) {
    .subtitle {
        font-size: 16px;
    }
    .intro_text {
        font-size: 9px;
    }
    .video-title {
        font-size: 30px;
    }
}

@media (max-width: 900px) {
    .intro__suptitle {
        font-size: 50px;
    }
    .intro-small {
        font-size: 27px;
    }
    .footer h3 {
        font-size: 13px;
    }
    .map{
        height: 250px;
    }
    .footer .cta_box {
        width: 55%;
    }
}

@media (max-width: 800px) {
    .catalogue-btn {
        font-size: 13px;
        padding: 15px 30px;
        margin-top: 20px;
    }
}

@media (max-width: 700px) {
    .section-company {
        padding: 70px 0;
    }
    .intro {
        min-height: 100vh;
    }
    .subtitle {
        font-size: 14px;
        line-height: 1.7;
        letter-spacing: 3px;
    }
    .intro__suptitle {
        font-size: 55px;
        margin-bottom: 0;
        letter-spacing: 0;
        margin-right: 0;
        line-height: 1.2;
    }
    .intro-small {
        font-size: 23px;
        margin: 10px 0 0 0;
    }
    .catalogue-btn {
        font-size: 13px;
        padding: 15px 30px;
        margin-top: 20px;
    }
    .catalogue-btn {
        font-size: 11px;
        margin-top: 10px;
    }
    .line {
        font-size: 18px;
        margin-bottom: 10px;
        letter-spacing: 4px;
        line-height: 1.6;
    }
    .video-title {
        font-size: 15px;
    }
    .video, .footer{
        min-height: 40vh;
        padding: 80px 0;
        background-position: 65% 100%;
    }
    .footer .cta_box {
        width: 80%;
    }
    .map{
        height: 200px;
    }
    .footer h3 {
        font-size: 12px;
    }
}


/* Header */
.header {
    width: 100%;
    padding: 30px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: black;
}

.header.fixed {
    padding: 20px 0;
    /*background: linear-gradient(315deg, #753BBD 0%, #00A9CE 67.21%, #00A9CE 100%);*/
    background-color: black;
    box-shadow: 0 3px 10px rgb(255 255 255 / 20%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translate3d(0, 0, 0);
    transition: all 0.6s;
}

.header.active {
    background-color: #eb8b8d;
}

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

.header__logo {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 7px;
    text-decoration: none;
    text-transform: uppercase;
    background: -webkit-linear-gradient(#f3e0ba, #dda62d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.header__logo img {
    max-width: 100%;
    height: auto;
}

/* Nav */
.phone-menu{
    display: -webkit-inline-flex !important;
    align-items: center !important;
    -webkit-align-items: center !important;
    justify-content: center;
}

.flag-phone{
    width: 30px;
    margin-right: 5px
}

.nav {
    font-size: 15px;
    text-transform: uppercase;
}

.nav__link {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: color .1s linear;
}

.nav__link:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    transition: opacity .1s linear;
}

.nav__link:hover:after,
.nav__link.active:after {
    opacity: 1;
}

.nav__link.active {
    color: #ffffff;
}

.text-black{
    color: #000;
}

.text-green{
    color: #78ff44;
}

.text-gold{
    color: #ca9330;
}

.text-white{
    color: #fff!important;
    text-decoration: none;
}

/* Nav toggle */
.nav-toggle {
    width: 25px;
    padding: 16px 0;
    display: none;
    font-size: 0;
    color: transparent;
    border: 0;
    background: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 24px;
    z-index: 1;
}

.nav-toggle:focus {
    outline: 0;
}

.nav-toggle__item {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: background .2s linear;
}

.nav-toggle.active .nav-toggle__item {
    background: none;
}

.nav-toggle__item:before,
.nav-toggle__item:after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    z-index: 1;
    transition: transform .2s linear;
}

.nav-toggle__item:before {
    top: -8px;
}

.nav-toggle__item:after {
    bottom: -8px;
}

.nav-toggle.active .nav-toggle__item:before {
    transform-origin: left top;
    transform: rotate(45deg) translate3d(0px, -3px, 0)
}

.nav-toggle.active .nav-toggle__item:after {
    transform-origin: left bottom;
    transform: rotate(-45deg) translate3d(0px, 3px, 0);
}

.nav-whatsapp{
    color: #6ad446;
    font-weight: 700;
}

@media (max-width: 1600px) {
    .header__logo {
        font-size: 30px;
    }
    .nav {
        font-size: 14px;
        text-transform: uppercase;
    }
}

@media (max-width: 1400px) {
    .header__logo {
        font-size: 25px;
    }
    .nav {
        font-size: 13px;
        text-transform: uppercase;
    }
}

@media (max-width: 1200px) {
    .nav {
        font-size: 11px;
        text-transform: uppercase;
    }
    .header__logo {
        font-size: 20px;
    }
    .header.fixed {
        padding: 15px 0;
    }
}

@media (max-width: 990px) {
    .nav {
        font-size: 11px;
        text-transform: uppercase;
    }
}
@media (max-width: 770px) {
    .header {
        padding: 20px 0;
    }
    .nav-toggle__item:before, .nav-toggle__item:after {
        height: 2px;
    }
    .nav-toggle__item {
        height: 2px;
    }
    .nav-toggle {
        top: -5px;
    }
    .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #0b0b0b;
    }
    .nav.active {
        display: block;
        top: 45px;
        padding: 20px 0;
    }
    .nav__link {
        display: block;
        margin: 0;
        padding: 10px 20px;
        width: fit-content;
    }
    .nav__link:after {
        width: 70%;
        left: 20px;
    }
    .nav-toggle {
        display: block;
    }
}
@media (max-width: 650px) {
    .nav.active {
        display: block;
        top: 38px;
    }
}


/* Slider */
.slider {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.slider__inner {
    display: flex;
    position: relative;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 70px 70px;
    z-index: 1;
}

.slider__item {
    padding: 30px 30px;
    position: relative;
    width: 25%;
}

.slider__num {
    font-size: 150px;
    font-weight: 100;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-transform: uppercase;
    line-height: 1;
    background: -webkit-linear-gradient(#f3e0ba, #dda62d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slider__text p {
    width: fit-content;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.478);
    margin: 0;
    text-transform: uppercase;
    margin-top: 20px;
}
.slider__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-decoration: none;
}

@media (max-width: 1600px) {
    .slider__inner {
        padding: 20px 20px;
    }
    .slider__num {
        font-size: 110px;
    }
    .slider__text p {
        font-size: 15px;
    }
    .slider__item {
        padding: 50px 30px;
    }
}

@media (max-width: 1600px) {
    .slider__inner {
        padding: 0 20px;
    }
}

@media (max-width: 1400px) {
    .slider__num {
        font-size: 90px;
    }
    .slider__text p {
        font-size: 13px;
    }
}

@media (max-width: 1300px) {
    .slider__item {
        font-size: 12px;
    }
    .slider__text p {
        font-size: 11px;
    }
    .slider__num {
        font-size: 80px;
    }
}
@media (max-width: 1100px) {
    .slider__text p {
        font-size: 11px;
        margin-top: 10px;
    }
}
@media (max-width: 1000px) {
    .slider__item {
        padding: 20px 40px;
        width: 50%;
    }
    .slider__inner {
        padding: 50px;
    }
}
@media (max-width: 700px) {
    .slider__num {
        font-size: 60px;
    }
    .slider__item {
        width: 100%;
        text-transform: none;
        padding: 20px 0;
    }
    .slider__item:first-child {
        padding: 0 0 20px 0;
    }
    .slider__item:last-child {
        padding: 20px 0 0 0;
    }
}


/* Section */
.section {
    padding: 150px 0;
    background-color: black;
}

.top-subtitle{
    font-size: 25px;
    font-weight: 600;
    color: white;
    line-height: 1.3;
}

@media (max-width: 1368px) {
    .top-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .section {
        padding: 100px 0;
    }
}

@media (max-width: 650px) {
    .top-subtitle {
        font-size: 18px;
    }
}

/* Statistics */
.statistics {
    margin-bottom: 20px;
}
.stat {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 50px;
}
.stat__item {
    display: flex;
    flex-direction: column;
    width: 25%;
    text-align: center;
    padding: 10px;
    color: #000000;
}
.stat__count {
    width: 50px;
    margin: 0 auto 20px auto;
}
.stat__text {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}

.services__title {
    margin-bottom: 10px;

    font-size: 14px;
    color: #333;
    text-transform: uppercase;
}

.form-control {
    min-height: 50px;
    box-shadow: none;
    width: 100%;
    font-size: 16px;
    color: #55595c;
    background-color: #fff;
    background-image: none;
    border-radius: 0;
    margin-bottom: 10px;
    border: 1px solid #151515;
    outline: none;
    padding: 20px 10px;
    font-family: "Avenir Next", Arial, sans-serif;
}

input::placeholder {
    font-family: "Avenir Next", Arial, sans-serif;
    font-weight: normal;
}

#error-msg{
    color: red;
    margin-top: 10px;
}

.form-control:active, .form-control:focus{
    outline: none;
}

@media (max-width: 1400px) {
    .form-control {
        min-height: 40px;
    }
}

@media (max-width: 990px) {
    .stat {
       justify-content: center;
    }
    .stat__item {
        flex: none;
        width: 33.33333%;
        padding-top: 20px;
        padding-bottom: 20px;
        border: 0;
    }
    .stat__item:last-child {
        border-right: 0;
    }
    .footer__col--first {
        width: 100%;
    }
    .footer__col--second,
    .footer__col--third {
        width: 50%;
    }
    .instagram {
        justify-content: flex-start;
    }
    .instagram__item {
        width: auto;
        border-right: 1px solid white;
    }
}

@media (max-width: 770px) {
    .section {
        padding: 50px 0;
    }
    .footer__col--second,
    .footer__col--third {
        width: 100%;
    }
}


@media (max-width: 700px) {
    .stat__text {
        font-size: 10px;
    }
    .stat {
        margin-top: 0;
    }
    .stat__item {
        width: 50%;
    }
}



/***************** Modal **********************/
.modal {
    display: none;
    position: fixed;
    z-index: 100111111;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: black;
    flex-direction: column;
    justify-content: center;
}
.modal-form{
    width: 100%;
    /*max-width: 1200px;*/
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #151515;
    padding: 50px;
    width: 100%;
    height: 100%;
    position: relative;
}
.modal-header {
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #469cd4;
    transition: all 0.3s;
}
#modal-title {
    font-size: 25px;
    font-weight: 200;
    margin: 50px 0 0 0;
    text-align: center;
    color: white;
}
.modal-subtitle{
    margin: 10px 0 15px 0;
    font-size: 15px;
    text-align: center;
    color: silver;
}
.close {
    color: #000;
    font-size: 40px;
    text-decoration: none;
    cursor: pointer;
    margin-top: -3px;
}
.modal-header:hover, .modal-header:focus {
    background-color: #5f8d46;
}

.modal-request{
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/*************modal project*/
.project-name{
    font-size: 30px;
    color: #ffffff;
    text-align: left;
    margin: 0 0 10px 0;
    font-weight: 300;
}
.project-dec {
    font-size: 15px;
    color: #c2c2c2;
    text-align: left;
    margin: 0 0 10px 0;
}
.handover{
    font-size: 16px;
    color: #eaeaea;
    text-align: left;
    line-height: 1.5;
    margin: 0;
}

.modal-cta-form{
    margin-top: 10px;
    text-align: center;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table td,
.table th {
    padding: 5px;
    border: 1px solid #4c4c4c;
    text-align: center;
    font-size: 15px;
    color: silver;
}

.table th {
    color: #ffffff;
}

@media (max-width: 1400px) {
    .modal-content {
        padding: 50px 30px;
        width: 650px;
    }
}

@media (max-width: 1200px) {
    .modal-content {
        padding: 50px 30px;
        width: 450px;
    }
    .project-dec {
        font-size: 12px;
        margin: 0 0 7px 0;
    }
    .project-name {
        font-size: 25px;
        margin: 0 0 5px 0;
    }
    .handover {
        font-size: 14px;
    }
    .table {
        margin-top: 10px;
    }
    .table td, .table th {
        padding: 5px;
        font-size: 13px;
    }
    .table td, .table th {
        padding: 4px;
        font-size: 11px;
    }
    #modal-title {
        font-size: 20px;
        margin: 20px 0 0 0;
    }
    .modal-subtitle {
        margin: 7px 0 10px 0;
        font-size: 13px;
    }
    .form-control {
        min-height: 38px;
        margin-bottom: 4px;
    }
}

@media (max-width: 950px) {
    .modal-header {
        width: 50px;
        height: 50px;
    }
    .modal {
        overflow: scroll;
    }
    .modal-content {
        padding: 30px;
        height: auto;
    }
    .modal-form{
        flex-wrap: wrap;
    }
    .modal-content {
        padding: 50px 30px;
        width: 100%;
    }
}

@media (max-width: 700px) {
    .modal {
        overflow: scroll;
        justify-content: start;
    }
    .modal-content {
        width: 100%;
        padding: 50px 15px 70px 15px;
    }
    .project-dec {
        font-size: 14px;
    }
    #modal-title {
        font-size: 15px;
        font-weight: bold;
    }
    .modal-subtitle{
        margin: 15px 0;
    }
    .gradient-button {
        padding: 13px 30px;
        font-size: 13px;
    }
    .project-name {
        font-size: 22px;
    }
    .handover {
        font-size: 15px;
    }
}


/*********************** whatsapp ************************/
.whatsapp-group {
    position: fixed;
    right: 3px;
    bottom: 0;
    z-index: 300000;
    cursor: pointer;
}

.tg-group{
    position: fixed;
    right: 3px;
    bottom: 54px;
    z-index: 300000;
    cursor: pointer;
}

.grow img {
    width: 50px;
}

.text-center{
    text-align: center;
}

@media (max-width: 400px) {
    .grow img {
        width: 40px;
    }
    .tg-group {
        bottom: 44px;
    }
}

/*footer*/
.intro__inner2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 120px;
    margin-bottom: 120px;
    z-index: 2;
    text-align: center;
}

.cta-section {
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-color: black;
}

.slider__inner2 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-left: 200px;
    margin-top: 50px;
}

.no-bg{
    background: transparent!important;
    margin-bottom: 0!important;
}

.slider__num2 {
    display: flex!important;
    flex-direction: column;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.slider__num2 img{
    max-width: 100%;
    height: auto;
    opacity: 0.6;
}

.slider__text2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.slider__text2 p {
    width: fit-content;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.478);
    margin: 0;
    margin-top: 20px;
}

.cta_box {
    position: relative;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.cta_img{
    position: relative;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro_box2 {
    width: 40%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.cta_title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 40px;
}

.cta-form {
    padding: 40px;
    text-align: center;
    position: relative;
    background-color: #151515;

}

.cta-box-item {
    position: relative;
}

.section-about{
    position: relative;
    padding: 150px 0;
    background-color: #161616;
}

.cta_about{
    width: 70%;
}

.mar-t-100{
    margin-top: 100px;
}

.mar-t-200{
    margin-top: 150px;
}

@media (max-width: 1600px) {
    .slider__inner2 {
        margin-left: 150px;
    }
}

@media (max-width: 1400px) {
    .slider__inner2 {
        margin-left: 100px;
    }
    .slider__text2 p {
        font-size: 12px;
        margin-top: 15px;
    }
    .slider__num2 {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    .section-about {
        padding: 120px 0;
    }
}

@media (max-width: 1200px) {

    .slider__inner2 {
        margin-left: 80px;
    }
    .slider__text2 p {
        font-size: 11px;
    }
    .slider__num2 {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 1100px) {
    .slider__num2 {
        width: 45px;
        height: 45px;
        margin-bottom: 10px
    }
    .slider__text2 p {
        font-size: 11px;
        margin-top: 10px;
    }
    .slider__item2 {
        width: 33.3%;
        margin-bottom: 30px;
    }
    .section-about {
        padding: 100px 0;
    }
}

@media (max-width: 1000px) {
    .slider__inner2 {
        margin-left: 40px;
    }
    .cta_box {
        width: 47%;
    }
}

@media (max-width: 800px) {
    .cta_title {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .slider__text2 p {
        font-size: 10px;
    }
    .intro__inner2 {
        padding: 0 20px;
    }
    .slider__num2 {
        margin-bottom: 0;
    }
}

@media (max-width: 700px){
    .cta_box {
        width: 100%;
    }
    .cta_img {
        width: 100%;
        margin-top: 50px;
    }
    .mar-t-100 {
        margin-top: 50px;
    }
    .mob-revers{
        flex-direction: column-reverse;
        margin-top: 60px;
    }
    .section-about {
        padding: 50px 0;
    }
    .cta_about {
        width: 100%;
    }
    .slider__inner2 {
        justify-content: left;
        margin-left: 0;
        margin-top: 20px;
    }
    .cta-form {
        padding: 20px 15px 15px;
    }
    .slider__num2 {
        width: 37px;
        height: 37px;
    }
    .slider__item2 {
        width: 49%;
        margin-bottom: 25px;
    }
}

/* loader */
.loading{
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: center;
    position: fixed; /* Stay in place */
    z-index: 1111111111; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: #232425; /* Fallback color */
}

.loader {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    border: 16px solid #00A9CE;
    border-radius: 50%;
    border-top: 16px solid #ffffff;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

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

/************************ Project filter ****************************/
/*card list*/
.card-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.card{
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 45%;
    padding: 20px;
    background-color: black;
    border-radius: 10px;
    margin: 100px 0 0 0;
    position: relative;

    background-size: cover;
    background-image: linear-gradient(194deg, rgb(13 13 13 / 54%) 0%, rgba(13,13,13,0.969) 100%), url(/assets/images/container02.svg?v=8fa4c094);
}

.card-img{
    position: absolute;
    right: -70px;
    top: -50px;
    width: 55%;
    height: 100%;
}

.card-img img {
    max-width: 100%;
}

.card-content{
    width: 60%;
}

.card-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #8e8e8e;
    line-height: 1.3;
    text-transform: uppercase;
    margin-top: 50px;
}

.card-content p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    margin: 15px 0 0 0;
}

@media (max-width: 1700px) {
    .card-content h2 {
        font-size: 35px;
    }
}

@media (max-width: 1600px) {
    .card-content h2 {
        font-size: 30px;
    }
    .card-img {
        width: 50%;
    }
}

@media (max-width: 1500px) {
    .card-content h2 {
        font-size: 27px;
    }
}

@media (max-width: 1400px) {
    .card-content h2 {
        font-size: 23px;
    }
    .card-img {
        width: 55%;
        right: -50px;
        top: -30px;
    }
    .card-content p {
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    .card-content h2 {
        font-size: 20px;
    }
    .card-content {
        width: 80%;
    }
}

@media (max-width: 1100px) {
    .card-content h2 {
        font-size: 18px;
    }
}
@media (max-width: 1000px){
    .card-content {
        width: 80%;
    }
    .card-img {
        width: 55%;
        right: -25px;
    }
    .card-content h2 {
        font-size: 17px;
    }
    .card-content p {
        font-size: 12px;
    }
}
@media (max-width: 900px) {
    .card-content {
        width: 100%;
    }
}
@media (max-width: 700px){
    .card {
        width: 100%;
        margin: 50px 0 0 0;
    }
    .card-img {
        width: 50%;
        right: -15px;
    }
    .card-content p {
        font-size: 13px;
    }
    .list-menu {
        overflow-x: scroll;
    }
    .list-menu ul {
        width: 700px;
        padding: 5px;
    }
    .list-menu ul li a {
        padding: 15px 25px;
    }
    .card-content {
        padding: 10px;
    }
}