* {
    margin: 0;
    padding: 0;
    cursor: default;
}
  
  html, body {
    height: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
}
  
a {
    text-decoration: none;
    cursor: pointer;
}
  
body {
    overflow-x: hidden;
}
  
body a:hover {
    text-decoration: none;
}
  
::-webkit-scrollbar {
    overflow-x: hidden;
    display: none;
    visibility: hidden;
}


/* Bootstrap pre-sets */
.col-sm {
    padding: 0;
    margin: 0;
}

.row {
    padding: 0;
    margin: 0;
}


/* Navigation style */
nav {
    position: fixed;
    width: 100%;
    z-index: 98;
}

nav .logo {
    position: fixed;
    top: 3%;
    left: 3%;
}

nav .logo img {
    height: 2.6vh;
    cursor: pointer;
}

nav .opener {
    position: fixed;
    top: 3.5%;
    right: 3%;
}

nav .opener img {
    height: 2.1vh;
    cursor: pointer;
    transition: .2s ease-in-out;
}

nav .opener #white-hamburger {
    display: none;
}

nav .opener img:hover {
    opacity: 0.7;
}

.sidenav {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 98;
    backdrop-filter: blur(4px);
    transition: all .4s;
    opacity: 0;
    visibility: hidden;
    background: rgb(18, 53, 36, 0.8);
}
  
.sidenav .closebtn {
    position: absolute;
    top: 3%;
    right: 3%;
    cursor: pointer;
    z-index: 97;
}
  
.closebtn img {
    color: white;
    height: 2.9vh;
    cursor: pointer;
}
  
.nav-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 90%;
    margin-left: 5%;
    font-family: 'Urbanist', sans-serif;
}

.nav-content li {
    list-style: none;
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 2.5em;
    padding: 2% 0 0 0;
    transition: all .2s;
}

.nav-content a {
    text-decoration: none;
    color: white;
    transition: .3s;
}

.nav-content li:hover {
    font-size: 2.55em;
    padding: 2% 0;
}


.contact {
    position: relative;
}

.contact .row-first {
    height: 100vh;
}

.contact .col-sm-5 {
    padding: 4% 5%;
}

.contact .col-sm-5 {
    background-color: #123524;
    position: relative;
}

.contact .col-sm-5 .content-container {
    position: absolute;
    top: 50%;
    width: 80%;
    transform: translateY(-50%);
}

.contact .col-sm-5 h4 {
    font-family: 'Anton', sans-serif;
    font-size: 5em;
    letter-spacing: 0.04em;
    color: #f2f5f9;
}

.contact .col-sm-5 p {
    font-family: 'Urbanist', sans-serif;
    font-size: 1em;
    line-height: 1.6em;
    letter-spacing: 0.09em;
    color: white;
}

.contact .col-sm-7 {
    background-color: #f3f3e4;
    position: relative;
    padding: 0;
    margin: 0;
}

.contact .col-sm-7 form {
    position: absolute;
    background-color: #f3f3e4;
    top: 50%;
    width: 90%;
    margin-left: 5%;
    transform: translateY(-50%);
}

/* contact form style */
.contact .col-sm-7 label {
    font-family: 'Urbanist', sans-serif;
    color: #333333;
    font-weight: 600;
    font-size: 1.1em;
    letter-spacing: 0.03em;
}

.contact #contact_form input {
    cursor: text;
    border-radius: 0;
    border: solid 2px #a3a3a3;
    font-family: 'Urbanist', sans-serif;    
    letter-spacing: 0.03em;
    padding: 0.5em;
    cursor: text;
    background-color: #f5f5eb;
}

.contact .col-sm-add-break {
    margin-left: 1%;
}

.contact #contact_form textarea {
    cursor: text;
    border: solid 2px #a3a3a3;
    border-radius: 0;
    padding: 0.5em;
    font-family: 'Urbanist', sans-serif;
    letter-spacing: 0.03em;
    height: 20vh;
    cursor: text;
    background-color: #f5f5eb;
}

.contact #contact_form input:focus {
    border: 2px solid #123524;
    box-shadow: none;
}

.contact #contact_form textarea:focus {
    border: 2px solid #123524;
    box-shadow: none;
}

.contact #contact_form button {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.1em;
    background-color: #f3f3e4;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #12432b;
    border: 3px solid #12432b;
    border-radius: 0;
    text-transform: uppercase;
    padding: 2% 10%;
    transition: 0.2s ease-in-out;
}

.contact #contact_form button:hover {
    background-color: #12432b;
    color: white;
}



footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    font-family: 'Urbanist', sans-serif;
    background-color: white;
    text-align: center;
    color: black;
    font-size: 0.9em;
    padding: 2.5% 1% 1% 1%;
    margin: 0;
  }