/* CSS Document */

/*Declare Font Faces*/
@font-face {
  font-family: 'ProductSans';
  src: url('fonts/product_sans_regular-webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/product_sans_regular-webfont.woff') format('woff'); /* Pretty Modern Browsers */
}

@font-face {
  font-family: 'ProductSansBold';
  src: url('fonts/product_sans_bold-webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/product_sans_bold-webfont.woff') format('woff'); /* Pretty Modern Browsers */
}


/*Scroll Bar*/
::-webkit-scrollbar {
    width: 4px;
	height: 6px;
	cursor: move;
}
::-webkit-scrollbar-thumb {
	cursor: move;
    background: rgba(0,0,0,.5);
}
::-webkit-scrollbar-track {
	cursor: move;
    background: #1DCA7F;
}

/*Selection*/

::-moz-selection {
    color: white; 
    background: #1DCA7F;
}
::selection {
    color: white; 
    background: #1DCA7F;
}



/*Basic Structuring*/
body,html{
	margin: 0;
	overflow-x: hidden;
	padding: 0;
}

/*Links adjustment*/
a {
	text-decoration: none;
	outline: none;
	color: inherit;
	-webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
	-webkit-tap-highlight-color: transparent;
}
a:visited, a:hover, a:focus,  a:active { 
	text-decoration: none; 
}
* {
	-webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
	-webkit-tap-highlight-color: transparent;
	text-decoration: none;
	outline: none;    
}

/*Exception made to hide scroller from input[type=number]*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; 
}



/*Loader Settings*/
.loader {
	background: linear-gradient(-225deg, rgba(255,255,255,1) 0%, rgba(255,230,250,1) 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 200;
	transition: 0.6s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: grey;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}

/*Heading Formats*/
h1 {
	/*Title*/
	font-family: 'ProductSans';
	font-size: 64px;
	font-weight: 400;
}

.h1 {
	/*Above Title*/
	font-size: 32px;
}

h2 {
	/*Below Title*/
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 500;
	
}

p {
	/*Below Title*/
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 500;
	
}

h3 {
	/*Article Title*/
	font-family: 'ProductSansBold';
	font-size: 48px;
	font-weight: 700;
}

h4 {
	/*Article Text*/
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	font-weight: 400;
}

h5 {
	/*Labels & Captions*/
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

/*Section Styles*/
.section {
	position: relative;
	width: 75%;
	height: auto;
}

.full {
	height: 100vh;
}


.title {
	height: 50vh;
}

.coverContent {
	z-index: 3;
	position: absolute;
	left: 12.5%;
	bottom: 15%;
}
.coverContent > h2 {
	font-size: 20px
}

.coverImage {
	position: absolute;
	right: 20%;
	width: 30%;
	top: 0;
	opacity: 0.8;
}
.sectionPadding {
	padding: 0px 12.5%;
}

.section > .left {
	float: left;
	display: flex;
	height: auto;
	width: 50%;
	justify-content: center;
	align-items: center;
}

.section > .left > img {
	transform: translate(-10%,13%);
}

.section > .right {
	float: left;
	width: 40%;
	padding:  10% 8% 0% 2%
}

.flex{
	display: flex;
	justify-content: center;
	align-items: center;
}

/*Button Styles*/
.other {
	cursor: pointer
}

.other:hover{
	opacity: 0.8;
}

.primary {
	background: rgba(193,193,193,1.00);
	border: none;
	padding: 20px 24px;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1.8px;
	cursor: pointer;
	transition: 0.3s;
	position: relative;
	overflow: hidden;
}

.upText {
	position: relative;
	z-index: 2;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
}
.primary > .upButton {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
	transform: translateY(100%)
}
.primary:hover .upButton{
	transform: translateY(0);
}
.primary:hover .upText{
	color: white;
}

.secondary {
	border: none;
	padding: 10px 14px;
	margin: 0 8px;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1.8px;
	cursor: pointer;
	transition: 0.3s;
	position: relative;
	overflow: hidden;
}
.secondary > .upButton {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
	transform: translateY(100%)
}
.secondary:hover .upButton{
	transform: translateY(-50%);
}
.icon {
	border: none;
	padding: 10px 14px;
	margin: 0 8px;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1.8px;
	cursor: pointer;
	transition: 0.3s;
	position: relative;
	overflow: hidden;
}
.icon > .upButton {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
	transform: translateY(100%)
}
.icon:hover .upButton{
	transform: translateY(0) rotate(-450deg);
}
.icon:hover .upText{
	transform: translateY(-120%) rotate(-90deg);
}

.iconHoverArrow {
	transform: translateY(0) rotate(-270deg) !important;
	color:black !important
}
.iconHoverText {
	transform: translateY(-120%) rotate(-90deg) !important;
	color:black !important
}

/*box*/
.boxContainer{
	position: relative;
	width: 100%;
	margin: 50px 0;	
}

.box {
	background: linear-gradient(to top, rgba(250,208,196,0.29) 0%, rgba(255,209,255,0.24) 100%);
	position: relative;
	border: 1px solid rgba(0,0,0,0.1);
	margin: 1%;
	width: 27%;
	float: left;
	padding: 2%;
	height: auto;
	transition: 0.3s;
	cursor: pointer;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
	box-shadow: 0px 35px 50px -30px rgba(221,169,211,0.75)
}

.travelBox {
	background: linear-gradient(to top, rgba(250,208,196,0.29) 0%, rgba(255,209,255,0.24) 100%);
	position: relative;
	border: 1px solid rgba(0,0,0,0.1);
	margin: 1%;
	width: 25%;
	float: left;
	padding: 2%;
	height: auto;
	transition: 0.3s;
	cursor: pointer;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
	box-shadow: 0px 35px 50px -30px rgba(221,169,211,0.75)
}
.onlyThree {
	display: none;
}

.colorLayover {
	opacity: 0.7;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
}

.boxDouble {
	background: linear-gradient(to top, rgba(250,208,196,0.29) 0%, rgba(255,209,255,0.24) 100%);
	position: relative;
	border: 1px solid rgba(0,0,0,0.1);
	margin: 1%;
	width: 60%;
	float: left;
	padding: 2%;
	height: auto;
	transition: 0.3s;
	cursor: pointer;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
	box-shadow: 0px 35px 50px -30px rgba(221,169,211,0.75)
}

.arrowContainer {
	transform: rotate(180deg);
	position: absolute;
	right: 24px;
	bottom: 30px;
	transition: 0.5s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
}

.box:hover {
	transition: 0.3s;
	background: linear-gradient(to top, rgba(250,208,196,0.69) 0%, rgba(255,209,255,0.69) 100%);
	box-shadow: 0px 55px 50px -40px rgba(221,169,211,0.9)
}

.travelBox:hover {
	transition: 0.3s;
	background: linear-gradient(to top, rgba(250,208,196,0.69) 0%, rgba(255,209,255,0.69) 100%);
	box-shadow: 0px 55px 50px -40px rgba(221,169,211,0.9)
}

.box:hover .colorLayover {
	opacity: 1;
}

.travelBox:hover .colorLayover {
	opacity: 1;
}
.box:hover .arrowContainer{
	transform: rotate(180deg) translateX(-50%);
	opacity: 0.5
}
.travelBox:hover .arrowContainer{
	transform: rotate(180deg) translateX(-50%);
	opacity: 0.5
}

.titleBox {
	box-shadow: none;
	border: 1px solid rgba(0,0,0,0.05); 
	cursor: default
}
.titleBox:hover{
	transform: scale(1);
	box-shadow: none !important;
}

.sponserBox {
	box-shadow: none;
	background: rgba(255,255,255,0);
	transition: 0.3s;
	border: 1px solid rgba(255,255,255,0.05); 
}
.sponserBox2 {
	box-shadow: none;
	background: rgba(255,255,255,0);
	transition: 0.3s;
	border: 0px solid rgba(255,255,255,0.05); 
	width : 10%;
	transition: 0.3s;
}

.sponserBox2 img {
	transition: 0.3s;
}
.sponserBox2 h5 {
	font-size: 5px;
	opacity: 0;
	font-weight: 700;
	transition: 0.3s;
}
.sponserBox:hover{
	background: rgba(255,255,255,0.02) !important;
	transform: scale(1);
	box-shadow: none !important;
}

.sponserBox > img + h5 {
	color: white;
}
.sponserBox2:hover{
	opacity: 1;
	background: rgba(255,255,255,0.02) !important;
	transform: scale(1);
	box-shadow: none !important;
}

.sponserBox2:hover img{
	opacity: 0.6;
	transform: scale(0.9);
}

.sponserBox2:hover img + h5{
	opacity: 1
}



.titleBox > .row {
	display: flex;
	align-items: center;
	padding: 20px 0px;
	margin: 20px 0;
	margin-bottom: 0;
	padding-bottom: 0;
	border: none;
	border-top: 2px solid rgba(0,0,0,0.08);
	transition: 0.3s;
	border-radius: 0 !important;
}
.titleBox > .row:nth-child(1) {
	display: flex;
	align-items: center;
	padding: 20px 0px;
	margin: 20px 0;
	margin-bottom: 0;
	padding-bottom: 0;
	border-top: none; 
	transition: 0.3s;
}

.clickable {
	cursor: pointer;
	color: black;
	transition: 0.3s;
}
.clickable3 {
	cursor: pointer;
	color: black;
	transition: 0.3s;
}
.clickRow {
	position: relative;
	cursor: pointer;
	color: black;
	transition: 0.3s;
}

.clickable2 {
	cursor: pointer;
	color: white;
	transition: 0.3s;
}
.clickable2:hover {
	color: #1DCA7F
}

.clickRow:hover {
	color: black !important;
	border: none !important;
	border-top: 2px solid rgba(0,0,0,0.08) !important;
	background: linear-gradient(to right, transparent,white,transparent)!important;
	box-shadow: 0px 15px 45px -15px rgba(0,0,0,0.2) 
}
input[type=radio]:checked + .clickRow {
	color: black !important;
	border: none !important;
	border-top: 2px solid rgba(0,0,0,0.08) !important;
	background: rgba(255,255,255,1.00) !important;
	box-shadow: 0px 15px 45px -15px rgba(0,0,0,0.2) 
}
.clickable:hover {
	color: #FC6076;
}
.clickable3:hover {
	color: #0EAD6B;
}

/*Floating*/

.formHolder {
	position: fixed; 
	top: 0; 
	left: 0; 
	justify-content: center; 
	align-items: center; 
	z-index: 106; 
	width: 100%; 
	height: 100%; 
	background: rgba(4,236,146,0.80);
	display: none;
	opacity: 0;
	transition: 0.3s;
}

.readHolder {
	position: fixed; 
	top: 0; 
	left: 0; 
	justify-content: center; 
	align-items: center; 
	z-index: 106; 
	width: 100%; 
	height: 100%; 
	background: rgba(0,0,0,0.80);
	display: none;
	opacity: 0;
	transition: 0.3s;
}
.fullHolder {
	position: fixed; 
	top: 0; 
	left: 0; 
	justify-content: center; 
	align-items: center; 
	z-index: 106; 
	width: 100%; 
	height: 100%; 
	background: rgba(0,0,0,0.68);
	display: none;
	opacity: 0;
	transition: 0.3s;
}

.responseHolder {
	position: fixed; 
	top: 0; 
	left: 0; 
	justify-content: center; 
	align-items: center; 
	z-index: 106; 
	width: 100%; 
	height: 100%; 
	background: rgba(0,0,0,0.34);
	display: none;
	opacity: 0;
	transition: 0.3s;
}
.alertHolder {
	position: fixed; 
	top: 0; 
	left: 0; 
	justify-content: center; 
	align-items: center; 
	z-index: 106; 
	width: 100%; 
	height: 100%; 
	background: rgba(26, 26, 26, 0.3);
	display: none;
	opacity: 0;
	transition: 0.3s;
}

.closeButton {
	color: #1DCA7F;
	cursor: pointer;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
}

.closeResponse {
	color: #1DCA7F;
	cursor: pointer;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
}

.closeButtonAlert {
	cursor: pointer;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
	color: black;
}

.closeButtonAlert:hover {
	transform: scale(1.3);
}

.closeButton:hover {
	transform: scale(1.3);
}

.closeResponse:hover {
	transform: scale(1.1);
}

#field1,#field2,#field3,#field4, #field5{
	transition: 0.3s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
	opacity: 0;
	transform: translateY(10%);
}

.formContainer {
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
	overflow-x: hidden;
	width: 450px; 
	background: white; 
	position: relative;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
}
.readContainer {
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
	overflow-x: hidden;
	width: 550px;
	max-height: 700px;
	background: white; 
	position: relative;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
}

.fullContainer {
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
	overflow-x: hidden;
	width: 80%; 
	height: 80%; 
	background: white; 
	position: relative;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
}

.responseContainer {
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
	overflow-x: hidden;
	width: 450px; 
	max-height: 650px;
	background: white; 
	position: relative;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
}

.alertContainer {
	width: 450px; 
	background: white; 
	position: relative;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
}

#formFooter {
	transition: 0.3s;
	transition-timing-function: cubic-bezier(.53,.2,.05,.89);
}



@media only screen and (max-width: 768px) {
	.responseContainer {
		width: 100%;
		height: 100%;
	}
	.alertContainer {
		width: 80%;
	}
	
	.footerSection {
		display: block; 
	}
	
	.floatLeft:nth-child(1){
		padding-bottom: 0;
	}
}

/*Input Settings*/

input {
	height: 25px; 
	width: calc(100% - 40px); 
	padding: 15px 20px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 15px;
	border: 1px solid rgba(171,171,171,1.00);
	background: transparent;
	color: black;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(0,.88,.45,.95);
	border-radius: 0;
	box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0);
}
input:hover {
	background: rgba(88,88,88,0.12);
	color: black;
}

input:focus {
	background:  rgba(88,88,88,0.12);
	color: black;
}

input[type=submit]:hover {
	background: #E93030;
	color: white;
	border: none;
	-webkit-appearance : none;
}

input[type=radio] {
	visibility: hidden;
	position: absolute;
}


input[type=button] {
	-webkit-appearance : none;
}
button {
	
	-webkit-appearance : none;
}

input[type=radio] + label {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	cursor: pointer;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	border: 1px solid rgba(171,171,171,1.00);
	border-radius: 40px;
	color: black;
	font-weight: 700;
	transition: 0.3s;
}



input[type=radio] + label i {
	padding-right: 12px;
	font-size: 18px;
	width: 0;
	padding: 0;
	overflow: hidden;
	color: white;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(0,.88,.45,.95)
}

input[type=radio] + label:hover {
	color: white;
	background:#4668fd;
	border: 1px solid #4668fd;
}

input[class=green] + label:hover {
	background: #10D9AA;
	border: 1px solid #10D9AA;
}

input[type=radio]:checked + label {
	color: white;
	border: 1px solid #4668fd;
	background: #4668fda
}

input[class=green]:checked + label {
	background: #10D9AA;
	border: 1px solid #10D9AA;
}

input[type=radio]:checked + label {
	color: white;
	border: 1px solid #4668fd;
	background: #4668fd
}

input[class=green]:checked + label {
	background: #10D9AA;
	border: 1px solid #10D9AA;
}

input[type=radio]:checked + label i {
	padding-right: 0 12px;
	font-size: 18px;
	width: 24px;
	overflow: hidden;
}


input[type=checkbox] {
	visibility: hidden;
	position: absolute;
}



input[type=checkbox] + label {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	cursor: pointer;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	border: 1px solid rgba(171,171,171,1.00);
	border-radius: 40px;
	color: black;
	font-weight: 700;
	transition: 0.3s;
}

.privacy {
	margin: 10px 0;
	color: rgba(47,47,47,0.5) !important;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(0,.88,.45,.95);
	border: none !important;
	padding: 0 !important;
	justify-content: flex-start !important;
	border-radius: 0 !important;
}
.privacy i{
	width: 24px !important;
	color: rgba(47,47,47,0.5) !important;
}

.privacy:hover {
	color: grey !important;
	background: transparent !important;
}

input[type=checkbox]:checked + .privacy {
	color: black !important;
	border: none !important;
	background: transparent !important;
}

input[type=checkbox]:checked + .privacy i{
	color: #4668fd !important;
	border: none !important;
	background: transparent !important;
}

input[type=checkbox] + label i {
	padding-right: 12px;
	font-size: 18px;
	width: 0;
	padding: 0;
	overflow: hidden;
	color: white;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(0,.88,.45,.95)
}


input[type=checkbox] + label + input[type=number] {
	margin: 0 0;
	height: 0;
	padding: 0 20px;
	border: 0px solid transparent;
	opacity: 0;
	display: none;
}


input[type=checkbox]:checked + label + input[type=number] {
	margin: 12px 0;
	height: 25px;
	padding: 16px 20px;
	opacity: 1;
	border: 1px solid rgba(0,0,0,0.1);
	display: block
}


input[type=checkbox] + label:hover {
	color: white;
	background:#4668fd;
	border: 1px solid #4668fd;
}
input[class=green] + label:hover {
	background: #10D9AA;
	border: 1px solid #10D9AA;
}

input[type=checkbox]:checked + label {
	color: white;
	border: 1px solid #4668fd;
	background: #4668fd
}

input[class=green]:checked + label {
	background: #10D9AA;
	border: 1px solid #10D9AA;
}

input[type=checkbox]:checked + label i {
	padding-right: 12px;
	font-size: 18px;
	width: 24px;
	overflow: hidden;
}

input[type=submit]:focus {
	background: #E93030;
	color: white;
	border: none;
}
textarea {
	border-radius: 0;
	border: 1px solid rgba(171,171,171,1.00);
	background: transparent;
	color: black;
	margin-bottom: 15px;
	height: 200px; 
	width: calc(100% - 40px);
	padding: 15px 20px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	resize: none;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(0,.88,.45,.95);
	box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0);
}

textarea:hover {
	background: rgba(88,88,88,0.12);
	color: black;
}

textarea:focus {
	background:  rgba(88,88,88,0.12);
	color: black;
}

.textInput {
	text-transform: none;
	letter-spacing: normal;
	font-weight: 400;
	font-size: 14px
}
.inputFile {
	width: 0.1px;
	height: 20px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.inputFile + label {
    display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	cursor: pointer;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	border: 1px solid rgba(171,171,171,1.00);
	border-radius: 40px;
	color: black;
	font-weight: 700;
	transition: 0.3s;
}

.inputFile:focus + label,
.inputFile + label:hover {
    color: white;
	background:#4668fd;
	border: 1px solid #4668fd;
}

.inputFile + label i {
	padding-right: 12px;
	font-size: 18px;
	overflow: hidden;
	transition: 0.3s;
	transition-timing-function: cubic-bezier(0,.88,.45,.95)
}
.inputFile + label:hover i {
	padding-right: 12px;
	font-size: 18px;
	overflow: hidden;
	transition: 0.3s;
	color: white;
	transition-timing-function: cubic-bezier(0,.88,.45,.95)
}
.inputFile + label:focus i {
	padding-right: 12px;
	font-size: 18px;
	overflow: hidden;
	transition: 0.3s;
	color: white !important;
	transition-timing-function: cubic-bezier(0,.88,.45,.95)
}


/*Form Settings*/

.formBig {
	border-top: 1px solid pink;
	padding: 5vh 12.5%;
	position: relative; 
	width: 75%; 
	height: auto;
	overflow: hidden;
	transition: 1s;
}

.formBig fieldset {
	position: relative;
	border: 1px solid rgba(196,196,196,0.6);
	padding: 1.5vh 2.5vh;
	font-family: "Roboto", sans-serif; 
	font-weight: 700;
	
	color: #473B7B; 
	text-transform: none; 
	font-size: 18px;
	letter-spacing: 0;
	background: white;
	margin: 25px 20%;
	box-shadow: 0px 20px 30px 0px rgba(0,0,0,0.03);
}

.formBig fieldset legend {
	padding: 0 10px;
}

#errorText, #errorText1, #errorText2, #errorText3 {
	color: red;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
/*Navigation*/
.floatingLogo {
	position: fixed;
	color: white;
	left: 64px;
	top: 72px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 105;
	transition: 0.6s;
	transition-timing-function: cubic-bezier(0,.88,.45,.95);
}

.logoHover {
	left: calc(10% + 40px);
}
.floatingMenu {
	position: fixed;
	color: white;
	right: 64px;
	top: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 105;
	transition: 0.6s;
	transition-timing-function: cubic-bezier(0,.88,.45,.95);
}

.navBar {
	transform: translateY(-100%);
	transition: 0.6s;
	transition-timing-function: cubic-bezier(0,.88,.45,.95);
	height: 90px;
	position: fixed;
	z-index: 101;
	width: 100%;
	opacity: 0;
	background-image: linear-gradient(-225deg, #ff0000 0%, #0028ec 48%, #e4ff00 100%);
}



.navBarHover {
	background: rgb(240, 240, 240) !important;
	height: 120px  !important;
	opacity: 0.98  !important;
	transform: translateY(0)  !important;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
	.navBar {
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px); 
		opacity: 0.8 !important;
	}
	.navBarHover {
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px); 
		opacity: 0.8 !important;
	}
}

.navMenu {
	-webkit-overflow-scrolling: touch;
	overflow-y: scroll;
	overflow-x: hidden;
	display: none;
	position: fixed;
	height: 0;
	width: 100%;
	top: 0;
	color: black;
	z-index: 100;
	align-items: flex-start;
	transition: 1s;
	transition-timing-function: cubic-bezier(0,.88,.45,.95);
	background: rgb(240, 240, 240);
	padding-top: 0;
}

.navMenu > ul {
	z-index: 100;
	font-family: 'ProductSansBold';
	font-size: 50px;
	font-weight: 400;
	list-style-type: none;
	line-height: 60px;
	margin-left: 10%;
	transition: 0.3s;
	margin-top: 0px
}
.navMenu > ul:nth-child(2) {
	margin-right: 80px;
	margin-left: auto;
	font-size: 25px;
	width: 250px
}
.navMenu > ul:nth-child(2) li{
	color: #1DCA7F;
}
.navMenu  > ul > li{
	opacity: 0;
	cursor: pointer;
	transition: .4s;
}
.navMenu > ul > a{
	opacity: 0;
	transition: .4s;
}

.navMenu > ul > h5{
	opacity: 0;
	transition: .4s;
}

.navMenu > ul > li:hover{
	color: #1DCA7F;
}

@media only screen and (max-width: 1660px) {
	.section {
		width: 80%;
	}
	
	.sectionPadding {
		padding: 0 10%;
	}
	
	h1{
		font-size: 48px;
	}
	
	h5 {
		font-size: 12px;
	}
	
	h2 {
		font-size: 18px;
	}
	
p {
	font-size: 18px;
	
}
	
	.box {
		margin: 1%;
		width: 27%;
		padding: 1.5%;
	}
	
	.travelBox {
		margin: 1%;
		width: 25%;
		padding: 1.5%;
	}
	
	.box h5 {
		letter-spacing: 1px
	}
	
	.sponserBox2 {
		width: 10%;
	}
	
	.arrowContainer i {
		font-size: 20px
	}
	
	h4 {
		font-size: 16px
	}
}

@media only screen and (max-width: 1280px) 
{
	.section > .left{
		height: auto;
	}
	.section > .right {
		width: 45%;
		padding: 10% 2% 0% 3%;
	}
	
	.section > .left > img {
		transform: translate(-4%,-6%)
	}
	
	h5 {
		font-size: 10px
	}
}

@media only screen and (max-width: 1024px) 
{
	.box {
		width :calc(44% - 2px)
	}
	
	.travelBox {
		width :calc(40% - 2px)
	}
	
	.onlyThree  {
		display: flex; :calc(44% - 2px)
	}
	
	#vanishBox {
		display: none
	}
	.coverContent {
		width: 80%;
	}
	.coverImage {
		right: -5%;
		width: 35%;
	}
}
@media only screen and (max-width: 768px) {
	.coverImage {
		right: -20%;
		width: 80%;
	}
	.navMenu  {
		flex-direction: column;
		overflow-y: scroll;
		overflow-x: hidden
	}
	
	.navMenu > ul {
		margin-left: 5vh;
		width: 90%;
		margin-bottom: 0;
		padding: 0;
	}
	.navMenu > ul > li{
		font-size: 30px;
		line-height: 45px
	}
	
	.navMenu > ul:nth-child(2) {
		margin-right: 0%;
		margin-left: 5vh;
		width: 250px;
		margin-top: 0;
	}
	
	
	.floatingLogo{
		left: 5vh;
	}
	.logoHover {
		left: 5vh;
	}
	.floatingMenu {
		right: 3vh;
	}
	.section > .right {
		width: 100%;
		padding: 0% 0% 0% 0%;
	}
	.section > .left {
		height: auto;
		width: 100%;
	}
	.flex {
		flex-direction: column;
	}
	#flexDir {
		flex-direction: row !important;
	}
	
	.formBig {
		padding: 5vh 0%;
    	width: 100%;
	}
	.formBig fieldset {
		margin-left: 0;
		margin-right: 0;
		padding: 2vh 2.5vh;
	}
	.formBig fieldset button {
		
    padding-right: 0 !important;
    padding-left: 0 !important;
		width: 100% !important;
	}
	.title {
		height: 80vh;
		overflow-x: hidden;
	}
}
@media only screen and (max-width: 500px) {
	.sectionPadding {
		padding: 0 7.5%;
		width: 85%;
	}
	
	#submitButton, #callPaperButton {
		display: none !important;
	}
	.coverVideo {
		left: 30% !important;
	}
	.coverContent {
		width: 80%;
		left: 8.5%
	}
	h1{
		font-size: 48px;
	}
	.h1{
		font-size: 20px
	}
	h2{
		font-size: 18px;
	}
	
	p{
		font-size: 18px;
	}
	.section > .left {
		height: auto;
		width: 100%;
	}
	.box {
		width : calc(88% - 2px);
		margin-top: 15px;
		margin-bottom: 15px;
		padding: 5%;
	}
	.travelBox {
		width : calc(80% - 2px);
		margin-top: 15px;
		margin-bottom: 15px;
		padding: 5%;
	}
	.sponserBox2 {
		width :calc(44% - 2px)
	}
	#flexDir {
		flex-direction: column!important;
		align-items: flex-start;
	}
	
	.askQuestion {
		margin-left: 0 !important;
	}
	.coverContent > h2 {
		font-size: 14px
	}
	
	input[type=checkbox] + label i {
		font-size: 16px;
	}

	input[type=checkbox] + label{
		font-size: 10px;
	}
}


.repond{
	margin:  0 0 ; 
	padding: 12px 20px; 
	border: none; 
	background: #000000; 
	border-radius: 50px;
	cursor: pointer; 
	box-shadow: 0px 10px 30px -10px rgba(221,181,169,0.75);
	opacity: 1;
	transition: 0.2s;
}
.respond:hover {
	transition: 0.2s;
	opacity: 0.8
}
@media only screen and (max-width: 500px) {
	.responseContainer, .formContainer, .fullContainer, .readContainer {
		max-height: 100%;
		max-width: 100%;
	}
}


