* {
    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 {
    margin-left: 0.5rem;
    color: #000;
}

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

.menu-app .mobile-app 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 {
    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;
    color: #000;
}



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

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

.business-card-title p a{
    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;
}

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

.about-card-title p a{
    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;
}





/* ===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 a{
    color: #000;
}

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

.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 a{
    color: #000;
}

.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: 100px;
    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 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);
}


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



.project-bg-image {
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

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

.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}



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

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

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

.image-title {
    position: absolute;
    top: 33%;
    left: 4%;
    width: 72%;
    height: 123px;
}

.image-p-title {
    width: 45%;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 24px;
}

.image-p-title a {
    font-weight: 600;
    font-size: .975rem;
    letter-spacing: 2px;
    margin-right: 30px;
    color: #fff;
}

.image-title h2 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.1em;
    color: #fff;
}

.image-svg {
    position: absolute;
    top: 58%;
    left: 4%;
}


/* PROJECT INFO */

.project-info {
    width: 100%;
    height: 400px;
    margin-top: -80px;
    margin-bottom: 30px;
    border-bottom: 1.6px solid #4799e5;
}

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

.project-left {
    width: 40%;
    height: 100%;
    border-right: 1.6px solid #4799e5;
}

.project-right {
    width: 70%;
    height: 100%;
}


.project-left-up {
    width: 100%;
    height: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: 1.6px solid #4799e5;
}

.project-left-up h2{
    font-size:1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000
}

.location-name{
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-left-up p {
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-left: 10px;
}

.project-left-middle{
    width: 100%;
    height: 33%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-bottom: 1.6px solid #4799e5;
}

.project-left-middle p{
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-left: 10px;
}

.project-left-middle h2{
    font-size:1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
}

.project-left-down{
    width: 100%;
    height: 33%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.project-left-down h2{
    font-size:1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
}

.project-left-down p{
    width: 147px;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-left-down p i{
    font-size: 22px;
    color: greenyellow;
}



.project-right {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    background-image: url('../img/dot.png' );
    background-position: right;
    background-repeat: no-repeat;
    background-size: 50%;
}

.project-start h2{
    font-size:1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: #000;
}




.project-end h2{
    font-size:1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: #000;
}

.project-statistika{
    width: 71%;
}

.project-statistika-up {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.project-statistika-up span {
    font-weight: 400;
    font-size: 2.2rem;
    letter-spacing: 1.5px;
    line-height: 1em;
}

.project-statistika-up p {
    font-weight: 400;
    font-size: 3rem;
    letter-spacing: 1.5px;
    line-height: 1em;
}

.project-statistika-down {
    width:380px;
    padding-left: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-statistika-down p {
    font-size: 18px;
    color: #000;
    font-weight: 400;
}




/* =====PROJECT PAGE SLIDER===== */


.projects {
    width: 100%;
    height: 900px;
    padding-right: 25px;
    margin-bottom: 80px;
}

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

.projects-left {
    width: 46%;
    height: 700px;
    padding-left: 40px;
}


.projects-left-items p {
    margin-bottom: 0.3125rem;
    color: #666;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 2px;
}

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

.projects-left-items button {
    width: 230px;
    height: 62px;
    border: none;
    background-color: #ffc700;
    border-radius: 30px;
    margin-top: 40px;
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 100px;
    transition: all 0.4s ease-in-out;
}

.projects-left-items button:hover {
    background-color: #e2a30a;
    box-shadow: 0 -0.125rem 0.5rem 0 rgba(0, 0, 0, .32);
}

.projects-left-buttons {
    width: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 30px;
}

.projects-left-buttons-two {
    width: 50%;
    display: none;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 30px;
}

.project-left-button button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background-color: #ffc700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.project-left-button-two button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background-color: #ffc700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.project-left-button button:hover {
    transform: scale(1.03);
    box-shadow: 0 -0.125rem 0.5rem 0 rgba(0, 0, 0, .32);
}

.project-left-button-two button:hover {
    transform: scale(1.03);
    box-shadow: 0 -0.125rem 0.5rem 0 rgba(0, 0, 0, .32);
}

.project-right-button button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background-color: #ffc700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.project-right-button-two button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background-color: #ffc700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.project-right-button button:hover {
    transform: scale(1.03);
    box-shadow: 0 -0.125rem 0.5rem 0 rgba(0, 0, 0, .32);
}

.project-right-button-two button:hover {
    transform: scale(1.03);
    box-shadow: 0 -0.125rem 0.5rem 0 rgba(0, 0, 0, .32);
}


.project-buttons-numbers span {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    line-height: 1.5em;
}

.project-buttons-numbers-two span {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    line-height: 1.5em;
}

.projects-slider {
    width: 100%;
    height: 900px;
    overflow: hidden;
}

.swiper2 {
    width: 420px;
    height: 100%;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    width: 380px;
    height: 550px;
    position: relative;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.project-card {
    width: 100%;
    height: 100%;

}






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

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

.project-card-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.384);
}

.project-card-title p {
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
    position: absolute;
    bottom: 14%;
    left: 8%;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.project-card-title.active p {
    top: 8%;
    transform: translateY(0);
}


/* mySwipper3 slider-respons */

.mySwiper3 .swiper-pagination{
    display: none;
}
.mySwiper3 .swiper-slide img{
    height: 400px;
}

.mySwiper3 .swipper-button button{
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    background-color: #ffc700;
    border-radius: 1.5rem;
    border: none;
    cursor: pointer;
    display: flex;
    -webkit-box-align: center;
    text-align: center;
    align-items: center;
}
.mySwiper3 .swipper-button{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.mySwiper3 .swipper-button button .btn-svg{
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    vertical-align: middle;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.mySwiper3 .swipper-button button .btn-svg svg{
    display: block;
    height: 100%;
    width: auto;
}
.mySwiper3 .swipper-button button .btn-svg svg path{
    fill: #000;
}

.mySwiper3 .swipper-button .slider-count{
    display: flex;
    margin: 0 1rem 0 0;
}
.mySwiper3 .swipper-button .slider-count span:nth-child(1){
    display: block;
    min-width: 1.5625rem;
    text-align: center;
    color: #000;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: .25px;
    line-height: 1.5em;
}
.mySwiper3 .swipper-button .slider-count span:nth-child(2){
    display: block;
    margin: 0 0.25rem;
    color: #000;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: .25px;
    line-height: 1.5em;
}
.mySwiper3 .swipper-button .slider-count span:nth-child(3){
    display: block;
    min-width: 1.5625rem;
    text-align: center;
    color: #000;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: .25px;
    line-height: 1.5em;
}
.project-respons-slider{
    max-width: 1440px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

#swipper3{
    display: none;
}


/* WYSWIC */



.wyswic{
    margin-top: 100px !important;
    z-index: 10;
    position: relative;
    padding: 0 15px;
}
.wyswic-social{
    width: 280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: -3.5rem;
    right: 50%;
    -webkit-transform: translateX(21.875rem);
    -ms-transform: translateX(21.875rem);
    transform: translateX(21.875rem);
    padding-right: 30px;
}

.social-links{
    width: 75%;
    height: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    border: 1px solid #fff;
    border-right: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    background-color: rgb(234, 234, 234);
}

.social-links i{
    color: #666;
    font-size: 18px;
}

.social-links-active{
    opacity: 1;
    visibility: visible;
}

.social-transform{
    width: 27px;
    height: 27px;
    transform: rotate(45deg);
    background-color: rgb(234, 234, 234);
    position: absolute;
    z-index: -5;
    right: -5px;
}
.social-network{
    display: block;
    z-index: 20;
    position: relative;
    width: 3rem;
}
.social-network a{
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    box-shadow: 0.1875rem 0.375rem 0.9375rem 0 hsla(210,2%,46%,.25), inset 0 0 0 3rem #4799e5, inset 0 0 0 3rem #3295da;
    -webkit-transition: box-shadow .3s ease-out;
    transition: box-shadow .3s ease-out;
    z-index: 2;
}

.social-network a:hover{
    box-shadow: 0.1875rem 0.375rem 0.9375rem 0 hsla(210,2%,46%,.25), inset 0 0 0 0 #4799e5, inset 0 0 0 3rem #2992d2;
}
.social-network a .c-icon{
    margin-right: 0.25rem;
    height: 1.5rem;
    width: 1.5rem;
    display: inline-flex;
    vertical-align: middle;
    -webkit-box-pack: center;
    justify-content: center;
}
.social-network a .c-icon svg{
    display: block;
    height: 100%;
    width: auto;
}

.wyswic-inner{
    position: relative;
    max-width: 43.75rem;
    margin: 0 auto;
}
.wyswic-inner>.wyswic-inner-di:last-child{
    margin-bottom: 0;
}
.wyswic-inner-di .intro{
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.5em;
    color: #000;
    margin-bottom: 1rem;
    letter-spacing: .25px;
}
.wyswic-inner-di .intro-two{
    color: #666;
    font-weight: 400;
    font-size: 1.7rem;
    letter-spacing: .25px;
    line-height: 1.5556em;
}

.pro-img{
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}
.img-module{
    margin-top: 1.875rem;
}
.module-in{
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 6.25rem;
}
.mod-img{
    display: block;
    position: relative;
}
.mod-img img{
    width: 100%;
}
.mod-img::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .2;
    left: 0;
}



/*PROJECT SLIDERR*/


@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.cascade-slider_container {
    position: relative;
    max-width: 1000px;
    height: 40vh;
    margin: 0 auto;
}
.cascade-slider_item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0.9);
    transition: all 1s ease;
    opacity: 0;
    z-index: -1;
}
.cascade-slider_item.next {
    left: 50%;
    transform: translateY(-50%) translateX(-120%) scale(0.9);
    opacity: 1;
    z-index: 4 !important;
}
.cascade-slider_item.prev {
    left: 50%;
    transform: translateY(-50%) translateX(20%) scale(0.9);
    opacity: 1;
    z-index: 2 !important;
}
.cascade-slider_item.now {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(1.8);
    opacity: 1;
    z-index: 5;
}
.cascade-slider_arrow {
    display: inline-block;
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 5;
    transform: translate(0, -50%);
    color: #fff;
    font-size: 30px;
}
.cascade-slider_arrow-left {
    left: -4%;
    color: #000000;
}
.cascade-slider_arrow-right {
    right: -4%;
    color: #000000;
}
.cascade-slider_nav {
    position: absolute;
    bottom: -120px;
    width: 100%;
    text-align: center;
    z-index: 5;
}
.cascade-slider_dot {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin: 1em;
    background: #ddd;
    list-style: none;
    cursor: pointer;
}
.cascade-slider_dot:hover {
    background: #555;
}
.cascade-slider_dot.cur {
    background: #555;
}
.cascade-slider_slides img {
    max-width: 150px;
}
.cascade-slider_item:not(.now) img {
    filter: grayscale(0.95);
}
.cascade-slider_arrow img {
    width: 25px;
}
@media screen and (min-width: 414px) {
    .cascade-slider_container {
        height: 50vh;
    }
    .cascade-slider_slides img {
        max-width: 200px;
    }
}
@media screen and (min-width: 576px) {
    .cascade-slider_container {
        height: 60vh;
    }
    .cascade-slider_slides img {
        max-width: 270px;
    }
}
@media screen and (min-width: 768px) {
    .cascade-slider_item.next {
        left: 50%;
        transform: translateY(-50%) translateX(-125%) scale(0.6);
        opacity: 1;
        z-index: 1;
    }
    .cascade-slider_item.prev {
        left: 50%;
        transform: translateY(-50%) translateX(25%) scale(0.6);
        opacity: 1;
        z-index: 1;
    }
    .cascade-slider_slides img {
        max-width: 250px;
    }
}
@media screen and (min-width: 991px) {
    .cascade-slider_item.next {
        left: 50%;
        transform: translateY(-50%) translateX(-115%) scale(0.55);
        opacity: 1;
        z-index: 4 !important;
    }
    .cascade-slider_item.prev {
        left: 50%;
        transform: translateY(-50%) translateX(15%) scale(0.55);
        opacity: 1;
        z-index: 4 !important;
    }
    .cascade-slider_item.next2 {
        left: 50%;
        transform: translateY(-50%) translateX(-150%) scale(0.37);
        opacity: 1;
        z-index: 1 !important;
    }
    .cascade-slider_item.prev2 {
        left: 50%;
        transform: translateY(-50%) translateX(50%) scale(0.37);
        opacity: 1;
        z-index: 2 !important;
    }
    .cascade-slider_slides img {
        max-width: 300px;
    }
    .cascade-slider_container {
        height: 67vh;
    }
}
@media screen and (min-width: 1100px) {
    .cascade-slider_item.next {
        left: 50%;
        transform: translateY(-50%) translateX(-130%) scale(0.55);
        opacity: 1;
        z-index: 4 !important;
    }
    .cascade-slider_item.prev {
        left: 50%;
        transform: translateY(-50%) translateX(30%) scale(0.55);
        opacity: 1;
        z-index: 4 !important;
    }
    .cascade-slider_item.next2 {
        left: 50%;
        transform: translateY(-50%) translateX(-180%) scale(0.37);
        opacity: 1;
        z-index: 1 !important;
    }
    .cascade-slider_item.prev2 {
        left: 50%;
        transform: translateY(-50%) translateX(80%) scale(0.37);
        opacity: 1;
        z-index: 2 !important;
    }
    .cascade-slider_slides img {
        max-width: 350px;
    }
}

@media(max-width: 1070px){
    .cascade-slider_arrow-left {
        left: 10%;
        color: #000000;
    }
    .cascade-slider_arrow-right {
        right: 10%;
        color: #000000;
    }
}

@media (max-width: 930px) {
    .container-xl{
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
    }
}

@media (max-width: 726px) {
    .cascade-slider_arrow-left {
        left: 7%;
        color: #000000;
    }
    .cascade-slider_arrow-right {
        right: 7%;
        color: #000000;
    }
}

@media (max-width: 670px) {
    .cascade-slider_arrow-left {
        left: 4%;
        color: #000000;
    }
    .cascade-slider_arrow-right {
        right: 4%;
        color: #000000;
    }
}

@media (max-width: 630px) {
    .cascade-slider_arrow-left {
        left: 36%;
        top: 91%;
        color: #000000;
    }

    .cascade-slider_arrow-right {
        right: 38%;
        top: 91%;
        color: #000000;
    }
}



/*PROJECT VIDEO DETAIL*/


.pr-dt-video{
    width:100%;
    position:relative;
}
.pr-dt-video video{
    width: 100%;
}
.play-dt-video{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: rgba(0, 0, 0, 0.7);
}
.play-dt-video svg{
    cursor:pointer;
    margin-top: 10px;
}.play-dt-video svg path{
     fill: #fff;
 }
.play-dt-video p{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.cascade-slider_slides img{
    border-right: 0!important;
}



.full-screen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.full-screen-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    width: 60%;
}

.full-screen-image {
    max-width: 100%;
    max-height: 100%;
    
}



.close-full-screen {
    position: absolute;
    background: #3295da;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 68rem;
    top: 0.8rem;
    z-index: 999;
    cursor: pointer;
}




