@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --blue: rgb(7, 56, 99);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all .2s linear;
    font-family: 'Roboto', sans-serif;
    max-width: 100%;
}

*::selection {
    background: var(--blue);
    color: #fff;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
}

section {
    padding: 2rem 9%;
    max-width: 100%;
}

.heading {
    text-align: center;
    padding: 2.5rem 0;
}

.heading span {
    font-size: 3.5rem;
    color: var(--blue);
    background: #cee1e9;
    border-radius: .5rem;
    padding: .2rem 1rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #cee1e9;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
}

header .logo {
    height: 5rem;
    display: flex;
    align-items: center;
}

header .logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

header .navbar a {
    color: var(--blue);
    font-size: 2rem;
    margin: 0 .8rem;
}

header .navbar a:hover {
    color: #fff;
}

#menu-bar {
    color: var(--blue);
    border: .1rem solid var(--blue);
    border-radius: .5rem;
    font-size: 3rem;
    padding: .5rem 1.2rem;
    cursor: pointer;
    display: none;
}

.home {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
    z-index: 0;
}

.home .content {
    text-align: center;
}

.home .content h3 {
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 .3rem .5rem rgba(0, 0, 0, .1);
}

.home .content p {
    font-size: 2.5rem;
    color: #fff;
    padding: .5rem 0;
}

.home .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.home .controls {
    padding: 1rem;
    border-radius: 5rem;
    background: rgba(0, 0, 0, .7);
    position: relative;
    top: 10rem;
}

.home .controls .vid-btn {
    height: 2rem;
    width: 2rem;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    margin: 0 .5rem;
}

.home .controls .vid-btn.active {
    background: var(--blue);
}

.btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    border-radius: 5rem;
    background: var(--blue);
    color: #fff;
    font-size: 2rem;
    margin-top: 2rem;
}

.btn:hover {
    background: #fff;
    color: var(--blue);
}

.services .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.services .box-container .box {
    flex: 1 1 30rem;
    border-radius: .5rem;
    padding: 1rem;
    text-align: center;
}

.services .box-container .box i {
    font-size: 5rem;
    color: var(--blue);
    padding: 1rem;
}

.services .box-container .box h3 {
    font-size: 2.5rem;
    color: var(--blue);
}

.services .box-container .box p {
    font-size: 1.5rem;
    color: var(--blue);
    padding: 1rem 0;
}

.services .box-container .box:hover {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
}

.gallery .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.gallery .box-container .box {
    overflow: hidden;
    flex: 1 1 30rem;
    border-radius: .5rem;
    border: 1rem solid #cee1e9;
    box-shadow: 0 1rem 2rem #cee1e9;
    position: relative;
}

.gallery .box-container .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery .box-container .box .content {
    position: absolute;
    top: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, .7);
    padding: 2rem;
    padding-top: 5rem;
}

.gallery .box-container .box:hover .content {
    top: 0;
}

.gallery-slider {
    display: none;
    position: relative;
    width: 100%;
    margin: 2rem auto;
}

.gallery-slider .slider-container {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-slider .slider-container::-webkit-scrollbar {
    display: none;
}

.gallery-slider .slider-track {
    display: flex;
    width: max-content;
    height: 100%;
}

.gallery-slider .slider-track .slide {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 100vw;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slider .slider-track .slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-slider .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--blue);
    cursor: pointer;
    z-index: 10;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.gallery-slider .prev-btn {
    left: 1rem;
}

.gallery-slider .next-btn {
    right: 1rem;
}

.contact .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.contact .row .image {
    flex: 1 1 35rem;
}

.contact .row .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
}

.contact .row form {
    flex: 1 1 50rem;
    padding: 2rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
}

.contact .row form .inputBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact .row form .inputBox input,
.contact .row form textarea {
    width: 49%;
    margin: 1rem 0;
    padding: 1rem;
    font-size: 1.7rem;
    color: #333;
    background: #f7f7f7;
}

.contact .row form textarea {
    height: 15rem;
    resize: none;
    width: 100%;
}

.footer {
    background: #cee1e9;
}

.footer .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer .box-container .box {
    padding: 1rem 0;
    flex: 1 1 25rem;
}

.footer .box-container .box h3 {
    font-size: 2.5rem;
    color: var(--blue);
    padding: .7rem 0;
}

.footer .box-container .box p {
    font-size: 1.5rem;
    color: var(--blue);
    padding: .7rem 0;
}

.footer .box-container .box a {
    display: block;
    font-size: 1.5rem;
    color: var(--blue);
    padding: .7rem 0;
}

.footer .box-container .box a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer .credit {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: normal;
    color: var(--blue);
    border-top: .1rem solid rgba(0, 0, 0);
}

.footer .box-container .box .location-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer .box-container .box .location-box i {
    font-size: 2rem;
    color: var(--blue);
}

@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 991px) {
    header {
        padding: 2rem;
    }

    section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    #menu-bar {
        display: initial;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #cee1e9;
        border-top: .1rem solid #fff;
        padding: 1rem 2rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    header .navbar a {
        display: block;
        border-radius: .5rem;
        padding: 1.5rem;
        margin: 1.5rem 0;
        background: #fff;
    }

    header .navbar a:hover {
        background: var(--blue);
        color: #fff;
    }

    .gallery .box-container {
        display: none;
    }

    .gallery-slider {
        display: block;
    }

    .gallery-slider .slider-track .slide {
        background: transparent;
    }

    .slide img {
        border: 1rem solid #cee1e9;
        border-radius: .5rem;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .heading span {
        font-size: 2.5rem;
    }

    .contact .row form .inputBox input {
        width: 100%;
    }

    .gallery-slider .slider-btn {
        font-size: 2.5rem;
        width: 3.5rem;
        height: 3.5rem;
        margin: 10px;
    }
}
