/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Zalando+Sans:ital,wght@0,200..900;1,200..900&display=swap');

/* Variables */
:root{
    --main-color: #3f3f3f;
    --second-color: #2b4c65;
    --text-color: #fff;
    --bg-color: #03045e;
    --text-neutral: #747893;
    --text-neutral-2: #ecedf4;
    --text-neutral-3: #f5f6f9;
    --text-color-red: #800020;
    --grey: #303030;
    --black: #202020;
    --font-family-1: "Zalando Sans", sans-serif;
    --font-family-2: "DM Serif Text", serif;
}

body{
    background: var(--grey);
    color: white;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behaviour: smooth;
    scroll-padding-top: 2.5rem;
    font-family: var(--font-family-2);
}

a{
    text-decoration: none;
    color: var(--text-color);
}

img{
    width: 100%;
}

section{
    padding: 3rem 0 2rem;
}

.container{
    max-width: 1400px;
    margin: auto;
    width: 100%
    font-weight: 900;
}

/* --------------------------------------------- Header ------------------------------------------------------------- */
header{
    position: fixed;
    top: 5px;
    left: 5px;
    width: 98.5%;
    z-index: 200;
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-color);
    padding: 10px 10px;
    border-radius: 1rem;
    border: 2px solid black;
    height: 70px;
    box-shadow: 0 6px 64px 0 hsla(221 , 47%, 31%, 0.06);
}

.logo img{
    width: 50px;
    margin-top: 5px;
    margin-left: 0rem;
    border-radius: 30%;
    box-shadow: 4px 4px 0px rgb(0, 0, 0, 5);
}

.navbar{
    display: flex;
    column-gap: 1.25rem;
}

.nav-link{
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-link:hover{
    color: var(--text-neutral);
    transform: scale(1.4);
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-right{
    display: flex;
    align-items: center;
    column-gap: 10px;
}

/*Menu Icon */
.menu-icon{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 5px;
    cursor: pointer;
    padding: 14.5px;
    background: var(--main-color);
    border-radius: 25%;
    z-index: 200;
    transition: 0.3s;
    border: 2px solid black;
}

.menu-icon div{
    display: block;
    background: var(--bg-color);
    height: 3px;
    width: 25px;
    transition: 0.3s;
}

.move .line1{
    transform: rotate(-45deg) translate(-5px, 5px);
}

.move .line2{
    opacity: 0;
}

.move .line3{
    transform: rotate(45deg) translate(-5px, -5px);
}

/* Home Section */
.home{
    height: 800px;
    display: flex;
    flex-direction: column;
}

.desktop-video{
    position: absolute;
    width: 99.1vw;
    min-height: 100%;
    margin-top: 0rem;
}

.tablet-video{
    display: none;
}

.phone-video{
    display: none;
}

.home-content{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-text h1{
    text-transform: uppercase;
    color: white;
    position: relative;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 8px 8px 12px rgba(0, 0, 0, 2);
    margin-top: -18rem;
    text-align: center;
}

.home-logo{
    position: relative;
    width: 1200px;
    margin-top: -15rem;
}

.heading{
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 5);
}

.heading h1{
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 5);
}

/* About Section */
.about{
    display: flex;
    position: relative;
    flex-direction: column;
    text-align: center;
    height: 700px;
    background: var(--grey);
    margin-top: 120px;
}

.about-content{
    display: flex;
    flex-direction: column;
    height: 600px;
    gap: 10rem;
}

.about-img{
    position: absolute;
    height: 500px;
    object-fit: cover;
    margin-top: 9rem;
    object-position: top;
    filter: blur(1.2px);
    border-radius: 1rem;
    border: 5px solid #03045e;
}

.about-paragraph{
    color: var(--text-color);
    position: relative;
    text-align: center;
    min-height: 175px;
    font-size: 1.35rem;
    margin-right: 3rem;
    margin-left: 3rem;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 10);
}

/* Services Section  */
.services{
    display: flex;
    flex-direction: column;
    margin-top: 6rem;
    background: var(--grey);
}

.service-box:hover{
    transition: all 0.5s ease-out;
    transform: scale(1.08);
}

.services-img{
    display: grid;
    grid-template-columns: repeat(2, minmax(auto, auto));
}

.service-box p{
    font-size: 1.8rem;
    color: var(--text-color);
}

.services-container{
    background: #03045e;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 1rem;
    margin-top: 2rem;
    padding: 30px 30px;
    border-radius: 0.5rem;
}

.services-box{
    padding: 12.5px 12.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1e336b;
    text-transform: uppercase;
    border-radius: 0.3rem;
    transition: all 0.3s;
}

.services-box:hover{
    transform: translateY(-5px);
    box-shadow: 8px 8px 0px rgb(0, 0, 0, 5);
}

.services-box img{
    height: 280px;
    border-radius: 0.3rem;
    object-position: center;
    transition: all 0.3s;
}

.services-img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.box-text{
    background: var(--grey);
    height: 90px;
    border-radius: 0.5rem;
    width: 100%;
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    border: 2px solid #595959;
}

.title-price{
    margin: auto;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
}

/* Contact Section */
.contact{
    position: relative;
    background: var(--grey);
    display: flex;
    flex-direction: column;
}

.contact-box{
    display: grid;
    grid-template-columns: repeat(2, minmax(auto, auto));
    gap: 0rem;
}

.contact-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    gap: 0.5rem;
    text-align: center;
    font-size: 1.05rem;
}

.contact-numbers h1, .hours h1{
    margin-bottom: 10px;
    text-shadow: 6px 6px 10px rgba(0, 0, 0, 5);
}

.digits, .mail{
    text-decoration: underline solid white 2px;
    line-height: 0.3rem;
    font-size: 1.3rem;
    animation: 5s ease 0s infinite beat;
}

.contact-location{
    display: flex;
    flex-direction: column;
}

.contact-numbers{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-numbers .bx, .hours i{
    padding: 10px;
    background: #03045e;
    font-size: 30px;
    border-radius: 0.5rem;
    color: white;
    margin-top: 0.5rem;
    border: 1px solid black;
    box-shadow: 2px 2px 0px rgb(0, 0, 0, 5);
}

.contact-location iframe{
    width: 95%;
    height: 650px;
    padding: 10px 10px;
    background: #03045e;
    border-radius: 1rem;
}

.address{
    text-align: center;
    margin-left: -2rem;
    font-size: 1.2rem;
    border-bottom: 1px solid white;
    line-height: 2rem;
    cursor: pointer;
    animation: 5s ease 0s infinite beat;
}

@keyframes beat {
  0%, 50%, 100% { transform: scale(1, 1); }
  30%, 80% { transform: scale(0.92, 0.95); }
}

/* Footer Content =================================================================================================== */
.footer{
    position: relative;
    display: flex;
    border-top: 5px solid #1e336b;
    background: #03045e;
    margin-top: 7rem;
}

.footer-content{
    display: flex;
    flex-direction: columns;
    gap: 8rem;
    justify-content: center;
}

.footer-content h1{
    margin-bottom: 0.75rem;
}

.footer-box{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-box h2{
    font-weight: 600;
}

.footer-box a{
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: center;
}

.footer-box strong{
    margin-bottom: 1rem;
}

.footer-box a p, .office-digits{
    border-bottom: 1px solid white;
}

.footer-box ul li a:hover{
    color: var(--second-color);
    transition: all 0.3s ease-in-out;
}

.footer-digits, .footer-mail, .footer-location{
    margin-bottom: 1rem;
    margin-top: 0.2rem;
    text-align: center;
}

.footer-box img{
    width: 100px;
    border-radius: 2rem;
    border: 4px solid black;
}

.copyright{
    font-size: 1.2rem;
}

.copy{
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--text-color);
    background: #03045e;
}

.design, .copyright{
    background: #03045e;
    font-size: 1.2rem;
}

.designer{
    text-align: center;
    padding-top: 5px;
    padding-bottom: 30px;
    color: var(--text-color);
}

.designer strong{
    border-bottom: 1px solid var(--text-color);
}

@media (max-width: 1550px){

    .desktop-video{
        position: absolute;
        width: 99.1vw;
        min-height: 140%;
        margin-top: -11rem;
    }

}

@media (max-width: 1450px){

    .container {
        width: 95%;
        margin: 0 auto;
    }

    /* Home Section */
    .home-text h1{
        font-size: 2rem;
        margin-top: -15rem;
    }

    .home-logo{
        position: relative;
        width: 1000px;
        margin-top: -8rem;
    }

    .desktop-video{
        display: none;
    }

    .tablet-video{
        display: block;
        position: absolute;
        width: 99.1vw;
        min-height: 100%;
        margin-top: -2rem;
    }

    /* About Section */
    .about-content{
        gap: 7rem;
    }

    .about-img{
        position: absolute;
        height: 500px;
        object-fit: cover;
        margin-top: 8rem;
        object-position: top;
        filter: blur(1.15px);
        border-radius: 1rem;
        border: 5px solid #03045e;
    }

    .about-paragraph{
        color: var(--text-color);
        position: relative;
        text-align: center;
        min-height: 175px;
        font-size: 1.35rem;
        margin-bottom: 1rem;
        margin-right: 3rem;
        margin-left: 3rem;
        text-shadow: 4px 4px 6px rgba(0, 0, 0, 10);
    }

    /* Contact Section */
    .contact-content{
        padding-right: 1rem;
    }

    .address{
        margin-left: 0rem;
        margin-bottom: 1rem;
    }

    /* Footer Section */
    .footer-content{
        gap: 3rem;
    }

}

@media (max-width: 1100px){

    /* About Section */
    .about-content{
        gap: 3.5rem;
    }

    .about-img{
        height: 425px;
    }

    .about-paragraph{
        font-size: 1.25rem;
    }

    /* Contact Section */
    .contact-box{
        gap: 1rem;
    }

    /* Footer Content */
    .footer-content{
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

}

@media (max-width: 1000px){

    .tablet-video{
        display: none;
    }

    .phone-video{
        display: block;
        position: absolute;
        width: 99.1vw;
        min-height: 100%;
        margin-top: -40rem;
    }

    /* Home Section */
    .home{
        height: 700px;
    }

    .home-text h1{
        font-size: 2rem;
        margin-top: -12rem;
    }

    .home-logo{
        position: relative;
        width: 850px;
        margin-top: -6rem;
    }

}

@media (max-width: 900px){

    .phone-video{
        min-height: 100%;
        margin-top: -30rem;
    }

    /* Home Section */
    .home-text h1{
        margin-top: -10rem;
    }

    .home-logo{
        width: 750px;
        margin-top: -2rem;
    }

    /* About Section */
    .about-content{
        gap: 3rem;
    }

    .about-paragraph{
        font-size: 1.15rem;
    }

    /* Contact Section */
    .contact-box{
        grid-template-columns: repeat(1, minmax(auto, auto));
        gap: 4rem;
    }

    .contact-location iframe{
        width: 99%;
    }

    .hours{
        margin-bottom: 2rem;
    }

    .contact-content{
        display: grid;
        grid-template-columns: repeat(1, minmax(auto, auto));
    }

    .contact-numbers{
        display: grid;
        grid-template-columns: repeat(3, minmax(auto, auto));
        gap: 0rem;
    }

}

@media (max-width: 750px){
    header{
        top: 7.5px;
    }

    .menu-icon{
        display: flex;
        background: var(--text-color);
    }

    .navbar{
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%);
        width: 90vw;
        background: var(--bg-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        border-radius: 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .open-menu{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .nav-link{
        display: block;
        margin: 1rem 0;
    }

    /* Home Section */

    .home-logo{
        position: relative;
        width: 700px;
        margin-top: -2rem;
    }

}

@media (max-width: 720px){

    .phone-video{
        min-height: 100%;
        margin-top: -10rem;
    }

    /* Home Section */
    .home-logo{
        width: 600px;
        margin-top: 3rem;
    }

    .home-text h1{
        font-size: 1.5rem;
        margin-top: -8rem;
    }

    /* About Section */
    .about-img{
        height: 520px;
    }

    /* Contact Section */
    .contact-numbers{
        display: grid;
        grid-template-columns: repeat(1, minmax(auto, auto));
        gap: 2rem;
    }

    /* Services */
    .services-container{
        padding: 15px 15px;
    }

}

@media (max-width: 600px){

    /* Home Section */
    .home-logo{
        width: 540px;
        margin-top: 5rem;
    }

    .home-text h1{
        font-size: 1.5rem;
        margin-top: -8rem;
    }

    /* About Section */
    .about{
        height: 800px;
    }

    .about-img{
        height: 575px;
    }

    /* Contact Section */
    .contact-location iframe{
        height: 600px;
    }

}

@media (max-width: 540px){

    .phone-video{
        margin-top: 0rem;
    }

    /* Home Section */
    .home-logo{
        width: 450px;
        margin-top: 6rem;
    }

    .home-text h1{
        margin-top: -6rem;
    }

    .about-img{
        height: 640px;
    }

    .about-paragraph{
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    /* Services */
    .services-container{
        padding: 12.5px 12.5px;
    }

    /* Footer */
    .footer-box a{
        font-size: 1rem;
    }

}

@media (max-width: 480px){

    /* About Section */
    .about{
        height: 800px;
    }

    .about-img{
        height: 650px;
    }

    .about-paragraph{
        margin-right: 2rem;
        margin-left: 2rem;
    }

    /* Services Section */
    .services-box img{
        height: 250px;
    }

    .title-price{
        font-size: 1rem;
        width: 95%;
    }

}

@media (max-width: 460px){

    .phone-video{
        width: 99.1vw;
        min-height: 120%;
        margin-top: -10rem;
    }

    /* Home Section */
    .home-logo{
        width: 400px;
        margin-top: 8rem;
    }

    .home-text h1{
        font-size: 1.5rem;
        margin-top: -6rem;
    }

    /* About Section */
    .about{
        height: 1000px;
    }

    .about-img{
        height: 780px;
    }

    /* Contact Section */
    .contact-location iframe{
        height: 500px;
    }

}

@media (max-width: 400px){

    .phone-video{
        min-height: 120%;
        margin-top: -10rem;
    }

    /* Home Section */
    .home{
        height: 600px;
    }

    .home-logo{
        width: 350px;
        margin-top: 10rem;
    }

    .home-text h1{
        font-size: 1.25rem;
        margin-top: -4rem;
    }

    .heading h1{
        font-size: 3.5rem;
    }

    /* About Section */
    .about{
        height: 1050px;
    }

    .about-img{
        height: 900px;
    }

}

@media (max-width: 360px){

    .phone-video{
        min-height: 100%;
        margin-top: -10rem;
    }

    /* Home Section */
    .home{
        height: 500px;
    }

    .home-logo{
        width: 320px;
        margin-top: 5rem;
    }

    .home-text h1{
        font-size: 1.25rem;
        margin-top: -4rem;
    }

    /* About Section */
    .about{
        height: 1100px;
    }

    .about-img{
        height: 950px;
    }

    /* Services Section */
    .services-container{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        padding: 10px 10px;
    }

    /* Contact Section */
    .contact-location iframe{
        height: 450px;
    }

}

@media (max-width: 330px){

    /* About Section */
    .about{
        height: 1275px;
    }

    .about-img{
        height: 1125px;
    }

}

