@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap');
* {
    box-sizing: border-box;
}

/* body */
body {
    margin: 0;
    padding: 0;
    font-family: 'Merriweather', sans-serif;
    font-size: 20px;
}

/* header */
header {
    width: 100%;
    text-align: center;
}

/* logo */
.logo {
    width: 30%;
    margin-left: 35px;
    float: left;
    background-repeat: no-repeat;
}

.logo h1 {
    font-size: 30px;
    padding-top: 28px;
}

/* nav */
nav ul {
    width: 55%;
    float: right;
    list-style-type: none;
}

nav ul li {
    display: inline-block;
    padding-top: 18px;
}

nav ul li a {
    display: block;
    font-weight: 550;
    padding: 30px 30px;
    text-decoration: none;
    color: #fff;
    font-family: 'Raleway', serif;
}
nav .current{
    background-color: #a87829;
}
nav a:hover{
    background-color: #a87829;
}
.navcontact{
    background-color: #775929;
}
nav a:active{
    color:#fff;
}
nav a:visited{
    color: #fff;
}
nav a:link{
    color: #fff;
}

/* banner */
.banner {
    width: 100%;
    height: 95vh;
    background-size: cover;
}

.banner-content {
    color: #fff;
    width: 60%;
    margin: 40px auto;
    padding: 20% 6%;
}
.banner-content h1{
    font-size: 47px;
    padding-right: 3em;
    margin: 0;
}
.banner-content h2{
    font-weight: lighter;
    margin: 0;
    font-size: 24px;
    padding-left: 6em;
}
.banner-content p{
    padding-left: 30.4em;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

/* video background */
.banner-video{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.banner-image{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}
.banner-image::after{
    content: '...';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0;
    background-color: rgba(0, 0, 0, .6);
}

.banner-video::after{
    content: '...';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0;
    background-color: rgba(0, 0, 0, .6);
}
.btn {
    border: 2px solid #fff;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    font-size: 14px;
    float: left;
}
.btn1 {
    border: 2px solid #fff;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    /* display: block; */
    text-align: center;
    font-size: 14px;
    float: right;
}

/* main */
main {
    width: 80%;
    margin: 40px auto;
}

main .btn {
    border: 2px solid #696969;
    color: #696969;
}
main .btn1 {
    border: 2px solid #696969;
    color: #696969;
   
}

.sideleft {
    width: 40%;
    float: left;
    font-size: 22px;
}

.sideleft img{
    height: 500px;
    /* width: 500px; */
    padding-top: 25px;
    padding-bottom: 15px;
}

.sideleft h3{
    text-align: center;
}

/* 2 columns */
.sideright {
    float: right;
    padding-bottom: 15px;
}
.sideright1{
    width: 40%;
    float: right;
    font-size: 22px;
}

.sideright img {
    padding-bottom: 15px;
}
.sideright .btn1{
    padding: 5px;
}
.sideright1 img {
    height: 550px;
    width: auto;
    float: right;
    padding-bottom: 10px;
}


.column {
    float: left;
    width: 50%;
    padding: 15px;
  }

  .row::after {
    content: "";
    clear: both;
    display: table;
  }

.row h3{
    text-align: center;
}

.video {
    margin-left: 400px;
}  

.column1{
    float: left;
  width: 25%;
  padding-left: 3.5rem;
}


.row1:after {
    content: "";
    display: table;
    clear: both;
  }

/* clearfix */
.clearfix {
    clear: both;
}

/* table */
tr, td{
    padding-top: 10px;
    padding: 5px;
}
td{
    text-align: center;
    font-size: 18px;
}

/* footer */
footer {
    padding: 40px;
    background-color: #a87829;
    text-align: center;
    color: #fff;
}

footer p {
    font-size: 14px;
}

/* social */
.social a {
    padding-top: 5px;
}

.social img {
    width: 40px;
    margin: 17px;
}

/* js */
form {
    max-width: 400px;
    margin-left: 250px ;
    padding: 25px;
    border-radius: 4px;
}

input,
    textarea {
        width: 1000px;
        padding: 12px 15px;
        border: 2px solid #696969;
        transition: .5s;
        outline: none;
    }

    input[type="submit"] {
        width: 300px;
        background-color: #a87829;
        padding: 12px 15px;
        color: #fff;
        cursor: pointer;
        margin: auto;
        transition: .2s;
    }

    input[type="submit"]:hover {
        background-color: #775929;
        border: 0;
    }