* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: black;
}

::-webkit-scrollbar-thumb {
    background: rgb(161, 161, 161);
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(161, 161, 161);
}

::selection {
    color: white;
    background: rgb(161, 161, 161);
}

@font-face {
    font-family: Montserrat;
    src: url(/Montserrat-VariableFont_wght.ttf);
}

body {
    background-color: rgb(255, 255, 255);
}

.buffer {
    height: 10vh;
    width: 100%;
}

.home {
    height: 100vh;
    display: grid;
    grid-template-rows: 90vh 10vh;
}

.image {
    background-color: black;
    height: 100%;
}

.image img {
    height: 90vh;
    opacity: 50%;
    object-fit: cover;
}

.slideshow-container {
    height: 90vh;
    overflow-y: hidden;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 40px;
    padding: 8px 12px;
    font-family: Montserrat;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    top: 45%;
    width: 100%;
    text-align: center;
}

.dash {
    width: 6%;
    position: absolute;
    top: 58%;
    left: 47%;
    border: 2px solid #f2f2f2;
    animation-name: dashAnimation;
    animation-duration: 0.5s;

}

@keyframes dashAnimation {
    from {
        width: 0;
    }

    to {
        width: 100;
    }
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 0.5s;
}

@keyframes fade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.navContainer {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    background-color: rgb(161, 161, 161);
    z-index: 10;
}

.navContainer .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 2/3;
}

.navContainer .logo img {
    height: 80%;
}

.navHead {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 3/11;
}

.navContainer .navbar {
    grid-column: 14/24;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.navContainer .navbar a,
.navHead a {
    position: relative;
    display: inline-block;
    padding: 15px 15px;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    font-family: Montserrat;
    font-weight: 400;
    color: rgb(50, 50, 50);
    transition: 0.5s;
}

.navContainer .navbar a:hover,
.navHead a:hover {
    color: white;
    transition: 0.5s;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.about {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 70vh 10vh;
}


.about .info {
    grid-column: 1/13;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabcontent {

    background-color: white;
}

.tabcontent p {
    font-size: 13px;
    font-weight: 300;
    font-family: Montserrat;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    width: 850px;
}

.tabcontent h1,
.head h1 {

    font-size: 20px;
    font-weight: 500;
    font-family: Montserrat;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.buttons {
    grid-column: 2/12;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tablink {
    font-family: Montserrat;
    font-weight: 400;
    color: black;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 16px;
    font-size: 15px;
    width: 20%;
    height: 50px;
    border: 1px solid #bbbbbb;
}

.tablink:hover {
    background-color: #bbbbbb;
}


.process {
    background-color: #e9e9e9;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    padding: 5% 0;
}

.processHeading {
    grid-row: 1/3;
    grid-column: 1/13;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardContainer {
    padding-top: 50px;
    grid-column: 2/12;
    grid-row: 3/13;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 50px;
}

.card {
    position: relative;
    width: 33.33%;
}

.card .front {
    height: 350px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.card .back {
    height: 350px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    opacity: 0;
    transition: .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.back:hover {
    opacity: 1;
    background-color: #e9e9e9;
    cursor: default;
}

.back:hover .front {
    opacity: 0;
}

.card img {
    max-height: 300px;
    height: auto;
    width: auto;
    max-width: 450px;
}

.card h2 {
    font-size: 17px;
    font-weight: 400;
    font-family: Montserrat;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.card p {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 300;
    font-family: Montserrat;
    text-transform: lowercase;
    letter-spacing: 1px;
    text-align: justify;
}


.works {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    padding: 5% 0;
}

.worksHeading {
    grid-row: 1/3;
    grid-column: 1/13;
    display: flex;
    justify-content: center;
    align-items: center;
}

.workContainer {
    grid-row: 3/13;
    grid-column: 2/12;
    display: flex;
    justify-content: space-between;
    align-items: center;
    row-gap: 25px;
    column-gap: 5%;
    padding-top: 50px;
}

.worky {
    width: 30%;
}


.worky img {
    height: 300px;
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.worky img:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    transition: 0.3s;
}

.worky p {
    font-size: 10px;
    font-weight: 300;
    font-family: Montserrat;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}


.contact {
    height: 90vh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
}

.contactHeading {
    grid-row: 1/13;
    grid-column: 2/5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactHeading h1 {
    font-size: 35px;
    font-weight: 700;
    color: rgb(161, 161, 161);
    text-align: left;
}

.map {
    grid-column: 6/11;
    grid-row: 2/8;
    overflow: hidden;
}

.address {
    grid-column: 6/11;
    grid-row: 8/12;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.address p {
    font-size: 12px;
    font-weight: 400;
    font-family: Montserrat;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.icons {
    grid-row: 5/9;
    grid-column: 11/12;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.icons img {
    height: 35px;
    width: 35px;
}
/* The Modal (background) */
.modal1,
.modal2,
.modal3 {
    overflow-y: hidden;
    display: none;
    position: fixed;
    z-index: 3;
    padding: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    width: 100%;
    overflow: none;
    background-color: rgb(0, 0, 0);
    z-index: 100;
}

/* Modal Content */
.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 100%;
    max-width: 2000px;
}

.modal-content img {
    height: 100vh;
    width: auto;
    object-fit: contain;
}

/* The Close Button */
.close {
    z-index: 100;
    color: rgb(255, 255, 255);
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: rgb(143, 143, 143);
    text-decoration: none;
    cursor: pointer;
}

/* Hide the slides by default */
.mySlides1,
.mySlides2,
.mySlides3 {
    display: none;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgb(105, 105, 105);
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgb(132, 132, 132);
}
@media screen and (max-width: 1100px) {
    .home {
        grid-template-rows: 10vh 90vh;
    }

    .image {
        grid-row: 2/3;
    }

    .navContainer {
        grid-row: 1/2;
    }

    .text {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .dash {
        width: 10%;
        top: 50%;
        left: 45%;
    }

    .navContainer .logo {
        grid-column: 2/4;
    }

    .navHead {
        grid-column: 4/13;
        justify-content: flex-start;
    }

    .navContainer .navbar {
        grid-column: 15/24;
    }

    .about {
        grid-template-rows: 500px 60px;
    }
    .tabcontent p {
        font-size: 12px;
        width: 500px;
    }

    .tabcontent h1,
    .head h1 {
        font-size: 15px;
    }

    .buttons {
        grid-column: 2/12;

    }

    .tablink {
        padding: 10px 0;
        font-size: 13px;
        width: 33.33%;
    }
    .processHeading {
        grid-row: 1/2;
    }
    .cardContainer {
        grid-row: 2/12;
        flex-direction: column;
        row-gap: 50px;
    }
    .card {
        width: 60%;
        border: 1px solid #c9c9c9;
    }
    .card img {
        height: 250px;
        width: 100%;
        object-fit: contain;
    }
    .card .front {
        height: 280px;
    }
    .card .back {
        height: 280px;
    }
    .card h2 {
        font-size: 15px;
    }
    .card p {
        font-size: 13px;
        padding: 0 5px;
    }
    .worksHeading {
        grid-row: 1/2;
    }
    
    .workContainer {
        flex-direction: column;
        grid-row: 2/13;

    }
    .worky {
        width: 60%;
    }
    .worky img{
        max-height: 300px;
    }
    .contact {
        height: 90vh;
    }
    .contactHeading {
        grid-row: 1/3;
        grid-column: 1/13;
    }
    
    .contactHeading h1 {
        font-size: 25px;
        text-align: center;
        letter-spacing: 1px;
    }
    
    .map {
        grid-column: 2/12;
        grid-row: 3/8;
    }
    
    .address {
        grid-column: 2/12;
        grid-row: 8/10;
    }
    
    .address p {
        font-size: 13px;
    }
    
    .icons {
        grid-row: 10/11;
        grid-column: 2/6;
        flex-direction: row;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .icons img {
        height: 30px;
        width: 30px;
    }
    .close {
        top: 200px;
    }
}
@media screen and (max-width: 480px) {
    .home {
        grid-template-rows: 10vh 90vh;
    }

    .image {
        grid-row: 2/3;
    }

    .navContainer {
        grid-row: 1/2;
    }

    .text {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .dash {
        width: 10%;
        top: 51%;
        left: 45%;
    }

    .navContainer .logo {
        grid-column: 2/5;
    }

    .navHead {
        grid-column: 5/24;        
    }
    .navContainer .navbar {
        grid-column: 24/24;
        visibility: hidden;
    }

    .buffer {
        display: none;
    }
    .about {
        grid-template-rows: 500px 60px;
        padding-bottom: 10%;
    }
    .tabcontent p {
        font-size: 10px;
        width: 300px;
    }

    .tabcontent h1,
    .head h1 {
        font-size: 15px;
    }

    .buttons {
        grid-column: 2/12;

    }

    .tablink {
        padding: 10px 0;
        font-size: 13px;
        width: 33.33%;
    }
    .processHeading {
        grid-row: 1/2;
    }
    .cardContainer {
        grid-row: 2/12;
        flex-direction: column;
        row-gap: 50px;
    }
    .card {
        width: 70%;
        border: 1px solid #c9c9c9;
    }
    .card img {
        height: 220px;
        width: 100%;
        object-fit: contain;
    }
    .card .front {
        height: 250px;
    }
    .card .back {
        height: 250px;
    }
    .card h2 {
        font-size: 13px;
    }
    .card p {
        font-size: 11px;
        padding: 0 5px;
    }
    .worksHeading {
        grid-row: 1/2;
    }
    
    .workContainer {
        flex-direction: column;
        grid-row: 2/13;
    }
    .worky {
        width: 100%;
    }
    .worky img{
        max-height: 200px;
    }
    .contact {
        height: 90vh;
        padding-top: 50px;
    }
    .contactHeading {
        grid-row: 1/3;
        grid-column: 1/13;
    }
    
    .contactHeading h1 {
        font-size: 25px;
        text-align: center;
        letter-spacing: 1px;
    }
    
    .map {
        grid-column: 2/12;
        grid-row: 3/8;
    }
    
    .address {
        grid-column: 2/12;
        grid-row: 8/11;
    }
    
    .address p {
        font-size: 10px;
    }
    
    .icons {
        grid-row: 11/12;
        grid-column: 2/12;
        flex-direction: row;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    .icons img {
        height: 30px;
        width: 30px;
    }
    .close {
        top: 200px;
    }
}


