:root{
    --font-bold: 'Gotham-Bold';
    --font-book: 'Gotham-Book';
    --color-text: #4C4C4C;
    --clr-accent: #0091EA;
    --grid: 16.66666667% 16.66666667% 16.66666667% 16.66666667% 16.66666667% 16.66666667%;
}

header .wrapper img{
    width: 250px;
}
header .wrapper h1{
    font-family: var(--font-bold);
    color: var(--color-text);
}
header .wrapper h2{
    font-weight: normal;
    color: var(--color-text);
    font-size: 25px;
}
header .wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}
header .wrapper .space{
    width: 70px;
}


.overflow-active{
    overflow: hidden !important;
}

.info-section .wrapper {
    padding-top: 30px;
}

.info-section .wrapper .item .main-header{
    display: grid;
    grid-template-columns: var(--grid);
    justify-content: center;
    padding-bottom: 20px;
}
.info-section .wrapper .item .main-header .item{
    cursor: pointer;
}
.info-section .wrapper .item .main-header h2{
    color: var(--color-text);
    font-family: var(--font-bold);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    transition: all 200ms ease;
}
.info-section .wrapper .item .main-header .heading-color{
    color: #0091EA;
}
.info-section .wrapper .item .header{
    display: grid;
    grid-template-columns: 40% auto 40%;
}
.info-section .wrapper .item .header .item{
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-section .wrapper .item .header .item-gap{
    gap: 20px;
}
.info-section .wrapper .item .header span{
    width: 100%;
    height: 1px;
    background-color: var(--color-text);
}
.info-section .wrapper .item .header h3{
    font-weight: normal;
    font-size: 18px;
    font-family: var(--font-bold);
    color: var(--color-text);
    text-wrap: nowrap;
}
.info-section .wrapper .item .body{
    display: grid;
    grid-template-columns: var(--grid);
}
.info-section .wrapper .item-border-bottom{
    border-bottom: 1px solid var(--color-text);
}
.info-section .wrapper .item .body .item-body{
    text-align: center;
    color: var(--color-text);
    padding: 30px 10px;
    cursor: pointer;
}
.info-section .wrapper .item .body .item-body p{
    color: var(--color-text);
    font-size: 15px;
    transition: all 200ms ease;
}
.info-section .wrapper .item .body .item-body .text-blue{
    color: var(--clr-accent);
}
.info-section .wrapper .item .body .item-body .bg-white{
    background-color: rgba(255,255,255,0.6);
}
.hover{
    transition: all 200ms ease;
}

/* .icons-section .wrapper{
    display: grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
    padding-top: 30px;
}
.icons-section .wrapper .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20px;
}
.icons-section .wrapper .item h3{
    font-size: 20px;
    transition: all 200ms ease;
}
.icons-section .wrapper .item img{
    height: 200px;
    cursor: pointer;
}
.icons-section .wrapper .item img:hover{
    transform: scale(1.1);
}
.icons-section .wrapper .item span{
    width: 93%;
    height: 1px;
    background-color: var(--color-text);
} */
.icons-section .wrapper{
    position: absolute;
    width: 100vw;
    height: 90%;
    overflow-y: hidden;
    top: 120px;
    left: 0;
    z-index: -1;
    display: grid;
    grid-template-columns: var(--grid);
}
.icons-section .wrapper img{
    width: 100%;
    opacity: 0.6;
    transition: all 200ms ease;
}
.icons-section .wrapper .active{
    opacity: 1 !important;
}
footer .wrapper{
    display: grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    padding-top: 30px;
}
footer .wrapper span{
    height: 1px;
    width: 100%;
    background-color: var(--color-text);
}
footer .wrapper .longspan{
    height: 1px;
    width: 100%;
    background-color: var(--color-text);
}
footer .wrapper .item{
    display: grid;
    grid-template-columns: 30% auto 5% auto 5% auto 30%;
    align-items: center;
    justify-content: center;
}
footer .wrapper .item .icon{
    border: 1px solid #b2b3b2;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .wrapper .item .icon img{
    width: 20px;
}
/* footer .wrapper .item span{
    height: 1px;
    width: 100%;
    background-color: var(--color-text);
} */

.cards-section .card{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    transition: all 200ms ease;
}
.cards-section .inactive{
    transform: translateX(-100%);
    visibility:hidden;
}
.cards-section .card .back-button{
    position: absolute;
    top: 20px;
    left: 20px;
}
.cards-section .card .back-button button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 200ms ease;
}
.cards-section .card .back-button button p{
    font-family: var(--font-book);
}
.cards-section .card .back-button button img{
    width: 20px !important;
    transition: all 200ms ease;
}
.cards-section .card .back-button button:hover, .cards-section .card .back-button button img{
    transform: scale(1.1);
}
.cards-section .card .wrapper{
    display: grid;
    grid-template-columns: 29% 2% auto;
    height: 100%;
}
.cards-section .card .wrapper .space .line{
    height: 100%;
    width: 1px;
    background-color: var(--color-text);
}
.cards-section .card .wrapper .left{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: scroll;
    gap: 20px;
}
.cards-section .card .wrapper .left .item{
    display: flex;
    width: 100%;
    padding: 0 20px;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.cards-section .card .wrapper .left .item .line{
    width: 100%;
    height: 1px;
    background-color: var(--color-text);
}
.cards-section .card .wrapper .left .heading{
    padding-bottom: 20px;
}
.cards-section .card .wrapper .left .heading h2{
    font-weight: normal;
    font-size: 40px;
    font-family: var(--font-bold);
    color: var(--color-text);
}
.cards-section .card .wrapper .left .item h3{
    font-weight: normal;
    font-size: 18px;
    font-family: var(--font-bold);
    color: var(--color-text);
    text-wrap: nowrap;
}
.cards-section .card .wrapper .left .icon-container{
    padding-top: 30px;
    display: flex;
    justify-content: center;
}
.cards-section .card .wrapper .left .background-container{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    width: 100%;
}
.cards-section .card .wrapper .left img{
    width: 80%;
    /* opacity: 0.6; */
}
.cards-section .card .wrapper .left p{
    font-size: 16px;
    padding-bottom: 20px;
    text-align: center;
    line-height: 1.5rem;
}
.cards-section .card .wrapper .right{
    overflow-y: scroll;
    padding: 10px 20px;
}
.cards-section .card .wrapper .right img{
    width: 90%;
}
.cards-section .card .wrapper .right .wrapper-heading{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 5px;
    margin: 0 auto;
}
.cards-section .card .wrapper .right .wrapper-heading h3{
    font-weight: normal;
    font-size: 18px;
    font-family: var(--font-bold);
    color: var(--color-text);
}
.cards-section .card .wrapper .right .wrapper-2{
    display: flex;
    align-items: center;
    justify-content: stretch;
    width: 100%;
}
.cards-section .card .wrapper .right .wrapper-2-grid{
    display: grid;
    grid-template-columns: 48% 4% 48%;
    width: 100%;
}
.cards-section .card .wrapper .right .wrapper-1{
    display: flex;
    align-items: center;
    justify-content: stretch;
    width: 100%;
}
.cards-section .card .wrapper .right .wrapper-4{
    /* display: flex;
    align-items: center;
    justify-content: stretch; */
    display: grid;
    grid-template-columns: 24.625% .5% 24.625% .5% 24.625% .5% 24.625%;
    width: 100%;
}
.cards-section .card .wrapper .right .img img{
    width: 100%;
    cursor: pointer;
    transition: all 200ms ease;
}
.cards-section .card .wrapper .right .img img:hover{
    transform: scale(1.05);
}
.cards-section .card .wrapper .right .panel img:hover{
    transform: scale(1) !important;
}
.cards-section .card .wrapper .right .wrapper-3{
    /* display: flex;
    align-items: center;
    justify-content: stretch; */
    display: grid;
    grid-template-columns: 32% 2% 32% 2% 32%;
    width: 100%;
}
.cards-section .card .wrapper .right .space{
    width: 30px;
}
.cards-section .card .wrapper .right .vertical-space{
    height: 30px;
}
.cards-section .card .wrapper .right .image{
    display: flex;
    justify-content: center;
    align-items: center;
}
.cards-section .card .wrapper .right .image img{
    width: 100%;
    cursor: pointer;
}
.cards-section .card .wrapper .right .video{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 .5rem 0px rgba(0,0,0,0.5);
    border-radius: 15px;
}
.cards-section .card .wrapper .right .video .top{
    text-align: center;
}
.cards-section .card .wrapper .right .video video{
    width: 100%;
    transition: all 200ms ease;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.cards-section .card .wrapper .right .video .bottom{
    width: 100%;
    text-align: center;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 10px;
    padding-bottom: 20px;
}
.cards-section .card .wrapper .right .video .bottom h5{
    font-size: 18px;
    padding-top: 15px;
}
.cards-section .card .wrapper .right .video .bottom p{
    color: var(--clr-accent);
    font-size: 16px;
}

.cards-section .card .wrapper .right .brochure{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 .5rem 0px rgba(0,0,0,0.5);
    border-radius: 15px;
}
.cards-section .card .wrapper .right .brochure .top{
    text-align: center;
}
.cards-section .card .wrapper .right .brochure img{
    width: 100%;
    transition: all 200ms ease;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.cards-section .card .wrapper .right .brochure .bottom{
    width: 100%;
    text-align: center;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 10px;
    padding-bottom: 20px;
}
.cards-section .card .wrapper .right .brochure .bottom h5{
    font-size: 18px;
    padding-top: 15px;
}
.cards-section .card .wrapper .right .brochure .bottom a{
    color: var(--clr-accent);
    font-size: 16px;
}
.cards-section .card .wrapper .right .wrapper-1 .brochure img{
    width: 30%;
}
.cards-section .card .wrapper .right .preskit{
    display: flex;
    align-items: center;
    justify-content: center;
}
.cards-section .card .wrapper .right .preskit img{
    cursor: pointer;
}
.cards-section .card .wrapper .right .links{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 .5rem 0px rgba(0,0,0,0.5);
    border-radius: 15px;
}
.cards-section .card .wrapper .right .links .top{
    text-align: center;
}
.cards-section .card .wrapper .right .links img{
    width: 100%;
    transition: all 200ms ease;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.cards-section .card .wrapper .right .links .bottom{
    width: 100%;
    text-align: center;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 10px;
    padding-bottom: 20px;
}
.cards-section .card .wrapper .right .links .bottom h5{
    font-size: 18px;
    padding-top: 15px;
}
.cards-section .card .wrapper .right .links .bottom a{
    color: var(--clr-accent);
    font-size: 16px;
}
.cards-section .card .wrapper .right .box{
    width: 100%;
    height: 100%;
}

.cards-section .card .wrapper .right .video-height video{
    width: unset;
    height: 11.5vw;
}


.cards-section .card .wrapper .right .box-black{
    background-color: #000;
}
.cards-section .card .wrapper .navbar{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}
.cards-section .card .wrapper .navbar h4{
    font-size: 15px;
    text-align: center;
    padding-bottom: 10px;
    color: rgba(0, 0, 0, 0.7);
}
.cards-section .card .wrapper .navbar .active{
    color:rgba(0,178,238,255);
}
.cards-section .card .wrapper .navbar img{
    width: 100px;
    cursor: pointer;
    transition: all 200ms ease;
}
.cards-section .card .wrapper .navbar img:hover{
    transform: scale(1.1);
}
.cards-section .card .wrapper .navbar .nopointer{
    cursor: unset;
}
.cards-section .card .wrapper .navbar .nopointer:hover{
    transform: scale(1);
}

.popup-show-image{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
}
.popup-show-image .close-btn{
    position: absolute;
    top: 20px;
    right: 40px;
}
.popup-show-image .close-btn img{
    width: 30px;
    transition: all 200ms ease;
    cursor: pointer;
}
.popup-show-image .close-btn img:hover{
    transform: scale(1.1);
}
.popup-show-image .wrapper .width{
    width: 70vw;
}
.popup-show-image .wrapper .height{
    height: 80vh;
}


@media (max-width: 1400px){
    .cards-section .card .wrapper .right .brochure .bottom {
        height: 50px;
    }
    .cards-section .card .wrapper .right .links .bottom {
        height: 50px;
    }
    .cards-section .card .wrapper .right .video .bottom {
        height: 50px;
    }
}


@media (max-height: 880px){
    .cards-section .card .wrapper .left .heading h2 {
        font-size: 30px;
    }
    .cards-section .card .wrapper .left p {
        font-size: 14px;
    }
    .cards-section .card .wrapper .left p {
        padding-bottom: 10px;
    }
}
@media (max-height: 850px){
    .cards-section .card .wrapper .left img {
        width: 70%;
    }
}