
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    font-family: 'Poppins', sans-serif;
}


.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.header-up {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    padding-left: 25px;
    padding-right: 25px;
}




.header-global {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.header-global select {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    padding: 10px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 999999;
}

.header-global:hover select {
    display: block;
}

.language-selector {
    width: 100px;
    display: none;
    position: absolute;
    text-align: center;
    z-index: 999999;
    background-color: #fff;
}

.language-selector ul{
    margin-right: 8px;
}
.language-selector ul li{
    margin-top: 8px;
}

.language-selector.active {
    display: block;
}


.header-up-enhance p {
    font-size: 0.725rem;
    font-weight: 600;
    position: relative;
}

.header-up .header-up-enhance p::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: black;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.header-up .header-up-enhance p:hover::after {
    width: 100%;
    transform-origin: left;
    transform: scaleX(1);
}



.header-up-right {
    width: 43%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-up-right .ferrovial p {
    font-size: 0.725rem;
    font-weight: 600;
    position: relative;
}

.header-up-right .ferrovial p::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: black;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.header-up-right .ferrovial p:hover::after {
    width: 100%;
    transform-origin: left;
    transform: scaleX(1);
}


.header-up-right .header-global p {
    font-size: 0.725rem;
    font-weight: 600;
    position: relative;
}

.header-up-right .header-global p::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: black;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.header-up-right .header-global p:hover::after {
    width: 100%;
    transform-origin: left;
    transform: scaleX(1);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
    z-index: 7;

}

.header-logo{
    width: 150px;
    height: 76px;
}

 .header-logo-fixed{
    display: none;
    width: 116px;
    height: 89px;
    }

    .header-logo-fixed img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.header-logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-menu {
    width: 60%;
}

.header-menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-menu ul li {
    position: relative;
}

.header-menu ul li a {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.header-menu ul li .hover-a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.header-menu ul li .hover-a:hover::after {
    width: 100%;
    transform-origin: left;
    transform: scaleX(1);
}


.header-hamburger-menu {
    display: none;
    cursor: pointer;
}

.hamburger-menu-none {
    display: none;
}

.hamburger-menu-x {
    cursor: pointer;
    display: none;
}

.hamburger-menu-x span {
    font-size: 30px;
    color: #abb8c3;
}

.active-hamburger-x {
    display: block;
}

.header-hamburger-menu i {
    font-size: 30px;
    color: #abb8c3;
}


.hamburger-menu {
    opacity: 0;
    position: absolute;
    right: -100%;
    top: 80px;
    height: 400px;
    width: 0;
    background-color: #ffffff;
    transition: 0.3s ease;
    overflow: hidden;
}

.active-menu {
    opacity: 1;
    width: 100%;
    right: 0;
    z-index: 9999;
    overflow: hidden;
}

.hamburger-menu .hamburger-menu-inner ul {
    width: 100%;
    border-bottom: 1px solid #acadaf;
    border-top: 1px solid #acadaf;
}


.hamburger-menu .hamburger-menu-inner ul li {
    padding: 0 25px;
    height: 58.8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #acadaf;
}

.hamburger-menu .hamburger-menu-inner ul li a {
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/*.hamburger-menu .hamburger-menu-inner ul li:nth-child(5) {*/
/*    border-bottom: none;*/
/*    height: 30px;*/
/*}*/

.contact-ferrovial {
    display: flex;
    justify-content: center;
    font-size: 0.725rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.6em;
}

.hamburger-menu .hamburger-menu-down {
    width: 100%;
    height: 49px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.hamburger-menu .hamburger-menu-down .hamburger-enhance p {
    font-size: 0.725rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hamburger-global p{
    color:#fff;
}

.hamburger-menu .hamburger-menu-down .hamburger-global p {
    font-size: 0.725rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hamburger-global {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.hamburger-global select {
    display: none;
    position: absolute;
    top: -10px;
    left: -4px;
    width: 80px;
    padding: 10px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 999999;
}

.hamburger-global:hover select {
    display: block;
}

/* ====================================FOOTERR==================== */



footer {
    padding-bottom: 25px;
    padding-top: 25px;
    border-top: 1px solid #666;
}

footer hr {
    margin-top: 20px;
    margin-bottom: 20px;
}



.menu-app {
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 20px;
    align-items: center;
}

.menu-app .footer-menu ul {
    display: flex;
    align-items: center;
}

.menu-app .footer-menu ul li {
    margin-left: 1.5rem;
}

.turn {
    transform: rotate(268deg);
    font-weight: 600;
    font-size: 1rem;
    margin-left: 3px;
}

.menu-app .footer-menu ul li a {
    color: #666;
    font-weight: 400;
    font-size: 1rem;
}


.menu-app .mobile-app {
    display: flex;
    align-items: center;
}

.menu-app .mobile-app p,
a,
span {
    margin-left: 0.5rem;
    color: #000;
}

.menu-app .mobile-app i {
    color: #666;
}

.social-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

.social-copy .social {
    display: flex;
}

.social-copy .social .social-icon {
    margin-left: 0.6rem;
    padding: 0;
}

.social-copy .social .social-icon a {
    font-size: 22px;
    color: #666;
}

.social-copy .social .social-icon a:hover {
    transition: 0.5s;
    color: #000;
}

.social-copy .copy {
    width:40%;
    display: flex;
    align-items: center;
}

.social-copy .copy ul {
    width:100%;
    display: flex;
justify-content: space-around;
    align-items: center;}

.social-copy .copy ul li {
    margin-left: 1.5rem;
}

.social-copy .copy ul li a {
    font-weight: 400;
    font-size: .875rem;
    color: #666;
}

.social-copy .copy ul li span {
    font-weight: 400;
    font-size: .775rem;
    color: #666;
}

.animat {
    position: relative;
    z-index: 999;
}

.animat::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #666;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 999;
}

.animat:hover:after {
    width: 100%;
    transform-origin: left;
    transform: scaleX(1);
}



#spl {
    position: relative;
}

#spl-li {
    position: relative;
    z-index: 999;

}

#s-text {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.428);

}



#s-text a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#s-text a:hover::after {
    width: 100%;
    transform-origin: left;
    transform: scaleX(1);
}

#s-text a i {
    font-size: 1.2rem;
    margin-left: 5px;
}



/* business dropdown */


.business-dropdown {
    width: 100%;
    height: 600px;
    background-color: #fff;
    position: absolute;
    top: 53px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    margin-top: 26px;
    transition: 0.3s ease-in;
    padding-right: 25px;
}


.business-dropdown-active {
    opacity: 1;
    visibility: visible;
    transition: 0.3 ease-in;
    width: 90%;
    position: absolute;
    left: 5%;
}


.business-about:hover a {
    color: #000 !important;
}

.busines-about:hover .hover-i {
    transform: rotate(180deg);
    color: #000 !important;
}

.business-dropdown-up {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;

}

.business-dropdown-link a {
    color: #666 !important;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 2px;

}

.business-dropdown-link i {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin-left: 5px;
}

.business-dropdown-x i {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

.business-dropdown-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.business-dropdown-left {
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-left: 15px;
}

.business-dropdown-left a {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}



.business-inner-right {
    width: 40%;
    padding: 25px;
}

.business-inner-right-title h2 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    line-height: 1.5em;
    color: #000 !important;
    margin-bottom: 20px;
}

.business-inner-right-cards {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.business-card {
    width: 200px;
    height: 220px;
    cursor: pointer;
}

.business-card .business-card-image {
    width: 100%;
    height: 100%;
}

.business-card .business-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-card-title {
    margin-top: 15px;
    width: 180px;
    text-indent:-0.5em;
}

.business-card-title p {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #000 !important;
}






.about-dropdown {
    width: 100%;
    height: 600px;
    background-color: #fff;
    position: absolute;
    top: 53px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    margin-top: 26px;
    transition: 0.3s ease-in;
    padding-right: 25px;
}

.hover-about .hover-i {
    transition: 0.3s ease-in;
}


.about-dropdown-active {
    opacity: 1;
    visibility: visible;
    transition: 0.3 ease-in;
    width: 90%;
    position: absolute;
    left: 5%;
}

.hover-about:hover {
    cursor: pointer;
    background-color: #fff !important;
    color: #000 !important;
    padding: 28px 5px;
}

.hover-about:hover a {
    color: #000 !important;
}

.hover-about:hover .hover-i {
    transform: rotate(180deg);
    color: #000 !important;
}

.about-dropdown-up {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;
}

.about-dropdown-link a {
    color: #666 !important;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 2px;

}

.about-dropdown-link i {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin-left: 5px;
}

.about-dropdown-x i {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

.about-dropdown-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}

.about-inner-left {
    width: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.left-link {
    width: 100%;
    height: 100px;
    /* margin-bottom: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #666;
    border-left: none;
    border-top: none;
}

.left-link a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #000 !important;
    width: 100px;
}

/* ====menu hover */

.about-inner-center-one .about-inner-center-up {
    width: 100%;
}

.about-inner-center-up a {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #666 !important;
    letter-spacing: 2px;
    margin-right: 5px;
}

.about-inner-center-up i {
    font-size: 18px;
    font-weight: 600;
    color: #666;
}

.about-inner-center-down {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.about-inner-center-down .about-center-link {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.about-inner-center-down .about-center-link a {
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #000 !important;
}

.management-link {
    width: 80% !important;
}

.board-link {
    width: 55% !important;

}

.about-inner-right {
    width: 40%;
    padding: 25px;
}

.about-inner-right-title h2 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    line-height: 1.5em;
    color: #000 !important;
    margin-bottom: 20px;
}

.about-inner-right-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-card {
    width: 200px;
    height: 220px;
    cursor: pointer;
}

.about-card .about-card-image {
    width: 100%;
    height: 100%;
}

.about-card .about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card-title {
    margin-top: 15px;
    width: 180px;
    text-indent:-0.5em;
}

.about-card-title p {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #000 !important;
}



.about-inner-center-one {
    width: 33%;
    padding: 25px;
    visibility: visible;
    transition: 0.3s ease-in;
    margin-left: -100px;
}

.about-one-none {
    display: none;
    transition: 0.3s ease-in;
}

.about-one-visibility{
    visibility: visible;
}

.about-one-none {
    display: none;
    transition: 0.3s ease-in;
}

.about-inner-center-two {
    width: 33%;
    padding: 25px;
    display: none;
    visibility: hidden;
    transition: 0.3s ease-in;
}

.about-inner-two-active {
    display: block;
    visibility: visible;
    transition: 0.3s ease-in;
}

.hamburger-about-dropdown {
    opacity: 0;
    position: absolute;
    right: -100%;
    top: 80px;
    height: 350px;
    width: 0;
    background-color: #ffffff;
    transition: 0.4s ease;
    overflow: hidden;
}

.hamburger-about-dropdown-active {
    opacity: 1;
    width: 100%;
    right: 0;
    z-index: 9999;
    overflow: hidden;
    transition: 0.4s ease;
}

.hamburger-menu-about-dropdown-back-icon {
    margin-bottom: 15px;
    padding-left: 25px;
}

.hamburger-menu-about-dropdown-back-icon i {
    font-size: 18px;
    font-weight: 600;
    color: #666;

}

.hamburger-about-dropdown-up-title {
    margin-bottom: 15px;
    padding-left: 25px;
}

.hamburger-about-dropdown-up-title p {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hamburger-about-dropdown-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hamburger-about-dropdown-inner-link {
    height: 58.8px;
}

.hamburger-about-dropdown-inner-link .hamburger-about-dropdown-inner-link-up {
    padding-left: 14px;
    padding-right: 25px;
    width: 100%;
    height: 58.8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.hamburger-about-dropdown-inner-link a {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.4px;
}

.hamburger-about-dropdown-inner-link p i {
    font-size: 1rem;
    font-weight: 600;
    color: #ffc700;
}


.hamburger-about-dropdown-inner-link-dropdown a {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.25px;
    line-height: 1.5556em;
    margin-top: 8px;
}

.hamburger-about-dropdown-inner-link-dropdown {
    width: 100%;
    opacity: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column !important;
    transition: height 0.4s ease-in-out;
    padding-left: 14px;
    padding-right: 25px;
}

.hamburger-about-dropdown-inner-link-dropdown-active {
    width: 100%;
    opacity: 1;
    visibility: visible;
    transition: height 0.4s ease-in-out;
}


.about-link-height {
    height: 58.8px;
    transition: heigth 0.4s ease-in;
}

.about-link-height-two {
    height: 58.8px;
    transition: heigth 0.4s ease-in;
}

.about-link-height-two-active {
    height: 90px;
    transition: heigth 0.4s ease-in;
}

.about-link-height-active {
    height: 190px;
    transition: heigth 0.4s ease-in;
}

.hamburger-about-dropdown-inner-link-two {
    width: 100%;
    opacity: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column !important;
    transition: height 0.4s ease-in-out;
    padding-left: 14px;
    padding-right: 25px;
}

.hamburger-about-dropdown-inner-link-two-active {
    width: 100%;
    opacity: 1;
    visibility: visible;
    transition: height 0.4s ease-in-out;
}



/* ===BUSINESS DROPDOWN=== */


.hamburger-business-dropdown {
    opacity: 0;
    position: absolute;
    right: -100%;
    top: 80px;
    height: 350px;
    width: 0;
    background-color: #ffffff;
    transition:  0.4s ease;
    overflow: hidden;
}

.hamburger-business-dropdown-active {
    opacity: 1;
    width: 100%;
    right: 0;
    z-index: 9999;
    overflow: hidden;
    transition:  0.4s ease;
}
.hamburger-menu-business-dropdown-back-icon {
    margin-bottom: 15px;
    padding-left: 25px;
}

.hamburger-menu-business-dropdown-back-icon i{
    font-size: 18px;
    font-weight: 600;
    color: #666;

}
.hamburger-business-dropdown-up-title{
    margin-bottom: 15px;
    padding-left: 25px;
}
.hamburger-business-dropdown-up-title p{
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hamburger-business-dropdown-inner{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hamburger-business-dropdown-inner-link{
    height: 58.8px;
}

.hamburger-business-dropdown-inner-link .hamburger-business-dropdown-inner-link-up{
    padding-left: 14px;
    padding-right: 25px;
    width: 100%;
    height: 58.8px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: relative;
}

.hamburger-business-dropdown-inner-link a{
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 1.4px;
}

.hamburger-business-dropdown-inner-link-up a{
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    margin-top: 15px;
}

.hamburger-business-dropdown-inner-link p i{
    font-size: 1rem;
    font-weight: 600;
    color: #ffc700;
}


.hamburger-business-dropdown-inner-link-dropdown a{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.25px;
    line-height: 1.5556em;
    margin-top: 8px;
}

.hamburger-business-dropdown-inner-link-dropdown{
    width: 100%;
    opacity: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column !important;
    transition: height  0.4s ease-in-out;
    padding-left: 14px;
    padding-right: 25px;
}

.hamburger-business-dropdown-inner-link-dropdown-active{
    width: 100%;
    opacity: 1;
    visibility: visible;
    transition: height  0.4s ease-in-out;
}


.business-link-height{
    height: 58.8px;
    transition: heigth 0.4s ease-in;
}

.business-link-height-two{
    height: 58.8px;
    transition: heigth 0.4s ease-in;
}

.business-link-height-two-active{
    height: 90px;
    transition: heigth 0.4s ease-in;
}
.business-link-height-active{
    height: 131px;
    transition: heigth 0.4s ease-in;
}

.hamburger-business-dropdown-inner-link-two{
    width: 100%;
    opacity: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column !important;
    transition: height  0.4s ease-in-out;
    padding-left: 14px;
    padding-right: 25px;
}

.hamburger-business-dropdown-inner-link-two-active{
    width: 100%;
    opacity: 1;
    visibility: visible;
    transition: height  0.4s ease-in-out;
}



/* historyheadimg bg */

.animat::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 999;
}

.animat:hover:after {
    width: 100%;
    transform-origin: left;
    transform: scaleX(1);
}


.projects {
    position: relative;
    top: -80px;
    width: 100%;
    height: 1000px;
    z-index: 5;
    background-color: #fff;
}



.projects-bg {
    position: relative;
    top: 0;
    width: 100%;
    height: 700px;
    z-index: 5;
    background: #5E9FE3;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3) inset;
}



.projects-left {
    position: absolute;
    top: 30%;
    left: 4%;
}

.projects-left-links {
    margin-bottom: 30px;
}


.projects-left .projects-left-links a {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.projects-left-title {
    margin-bottom: 50px;
}

.projects-left-title h2 {
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.1em;
}

.projects-left-button {
    width: 295px;
    height: 70px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.projects-bg {
    position: relative;
}


.projects-left-button a {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    width: 22.25rem;
    padding: 23px 51px;
    text-align: center;
    color: #000;
    border: 0.125rem solid transparent;
    background-color: #fff;
    transition: background-color .25s ease-out .1s, color .35s ease-out, box-shadow .35s ease-out;
    display: inline-table;
    vertical-align: middle;
    position: relative;
    border-radius: 1.875rem;
    box-sizing: border-box;
}


.projects-left-button a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    border-radius: 50px;
    width: 100%;
    height: 100%;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.projects-left-button a:hover::before {
    width: 100%;
    transform-origin: center;
    transform: scaleX(1);
    height: 100%;
    border-radius: 1.875rem;
}

.projects-left-button a:hover {
    background: #000;
    transition: 0.3s ease;
}

.projects-left-button a:hover span {
    color: #fff;
    position: relative;
    z-index: 999;
    margin: 0;
}

.projects-right {
    width: 53%;
    height: 100%;
    position: absolute;
    top: 22%;
    right: 10%;
    z-index: 5;
}

.projects-right-image:nth-child(1) {
    width: 400px;
    height: 380px;
    position: absolute;
    top: 24%;
    right: 20%;
    z-index: -5;
}

.projects-right-image:nth-child(1) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.projects-right-image:nth-child(2) {
    width: 590px;
    height: 400px;
    position: absolute;
    top: 13%;
    right: -112px;
    z-index: 5;
}

.projects-right-image:nth-child(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}


.projects-right-image:nth-child(3) {
    width: 396px;
    height: 300px;
    position: absolute;
    top: 38%;
    z-index: -5;
    right: -18%;

}

.projects-right-image:nth-child(3) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #c8c8c83d;
}


.projects-svg {
    position: absolute;
    top: 46%;
    right: 285px;
    z-index: 5;
}

.projects-svg-two {
    position: absolute;
    top: 26%;
    right: 5px;
    z-index: -5;
}




.projects-svg-three {
    top: 100%;
    position: absolute;
    right: 19px;
    z-index: -5;

}

.projects-title-items {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    position: relative;
    z-index: 5;
}

.projects-items {
    text-align: center;
    width: 42%;
}

.projects-items h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.25rem;
    line-height: 1.5em;
    letter-spacing: 0;
}

.projects-items p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.25px;
    line-height: 1.5556em;
}


/* ======ALL PROJECTS=== */


.projects-cards {
    margin-top: 130px;
    margin-bottom: 50px;
}

.projects-cards-inner {
    padding-left: 25px;
    padding-right: 25px;
}

.projects-cards-up {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 57px;
}


/*PROJECTS TYPES*/

.projects-title{
    width: 100%;
    text-align: center;
}

.projects-title h2{
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.25rem;
    line-height: 1.5em;
    letter-spacing: 0;
}

.projects-types{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 35px;
}

.projects-types .project-type{
    font-size: 18px;
    cursor: pointer;
    border-bottom: 2px solid #4799e5;

}

.project-type:hover{
    color: #4799e5;
}

.filter-button {
    width: 278px;
    display: flex;
    align-items: center;
}

.filter-button button {
    border: none;
    width: 170px;
    height: 47px;
    border-radius: 20px;
    background-color: #ffc700;
    font-size: 0.8125rem;
    letter-spacing: 2px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
}


.filter-button-mobile button {
    border: none;
    width: 230px;
    height: 47px;
    border-radius: 20px;
    background-color: #ffc700;
    font-size: 0.8125rem;
    letter-spacing: 2px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
}

.filter-button-mobile button i {
    transform: rotate(90deg);
    margin-right: 8px;
    font-size: 20px;
}

.filter-button-mobile button span {
    position: absolute;
    top: -9px;
    right: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter-button-mobile button:hover {
    background-color: #e4b403;
}

.filter-button button:hover {
    background-color: #e4b403;
}



.filter-button button span {
    position: absolute;
    top: -9px;
    right: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter-button button i {
    transform: rotate(90deg);
    margin-right: 8px;
    font-size: 20px;
}

.filter-count {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    line-height: 1.5em;
    color: #666;
}

.filter-projects {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    line-height: 1.5em;
    color: #666;
}

.projects-search input {
    width: 230px;
    height: 56px;
    border-radius: 20px;
    outline: none;
    padding: 18px 0px 15px 16px;
    border: 1px solid #abb8c3;
    transition: width 0.4s ease;
}

.projects-cards-mobile-up {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
}

.projects-search-mobile input {
    width: 450px;
    height: 56px;
    border-radius: 20px;
    outline: none;
    padding: 18px 0px 15px 16px;
    border: 1px solid #abb8c3;
}

.projects-search-mobile input::placeholder {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.25px;
    line-height: 1.5556em;
}

.projects-search-mobile {
    position: relative;
}

.projects-search-mobile i {
    position: absolute;
    top: 13px;
    right: 15px;
    font-size: 25px;
    color: #abb8c3;
    cursor: pointer;
}

.projects-search input:focus {
    width: 400px;
}

.projects-search input::placeholder {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.25px;
    line-height: 1.5556em;
}

.projects-search {
    position: relative;
}

.projects-search i {
    position: absolute;
    top: 13px;
    right: 15px;
    font-size: 25px;
    color: #abb8c3;
    cursor: pointer;
}


.projects-filters-section {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.projects-filters-section-left {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-section-left-title h2 {
    font-size: 0.8125rem;
    color: #666;
    font-weight: 600;
    letter-spacing: 2px;
}


.projects-filters-section-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.projects-name {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 160px;
    height: 39px;
    border-radius: 20px;
    border: 1px solid #abb8c3;
    position: relative;
}

.projects-name-title {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 8px;
    border-right: 1px solid #666;
}

.projects-name-title h3 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .5px;
    color: #666;
}

.projects-name-icon {
    position: absolute;
    cursor: pointer;
    padding: 10px;
    right: 2px;
    color: #666;
}

.filter-clear {
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    letter-spacing: .5px;
}

.filter-mobile-clear {
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    letter-spacing: .5px;
}


.projects-filters-section-right {
    width: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filters-section-right-icon {
    cursor: pointer;
}

.filters-section-right-icon .svg-one {
    fill: #666;
}
.filters-section-right-icon .svg-one:hover {
    fill:#4799e5;
}

.filters-section-right-icon .svg-two {
    fill: #666;
}

.svg-active{
    fill: #000;
}
.filters-section-right-icon .svg-two:hover{
    fill:#4799e5;
}



.projects-cards-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    display: none;
}

.projects-card-mobile-right {
    width: 25%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.projects-cards-mobile-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.25em;
}

.projects-mobile-cards-count {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 25px;
    display: none;
}


.cards-colum {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
    display: none;
    transition: all 0.4s ease;
}

.cards-colum-active{
    display: block;
}

.card {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 30px;
}

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

.project-info {
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.country-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 2px;
}

.project-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.card-inner-left h2 {
    width: 98%;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    line-height: 1.5em;
    transition: 0.3s ease;
}

.card-image {
    width: 200px;
    height: 200px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card:hover .card-inner-left h2 {
    color: #666;
}

.cards-flex {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 50px;
    position: relative;
}

.cards-flex-none{
    display: none;
}

.cards-flex-card {
    width: 280px;
    height: auto;
    overflow: hidden;
    background-color: #fff;
    margin-bottom: 25px;
    box-shadow: 0.6rem 1.5rem 0.845rem hsla(210, 2%, 46%, .25);
}


/*.cards-flex-card:hover {*/
/*    height: 640px;*/
/*}*/

.cards-flex-card:hover .project-info {
    margin-top: 20px;
}

/* 2 */


/*.cards-flex-card:nth-child(2) {*/
/*    width: 280px;*/
/*    height: 470px;*/
/*    overflow: hidden;*/
/*    background-color: #fff;*/
/*    transition: height 0.4s ease;*/
/*    margin-bottom: 25px;*/
/*    box-shadow: 0.6rem 1.5rem 0.845rem hsla(210, 2%, 46%, .25);*/
/*}*/


/*.cards-flex-card:nth-child(2):hover {*/
/*    height: 490px;*/
/*}*/

/*.cards-flex-card:nth-child(2):hover .project-info {*/
/*    margin-top: 20px;*/
/*}*/

/*!* 3 *!*/

/*.cards-flex-card:nth-child(3) {*/
/*    width: 280px;*/
/*    height: 620px;*/
/*    overflow: hidden;*/
/*    background-color: #fff;*/
/*    transition: height 0.4s ease;*/
/*    margin-bottom: 25px;*/
/*    box-shadow: 0.6rem 1.5rem 0.845rem hsla(210, 2%, 46%, .25);*/
/*}*/


/*.cards-flex-card:nth-child(3):hover {*/
/*    height: 640px;*/
/*}*/

/*.cards-flex-card:nth-child(3):hover .project-info {*/
/*    margin-top: 20px;*/
/*}*/

/*!* 4 *!*/
/*.cards-flex-card:nth-child(4) {*/
/*    width: 280px;*/
/*    height: 470px;*/
/*    overflow: hidden;*/
/*    background-color: #fff;*/
/*    transition: height 0.4s ease;*/
/*    margin-bottom: 25px;*/
/*    box-shadow: 0.6rem 1.5rem 0.845rem hsla(210, 2%, 46%, .25);*/
/*}*/


/*.cards-flex-card:nth-child(4):hover {*/
/*    height: 490px;*/
/*}*/

/*.cards-flex-card:nth-child(4):hover .project-info {*/
/*    margin-top: 20px;*/
/*}*/

/*!* 5 *!*/
/*.cards-flex-card:nth-child(5) {*/
/*    width: 280px;*/
/*    height: 470px;*/
/*    overflow: hidden;*/
/*    background-color: #fff;*/
/*    transition: height 0.4s ease;*/
/*    margin-bottom: 25px;*/
/*    box-shadow: 0.6rem 1.5rem 0.845rem hsla(210, 2%, 46%, .25);*/
/*}*/


/*.cards-flex-card:nth-child(5):hover {*/
/*    height: 490px;*/
/*}*/

/*.cards-flex-card:nth-child(5):hover .project-info {*/
/*    margin-top: 20px;*/
/*}*/
/*!* 6 *!*/

/*.cards-flex-card:nth-child(6) {*/
/*    width: 280px;*/
/*    height: 620px;*/
/*    overflow: hidden;*/
/*    margin-top: -114px;*/
/*    background-color: #fff;*/
/*    transition: height 0.4s ease;*/
/*    margin-bottom: 25px;*/
/*    box-shadow: 0.6rem 1.5rem 0.845rem hsla(210, 2%, 46%, .25);*/
/*}*/


/*.cards-flex-card:nth-child(6):hover {*/
/*    height: 620px;*/
/*}*/

/*.cards-flex-card:nth-child(6):hover .project-info {*/
/*    margin-top: 20px;*/
/*}*/

/*!* 7 *!*/
/*.cards-flex-card:nth-child(7) {*/
/*    width: 280px;*/
/*    height: 470px;*/
/*    overflow: hidden;*/
/*    background-color: #fff;*/
/*    transition: height 0.4s ease;*/
/*    margin-bottom: 25px;*/
/*    box-shadow: 0.6rem 1.5rem 0.845rem hsla(210, 2%, 46%, .25);*/
/*}*/


/*.cards-flex-card:nth-child(7):hover {*/
/*    height: 490px;*/
/*}*/

/*.cards-flex-card:nth-child(7):hover .project-info {*/
/*    margin-top: 20px;*/
/*}*/

/*!* 8 *!*/
/*.cards-flex-card:nth-child(8) {*/
/*    width: 280px;*/
/*    height: 620px;*/
/*    margin-top: -114px;*/
/*    overflow: hidden;*/
/*    background-color: #fff;*/
/*    transition: height 0.4s ease;*/
/*    margin-bottom: 25px;*/
/*    box-shadow: 0.6rem 1.5rem 0.845rem hsla(210, 2%, 46%, .25);*/
/*}*/


/*.cards-flex-card:nth-child(8):hover {*/
/*    height: 640px;*/
/*}*/

/*.cards-flex-card:nth-child(8):hover .project-info {*/
/*    margin-top: 20px;*/
/*}*/
/*!* 9 *!*/
/*.cards-flex-card:nth-child(9) {*/
/*    width: 280px;*/
/*    height: 620px;*/
/*    overflow: hidden;*/
/*    background-color: #fff;*/
/*    transition: height 0.4s ease;*/
/*    margin-bottom: 25px;*/
/*    box-shadow: 0.6rem 1.5rem 0.845rem hsla(210, 2%, 46%, .25);*/
/*}*/


/*.cards-flex-card:nth-child(9):hover {*/
/*    height: 640px;*/
/*}*/

/*.cards-flex-card:nth-child(9):hover .project-info {*/
/*    margin-top: 20px;*/
/*}*/


/*!* 10 *!*/
/*.cards-flex-card:nth-child(10) {*/
/*    width: 280px;*/
/*    height: 620px;*/
/*    overflow: hidden;*/
/*    background-color: #fff;*/
/*    transition: height 0.4s ease;*/
/*    margin-bottom: 25px;*/
/*    box-shadow: 0.6rem 1.5rem 0.845rem hsla(210, 2%, 46%, .25);*/
/*}*/


/*.cards-flex-card:nth-child(10):hover {*/
/*    height: 640px;*/
/*}*/

/*.cards-flex-card:nth-child(10):hover .project-info {*/
/*    margin-top: 20px;*/
/*}*/

/*!*11*!*/
/*.cards-flex-card:nth-child(11) {*/
/*    width: 280px;*/
/*    height: 470px;*/
/*    overflow: hidden;*/
/*    background-color: #fff;*/
/*    transition: height 0.4s ease;*/
/*    margin-bottom: 25px;*/
/*    box-shadow: 0.6rem 1.5rem 0.845rem hsla(210, 2%, 46%, .25);*/
/*}*/


/*.cards-flex-card:hover {*/
/*    height: 490px;*/
/*}*/

.cards-flex-card:hover .project-info {
    margin-top: 20px;
}
.cards-flex-card:hover .card-flex-title h2 {
    color: #666;
}



.card-flex-inner {
    width: 100%;
    height: auto;
}

.card-flex-title {
    padding: 20px;
}

.card-flex-title h2 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    line-height: 1.5em;
}

.cards-flex-card .project-info {
    padding: 20px;
}




.cards-flex-card .card-flex-image {
    width: 280px;
    height: 319px;
}

.cards-flex-card .card-flex-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.cards-flex-card:nth-child(2) .card-flex-image {*/
/*    width: 280px;*/
/*    height: 180px;*/
/*    object-fit: cover;*/
/*}*/

/*.cards-flex-card:nth-child(2) .card-flex-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

/*.cards-flex-card:nth-child(3) .card-flex-image {*/
/*    width: 280px;*/
/*    height: 319px;*/
/*}*/

/*.cards-flex-card:nth-child(3) .card-flex-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.cards-flex-card:nth-child(4) .card-flex-image {*/
/*    width: 280px;*/
/*    height: 180px;*/
/*}*/

/*.cards-flex-card:nth-child(4) .card-flex-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.cards-flex-card:nth-child(5) .card-flex-image {*/
/*    width: 280px;*/
/*    height: 180px;*/
/*}*/

/*.cards-flex-card:nth-child(5) .card-flex-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.cards-flex-card:nth-child(6) .card-flex-image {*/
/*    width: 280px;*/
/*    height: 319px;*/
/*}*/

/*.cards-flex-card:nth-child(6) .card-flex-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.cards-flex-card:nth-child(7) .card-flex-image {*/
/*    width: 280px;*/
/*    height: 180px;*/
/*}*/

/*.cards-flex-card:nth-child(7) .card-flex-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.cards-flex-card:nth-child(8) .card-flex-image {*/
/*    width: 280px;*/
/*    height: 319px;*/
/*}*/

/*.cards-flex-card:nth-child(8) .card-flex-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.cards-flex-card:nth-child(9) .card-flex-image {*/
/*    width: 280px;*/
/*    height: 319px;*/
/*}*/

/*.cards-flex-card:nth-child(9) .card-flex-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.cards-flex-card:nth-child(10) .card-flex-image {*/
/*    width: 280px;*/
/*    height: 319px;*/
/*}*/

/*.cards-flex-card:nth-child(10) .card-flex-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.cards-flex-card:nth-child(11) .card-flex-image {*/
/*    width: 280px;*/
/*    height: 319px;*/
/*}*/

/*.cards-flex-card:nth-child(12) .card-flex-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/


.map-types{
    position: absolute;
    top: 6%;
    left: 294px;
    height: 50px;
    width: 67%;
    z-index: 9999999;
}



.swiper {
    width: auto;
    height: 100%;
}

.swiper-slide {
    width: auto !important;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}

#map-type{
    display: flex;
    background: white;
    justify-content: start;
    align-items: center;
    border-radius: 27px;
    padding-left: 7px;
    padding-right: 7px;
    /*width: max-content;*/
    margin-right: 15px;
    height: 40px;
    cursor: pointer;
    line-height: 20px;
}

.swiper-slide{
    display: flex;
    background: white;
    justify-content: start;
    align-items: center;
    border-radius: 27px;
    padding-left: 7px;
    padding-right: 7px;
    /*width: max-content;*/
    margin-right: 15px;
    height: 40px;
    cursor: pointer;
    line-height: 20px;
}

#all-types{
    display: flex;
    background: white;
    justify-content: start;
    align-items: center;
    padding-left: 7px;
    padding-right: 7px;
    /*width: max-content;*/
    margin-right: 15px;
    cursor: pointer;
}

#map-type p{
    padding: 5px;
    font-size: 15px;
    padding-bottom: 0px;
    padding-top: 0px;
    margin-left: 15px;
}

#map-type span{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background-color: #2e89dc;
}

#map-type span i{
    color: #FFFFFF;
    font-size: 15px;
}


.swiper-button-prev{
    left: -47px !important;
}
.swiper-button-next{
    right: -47px !important;
}
:root {
    --swiper-navigation-size: 32px !important;
}
