* {
    -webkit-tap-highlight-color: transparent;
}

h1 {
    font-family: 'Gilmer-Heavy', Helvetica, Arial, Sans-Serif;
    font-size: 45px;
    color: #ffffff;
    line-height: 112.9%;
    padding-top: 150px;
    padding-bottom: 12px;
}

h2 {
    font-family: 'Gilmer-Heavy', Helvetica, Arial, Sans-Serif;
    font-size: 35px;
    color: #262626;
}

h3 {
    font-family: 'Gilmer-Bold', Helvetica, Arial, Sans-Serif;
    font-size: 25px;
    color: #EF426F;
}

p {
    font-family: 'Gilmer-Medium', Helvetica, Arial, Sans-Serif;
    font-size: 16px;
    color: #262626;
    line-height: 1.3;
    opacity: .85;
    padding-bottom: 7px;
}

.btn {
    font-family: 'Gilmer-Bold', Helvetica, Arial, Sans-Serif;
    font-size: 18;
    text-decoration: none;
    color: #ffffff;
    display: inline-block;
    cursor: pointer;
}

.btn2 {
    font-family: 'Gilmer-Bold', Helvetica, Arial, Sans-Serif;
    font-size: 18;
    text-decoration: none;
    color: #262626;
    display: inline-block;
    cursor: pointer;
}

.btn {
    font-family: 'Gilmer-Bold', Helvetica, Arial, Sans-Serif;
    font-size: 18;
    text-decoration: none;
    color: #ffffff;
    display: inline-block;
    cursor: pointer;
}

.btn2 {
    font-family: 'Gilmer-Bold', Helvetica, Arial, Sans-Serif;
    font-size: 18;
    text-decoration: none;
    color: #262626;
    display: inline-block;
    cursor: pointer;
}

.btn::after {
    content: '';
    display: block;
    height: 2px;
    background-color: #EF426F;
    width: 0;
    transition: width .3s;
}

.btn:hover::after {
    width: 100%;
    transition: 3.s;
}

.btn2::after {
    content: '';
    display: block;
    height: 2px;
    background-color: #EF426F;
    width: 0;
    transition: width .3s;
}

.btn2:hover::after {
    width: 100%;
    transition: 3.s;
}

.container {
    width: 100%;
    max-width: 1596px;
    margin: 0 auto;
    padding-top: 50px;
}

.logo {
    width: 130px;
    position: relative;
    z-index: 9999;
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    min-height: 100%;
    z-index: -1;
    background: #EF426F;
    opacity: 0;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.nav-wrapper ul {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 100%;
}

.nav-wrapper ul li {
    display: inline-block;
    width: 90%;
    text-align: right;
    margin-bottom: 20px;
}

.nav-wrapper ul li:nth-child(1) a {
    transition-delay: 0.2s;
    -webkit-delay: 0.2s;
    -moz-delay: 0.2s;
    -o-delay: 0.2s;
}

.nav-wrapper ul li:nth-child(2) a {
    transition-delay: 0.3s;
    -webkit-delay: 0.3s;
    -moz-delay: 0.3s;
    -o-delay: 0.3s;
}

.nav-wrapper ul li:nth-child(3) a {
    transition-delay: 0.4s;
    -webkit-delay: 0.4s;
    -moz-delay: 0.4s;
    -o-delay: 0.4s;

}

.nav-wrapper ul li:nth-child(4) a {
    transition-delay: 0.5s;
    -webkit-delay: 0.5s;
    -moz-delay: 0.5s;
    -o-delay: 0.5s;
}

.nav-wrapper ul li:not(:first-child) {
    margin-left: 0;
}

.nav-wrapper ul li a {
    font-family: 'Gilmer-heavy', Arial, Helvetica, sans-serif;
    opacity: 0;
    color: #fff;
    text-decoration: none;
    font-size: 45px;
    transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transition: all 0.2s ease;
}

.nav-btn {
    z-index: 9999;
    float: right;
    margin-top: -43px;
    background: transparent;
    position: relative;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
}

.nav-btn i {
    position: relative;
    display: block;
    cursor: pointer;
    width: 35px;
    height: 4px;
    background: #ffffff;
    border-radius: 50px;
    margin: 0 auto;
    margin-top: 6.5px;
}

.nav-btn i:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
}

.nav-btn i:nth-child(3) {
    margin-top: 4px;
}

#nav:checked+.nav-btn {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

#nav:checked+.nav-btn i {
    background: #ffffff;
    transition: transform 0.2s ease;
    -webkit-transition: transform 0.2s ease;
    -moz-transition: transform 0.2s ease;
    -o-transition: transform 0.2s ease;
}

#nav:checked+.nav-btn i:nth-child(1) {
    transform: translateY(7px) rotate(180deg);
    -webkit-transform: translateY(7px) rotate(180deg);
    -moz-transform: translateY(7px) rotate(180deg);
    -o-transform: translateY(7px) rotate(180deg);
}

#nav:checked+.nav-btn i:nth-child(2) {
    opacity: 0;
}

#nav:checked+.nav-btn i:nth-child(3) {
    transform: translateY(-8px) rotate(90deg);
    -webkit-transform: translateY(-8px) rotate(90deg);
    -moz-transform: translateY(-8px) rotate(90deg);
    -o-transform: translateY(-8px) rotate(90deg);
}

#nav:checked~.nav-wrapper {
    z-index: 9995;
    opacity: 1;
    transition: 0.01s;
    -webkit-transition: 0.01s;
    -moz-transition: 0.01s;
    -o-transition: 0.01s;
}

#nav:checked~.nav-wrapper ul li a {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
}

.hidden {
    display: none;
}

.fullscreen-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -100;
}

.fullscreen-video-wrap video {
    min-height: 100%;
    min-width: 100%;
}

.section1 {
    width: 90%;
    max-width: 1596px;
    height: 100vh;
    margin: 0 auto;
}

.section2 {
    width: 90%;
    height: 100%;
    max-width: 1596px;
    margin: 0 auto;
    height: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
}

.section2 h2 {
    padding-bottom: 40px;
}

.section2 .grid {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    row-gap: 50px;
    margin: 0 auto;
}

.section3 {
    width: 100%;
    height: 100%;
    background-color: #FAFAFA;
    padding-top: 60px;
}

.section3 .grid {
    width: 90%;
    max-width: 1596px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: 1fr 1fr;
    row-gap: 40px;
}

.section3 .grid .item2 {
    grid-row-start: 1;
}

.social {
    margin-top: 10px;
    list-style: none;
}

.social li {
    display: inline-block;
    padding-right: 15px;
}

.social a i {
    font-size: 25px;
    color: #262626;
    transition: .1s ease-in-out;
    -webkit-transition: .1s ease-in-out;
    -moz-transition: .1s ease-in-out;
    -oz-transition: .1s ease-in-out;
}

.social a i:hover {
    color: #EF426F;
    transition: .1s ease-in-out;
    -webkit-transition: .1s ease-in-out;
    -moz-transition: .1s ease-in-out;
    -oz-transition: .1s ease-in-out;
}

.section3 .grid .item2 img {
    width: 100%;
}

.section4 {
    width: 90%;
    max-width: 1596px;
    height: 100%;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 60px;
}

.section4 h2 {
    text-align: center;
}

.section4 .grid {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    row-gap: 50px;
    margin-top: 35px;
}

.section4 .grid .item1 img {
    width: 100%;
    padding-bottom: 15px;
}

.section4 .grid .item2 img {
    width: 100%;
    padding-bottom: 15px;
}

.section4 .grid .item3 img {
    width: 100%;
    padding-bottom: 15px;
}

.section5 {
    width: 100%;
    height: 100%;
    background-color: #FAFAFA;
    padding-top: 60px;
    padding-bottom: 60px;
}

.section5 h2 {
    text-align: center;
    padding-bottom: 75px;
}

.contact-form {
    display: grid;
    margin: 0 auto;
    width: 90%;
    max-width: 950px;
}

.form-control {
    all: unset;
    background: transparent;
    border: none;
    border-radius: none;
    outline: none;
    border-bottom: 2px solid #262626;
    padding-bottom: 9px;
    font-family: 'Gilmer-bold', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #262626;
    margin-bottom: 92px;
    width: 100%;
}

::placeholder {
    color: #262626;
    opacity: 1;
}

#submit {
    border: none;
    cursor: pointer;
    display: inline-block;
    width: 40px;
}

#submit::after {
    content: '';
    display: block;
    height: 2px;
    background-color: #EF426F;
    width: 0;
    transition: width .3s;
}

#submit:hover::after {
    width: 100%;
    transition: 3.s;
}

footer p {
    font-family: 'Gilmer-medium', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #262626;
    width: 100%;
    text-align: center;
    background-color: #FAFAFA;
    padding-bottom: 35px;
}

@media screen and (min-width: 768px) {

    .section1 {
        width: 85%;
        max-width: 1596px;
    }

    .section2 {
        width: 85%;
        max-width: 1596px;
    }

    .section4 {
        width: 85%;
        max-width: 1596px;
    }

    h1 {
        font-size: 70px;
    }
}