* {
    font-family: Calibri, sans-serif;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html, body {
    margin: 0; padding: 0;
	width: 100%; height: 100%;
    scroll-behavior: smooth;
    font-size: 14px;
}

section {
    width: 100%; height: 100vh;
    overflow: hidden;    
    position: relative;
}

#header {
    background-image: url("assets/img/1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
	-webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
}

.overlay {
    width: 100%; height: 100%;
    position: absolute;
    top: 0; left: 0;
    padding: 30px;
	
	overflow: hidden;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

#header .overlay {
    padding-top: 15px;
}

#header .overlay span {
    margin-bottom: 40px;
}

.flag {
    width: 50px;
    margin: 0 10px;
    width: 40px; height: 22px;
    display: inline-block;
}

.light {
    color: #fff;
}

.dark-bg {
    background-color: rgba(0,0,0,0.3);
}

.dark {
    color: #000;
}

h1 {
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: 600;
}

h2 {
    text-transform: capitalize;
    font-size: 1.8em;
    letter-spacing: 2px;
    margin: 5px 0;
    font-weight: normal;
}

#header  span {
    width: 100%;
    text-align: center;
}

#header img.logo {
    width: 50px;
    display: inline-block;
    vertical-align: middle;
    margin-left: -10px;
}

#header img + h2 {
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
    margin: 0 0 0 15px;
    font-size: 2.1em;
}

.cta {
    display: block;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    bottom: 20px; left: 0;
    width: 100%;
}

.cta p {
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px
}

.cta a {
    display: inline-block;
    text-decoration: none;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
    background-color: #E0A100;
    padding: 12px 25px;
    border-radius: 10px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.cta button {
    display: inline-block;
    text-decoration: none;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
    background-color: #E0A100;
    padding: 12px 25px;
    border-radius: 10px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border: none;
    cursor: pointer;
}

#products {
	height: 90vh;
}

#products, #access-now {
    background-image: url("assets/img/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#products .overlay {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 80%;
    left: 10%;
    padding: 20px 0 40px 0;
}

.h-alt {
    text-transform: none;
    color: #976900;
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: normal;
    margin: 0 5px;
    width: 100%;
}

.product {
    width: 100%; height: 45%;
    margin: 0 5px;
    overflow: hidden;
    background-color: #fff;
}

.product-details {
    text-align: left;
    font-size: 1em;
    width: 100%;
    color: #666;
    height: 40px;
    margin: 10px 0 0 0;
    padding: 0 10px;
}

.product-details span {
    color: #976900;
}

.img-cont {
    width: 100%; height: calc(100% - 50px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.im2 {
    background-image: url(assets/img/2.jpg);
}

.im3 {
    background-image: url(assets/img/3.jpg);
}

.im4 {
    background-image: url(assets/img/4.jpg);
}

#access-now {
	height: 100vh;
}

#access-now .cta {
	position: static;
}

#access-now .cta a {
    background-color: #40C350;
}

#access-now .cta button {
    background-color: #40C350;
}


#access-now .overlay {
    padding: 10px 30px 60px 30px;
	display: block;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
	overflow: hidden;
}

.brand-logos-container {
    width: 100%;
    text-align: center;
}   

.brand {
    width: 60px;
    margin: 5px 7%;
}

.form {
    background-color: rgba(239, 255, 245, 0.81 );
    width: 100%;
    padding: 10px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

form p {
    color: #6A6A6A;
    font-weight: 600;
    margin: 5px;
}

form p span {
    color: red;
}

.contact h3 {
    font-weight: 500;
    font-size: 1.1em;
    color: #606060;
    margin: 10px 0;
}

.contact { 
    width: 100%;
}

.contact span {
    display: block;
    color: #656565;
}

.contact span img {
    width: 18px;
    margin-right: 13px;
    vertical-align: middle;
    -webkit-filter: grayscale(1) brightness(70%);
            filter: grayscale(1) brightness(70%);
}

#footer-logo {
    width: 60px;
    float: right;
    margin-top: -5px;
}

.form form {
    width: 100%;
}

.field-cont {
    border: 1px solid #40C350;
    padding: 10px 20px 10px 7px;
    width: calc(100% - 10px);
    margin: 0 5px;  
    background-color: #fff;
    color: #000
}

.field-cont input {
    border: none;
    background: none;
    outline: none;
    font-size: 18px;
    width: 100%;
}

input::-webkit-input-placeholder {
    color: #777;
    font-size: 1.0em;
}

input::-moz-placeholder {
    color: #777;
    font-size: 1.0em;
}

input:-ms-input-placeholder {
    color: #777;
    font-size: 1.0em;
}

input::-ms-input-placeholder {
    color: #777;
    font-size: 1.0em;
}

input::placeholder {
    color: #777;
    font-size: 1.0em;
}

.field-cont span {
    float: right;
    font-size: 0.8em;
}

.compliance {
    margin: 20px 0;
}

.compliance-cont {
	padding: 10px;
}

.compliance-cont .compliance-text {
    width: calc(100% - 100px);
    font-size: 0.8em;
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
    color: #666;
}

/* .compliance .compliance-text {
    width: calc(100% - 100px);
    font-size: 0.7em;
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
    color: #666;
} */

.compliance-text a {
    text-decoration: underline;
    cursor: pointer;
}

.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 24px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0.6;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: -1px;
    bottom: -2px;
    background-color: white;
    opacity: 0.8;
    border: 1px solid #40C350;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #40C350;
}

input:focus + .slider {
    -webkit-box-shadow: 0 0 1px #40C350;
            box-shadow: 0 0 1px #40C350;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
    border: 1px solid #40C350;
}

.slider.round:before {
    border-radius: 50%;
}

.modal-container {
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.5);
    display: none;
    position: fixed;
    top: 0; left: 0;
}

.modal {
    width: 85%; height: 85%;
    background: #fff;
    display: block;
    margin: 0 auto;
    margin-top: 8%;
    -webkit-box-shadow: 0 0 14px 1px rgb(0 0 0 / 50%);
            box-shadow: 0 0 14px 1px rgb(0 0 0 / 50%);
    border-radius: 3px;
    padding: 60px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.modal .logo {
    margin: 0 auto;
    display: block;
    width: 70px;
}

.modal .title {
    font-weight: bold;
    font-size: 1.1em;
    color: #2699FB;
}

.modal .content {
    line-height: 1.8;
    font-size: 1.1em;
    color: #797979;
    margin-top: -50px;
}

.modal a {
    font-weight: bold;
    font-size: 1.3em;
    color: #2699FB;
    cursor: pointer;
}

.show {
    display: block;
}

@media (min-width: 740px) {
	.product {
		width: 45%;
    	height: 250px;
		margin: 5px auto;
	}
	.brand {
    	width: 80px;
    	margin: 5px 10%;
	}
	#access-now {
		height: 200vh;
	}
}