html{
    width: calc(100vw - 8px);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

p,span,div{
    font-size: 18px;
}

*{
    font-family: 'Zen Kaku Gothic New', sans-serif;;
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    background-color:#ebf2ff;
}

.navbar{
    background-color: white;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.nav__contents{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:0 auto;
    width: 100%;
    padding:0 30px;
}

.logo{ cursor:pointer; 
    background: url(../assets/logo-center.png);
    height: 75px;
    width: 120px;
    background-size: cover;
    background-position: center;
    background-color: transparent;
    margin-top: 5px;
    position: absolute;
}

.options{
    height:80px;
    display:flex;
    width:100%;
    justify-content:flex-end;
    align-items:center;
    border-right:1px solid rgba(0,0,0,0.2);
    padding-right: 10px;
}
.options > span{
    padding: 12px 20px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px !important;
    transition: 0.3s;
    position: relative;
    color: #222;
    margin:0 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.options > span:hover{
    color: #006DEF;
}

.options > span:hover::after{
    opacity: 1;
}

.mobile-options{
    display: none;
    position: fixed;
    top:81px;
    right:0;
    z-index: 12;
    transform: translateX(100%);
    transition: 0.3s;
    padding: 10px 0;
    width: 225px;
    background-color: white;
}

canvas{
    right:-24vw;
}

.mobile-options > span{
    cursor: pointer;
    display: block;
    text-align: right;
    width: max-content;
    padding: 10px 40px 10px 20px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    float:right;
    clear: both;
    position: relative;
    letter-spacing: 2px; 
    transition: 0.3s;
}

.mobile-options > span::after{
    content: '';
    position: absolute;
    bottom: 3px;
    right: 40px;
    width:calc(100% - 50px);
    height:3px;
    background-color: black;
    transform: translateX(200px);
    transition: 0.3s;
}

.mobile-options > span::before{
    content: '';
    height:100%;
    width:35px;
    position: absolute;
    background-color: white;
    z-index: 999;
    right:0;
    top:0;
}

.mobile-options > span:hover{
    color: #006DEF;
}

.mobile-options > span:hover::after{
    transform: translateX(0px);
}

.menu__cont{
    height:80px;
    padding-right: 30px;
    align-items: center;
    border-right: 1px solid rgba(0,0,0,0.2);
    width: 100%;
    display: none;
    justify-content: flex-end;
}
.sandwich{
    margin-top: 6px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    display: none;
}

.sandwich > input{
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    
    cursor: pointer;
    
    opacity: 0;
    z-index: 2; 
    
    -webkit-touch-callout: none;
}

.sandwich > span{
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #222;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
}

.sandwich span:first-child{
    transform-origin: 0% 0%;
}

.sandwich span:nth-last-child(2){
    transform-origin: 0% 100%;
}

.sandwich input:checked ~ span{
    opacity: 1;
    transform: rotate(45deg) translate(-10px, -18px);
    background: #006DEF;
}

.sandwich input:checked ~ span:nth-last-child(3){
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

.sandwich input:checked ~ span:nth-last-child(2){
    transform: rotate(-45deg) translate(-1px, 11.5px);
    background: #232323;
}

input, textarea{
    background-color: rgb(255, 255, 255);
    border: none;
    padding:12px;
    /* border-radius: 0; */
    margin: 6px 0;
    width: 100%;
    border-radius: 3px;
    max-width: 480px;
    font-size: 1rem;
}

input:focus, textarea:focus{
    outline: none;
}

.btn_special{
    cursor:pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    color:white;
    padding:12px 18px;
    margin-left:30px;
    background-color: #006DEF;
    width: max-content;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    border-radius: 4px;
}
.btn_special:before,.btn_special:after {
  content: '';
  background: rgba(0,0,0);
  height: 50%;
  width: 0;
  position: absolute;
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition:0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.btn_special:before {
    top: 0;
    left: 0;
    right: auto;
}
.btn_special:after {
    bottom: 0;
    right: 0;
    left: auto;
}
.btn_special:hover:before {
    width: 100%;
    right: 0;
    left: auto;
}
.btn_special:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}
.btn_special span{
    z-index: 999;
    position: relative;
}

.hero{
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.hero > div{
    /* min-width:300px; */
    /* width: 100%; */
    max-width:648px;
    margin-left: 10vw;
}

h1{
    line-height: 3.28rem;
    font-size:2.8rem;
}
h3{
    font-size: 4vh;
    /* margin-top: 4.2vh;    */
}
header p{
    margin-top: 3.2vh;
}
p{
    font-size: 1.25rem !important;
    /* margin-top: 3.2vh;    */
}

.hero h1{
    margin-top: 24vh;
    color: #222725;
    text-transform: none;
    letter-spacing: normal;
}

.hero p{
    font-size: 3vh;
    margin-top: 3.2vh;   
}

footer button{
    background-color: #222725;
    /* border-radius: 3px; */
    padding:12px 18px;
    border: none;
    margin-top:12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

footer{
    padding: 60px 0 0 0;
    width: calc(100vw - 8px);
    background-color: #c9f0e5;
    /* color: #222725; */
    color: #232323;
}

.contact_foot{
    display: flex;
    width: 100%;
    max-width: 1268px;
    justify-content: space-around;
    /* padding: 0px 80px; */
    margin: 0 auto;
}

.text_foot{
    width: 40%;
}
.contact_foot div:nth-child(2){
    width: 45%;
}

.full_sec{
    width: calc(100vw - 8px);
    overflow: hidden;
}

.full_cont{
    position: relative;
    max-width: 1624px;
    padding: 120px 30px !important;
    margin: 0 auto;
}

.full_sec h1{
    line-height: 6.2vh;
    font-size: 6vh;
    font-weight: 400;
}

.section{
    max-width: 1624px;
    margin: 0 auto;
    padding: 120px 30px;
}

.sub_heading, .full_sec h3{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #006DEF;
}

.section h1{
    font-size: 6vh;
    line-height: 6.2vh;
    font-weight: 400;
}

.scroller{
    cursor:grab;
    max-width: 100%;
    overflow-x: scroll;
    margin-top: 50px;
    padding: 30px 0;
}

.elem_high{
    margin: 0 6vw 0 0;
    padding: 0 30px 0 0;
}

.elem_h{
    font-size:1.8rem;
    margin-top:24px;
    font-weight: 500;
}

.elem_text{
    font-size: 1.2rem;
    margin-top: 4px;
    max-width: 440px;
}

.image_h{
    aspect-ratio: 4.5/3.15;
    overflow: hidden;
    width: 80vw;
    position: relative;
    cursor: pointer;
    max-width: 630px;
    transition: 0.3s ease;
}

.image_h:hover .image_h_con{
    transform: scale(1.15);
}
.image_h:hover .overlay{
    background-color: rgba(0, 0, 0, 0.15);
}
.overlay{
    transition: 1.0s cubic-bezier(.075,.82,.165,1);
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0);
    z-index: 11;
}
.image_h_con{
    width: 100%;
    height: 100%;
    background: url(../assets/banners/3.jpg);
    background-size: cover;
    background-position: center;
    transition:transform 2.4s cubic-bezier(.075,.82,.165,1);
}

.scroll_element{
    box-shadow: 0px 1px 2.1px rgba(0, 0, 0, 0.008), 0px 3.4px 6.9px rgba(0, 0, 0, 0.02),0px 15px 31px rgba(0, 0, 0, 0.06);
    margin: 0 30px 0 0;
    background-color: white;
    border-radius: 5px;
    padding: 30px;
}

canvas{
    top: -10px;
    animation: updown 3s infinite;
}

.left{
    background: url(../assets/left-arrow.png);
}

.right{
    background: url(../assets/right-arrow.png);
}

.controls > div{
    margin-left: 10px !important;
    padding:12px;
    border: 2px solid black;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    margin: 0 8px 0 0;
    transition: 0.4s cubic-bezier(.075,.82,.165,1);
}

.controls > div:hover{
    transform: scale(1.1);
}

.full_width{
    width: 100%;
    padding: 120px 30px;
    background-color: #c9f0e5;
    color: #222725;
}

.logo-slider{
    color: white;
    background-color: #222725;
}

.column{
    max-width: 1624px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    height: 70vh;
    padding: 30px 30px;
}

.column > div{
    height: 100%;
}

.column  h1{
    margin-bottom: 10px;
    font-weight: 600;
}

.text_col{
    display: flex;
    align-items: center;
    margin-left: 120px;
    width: 37%;
}

.img_col{
    width: 55%;
    margin-bottom: auto;
    background-image: url(../assets/banners/4.jpg);
    background-size: cover;
    background-position: center;
}

.hor_elem{
    cursor: pointer;
    overflow: hidden;
    width: 380px;
    box-shadow: 0px 0px 7.8px rgba(0, 0, 0, 0.025), 0px 0px 62px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    background-color: white;
    max-height: 620px;
    margin-right: 2vw;
    transition: 0.25s cubic-bezier(0.77,0.2,0.05,1.0);
}

.image_ho .overlay{
    width: 100%;
    height: 100%;
}

.hor_elem:hover .image_ho .overlay{
    background-color: rgba(0,0,0,0.2);
    z-index: 99;
}

.hor_elem:hover .view_button::before{
    transform: translateX(0);
}

.hor_elem:hover{
    background-color: rgb(242, 242, 242);
}


.elem_ho, .elem_text_ho{
    padding: 0px 30px;
}

.elem_ho{
    padding-top: 20px;
    font-weight: 500;
    font-size: 1.65rem;
    margin-bottom: 4px;
}

.elem_text_ho{
    padding-bottom: 30px;
}

.image_ho{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 20vh;
    /* min-width: 220px; */
    background-size: cover;
    background-position: center;
    border-right: 1px  solid rgba(0, 0, 0, 0.2);
    /* max-width: 280px; */
}

.view_button{
    overflow: hidden;
    padding:18px;
    width: 60px;
    margin-left: 14px;
    height: 60px;
    position: relative;
    border-left: 1px  solid rgba(0, 0, 0, 0.2);
}

.view_con{
    width: 60px;
    height: 60px;
    z-index: 4;
    top: 0;
    right: 0;
    background-size: 16px;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../assets/right-arrow.png);
}

.view_button::before{
    content: "";
    position: absolute;
    background-color: #c9f0e5;
    height: 60px;
    width: 60px;
    top: 0;
    left: 0;
    transform:translateX(-60px);
    transition: transform 0.3s cubic-bezier(0.77,0.2,0.05,1.0);
    z-index: 3;
}

.view_project{
    justify-content: space-between;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 20px;
    font-weight: 500;
    bottom: 0;
    right: 0;
    padding: 0px 0px 0 30px;
    /* background-color: black; */
    border-top: 1px  solid rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-track
{
	border-radius: 10px;
	background-color: #ebf2ff;
}

::-webkit-scrollbar
{
	width: 8px;
    height: 8px;
	background-color: #ebf2ff;
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-color: rgb(133, 133, 133);
}

:root{
    scrollbar-width: 12px !important;
}
@keyframes updown{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-20px);
    }
    100%{
        transform: translateY(0px);
    }
}

@media screen and (max-width:1122px){
    .options{
        display: none !important;
    }
    .logo{ cursor:pointer; 
        height: 75px;
    }
    .menu__cont{
        display: flex !important;
    }
    .sandwich{
        display: block !important;
    }
    .mobile-options{
        display: block;
    }
}

.ho_text{
    width: 100%;
}

input{
    max-width: 480px;
}

@media screen and (max-aspect-ratio: 3/4){
    canvas{
        right: -468px;
    }
    html{
        width: 100vw;
    }
    footer{
        width: 100vw;
    }
    .full_sec{
        width: 100vw;
    }
}

@media screen and (max-width: 768px){
    .partial{
        display: block !important;
    }
    .controls{
        margin-top:18px;
        margin-bottom: 18px !important;
        float:right;
        clear:both;
    }
    .hor_elem{
        max-height: none !important;
        height: max-content;
        display: block;
        width: 80vw;
        margin-right: 30px;
    }
    .scroller{
        width: 100vw;
    }
    .image_ho{
        height: 300px;
        max-width: none;
        width: 100% !important;
    }
}

@media screen and (max-width:584px){
    .navbar .btn_special{
        display: none;
    }
    .menu__cont{
        padding-right: 0;
        border: none;
    }
    .mobile-options .btn_special{
        display: block !important;
    }
    .contact_foot{
        display: block;
    }
    .text_foot{
        margin-bottom: 40px;
    }
    header h1{
        font-size:4.6vh;
        margin-top: 17vh !important;
    }
    #container{
        right: 100vw !important;
    }
    h3{
        font-size: 20.5px !important;
    }
    b{
        font-size: 17px !important;
    }
    header p{
        font-size:2.8vh !important;
        /*margin-top:10px !important;*/
    }
    .mobile-options{
        height: 355px;
    }
}

.links{
    font-size: 12px;
    font-weight: 500;
    width: max-content;
}

.links span::after{
    content: "";
    width: calc(100%);
    /* width: max-content; */
    height: 1px;
    background-color: rgb(44, 44, 44);
    position: absolute;
    bottom: -4px;
    left: 0;
}

.links > span{
    margin-right: 24px;
    width: max-content;
    position: relative;
    cursor: pointer;
    color: rgb(44, 44, 44);
}

.social{
    margin-top: 24px;
    display: flex;
    width: max-content;
}

.social > div{
    border-radius: 50%;
    height: 35px;
    width: 35px !important;
    margin-right: 10px;
    cursor: pointer;
    filter: invert(1);
    background-color: #ff9210;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
}

.social > div:hover{
    transform: scale(1.2);
}

@media screen and (max-width: 878px) {
    .contact_foot{
        /* display: block; */
        /* padding: 0 80px; */
    }
    .links span{
        display: block;
        margin-bottom: 8px;
    }
    .text_foot{
        /* margin-bottom: 20px; */
    }
    .img_col{
        height: 60vh !important;
        width: 100%;
    }
    .text_col{
        margin-left: 0;
        margin-top: 40px;
        width: 100%;
    }
    .column{
        height: max-content;
        display: block !important;
    }
    .photo{
        display: none !important;
    }
    .hero > div{
        margin: 0 auto ;
    }
    .text > h1{
        font-size: 7rem !important;
        line-height: 7.3rem !important;
    }
}

@media screen and (max-width: 608px){
    .contact_foot{
        display: block;
        padding: 40px 30px;
    }
    .contact_foot > div{
        width: 100% !important;
    }
    .links{
        width: calc(100% - 160px);
    }
    .links span{
        display: inline-block;
        /* margin-bottom: 8px; */
    }
    .text_foot{
        margin-bottom: 20px;
    }
    .text > h1{
        font-size:3rem !important;
        line-height: 3.3rem !important;
    }
    .hero{
        height:40vh !important;
    }
}

@media screen and (max-width: 420px){
    .contact_foot{
        padding: 0px 30px; 
    }
}

