@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Display:wght@300&display=swap');

:root{
    --maincolor:#212121;
    --subcolor:#3eccb5;
    --largefont:22pt;
    --hugefont:55pt;
    --small-font:16px;
    --headingfont:30pt;
    --fontfam1:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    --fontfam2:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

.active {
    color: cyan;
}

.special-login {
    background-color: var(--subcolor);
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.to-top {
    position: fixed;
    border-inline: 1px solid white;
    border-block-start: 1px solid white;
    color: white;
    font-weight: 900;
    transform: rotate(-90deg);
    width: 40px;
    height: 40px;
    bottom: 16px;
    left: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    background: transparent;
    backdrop-filter: blur(15px);
}
.to-top.active-top {
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}

body{
    margin:0;
    width: 100vw;
    color: var(--maincolor);
}

p{
    color: #3b3b3b;
}

.intro {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 100;
}

.icon-rep-sm,.icon-rep-lg{
    width: 40px;
    height: 40px;
    display: block;
}
.icon-rep-sm{
    width: 20px;
    height: 20px;
}

.navdrawer{
    display: none;
}
.navlabel{
    display: none;
}

#navdrawer {
    display: none;
}

header{
    background-color: var(--maincolor);
    color:white;
    display: flex;
    padding: 5px 0;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    z-index: 1000;
    margin: 0;
    width: 100%;
}
header h3{
    font-size: var(--largefont);
    letter-spacing: .15rem;
    font-family: 'Times New Roman', Times, serif;
    width: fit-content;
}
header ul{
    font-family: var(--fontfam2);
    display: flex;
    gap:25px;
    list-style: none;
    font-weight: 300;
    font-size: var(--small-font);
}
header section{
    display: flex;
    gap:25px;
    align-items: center;
}
.login-btn{
    font-size: var(--small-font);
    color:var(--subcolor);
    display: flex;
    gap:7px;
    font-family: var(--fontfam2);
    display: none;
}
.hero-section{
    width: 100vw;
    height: 100vh;
    position: relative;
    display: grid;
    place-items: center;
    color:white;
    background-color: black;
    margin:0;
}
.hero-section img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
    object-fit: cover;
    opacity: .5;
}
.hero-section section{
    z-index: 100;
    position: absolute;
    top:59%;
    transform: translateY(-50%);
    width: 100%;
    display: grid;
    place-items: center;
}
.hero-section h1{
    font-size: var(--hugefont);
    text-align: center;
    width: 80%;
    margin: 0;
    line-height: 4rem;
    text-transform: uppercase;
    letter-spacing: .3rem;
    transition: 0.5s ease-out;
}
.hero-section section p{
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 100;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    letter-spacing: .1rem;
    width: 80%;
    margin: 0;
    margin-top: 1.5rem;
    color:rgba(255, 255, 255, 0.856)
}
.main-btn{
    background-color: var(--subcolor);
    padding: .9rem 3rem;
    color: var(--maincolor);
    font-size: medium;
    letter-spacing: .1rem;
    border: none;
    margin: 1.3rem 0;
    text-transform: uppercase;
    transition: 0.7s ease-in-out;
}
.main-btn:hover {
    color: white;
    background-color: #228373;
    transition: 0.7s ease-in-out;
}

.aboutUs{
    background-image: url("images/about-bg.jpg");
    width:100%;
    height: 150vh;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    position: relative;
}
.aboutUs article{
    position: absolute;
    top: 25%;
    left:50%;
    transform: translateX(-50%);
    padding: 1rem .5rem;
    padding-top: 3rem;
    background-color: white;
    min-width: 300px;
    width:50%;
    display: grid;
    justify-items: center;
}
.aboutUs article > p {
    font-size: 16px;
}
.aboutUs article > h2 {
    transition: 0.7s ease-in;
}
.heading{
    font-size:var(--headingfont);
    text-align: center;
    text-transform: uppercase;
}
.pg{
    line-height: 1.7rem;
    text-align: center;
    max-width: 500px;
    width:80%;
    font-family: var(--fontfam2);
    font-size: var(--small-font);
}
.ourTeam{
    padding: 3rem 0;
    display: grid;
    justify-items: center;
    width: 100vw;
}
.ourTeam p{
    max-width: 400px !important;
    width: 80%;
    font-size: 16px;
}
.carousel{
    display: flex;
    overflow-x: scroll;
    width: 100vw;
    gap: 1rem;
    margin: 1.5rem 0;
    scroll-snap-type: x mandatory;
}
.carousel figure{
    margin: 0;
    background-color: grey;
    scroll-snap-align: start;
}
.carousel figure img{
    max-width: 350px;
    min-width: 300px;
    height: 350px;
    width: 90%;
    object-fit: cover;
    object-position: 50% 50%;
    transition: .3s ease;
}
.carousel figure img:hover{
    opacity: .5;
}
@keyframes bgslide {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: rotateX(0);
    }
}
.industries{
    /* animation: bgslide 0.8s ease-in 1 normal; */
    background-color: var(--subcolor);
    display: grid;
    justify-items: center;
    width: 100%;
    padding: 1.5rem 0;
}

.industries > h2 {
    transition: 0.5s ease-in;
}
.industriesImg{
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    width:100vw;
    justify-content: space-evenly;
}
.industriesImg figure{
    margin: 0;
    width: 50vw;
    height: 300px;
    min-width: 300px;
    top:35px;
    position: relative;
    overflow: hidden;
    transition: .5s linear;
    font: 1em serif;
}
.industriesImg figure img{
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
}
.blur {
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    position: absolute;
    background-color: #1f3d4738;
    backdrop-filter: blur(5px);
    color: white;
    overflow: hidden;
    text-align: center;
    font-family: 'Noto Serif Display', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 1.5s;
}
.blur > p {
    font-size: var(--largefont);
    color: white;
    font-weight: bolder;
}
.industriesImg figure:hover .blur {
    right: 0;
}
.blur > .react {
    flex: end;
    padding-top: 50px;
}
.react {
    display: flex;
    justify-content: space-between;
    gap: 230px;
}
.like, .share {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.like > i, .share > i {
    font-size: 30px;
}
#open-space, #event, #private-office {
    display: flex;
    align-items: center;
}
.rates {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
    padding-left: 10px;
}
/* .blur {
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-color: black;
    cursor: pointer;
} */
.whyUs{
    display: grid;
    justify-items: center;
    margin: 1.5rem 0;
    width: 100%;
}
.whyUs > h2,.whyUs > p{
    margin: .5em;
    transition: 1s ease-in;
}
.whyUs p {
    font-size: 16px;
}
.whyUs ul{
    margin: 1.5rem 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    justify-content: space-between;
}
.whyUs ul li{
    width: 250px;
    display: flex;
    gap:20px
}
@keyframes slide {
    form {
        transform: translateX(170px);
    }
    to {
        transform: rotateX(0);
    }
}
/* .whyUs ul li > p{
    animation-name: slide;
    animation-duration: 3s;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
    animation-direction: normal;
}
.whyUs ul li > img{
    animation-name: slide;
    animation-duration: 3s;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
    animation-direction: normal;
} */
.whyUs ul li > p{
    text-align: start;
    transition: 0.8s ease-in;
}
.whyUs ul li > img {
    transition: 0.8s ease-in;
}
.subscribe{
    background-image:url("images/contact-bg.jpg");
    background-attachment: fixed;
    width: 100%;
    height:100vh;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.blackbg{
    position: absolute;
    top:0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .7;
    z-index: 0;
}

.subscribe  .head-contact {
    position: absolute;
    top:20%;
    left:50%;
    transform: translate(-50%,-50%);
    z-index: 100;
    display: grid;
    gap:6px;
    color:white;
    width: 100%;
}

.subscribe .head-contact p{
    text-align: center;
    color: white;
    font-family: 'Raleway', sans-serif;
    padding: 0;
    margin: 0;
}
 
.subscribe form{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    z-index: 100;
    display: grid;
    gap:15px;
    color:white;
    font-family: var(--fontfam2);
    width: 250px;
}


.subscribe form h5{
    font-size:13pt;
    margin: 0;
    text-align: center;
}
.subscribe form input{
    background-color: rgba(255, 255, 255, 0.25);
    border: none;
    padding: .6rem .4rem;
    color:white
}
.subscribe form input:focus{
    outline: none;
    background-color: #228373;
}
.subscribe form button{
    margin:0
}
footer{
    background-color: var(--maincolor);
    padding: 1.5rem 0;
    width: 100%;
    margin: 0;
}
footer p{
    text-align: start !important;
    color: wheat;
    margin: 0 3rem;
}


@media screen and (max-width:870px) {
    header h3{
        font-size: 15pt;
    }
    .navcontent{
        position: absolute;
        top:100%;
        left:-100%;
        background-color: var(--maincolor);
        font-size: 15pt;
        width: 100vw;
        padding: 1rem 0;
        margin: 0;
        transition: all .3s linear;
        display: grid;
        justify-items: start;
    }
    header ul{
        display: grid;
        width: fit-content;
        padding: 0;
    }
    header ul li{
        margin-left: 2rem;
    }
    .hero-section h1{
        font-size: 35px;
        width: 80%;
        line-height: 4rem;
        text-transform: uppercase;
        letter-spacing: .3rem;
    }
    .hero-section p{
        font-family: monospace;
        font-size: 25px;
        font-weight: 100;
        text-align: center;
        width: 80%;
        margin: 0;
        margin-top: 1.5rem;
        color:white
    }
    .navlabel {
        display: block;
        width: 20px;
        height: 2px;
        background-color:white;
        position: relative;
        display: none;
    }

    .navlabel::before,
    .navlabel::after {
        content: "";
        display: block;
        width: 20px;
        height: 2px;
        background-color: white;
        position: absolute;
        transition: .4s linear;
        display: none;
    }
    label:not(.navlabel){
        display: none;
    }
    .navlabel::before {
        top: -8px;
        transform-origin: top left;
    }

    .navlabel::after {
        bottom: -8px;
        transform-origin: bottom left;
    }

    #navdrawer {
        position: absolute;
        opacity: 0;
        z-index: 100;
        width: 100px;
        height: 50px;
    }
    .navlabel > #navdrawer:checked{
        height: 0;
    }
    #navdrawer:checked+.navlabel {
        height: 0;
    }

    #navdrawer:checked+.navlabel::before {
        transform: rotate(45deg);
    }

    #navdrawer:checked+.navlabel::after {
        transform: rotate(-45deg);
    }
    .login-btn{
        margin-left: 2rem;
    }
}
@media screen and (max-width:460px) {
    header h3{
        max-width: 270px;
        font-size: 13.5pt;
    }
    .hero-section h1{
        font-size: 30px;
    }
}
.map {
    width: 100vw;
}

iframe {
    width: 100%;
}



