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

header {
    background-color: rgba(247, 247, 247, 0.974);
    position: relative;
    z-index: 999;
}

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

.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 .header-logo a {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
}

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



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

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


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

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

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

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

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

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

.hover-business: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;
}



.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-evenly;
    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: hidden;
    transition: 0.3s ease-in;
    margin-left: -100px;
}

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

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

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

.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: 16px;
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: 131px;
    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;
}



/* 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.3s 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;
}



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



footer {
    padding-bottom: 25px;
    padding-top: 25px;
    border-top: 1px solid #666;
    position: relative;
    z-index: 998;
}

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

.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.3s 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 {
    width: 30%;
    margin-bottom: 15px;
}

.about-inner-center-down .about-center-link a {
    margin-bottom: 20px;
    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-inner-center-one {
    width: 33%;
    padding: 25px;
    visibility: visible;
    transition: 0.3s ease-in;
}

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


/* historyheadimg bg */
.m-history{
    overflow: hidden;
}
    #maincontent{
        position: relative;
    }
.history-bg {
    position: relative;
    top: -80px;
    width: 100%;
    height: 100%;
    z-index: 5;
    overflow: hidden;
}
.history-bg .history-img img{
    width: 100%;
    object-fit: cover;
}



/* animation text */
.animation-text{
    position: absolute;
    z-index: 55;
    top: 0;
    left: 0%;
    top: 0%;
    z-index: 999;
    width: 100%;
    height: 100%;
    text-align: center;
}
#animation-demo {
	position: relative;
	line-height: 150px;
	color: #fff;
	text-align: center;
    font-size: 70px;
    font-weight: 600;
    top: 35%;
}

.letter{
    color: #fff!important;
}



/* Mouse */

@keyframes scroll {
	0% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(100px);
	}
}

svg #wheel {
	animation: scroll ease 1.5s infinite;
}



.animation-text svg{
    position: relative;
}

/* ==== bub */

.white-animat{
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.white-animat svg{
    bottom: -6.25rem!important;
    opacity: 1;
    position: absolute;
    right: 0;
    transform: scale(2);
    transition: bottom .3s linear,opacity .3s linear,transform .3s linear,-webkit-transform .3s linear;
    animation: animatePath 5s infinite;
}
.white-animat svg path{
    transition: fill .3s linear .3s;
}

@keyframes animatePath {
    0%, 100% {
        width: 300px;
        height: 200px;
    }
    50% {
        width: 450px; /* You can change the desired width value */
        height: 270px; /* You can change the desired height value */
    }
}
/* 1950 */

.h1950{
    position: relative;
}

.h1950 .h1950-s{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.h1950 .h1950-s svg:nth-child(1){
    position: absolute;
    right: -19rem;
    z-index: 999;
    top: -5rem;
    width: 800px;
    height: 800px;
}
.h1950 .h1950-s svg:nth-child(2){
    position: absolute;
    right: -8rem;
    z-index: 999;
    transform: rotate(-2deg);
    top: -1rem;
    width: 500px;
    height: 500px;
}
.h1950 .h1950-s svg:nth-child(3){
    position: absolute;
    right: -8rem;
    z-index: 999;
    top: -2rem;
    width: 500px;
    height: 500px;
}
.h1950 .h1950-s svg:nth-child(4){
    position: absolute;
    right: -7rem;
    z-index: 999;
    top: -1rem;
    width: 500px;
    height: 500px;
}

.h1950-cont{
    min-height: 100%;
    padding-left: 12.5rem;
}

.h1950-inner{
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    padding-bottom: 7.5rem;
}

.h1950-inner .h1950-header{
    position: relative;
    padding-top: 12.5rem;
    overflow: hidden;
    padding: 0 6.25rem;
}



.h1950-inner .h1950-header .h1950-head-inner{
    max-width: 26.25rem;
}


.h1950-inner .h1950-header .h1950-head-inner .h1950-title{
    position: relative;
    width: 26.25rem;
    height: 9.25rem;
    overflow: visible;
    margin: 0 0 0.9375rem;
}


.h1950-inner .h1950-header .h1950-head-inner .h1950-title h3{
    position: static;
    opacity: 1;
    filter: none;
    transform: none;
    font-size: 9.1875rem;
    color: #666;
}

.h1950-inner .h1950-header .h1950-head-inner .h1950-subtitle h4{
    transition-delay: .4s;
    transition: opacity .4s ease-in,filter .4s ease-in,transform .4s ease-in,-webkit-filter .4s ease-in,-webkit-transform .4s ease-in;
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.5em;
}

.h1950-inner .h1950-header .h1950-head-inner .h1950-subtitle{
    border-bottom: 1px solid gray;
    width: 30rem;
    margin-left: 17px;
    margin-top: 80px;
    margin-bottom: 30px;
}
.h1950-inner .h1950-content {
    padding-top: 0.5rem;
    background: #fff;
    color: #666;
    padding-bottom: 0.9375rem;
    padding: 0 140px;
}

.h1950-inner .h1950-content .content-1950-inner{
    max-width: 31.25rem;
}
.h1950-inner .h1950-content .content-1950-inner .cont-1950-txt p{
    margin-left: -24px;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: .25px;
    line-height: 1.5556em;;
}

.h1950-inner .h1950-footer{
    background: #fff;
    padding-bottom: 7.5rem;
    padding: 0 140px;
    margin-top: 20px;
}
.h1950-inner .h1950-footer .h1950-fot-inner{
    max-width: 31.25rem;
}
.h1950-inner .h1950-footer .h1950-fot-inner .h1950-button a{
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    line-height: 1.2rem;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    padding-bottom: 0.375rem;
    color: #666;
    transition: color .4s ease-out;
}
.h1950-inner .h1950-footer .h1950-fot-inner .h1950-button a .p-v{
    margin: 0;
    background-image: linear-gradient(180deg,transparent 20%,currentColor 21%);
    background-position: 0 1.5em;
    background-repeat: no-repeat;
    background-size: 0 0.1562rem;
    padding: 0.3125rem 0;
    -webkit-transition: background-size .4s ease-in-out;
    transition: background-size .4s ease-in-out;
    vertical-align: middle;
    color: #666;
}
.h1950-inner .h1950-footer .h1950-fot-inner .h1950-button a .sr-only{
    background-image: linear-gradient(180deg,transparent 20%,currentColor 21%);
    background-position: 0 1.5em;
    background-repeat: no-repeat;
    background-size: 0 0.1562rem;
    padding: 0.3125rem 0;
    -webkit-transition: background-size .4s ease-in-out;
    transition: background-size .4s ease-in-out;
    vertical-align: middle;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.h1950-inner .h1950-footer .h1950-fot-inner .h1950-button a .h1950-icon{
    margin-right: 0.5rem;
    margin-left: 0;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    transition: transform .2s ease-out .15s,-webkit-transform .2s ease-out .15s;
    display: inline-flex;
    vertical-align: middle;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.h1950-inner .h1950-footer .h1950-fot-inner .h1950-button a .h1950-icon svg{
    display: block;
    height: 100%;
    width: auto;
}
.h1950-inner .h1950-footer .h1950-fot-inner .h1950-button a .h1950-icon svg path{
    fill: currentColor;
    transition: fill .3s ease-out .1s,stroke .3s ease-out .1s;
}

.navbar-history{
    transform: translateY(0px);
    transition: transform .4s ease-in,-webkit-transform .4s ease-in;
    z-index: 10;
    position: fixed;
    height: 100%;
    top: 20px;
    left: 0;
    width: 12.5rem;
    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;
    background: #fff;
}
.navbar-history .h-nav .h-n-ul li{
    padding: 0 0 2.2rem 0.875rem;
    position: relative;
}
.navbar-history .h-nav .h-n-ul li::before{
    content: "";
    display: block;
    width: 0.125rem;
    height: 100%;
    background: #747678;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: height .3s ease-in;
    transition: height .3s ease-in;
}
.navbar-history .h-nav .h-n-ul li::after{
    height: 0.75rem;
    background: #ffc700;
    content: "";
    display: block;
    width: 0.125rem;
    height: 100%;
    background: #747678;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: height .3s ease-in;
    transition: height .3s ease-in;
}
.navbar-history .h-nav .h-n-ul li.prev::after{
    height: 100%;
    background: #ffc700;
}
.navbar-history .h-nav .h-n-ul li.current::after{
    height: 0.75rem;
    background: #ffc700;
}

.navbar-history .h-nav .h-n-ul li.current a:before{
    content: "";
    position: absolute;
    bottom: 35px;
    left: 50%;
    width: 0;
    height: 0;
    border: 0.125rem solid;
    border-radius: 0.25rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.navbar-history .h-nav .h-n-ul li.current a{
    color: #000;
}
.navbar-history .h-nav .h-n-ul li a{
    font-weight: 600;
    font-size: .8125rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
}

/* 1960 */

.h1960{
    position: relative;
    -webkit-transform: none!important;
    -ms-transform: none!important;
    transform: none!important;
    z-index: 5!important;
    min-height: auto;
    text-align: right;
}
.h1960 .h1960-fold{
    min-height: 100%;
    padding-left: 12.5rem;
}
.h1960 .h1960-fold .h1960-inner{
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    padding-bottom: 7.5rem;
}
.h1960 .h1960-fold .h1960-inner .h1960-in-head{
    padding-top: 7.5rem;
    padding: 0 6.25rem;
}

.h1960 .h1960-fold .h1960-inner .h1960-in-head .h1960-head-in{
    margin: 0 0 0 auto;
    max-width: 26.25rem;
}
.h1960 .h1960-fold .h1960-inner .h1960-in-head .h1960-head-in .h1960-title{
    margin: 0 0 0.9375rem;
}
.h1960 .h1960-fold .h1960-inner .h1960-in-head .h1960-head-in .h1960-title .h1960-h{
    line-height: 1;
    font-size: 9.1875rem;
    color: #fff;
    font-weight: 500;
}
.h1960-subtitle{
    width:465px;
    margin: 0 0 1.25rem;
}
.h1960-subtitle h4{
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 1.5em;
    color:#fff;
}

.h1960-cont{
    padding-bottom: 0.9375rem;
}
.h1960-cont-in{
    margin: 0 0 0 auto;
    max-width: 31.25rem
}
.h1960-cont-in .cont-di p{
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: .25px;
    line-height: 1.5556em;
    color: #fff;
}

.h1960-fot{
    padding-bottom: 7.5rem;
    padding: 0 6.25rem;
}
.h1960-fot .h1960-fot-inner{
    margin: 0 0 0 auto;
    max-width: 31.25rem
}
.h1960-fot-di a{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    display: flex;
    line-height: 1.2rem;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    padding-bottom: 0.375rem;
    transition: color .4s ease-out;
    color: #fff;
    font-weight: 600;
    font-size: .8125rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.h1960-fot-di a span{
    background-position: 0 1.5em;
    background-repeat: no-repeat;
    background-size: 0 0.1562rem;
    padding: 0.3125rem 0;
    background-image: linear-gradient(180deg,transparent 20%,currentColor 21%);
    transition: background-size .4s ease-in-out;
    vertical-align: middle;
    margin: 0;
    color: #fff;
}

.h1960-fot-di a .play-icon{
    margin-right: 0.5rem;
    margin-left: 0;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    display: inline-flex;
    vertical-align: middle;
    -webkit-box-pack: center;
    justify-content: center;
}
.h1960-fot-di a .play-icon svg{
    display: block;
    height: 100%;
    width: auto;
}
.h1960-fot-di a .play-icon svg path{
    fill: currentColor;
}
.h1960-back-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.h1960-back-img::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: linear-gradient(221deg,rgba(0,0,0,.29),rgba(0,0,0,.82));
}

.h1960-back-img .h1960-back-img-in{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.h1960-back-img .h1960-back-img-in .h1960-img{
    background-position: center center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.cont-di{
    padding-right: 6rem;
}

/* 1970 */

.h1970{
    position: relative;
    -webkit-transform: none!important;
    -ms-transform: none!important;
    transform: none!important;
    z-index: 5!important;
    min-height: auto;
    width: 100%;
}
.h1970-fold{
    min-height: 100%;
    padding-left: 12.5rem;
}
.h1970-fold-in{
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    padding-bottom: 7.5rem;
}
.h1970-head{
    padding: 0 6.25rem;
    padding-top: 7.5rem
}
.h1970-head-in{
    max-width: 26.25rem;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: .5px;
}
.h1970-title{
    margin: 0 0 0.9375rem;
}
.h1970-title h3{
    font-size: 9.1875rem;
    color: #000;
    font-weight: 600;
    letter-spacing: 0;
}
.h1970-subtitle{
    margin: 0 0 1.25rem;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: .5px;
}

.h1970-subtitle h4{
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 1.5em;
}
.h1970-content{
    color: #000;
    padding-bottom: 0.9375rem;
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: .25px;
    line-height: 1.5556em;
    padding: 0 6.25rem;
}
.h1970-cont-in{
    max-width: 21.875rem;
}
.h1970-cont-di{
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: .25px;
    line-height: 1.5556em;
}

.h1970-cont-di p{
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: .25px;
    line-height: 1.5556em;
    color: #000;
}
.h1970-background{
    background: #ffc700;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.h1970-background-inner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: .5px;
}

.h1970-background-map svg{
    position: absolute;
    top: -6.875rem;
    right: 0;
}

.h1980{
    position: relative;
    transform: none!important;
    z-index: 5!important;
    min-height: auto;
    width: 100%;
}
.h1980-fold{
    min-height: 100%;
    padding-left: 12.5rem;
}
.h1980-fold-in{
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    padding-bottom: 7.5rem;
}
.h1980-head{
    padding-top: 7.5rem;
    padding: 0 6.25rem
}
.h1980-head-in{
    max-width: 21.875rem;
}
.h1980-title{
    margin: 0 0 0.9375rem;
}
.h1980-title h3{
    font-size: 9.1875rem;
    font-weight: 600;
    letter-spacing: 0;
}
.h1980-cont{
    padding-bottom: 0.9375rem;
    padding: 0 6.25rem;
}
.h1980-cont-in{
    max-width: 21.875rem;
}
.h1980-cont-in .h1980-con-di p{
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: .25px;
    line-height: 1.5556em;
}

.h1980-fold-shape{
    display: none;
}

.h1980-moving-shape{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    overflow: hidden;
}

.h1980-moving-shape svg:nth-child(1){
   top: 0.25rem;
    right: -18.75rem;
    transform: scale(1.5) rotate(20deg);
    position: absolute;
    width: 650px;
    height: 500px;
}
/* .h1980-moving-shape svg path{
    fill: rgba(0,0,0,.3);
} */

.h1980-moving-shape svg:nth-child(2){
    position: absolute;
    top: 15.625rem;
    right: 1.875rem;
    transform: scale(1) rotate(45deg);
}
.h1980-background::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: 2;
    background: #ffc700;
}
.h1980-background .h1980-background-in{
    position: absolute;
    top: 0;
    left: 18rem;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.h1980-background .h1980-background-in .h1980-background-image{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
}
.h1980-moving-shape{
    display:none;
}
.h1980-background .h1980-background-in .h1980-background-img-shape{
    position: absolute;
    display:none;
    width: 60%;
    height: 100%;
    left: 59%;
    top: 0;
    z-index: 3;
    margin-left: -1px
}
.h1980-background .h1980-background-in .h1980-background-img-shape svg:nth-child(1){
    display: block;
    width: 40%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.h1980-background .h1980-background-in .h1980-background-img-shape svg:nth-child(2){
    display: none;
    width: 40%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

/* h1990 */

.h1990{
    position: relative;
    min-height: auto;
    transform: none !important;
    z-index: 5 !important;
    width: 100%;
    top: 0px;
}
.h1990-fold{
    min-height: 100%;
    padding-left: 12.5rem;
}
.h1990-fold-in{
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    padding-bottom: 7.5rem;
}
.h1990-fold-in{
    padding-top: 7.5rem;
    padding: 0px 6.25rem;
}
.h1990-head-in{
    max-width: 26.25rem;
}
.h1990-title{
    margin: 0px 0px 0.9375rem;
}

.h1990-title h3{
    margin: 0px;
    font-size: 9.1875rem;
}
.h1990-subtitle{
    margin: 0px 0px 1.25rem;
}

.h1990-subtitle h4{
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 0px;
    line-height: 1.5em;
}
.h1990-content{
    color: rgb(102, 102, 102);
    padding-bottom: 0.9375rem;
}
.h1990-cont-in{
    max-width: 31.25rem;
}
.h1990-cont-di p{
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: 0.25px;
    line-height: 1.5556em;
}

.h1990-footer{
    padding-bottom: 7.5rem;
}

.h1990-fot-in{
    max-width: 31.25rem;
}
.h1990-fot-di a{
    line-height: 1.2rem;
    display: block;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    padding-bottom: 0.375rem;
    color: rgb(102, 102, 102);
    transition: color 0.4s ease-out 0s;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}
.h1990-fot-di a span{
    background-image: linear-gradient(transparent 20%, currentcolor 21%);
    background-position: 0px 1.5em;
    background-repeat: no-repeat;
    background-size: 0px 0.1562rem;
    padding: 0.3125rem 0px;
    transition: background-size 0.4s ease-in-out 0s;
    vertical-align: middle;
    margin: 0;
}
.h1990-fot-di a .svg-div{
    width: 1rem;
    height: 1rem;
    position: relative;
    top: -0.0625em;
    height: 0.875rem;
    width: 0.875rem;
    transform: translate3d(-0.125rem, 0px, 0px);
    transition: transform 0.2s ease-out 0.15s, -webkit-transform 0.2s ease-out 0.15s;
    margin-left: 0.5rem;
    margin-right: -1.5rem;
    display: inline-flex;
    vertical-align: middle;
    -webkit-box-pack: center;
    justify-content: center;
}
.h1990-fot-di a .svg-div svg{
    display: block;
    height: 100%;
    width: auto;
}
.h1990-background{
    background: rgb(248, 248, 248);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.h1990-back-in{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.h1990-movingshape{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 0px;
    z-index: -1;
    overflow: hidden;
}

.h1990-movingshape svg:nth-child(1){
    top: 42.75rem;
    right: -72.625rem;
    transform: scale(3);
    position: absolute;
    width: 700px;
    height: 700px;
}
.h1990-movingshape svg:nth-child(2){
    top: 46.75rem;
    right: -80.625rem;
    transform: scale(3);
    position: absolute;
    width: 800px;
    height: 800px;
}
.h1990-movingshape svg path{
    /* fill: rgba(172, 173, 175, 0.698); */
}

/* h2000 */
.h2000{
    position: relative;
    min-height: auto;
    transform: none !important;
    z-index: 5 !important;
    text-align: right;
    top: 0px;
    width: 100%;
}
.h2000-fold{
    min-height: 100%;
    padding-left: 12.5rem;
    text-align: right;
}
.h2000-fold-in{
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    padding-bottom: 7.5rem;
    text-align: right;
    margin: 0px 0px 0px auto;
    max-width: 41.25rem;
}
.h2000-head{
    padding-top: 7.5rem!important;
    padding: 0px 4rem;
}
.h2000-head-in{
    margin: 0px 0px 0px auto;
    max-width: 26.25rem;
    text-align: right;
}
.h2000-title{
    margin: 0px 0px 0.9375rem;
    text-align: right;
}
.h2000-title h3{
    color: rgb(255, 255, 255);
    margin: 0px;
    font-size: 9.1875rem;
    line-height: 1;
}
.h2000-subtitle{
    margin: 0px 0px 1.25rem;
    text-align: right;
}
.h2000-subtitle h4{
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 0px;
    line-height: 1.5em;
}
.h2000-content{
    padding: 0px 4rem;
    text-align: right;
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: 0.25px;
    line-height: 1.5556em;
}
.h2000-cont-in{
    margin: 0px 0px 0px auto;
    max-width: 31.25rem;
}
.h2000-cont-di p{
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: 0.25px;
    line-height: 1.5556em;
    text-align: right;
}
.h2000-background{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.h2000-background::before{
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: linear-gradient(221deg, rgba(0, 0, 0, 0.29), rgba(0, 0, 0, 0.82));
}
.h2000-back-in{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-align: right;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.h2000-back-img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-size: cover;
    background-repeat: no-repeat;
}
.h2010{
    position: relative;
    min-height: auto;
    transform: none !important;
    z-index: 5 !important;
    width: 100%;
    top: 0px;
}


/* 2010 */

.h2010-fold{
    overflow: hidden auto;
    height: 100vh;
    min-height: 0px;
    padding-left: 12.5rem;
}
.h2010-fold-in{
    width: calc(100% - 1.5625rem);
}
.h2010-head{
    padding-top: 7.5rem!important;
    padding: 0px 6.25rem;
}
.h2010-head-in{
    max-width: 26.25rem;
}
.h2010-title{
    margin: 0px 0px 0.9375rem;
}
.h2010-title h3{
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 1.1em;
}
.h2010-cont{
    color: rgb(102, 102, 102);
    padding-bottom: 0.9375rem;
    padding: 0px 6.25rem;
}
.h2010-cont-in{
    max-width: 31.25rem;
}
.h2010-parallax{
    padding: 0px 6.25rem;
}
.h2010-parallax-in{
    position: relative;
    z-index: 3;
}
.h2010-parallax-masonry{
    display: flex;
    margin-left: -32px;
}
.h2010-p-d{
    box-sizing: border-box;
    background-clip: padding-box;
    width: 50%;
    border-width: 0px 0px 0px 32px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
}
.h2010-p-d .par-one{
    transform: translate3d(0px, 0px, 0.571439px);
    width: 23.75rem;
    max-width: 100%;
    transition: transform 0.1s ease-in-out 0s, opacity 0.3s ease-in-out 0s, -webkit-transform 0.1s ease-in-out 0s;
    margin: 0px 0px 9.375rem;
}
.h2010-p-d .par-one .par-one-img .par-one-image{
    background-image: url(https://static.ferrovial.com/wp-content/uploads/2019/09/13140522/2019-08-20-1.png);
    padding-bottom: 177.77%;
    width: 100%;
    height: 0px;
    padding: 0px 0px 75%;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgb(116, 118, 120);
    background-position: 50% center;
    margin-bottom: 1rem;
}
.h2010-p-d .par-one .par-one-head h3{
    font-weight: 600;
    font-size: 2.5rem;
    letter-spacing: 0px;
    line-height: 1.25em;
}
.h2010-p-d .par-one .par-one-cont{
    color: rgb(102, 102, 102);
    max-width: 23.75rem;
}
.h2010-p-d .par-one .par-one-cont .par-one-cont-di p{
    color: rgb(102, 102, 102);
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: 0.25px;
    line-height: 1.5556em;
}


.h2010-p-d:nth-child(2) .par-one{
    margin-top: 150px;
}

.h2010-background{
    color: #f8f8f8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.h2010-back-in{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.h2010-parallax-shapes{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.h2010-parallax-shapes svg:nth-child(1){
    top: 10%;
    right: -1.25rem;
    position: absolute;
}
.h2010-parallax-shapes svg:nth-child(2){
    position: absolute;
    top: 25%;
    left: -1.25rem
}
.h2010-parallax-shapes svg:nth-child(3){
    top: 50%;
    right: 1.875rem;
    position: absolute;
}
.h2010-parallax-shapes svg:nth-child(4){
    position: absolute;
    top: 75%;
    right: 20.625rem;
}

/* Today */

.today{
    position: relative;
    transform: none!important;
    z-index: 5!important;
    min-height: auto;
    width: 100%;
    top: 0;
    transition: transform .4s ease-in,-webkit-transform .4s ease-in;
}

.today-fold{
    min-height: 100%;
    padding-left: 12.5rem;
    padding-right:12.5rem;
}
.today-in{
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    padding-bottom: 7.5rem;
}

.today-image{
     width: 35rem;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    right: 2.5rem;
    -webkit-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    transform: translateY(-30%);
   
    z-index: -1;
    max-width: -webkit-calc(100% - 41.25rem);
    max-width: calc(100% - 41.25rem);
    padding: 0 6.25rem;
}
.today-image .img-di img{
    width: 100%;
    height: auto;
    vertical-align: top;
}

.today-header{
    padding-top: 7.5rem;
    padding-left: 6.25rem;
}
.today-head-in{
    max-width: 26.25rem;
}

.tod-head-tit{
    margin: 0 0 0.9375rem;
}
.tod-head-tit h3{
    line-height: 1;
    font-size: 6.1875rem;
    font-weight: 600;
}
.tod-head-subt{
    margin: 0 0 1.25rem;
}

.tod-head-subt h4{
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.5em;
}

.today-content{
    color: #666;
    padding-bottom: 0.9375rem;
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: .25px;
    line-height: 1.5556em;
    padding-left: 6.25rem;
}
.tod-cont-in{
    max-width: 31.25rem;
}

.tod-cont-in-di p{
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: .25px;
    line-height: 1.5556em;
}

