@font-face {
    font-family: "Gotham";
    src: url("../assets/fonts/gotham-medium.svg") format("svg"),
     url("../assets/fonts/gotham-medium.woff") format("woff"),
        url("../assets/fonts/gotham-medium.woff2") format("woff2");   
   }

@font-face {
font-family: "Gotham Condensed";
src: url("../assets/fonts/GothamCondensed-Black.woff") format("woff"),
    url("../assets/fonts/GothamCondensed-Black.woff2") format("woff2"); 
}

.wrapper {
    position: relative;
    width: 100%;
    height: 140vh;
    overflow: hidden;
    font-family: 'Gotham';
}

@media (min-width: 330px) {
    .wrapper {
        height: 120vh;
    }
}
@media (min-width: 768px) {
    .wrapper {
        height: 100vh;
    }
}

.wrapper:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-color: #0b1b32;
}


.header {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content:space-between;
    align-items: center;
    margin-top: 20px;
}

.header a {
    display: inline-block;
    width: auto;
    padding: 0;
    font-family: "Gotham Condensed";
}
.contain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
}

.logo {
    display: block;
    max-width: 70px;
    position: absolute;
    top: 30px;
    left: 50%;
    transform:scale(1.02) translateX(-50%);
}
.logo img {
    max-width: 100%;
}
.logo:hover {
    transform: scale(1.02) translateX(-50%);
}
video {
    position: absolute;
    width: auto;
    height: 100%;
    animation: zoomin 50s linear infinite;
}

.content {
    position: absolute;
    color: white;
    z-index: 2;
    text-align: center;
    padding: 30px 0;
    width: 100%;
    height: 100%;
}

h1 {
    text-transform: uppercase;
    font-size: 40px;
    padding-bottom: 50px;
    font-family: "Gotham Condensed";
}

p {
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
}

a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;

}

a.contact {
    text-decoration: underline;
    font-family: "Gotham Condensed";

}
a.btn {
    padding: 26px 55px ;
    object-fit: contain;
    background-image: linear-gradient(to top, #b7924c, #e3db8c);
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.57;
    display: inline-flex;
    align-items: center;
    justify-content:center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'Gotham Condensed';

}
a.btn img {

    margin-left: 10px;
}
a:hover {
    transform: scale(1.02);
    text-decoration: none;
}

.findus {
    display: inline-block;
    font-size: 24px;
    line-height: 1.17;
    text-transform: uppercase;
    padding-bottom: 20px;
    font-family: "Gotham Condensed";
}
.icon-list {
    width: 70%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content:space-between;
}

.icon-list a {
    padding: 0;
}
.icon {
    width: 30px;
}

@media (min-width: 992px) {

    h1 {
        text-transform: uppercase;
        font-size: 70px;
        padding-bottom: 25px;
    }
    
    p {
        font-size: 23px;
        line-height: 1.35;
        padding-bottom: 15px;
    
    }
    
    .contain {
        width: 70%;
    }

    .icon-list {
        width: 50%;
    }
    a {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    h1 {
        text-transform: uppercase;
        font-size: 70px;
        padding-bottom: 25px;
    }
    
    p {
        font-size: 23px;
        line-height: 1.17;
        padding-bottom: 15px;
    
    }
    
    .contain {
        width: 70%;
    }

    .icon-list {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    video {
        width: 100%;
        height: auto;
    }

    p {
        font-size: 18px;
    }
    .contain {
        width: 60%;
    }
} 


@media (min-width: 1600px) and (min-height: 920px) {
    h1 {
        text-transform: uppercase;
        font-size: 140px;
        padding-bottom: 50px;
    }
    .contain {
        width: 50%;
    }
    .icon-list {
        width: 30%;
    }

    a.btn {
        font-size: 32px;
    }
    .findus {
        font-size: 30px;

    }
    p {
        font-size: 25px;
    }
    a {
        padding: 24.5px 258.9px 24px 257.9px;
        font-size: 30px;
    }
    .icon {
        width: 36px;
    }
    .header {
        margin-top: 60px;
    }


    .logo {
        max-width: none;
    }
    .logo img {
        max-width: none;
    }

}

@media (min-width: 2200px) and (min-height: 920px)  {
    .contain {
        width: 45%;
    }
    .icon-list {
        width: 30%;
    }
}
@keyframes zoomin { 
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.4)
    }
    100% {
        transform: scale(1)
    }
  }