body{
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    color: #000;
    overflow-x: hidden;
}

.large-paragraph{
    font-size: 21px;
    line-height: 36px;
    font-weight: 300;
}

a{
    text-decoration: none;
    color: inherit;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

img{
    max-width: 100%;
    height: auto;
}

.container{
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding-left:15px !important;
    padding-right: 15px !important;
}

.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header{
    padding: 20px 0;
}

.logo{
    position: relative;
    z-index: 1;
    max-width: 150px;
}

.center{
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

nav a{
    position: relative;
    z-index: 10;
    display: block;
    margin-left: 20px;
    color: #fff;
}

.header-wrapper{
    position: relative;
    overflow: hidden;
    background-color: #10253f;
    padding: 20px 0;
    min-height: 700px;
}

.video-wrapper{
    position: absolute;
    margin: 0 auto;
    margin-top: -20%;
    transform: rotate(-30deg);
    border: 10px #b58b34 solid;
    border-radius: 10px;
    max-width: 1140px;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1/1;
    top: -40%;
    right: 0;
}

.section{
    padding-top: 100px;
    padding-bottom: 100px;
}

.header-title{
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 60%;
    padding-top: 120px;
}

.header-title h1{
    font-size: 60px;
}

.header-title p{
    font-size: 21px;
    line-height: 30px;
    margin-top: 30px;
    font-weight: 300;
}

.header-title .button{
    display: inline-block;
    background: #b58b34;
    color: #fff;
    border-radius: 5px;
    padding: 10px 32px;
    margin-top: 50px;
}

.video{
    transform: rotate(30deg);
    position: absolute;
    top: 20%;
    left: -50%;
}

h3{
    font-size: 30px;
    text-align: center;
    margin-bottom: 50px;
    color: #b58b34;
    text-transform: uppercase;
}

.services{
    align-items: stretch;
    justify-content: space-evenly;
    padding-top: 50px;
}

.services > div{
    width: 25%;
    padding: 30px;
    text-align: center;
    box-shadow: 0 1.5px 12px 2px #0000000f;
    border-radius: 12px;
    background: #fff;
}

.services > div img{
    border-radius: 12px;
    /*box-shadow: 0 1.5px 12px 6px #0000001f;*/
    /*margin-top: -55px;*/
    margin-bottom: 20px;
    max-height: 120px;
    max-width: 90%;
}

.services > div h4{
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 15px;
}

.services > div p{
    font-size: 14px;
    line-height: 21px;
    font-weight: 300;
}

.contact{
    box-shadow: 0 1.5px 12px 2px #0000000f;
    border-radius: 12px;
    padding: 30px;
    width: 40%;
}

.details{
    margin: 8px 0;
}

.details label{
    display: block;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 8px;
}

.details .info{
    padding: 15px;
    border-radius: 3px;
    background: #fbfbfb;
    font-size: 15px;
    line-height: 21px;
    font-weight: 300;
    margin-bottom: 30px;
}

footer{
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    padding: 15px 0;
    border-top: 1px #ebebeb solid;
}

@media (max-width: 767px) {
    .flex.services > div{
        width: 100%;
        margin-bottom: 60px;
    }

    .header-wrapper{
        min-height: 600px;
    }

    .video-wrapper{
        top: -10%;
        /*display: none;*/
    }

    .header-title{
        max-width: 100%;
    }

    .contact{
        width: 100%;
        margin-bottom: 30px;
    }

    .map iframe, .map{
        width: 100%;
    }

    .header-title h1{
        font-size: 42px;
    }
}