* {
    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);
}


.underline-hover{
    margin-right: 8px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    color: #000000;
    text-decoration: none;
    background-image: linear-gradient(#666, #666);
    background-size: 0% 2.5px;
    background-repeat: no-repeat;
    transition: all 0.5s ease;
    background-position: left bottom;
    text-transform: uppercase;
    margin-left:0;
}

.underline-hover:hover{
    background-size: 100% 2.5px;
}

.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-global {
    width: 100px;
    cursor: pointer;
}

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





/* ======SOCIETY======= */




.society {
    margin-top: 50px;
    margin-bottom: 50px;
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
    overflow: hidden;
}

.society-svg{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -5;
}


.society-svg .new-svg:nth-child(1) {
    position: absolute;
    top: -33rem;
    right: -9rem;
    z-index: -5;
    width: 800px;
    height: 800px;
    transform: rotate(173deg);
}


.society-svg .new-svg:nth-child(2) {
    position: absolute;
    top: -13rem;
    right: -14rem;
    z-index: -5;
    width: 800px;
    height: 870px;
    transform: rotate(181deg);
}
.society-svg .new-svg:nth-child(3) {
    position: absolute;
    top: -6rem;
    right: -18rem;
    z-index: -5;
    width: 107rem;
    height: 126rem;
}



.society-svg svg:nth-child(1) {
    position: absolute;
    top: -7rem;
    right: -17rem;
    z-index: -5;
    width: 800px;
    height: 800px;
}


.society-svg svg:nth-child(2) {
    position: absolute;
    top: -7rem;
    right: -16.5rem;
    z-index: -5;
    width: 800px;
    height: 959px;
}
.society-svg svg:nth-child(3) {
    position: absolute;
    top: -6rem;
    right: -18rem;
    z-index: -5;
    z-index: -5;
    width: 800px;
    height: 800px;
}


.society-svg svg:nth-child(2) {
    position: absolute;
    top: -7rem;
    right: -16.5rem;
    z-index: -5;
    width: 800px;
    height: 959px;
}
.society-svg svg:nth-child(3) {
    position: absolute;
    top: -6rem;
    right: -18rem;
    z-index: -5;
    width: 107rem;
    height: 126rem;
}

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

.society-inner {
    width: 100%;
}

.society-cards {
    width: 100%;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.society-card {
    width: 500px;
    height: 360px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    transition: all 0.3s ease-in;
    margin-right: 40px;
    user-select: none;
    cursor: pointer;
}

.society-card:hover {
    transform: scale(1.08);
}

.card-title {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.269);
    padding: 40px;
}

.society-card .card-title h2 {
    width: 280px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    line-height: 1.5em;
    margin-bottom: 24px;
}

.society-card .card-title p {
    width: 280px;
    font-size: 1.125rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.25px;
    line-height: 1.5556em;
}


.society-buttons {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 80px;
    margin-top: 35px;
}

.card-left-button {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#5e9fe3 ;
    border-radius: 50%;
    margin-right: 10px;

}

.card-left-button button {
    border: none;
    background-color: transparent;
    font-size: 20px;
    cursor: pointer;
}

.card-right-button button {
    border: none;
    background-color: transparent;
    font-size: 20px;
    cursor: pointer;
}

.card-right-button {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5e9fe3;
    border-radius: 50%;
    margin-left: 10px;

}

.slider-counter {
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}




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



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

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



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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


.splide {
    position: relative;
    top: -80px;
    width: 100%;
    height: 100%;
    z-index: 5 !important;
    overflow: hidden;
    visibility: visible !important;
}

.splide__arrows {
    display: none;
}

.splide__list {
    height: 720px !important;
}


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

.splide__pagination {
    margin-bottom: 40px !important;
}

.splide__pagination li {
    margin-right: 15px !important;
}

/*.splide__pagination__page {*/
/*    width: 20px !important;*/
/*    height: 20px !important;*/
/*    background-color: #abb8c3 !important;*/
/*    border: 2px solid #ffffff !important;*/
/*    padding: 3px;*/
/*}*/

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

.s-title {
    position: absolute;
    z-index: 99;
    top: 25%;
    left: 23%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
}

.s-title h2 {
    font-size: 5rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
}

.s-title p {
    font-size: 1.25rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #ffffff;
}

.s-title a {
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.s-title a i {
    margin-left: 5px;
    font-size: 1.25rem;
}

.s-title 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-title a:hover::after {
    width: 100%;
    transform-origin: left;
    transform: scaleX(1);
}


/* =====CONSTUCTION==== */

.construction {
    background: #5e9fe3;
    position: relative;
    top: -80px;
}

.construction .cons-inner {
    display: flex;
    width: 100%;
    justify-content: center;
}

.construction .cons-inner ul {
    display: flex;
    padding: 15px 0;
}

.construction .cons-inner ul li {
    padding: 0.9375rem 0 0.625rem;
    flex-wrap: wrap;
}
.construction .cons-inner ul li:nth-child(3){
    padding-top: 2rem;
}

.construction .cons-inner ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 50px;
    border-right: 1px solid #fff;
}
.construction .cons-inner ul li a:nth-child(3) {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 50px;
    padding-top: 30px;
    border-right: 1px solid #fff;
}
.construction .cons-inner ul li a img {
    width: 100px;
    height: 100px;
}
.construction .cons-inner ul li:nth-child(3) a img {
    width: 80px!important;
    height: 80px!important;
}

.construction .cons-inner ul li a svg {
    width: 35px;
    height: 35px;
    margin-bottom: 15px;
}

.construction .cons-inner ul li a p {
    font-size: .8125rem;
    font-weight: 600;
}

.construction .cons-inner ul li a p {
    position: relative;
    text-align: center;
}

.construction .cons-inner ul li:hover {
    background-color: #1f84e0;
    transition: 1s ease;
}



.construction .cons-inner ul li a .constr::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.construction .cons-inner ul li:hover a .constr::after {
    width: 100%;
    transform-origin: left;
    transform: scaleX(1);
}


.mySwiper {
    width: 100%;
    height: 670px;
    position: relative;
}

.swiper-wrappe {
    width: 100%;
    height: 100%;
}

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

.swiper-slide {
    width: 100%;
    height: 100%;
}

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

.video-container {
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





.swiper-pagination span {
    width: 17px;
    height: 17px;
    margin-right: 10px !important;
    background-color: #5e9fe3 !important;
}

.swiper-pagination-bullet-active {
    background-color: #5e9fe3 !important;
    width: 25px !important;
    height: 25px !important;
    border: 5px solid #3a3a3a;
}


.video-overlay {
    position: absolute;
    top: 18%;
    left: 4%;
    z-index: 9999;
    cursor: pointer;
}

.play-pause-icon {
    width: 256px;
    height: 25px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #00000070;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 10px;
}

.play-pause-icon i {
    color: #fff;
    font-size: 14px;
}

.play-pause-icon p {
    color: #ffffff;
    font-size: 14px;
}

.play-video {
    display: none;
}

.horizon-slider {
    width: 100%;
    height: 670px;
    margin-bottom: 30px;
}


.video-title {
    position: absolute;
    z-index: 99;
    top: 25%;
    left: 21%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
}

.video-title h2 {
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.1em;
    color: #fff;
    margin-bottom: 15px;
}

.video-title p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.25px;
    line-height: 1.5em;
    margin-bottom: 40px;
}

.video-title a {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    position: relative;
}

.video-title a i {
    margin-left: 5px;
    font-size: 1.25rem;
}

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

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

.swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Keys */

.key {
    border-bottom: 1px solid gray;
    margin-top: 50px;
    background: #4799e5;
    padding-top: 7%;
    padding-bottom: 7%;
}

.figures-text {
    margin-bottom: 45px;
}

.figures-text p {
    margin-bottom: 1.875rem;
    font-weight: 600;
    font-size: 1.45rem;
    letter-spacing: .75px;
    line-height: 1.5em;
    width: 23.25rem;
}

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

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

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

.figures-button a:hover {
    background: #000;
    transition: 0.5s;
}

.figures-button a span {
    letter-spacing: 2px;
    font-weight: 600;
}

.figures-button a:hover span {
    color: #fff;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 5;
}

.key-info {
    display: flex;
    justify-content: space-around;
    padding: 0 20px;
}

.figures-revenues {
    display: flex;
    flex: 0.6;
    justify-content: space-between;
}

.reven-capit .fig-value {
    margin-bottom: 35px;
    position: relative;
}

.operat-emplo .fig-value {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.fig-value p span {
    margin: 0;
    font-weight: 400;
    font-size: 4rem;
    letter-spacing: 1.5px;
    line-height: 1em;
}

.fig-value p {
    font-weight: 400;
    font-size: 4rem;
    letter-spacing: 1.5px;
    line-height: 1em;
}

/* =======CAREERS======== */


.careers {
    width: 100%;
    height: 700px;
    padding-left: 25px;
    padding-right: 25px;
}

.join-us {
    width: 100%;
    height: 80%;
}

.join-us-title {
    width: 100%;
}

.join-us-title p {
    color: #666;
    font-size: 0.8125rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.3125rem;
}

.join-us-title h2 {
    color: #000;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2em;
}


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

.join-us-inner .join-us-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.join-us-inner .join-us-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.join-us-items {
    width: 100%;
    height: 100%;
}

/*
.h2-title{
position: relative;
}



.join-us-title .h2-image-up {
    position: absolute;
    display: inline-block;
    z-index: -5;
    left: -78px;
    top: -32px;
    width: 64px;
    height: 64px;
}



.join-us-title .h2-image-down {
    position: absolute;
    display: inline-block;
    top: 78%;
    z-index: -5;
    right: 10%;
    width: 64px;
    height: 64px;
} */

.join-us-items .h2-title h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.5em;
    margin-bottom: 35px;
}

.join-us-items .office-p {
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.join-us-items .tomas-p {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.25px;
    line-height: 1.5556em;
}

.join-us-buttons {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.join-us-buttons .button-b {
    width: 316px;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
    box-shadow: 0.1875rem 0.375rem 0.9375rem 0 hsla(210, 2%, 46%, .25);
}


.button-b a {
    margin-left: 0.5rem;
    color: #000;
    border-right: 1.5px solid #3f3e3e;
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}


.button-b:hover {
    background: #4b9ce3;
    transition: background-color .3s ease-in;
}

.press-room svg {
    font-weight: 600;
    font-size: .8125rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 35px;
    height: 15px;
}

.latest-new {
    padding: 0 20px;
    margin-bottom: 50px;
    overflow: hidden;
}


.new-room {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.room-text p {
    margin-bottom: 0.3125rem;
    color: #666;
    font-size: .8125rem;
    letter-spacing: 2px;
}

.room-text h3 {
    font-size: 2.5rem;
    letter-spacing: 0;
    line-height: 1.25em;
}

.press-room {
    margin-top: 35px;
}

.press-room a {
    font-size: .8125rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    color: #666;
}

.releases-cont {
    display: flex;
    justify-content: space-between;
}

.releases {
    overflow: hidden;
    margin-top: 35px;
}

.releases-cont .releases:nth-child(1) {
    width: calc(33.3333% - 1.875rem);
    margin-right: 25px;
}

.releases:nth-child(1) img:hover {
    transform: scale(1.2);
    transition: 0.5s ease;
    cursor: pointer;
}

.releases:nth-child(1) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.releases:nth-child(1) .releases-image {
    overflow: hidden;
    height: 363px;
}

.releases:nth-child(1) .releases-text {
    margin-top: 30px;
}

.releases:nth-child(1) .releases-text a {
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.5em;
    font-weight: 500;
    margin: 0;
    margin-top: 25px;
    margin-bottom: 25px;
}


.releases:nth-child(1) .releases-text a svg {
    height: 25px;
    width: 25px;
}

.releases:nth-child(1) .releases-text a svg path {
    fill: #000;
}

.releases:nth-child(1) .releases-text P {
    padding: 0.5625rem 0.9375rem 0.375rem;
    color: #666;
    border: 0.0625rem solid #666;
    display: inline-table;
    vertical-align: middle;
    position: relative;
    border-radius: 1.875rem;
    box-sizing: border-box;
    padding: 0.35rem 0.7375rem 0.275rem;
    margin-top: 25px;
}

/* 2 */

.releases-cont .releases:nth-child(2) {
    width: calc(25% - 1.875rem);
    margin-right: 25px;
}

.releases:nth-child(2) img:hover {
    transform: scale(1.2);
    transition: 0.5s ease;
    cursor: pointer;
}

.releases:nth-child(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.releases:nth-child(2) .releases-image {
    overflow: hidden;
    height: 264.75px;
}

.releases:nth-child(2) .releases-text {
    margin-top: 30px;
}

.releases:nth-child(2) .releases-text a {
    font-size: 1.25rem;
    letter-spacing: .25px;
    line-height: 1.5em;
    font-weight: 500;
    margin: 0;
    margin-top: 25px;
    margin-bottom: 25px;
}

.releases:nth-child(2) .releases-text P {
    padding: 0.5625rem 0.9375rem 0.375rem;
    color: #666;
    border: 0.0625rem solid #666;
    display: inline-table;
    vertical-align: middle;
    position: relative;
    border-radius: 1.875rem;
    box-sizing: border-box;
    padding: 0.35rem 0.7375rem 0.275rem;
    margin-top: 25px;
}

.releases:nth-child(2) .releases-text a svg {
    height: 20px;
    width: 20px;
}

.releases:nth-child(2) .releases-text a svg path {
    fill: #000;
}

/* relea-new (1) */
.lat-new {
    overflow: hidden;
    margin-top: 35px;
}

.lat-new .relea-new {
    width: calc(121.6667% - 1.875rem);
    height: 96px;
}

.lat-new .relea-new:nth-child(1) {
    margin-bottom: 30px;
}

.lat-new .relea-new:nth-child(2) {
    margin-bottom: 30px;
}

.relea-img:hover img {
    transform: scale(1.2);
    transition: 0.5s ease;
    cursor: pointer;
}

.relea-new .relea-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: 0.5s ease;
}

.relea-new .relea-img {
    overflow: hidden;
    width: 170px;
    object-fit: cover;
    height: 96px;
}

.relea-new {
    display: flex;
}

.lat-new .relea-new h2 {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: .25px;
    line-height: 1.5556em;
    margin: 0;
    cursor: pointer;
    width: 24rem;
}

.relea-new .relea-text {
    margin-left: 15px;
}

.relea-new .relea-text h2 svg {
    height: 20px;
    width: 20px;
}

.relea-new .relea-text h2 svg path {
    fill: #000;
}

.relea-new .relea-text p {
    padding: 0.5625rem 0.9375rem 0.375rem;
    color: #666;
    border: 0.0625rem solid #666;
    display: inline-table;
    vertical-align: middle;
    position: relative;
    border-radius: 1.875rem;
    box-sizing: border-box;
    padding: 0.15rem 0.5375rem 0.175rem;
    margin-top: -28px;
}


/* ===========Drop Mobile Menu ============= */

.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: all 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-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: visible;
    transition: 0.3s ease-in;
    margin-left: -100px;
    height:30rem;
}

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

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

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





/* ====PROJECTS SECTION==== */

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

.latest-new{
    position: relative;
}

#wrapper{
    position: absolute;
    z-index: -1;
    top: 29.5rem;
    left: 52rem;
}

#svgElement svg{
    height: 225px;
    width: 225px;
}

/* joinus-svg */
.join-us-items{
    position: relative;
}
.join-us-svg{
    position: absolute;
    margin-top: 2rem;
}
.video-iframe-container{
    height: 100%;
}

.video-iframe-container iframe{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 999;
}

.join-us{
    position: relative;
}
.joinus-svg svg:nth-child(1) {
    position: absolute;
    top: -7rem;
    right: -16rem;
    z-index: -5;
    width: 800px;
    height: 800px;
    transform: rotate(316deg);
}


.joinus-svg svg:nth-child(2) {
    position: absolute;
    top: -10rem;
    right: -18rem;
    z-index: -100;
    width: 800px;
    height: 959px;
    transform: rotate(320deg);
}
.joinus-svg svg:nth-child(3) {
    position: absolute;
    top: -6rem;
    right: -18rem;
    z-index: -5;
    width: 107rem;
    height: 126rem;
}

.joinus-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -5;
}

/* joinus svg animat ------------------------------------ */


.animat-machine{
    background:#4799e5;
    position: absolute;
    width: 100%;
    height: 40%;
    top: 24rem;
    z-index: -99;
}

.machine-wrap{
    top: 50%;
    left: 63%;
    width: 475px;
    height: 145px;
    position: absolute;
    margin-top: -72.5px;
    margin-left: -237.5px;
    border-bottom: 5px solid #271e01;
}
.machine{
    width:475px;
    height:145px;
    padding-bottom:20px;
}
.machine .machine-roof,
.machine .machine-main{
    margin:auto;
}
.machine-wrap .road .mud:before,
.machine-wrap .road .mud:after,
.machine .machine-roof .machine-silencer:before,
.machine .machine-roof .machine-silencer:after,
.machine .machine-body:before,
.machine .machine-body:after,
.machine .machine-main .machine-back:before,
.machine .machine-main .machine-back:after,
.machine .machine-main .machine-front:after{
    content:'';
    position:absolute;
}
.machine .machine-roof{
    width:80px;
    height:60px;
    bottom:-1px;
    position:relative;
    background:#ffc600;
    border:15px solid #271e01;
    border-bottom:none;
}
.machine .machine-roof .machine-silencer{
    width:14px;
    left:-50px;
    height:12px;
    bottom:-1px;
    position:absolute;
    background:#271e01;
}
.machine .machine-roof .machine-silencer:before{
    height:0;
    bottom:100%;
    width:inherit;
    border:6px solid #271e01;
    border-top:4px solid transparent;
    border-left:8px solid transparent;
}
.machine .machine-roof .machine-silencer:after{
    left:4px;
    width:5px;
    height:12px;
    bottom:100%;
    background:inherit;
    transform:skewY(-35deg);
}
.machine .machine-roof .machine-silencer .machine-smoke{
    left:-5px;
    width:16px;
    height:16px;
    bottom:20px;
    border-radius:50%;
    position:absolute;
    background:#271e01;
    transform:scale(0);
    animation:moveSmoke .5s linear infinite;
}
.machine-main{
    height:60px;
    width:185px;
    position:relative;
}
.machine .machine-main .machine-body{
    height:inherit;
    width:inherit;
    position:relative;
    background:#271e01;
}
.machine .machine-main .machine-body:before{
    left:-15px;
    width:30px;
    height:inherit;
    background:inherit;
    transform:skewX(-20deg);
}
.machine .machine-main .machine-body:after{
    bottom:0;
    right:15px;
    width:35px;
    height:41px;
    background:#ffc600;
}
.machine .machine-main .machine-back{
    bottom:-1px;
    width:75px;
    height:45px;
    position:absolute;
}
.machine .machine-main .machine-back:before{
    width:75px;
    height:45px;
    background:#ffc600;
    border-radius:50% 50% 0 0 / 85% 85% 0 0;
}
.machine .machine-main .machine-back:after{
    top:50%;
    left:50%;
    width:60px;
    height:60px;
    border-radius:50%;
    margin-top:-15px;
    margin-left:-30px;
    background:transparent;
    border:15px solid #271e01;
}
.machine .machine-main .machine-front{
    z-index:1;
    width:60px;
    height:60px;
    right:-24px;
    bottom:-20px;
    border-radius:50%;
    position:absolute;
    background:#271e01;
    border-top:2px solid #ffc600;
}
.machine .machine-main .machine-front:after{
    top:50%;
    left:50%;
    width:80px;
    height:20px;
    margin-top:-10px;
    margin-left:-40px;
    background:inherit;
    border:2px solid #ffc600;
}
.machine-wrap .road{
    right:0;
    bottom:0;
    height:15px;
    width:140px;
    overflow:hidden;
    position:absolute;
}
.machine-wrap .road .mud-wrap{
    width:160px;
    position:absolute;
    animation:moveRoad .4s linear infinite;
}
.machine-wrap .road .mud{
    bottom:0;
    width:40px;
    float:left;
    height:15px;
    position:relative;
    display:inline-block;
}
.machine-wrap .road .mud:before,
.machine-wrap .road .mud:after{
    width:20px;
    height:20px;
    border-radius:4px;
    background:#271e01;
    transform:rotate(45deg);
}
.machine-wrap .road .mud:before{
    left:0;
    bottom:-17px;
}
.machine-wrap .road .mud:after{
    right:0;
    bottom:-20px;
}

.machine-wrap .machine-roof,
.machine-wrap .machine-body,
.machine-wrap .machine-silencer,
.machine-wrap .machine-back:before,
.machine-wrap .machine-front{
    animation:upDown .6s linear infinite;
}
.machine-wrap .machine-silencer{
    animation-duration:.4s;
}
.machine-wrap .machine-front{
    animation-duration:.3s;
}
.machine-wrap .machine-back{
    animation:upDown .8s linear infinite;
}
@keyframes moveRoad{
    0%{
        right:-40px;
    }
    100%{
        right:0;
    }
}
@keyframes moveSmoke{
    0%{
        opacity:0;
        transform:scale(0) translate(0);
    }
    60%{
        transform:scale(.5) translate(0);
    }
    100%{
        opacity:.6;
        transform:scale(1) translate(-10px,-40px);
    }
}
@keyframes upDown{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(2px);
    }
    100%{
        transform:translateY(0);
    }
}

.key{
    overflow: hidden;
}
.reven-capit{
    position: relative;
}
.reven-capit svg{
    position: absolute;
    right: -21rem;
    top: -12rem;
    height: 46rem;
    transform: rotate(332deg);
}
.key{
    position: relative;
}

.key .svg-key{
    position: absolute;
    top: -36rem;
    transform: rotate(66deg);
    width: 117rem;
    left: -19rem;
}

.splide__pagination__page {
    display: -webkit-box!important;
    display: -webkit-flex!important;
    display: -ms-flexbox!important;
    display: flex!important;
    padding: 0!important;
    -webkit-box-pack: center!important;
    -webkit-justify-content: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    -webkit-box-align: center!important;
    -webkit-align-items: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
    width: 0.888rem!important;
    height: 0.888rem!important;
    border: none!important;
    border-radius: 50%!important;
    margin-right: 1.563rem!important;
    border: 1px solid #fff;
}

.splide__pagination__page.is-active::before{
    transform: scale(1.6);
    background-color: #5e9fe3;
    content: "";
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 1;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background-clip: content-box;
    padding: 0.15rem;
    position: absolute;
    width: 0.638rem;
    height: 0.638rem;
}

.splide__pagination__page.is-active::after{
    transform: scale(1.8);
    content: "";
    position: absolute;
    z-index: -1;
    width: 0.888rem;
    height: 0.888rem;
    border-radius: 100%;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background-color: #000;
    opacity: .6;
}





