/*
colors from logo:
dark blue:		rgb(39, 54, 135); #273687
lighter blue:	rgb(33, 99, 177); #2163b1
*/


/**** overall page styles ****/ 


* {
	font-family: 'Roboto', sans-serif !important;
	box-sizing: border-box;
}
body, html {
  margin: 0;
}
#page-container {
	position: relative;
	min-height: 100vh;
	width: 100%
}
.bold {
	font-weight: 900;
	color:rgb(33, 99, 177);
}
.bold-thin {
	font-weight: 500;
	color:rgb(33, 99, 177);
}

/**** cookie consent ****/ 


.cookie-banner {
	display:none;
	position: fixed;
	bottom:0;
	width:100%;
	z-index: 4;
	height: auto;
}
.cookie-content {
	margin: 15px;
	height: 85%;
	background: #2163b1;
	border-radius: 10px;
	position: relative;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.cookie-text {
	padding:25px 25px 0px 25px;
}
.cookie-text p {
	margin:0;
	margin-bottom:5px;
	font-weight: 300;
	font-size: 15px;
}
.cookie-text p, .cookie-text a, .x-btn {
	color:white;
}
.x-btn {
	position: absolute;
	top:5px;
	right:11px;
}
.x-btn:hover {
	cursor: pointer;
}
.consent-div {
	width: 100%;
	text-align: right;
	padding-right: 15px;
	padding-bottom: 15px;
}
#accept, #manage {
	color: white;
	padding:5px 10px;
	border: 1.5px solid white;
	border-radius: 4px;
	margin-right: 10px;
	letter-spacing: 0.8px;
	cursor: pointer;
}
#accept {
	background-color: rgb(6, 189, 220);
}
#manage {
	background-color: #273687;
}

.manage-background {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity:0.5;
	z-index: 4;
}
.manage-content {
	display:none;
	position: fixed;
	bottom: 10%;
	left: 25%;
	width:50vw;
	height: 80vh;
	background-color: white;
	z-index: 5;
	border-radius: 10px;
	padding:37px 0px 10px 10px;
}
.manage-inner {
	overflow-y: scroll;
	width: 100%;
	height: 100%;
	padding: 5px 10px 5px 10px;
}
.manage-text h2 {
	font-weight: 500;
	color: darkslategray;
	font-size: 18px;
	text-align: center;
}

.manage-text p {
	font-weight: 300;
	font-size: 16px;
}
.manage-toggle {
	text-align: center;
	margin-top: 5px;
	margin-bottom: 5px;
}
.manage-x-btn {
	position: absolute;
	top:13px;
	right:36px;
	transform: scale(1.5);
	-webkit-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-o-transform: scale(1.5);
	color:darkslategray;
}
.manage-x-btn:hover {
	cursor: pointer;
}


/**** navbars  ****/


.horiz-navbar {
	position: fixed; 
	top: 0; 
	font-weight: 300;
	font-size: 1.3vw;
	background: rgb(255, 255, 255);
	background: rgba(255,255,255,.8);
	background-image:linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 38%);
	color: darkslategray;
	width: 100%;
	z-index: 3;
}
.navbar-link {
  float: left;
  text-align: center;
  text-decoration: none;
}
.drop {
	float: left;
}
.dropbtn {
  border: none;
  outline: none;
  background: inherit;
  font-family: inherit; 
  font-size: inherit;
  font-weight: inherit;
  margin: 0; 
}

.nav-option, .drop-content a {
	padding: 1vw 1.3vw;
	color:inherit;
}
.drop-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 16px 16px 0px rgba(0,0,0,0.2); 
  opacity: 0.98;
}
.drop-content a {
  float: none;
  font-size: 15px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.drop-content a:hover {
  background-color: #eee;
}
.drop:hover .drop-content {
  display: block;
}
.drop:hover .dropbtn {
	color: rgb(33, 99, 177);
}
.navbar-link:hover{
	color: rgb(33, 99, 177);
}
.navbar-media {
	float: right;
	margin-right: 1%;
}
.navbar-media a {
	text-decoration: none;
}
.navbar-media-icons {
	width: 2vw;
	padding-top:20%;
}
.vert-navbar-media-icons {
	float: right;
	width: 25px;
	padding-top:30px;
	margin-right: 10px;
}
.vert-navbar{
	overflow: hidden;
	display: none;
	position: fixed;
	width: 100%;
	z-index: 3;
	background: rgb(255, 255, 255);
	background: rgba(255,255,255,.8);
	background-image:linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 38%);
	top: 0;
}
.vert-drop{
	display: none;
	position: relative;
	width: 100%;
	z-index: 3;
	overflow-y: scroll;
}
.hamburger {
	float: right;
	padding-top: 20px;
	padding-right: 30px;
}
.accordion, .non-accordion {
	background-color: white;
	color: #444;
	font-size: 17px;
	font-weight: 300;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	border: 1px solid #eee;
	outline: none;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	margin: 0px;
}
.active, .accordion:hover, .non-accordion:hover {
	background-color: #ddd;
	color: rgb(33, 99, 177);
}
.panel {
	background-color: white;
	color:darkslategray;
	font-size: 14px;
	font-weight: 300;
	display: none;
	width: 100%;
}
.sub-panel:hover {
	color: rgb(33, 99, 177);
	background-color: #eee;
}

.sub-panel {
	padding: 10px 0px 10px 18px; /* top, right, bottom, left */
}
.panel a {
	text-decoration: none;
	color: darkslategray;
}
.bar1, .bar2, .bar3 {
	padding-left: 10px;
	width: 35px;
	height: 5px;
	background-color: #aaa;
	margin: 6px 0;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
}
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  -o-transform: rotate(-45deg) translate(-9px, 6px);
  -moz-transform: rotate(-45deg) translate(-9px, 6px);
  -ms-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}
.change .bar2 {opacity: 0;}
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  -o-transform: rotate(45deg) translate(-8px, -8px);
  -moz-transform: rotate(45deg) translate(-8px, -8px);
  -ms-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}
.small-logo {
	height: 70px;
	float: left;
	padding-left: 1%;
}


/**** homepage intro ****/ 

.fadein {
	opacity: 0;
	transform: translate(0, 10vh);
	-webkit-transform: translate(0, 10vh);
	-ms-transform: translate(0, 10vh);
	-moz-transform: translate(0, 10vh);
	-o-transform: translate(0, 10vh);
	transition: all 1s;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
}
.fadein.visible {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
}

.container {
  height: 100vh;
  position: relative;
  width: 100%;
}
.slides {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  opacity: 0;
  position: absolute;
  transition: opacity 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  z-index: -1;
}
.show {
	opacity: 1;
}
#slide1 {
	background-image: linear-gradient(90deg, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 100%), url('../images/relocation-right.jpg');
}
#slide2 {
	background-image: linear-gradient(90deg, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 100%), url('../images/diverse-team-right.jpg');
}
#slide3 {
	background-image: linear-gradient(90deg, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 100%), url('../images/english-grammar-right.jpg');
}
#slide4 {
	background-image: linear-gradient(90deg, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 100%), url('../images/hotel-staff-right.jpg');
}
#tagline {
	margin-top: -5px;
	font-style: italic;
	font-size: 15px;
	font-weight: 900;
	color: rgb(39, 54, 135);
}
.large-logo {
	width: 20vw;
}
.intro-text {
	padding-top: 60px;
	padding-left: 4%;
	padding-right:55%;
	position: absolute;
	z-index: 1;
}
.intro-text p {
	font-size: 1.4vw;
	font-weight: 300;
	color: darkslategray;
	line-height: 1.6;
}


/**** dynamic buttons ****/ 


.contact-container, .learn-more-container, .mail-img-div, .btn-text {
	position: absolute;
	text-align: center;
}
.learn-more-container {
	bottom:0;
	padding-left: 10%;
}
.more-about-container {
	margin: 2%;
}
.learn-more-btn, .contact-btn {
	cursor: pointer;
	border: 0;
	vertical-align: middle;
	text-decoration: none;
	background: transparent;
	padding: 0;
	font-size: inherit;
	width: 12rem;
	height: auto;
}
.learn-more-btn {
	position: relative;
}
.learn-more-circle, .contact-circle, .learn-more-icon, .learn-more-arrow, #mail-img, .btn-text {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	-webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	-moz-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	-o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
.learn-more-circle, .contact-circle {
	position: relative;
	display: block;
	margin: 0;
	width: 3rem;
	height: 3rem;
	background: linear-gradient(90deg, #273687 0%, #2163b1 100%); 
	border-radius: 1.625rem;
}
.learn-more-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background: #fff;
}
.learn-more-arrow {
	left: 0.625rem;
	width: 1.125rem;
	height: 0.125rem;
	background: none;
}
.learn-more-arrow::before {
	position: absolute;
	content: '';
	top: -0.25rem;
	right: 0.0625rem;
	width: 0.625rem;
	height: 0.625rem;
	border-top: 0.125rem solid #fff;
	border-right: 0.125rem solid #fff;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}
#mail-img {
	position: relative;
	width:24px;
	top: 14px;
	left: 12px;
	background: none;
}
.btn-text {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.75rem 0;
	color: #2163b1;
	font-weight: 500;
	line-height: 1.6;
	text-transform: uppercase;
}
.learn-more-text, .contact-text {
	margin: 0 0 0 1.85rem;
}
.more-about-text {
	margin: 0 0 0 2.6rem;
}
.learn-more-btn:hover .learn-more-arrow {
	background: #fff;
	transform: translate(1rem, 0);
	-webkit-transform: translate(1rem, 0);
	-ms-transform: translate(1rem, 0);
	-moz-transform: translate(1rem, 0);
	-o-transform: translate(1rem, 0);
}
.learn-more-btn:hover .learn-more-text, .learn-more-btn:hover .more-about-text, .contact-btn:hover .contact-text {
	color: #fff;
}
.learn-more-btn:hover .learn-more-circle, .contact-btn:hover .contact-circle {
	width: 100%;
}
.contact-btn:hover #mail-img {
	transform: translate(1rem, 0) scale(1.1, 1.1); 
	-webkit-transform: translate(1rem, 0) scale(1.1, 1.1); 
	-ms-transform: translate(1rem, 0) scale(1.1, 1.1); 
	-moz-transform: translate(1rem, 0) scale(1.1, 1.1); 
	-o-transform: translate(1rem, 0) scale(1.1, 1.1); 
}
.contact-btn:focus, .learn-more-btn:focus {
	outline: none;
}


/**** homepage h2's ****/


.map h2, .clients h2, .industries h2, .testimonials-sample h2{
	font-size: 30px;
	font-weight: 300;
	color: darkslategray;
	padding-bottom: 20px;
	padding-right: 10%;
	padding-left: 10%;
}
.testimonials-sample h2 {
	margin-bottom: 0px;
	margin-top: 100px;
}


/**** homepage banners ****/


.assist-banner, .benefits-banner{
	position: relative;
	color: white;
	text-align: center;
	width: 100%;
	height: 260px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.assist-banner {
	background-image: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 56%), url("../images/assist-banner.jpg");
}
.benefits-banner {
	background-image: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 56%), url("../images/benefits-banner.jpg");
}
.assist-txt, .benefits-txt {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	width: 60%; 
	font-size: 4vw;
	font-weight: 300;
	text-shadow: 1.8px 1.8px skyblue;
	letter-spacing: 0.08em;
}


/**** services section ****/ 


.services-row {
	display: table;
	padding: 4%;
}
.services-col {
	display: table-cell;
	position: relative;
	width: 25%;
	padding: 0px 1% 45px 1%; /* top right bottom left */
}
.service-img {
	width: 100%;
	border-radius: 50%;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.services-row h2, .services-row p {
	font-weight: 300;
	text-align: center;
}
.services-row h2 {
	color: rgb(33, 99, 177);
}
.services-row p {
	font-size: 16px; 
}


/**** benefits section ****/


.benefits {
	padding-bottom: 30px;
	overflow: hidden;
}
.benefits-row {
	display: table;
	overflow: hidden;
	padding-left: 8%;
	padding-right: 8%;
	padding-top: 50px;
}
.benefits-col {
	display: table-cell;
	width: 33.33%;
	border-top: 0px solid;
	border-right: 0px solid;
	border-bottom: 0px solid;
	border-left: 8px solid;
	border-image-source: linear-gradient(0deg, rgba(6,189,220,1) 0%, rgba(0,75,165,1) 100%);
	border-image-slice: 1;
}
.card {
	padding: 4%;
	text-align: center;
}
.card ul {
	padding-right: 20px;
	padding-left: 35px;
}
.card li{
	margin-bottom: 5%;
	text-align: left;
	font-weight: 300;
}
.card li::marker {
	color: rgb(33, 99, 177);
}
.icon {
	height: 80px;
	margin: 5%;
	transition: transform .5s;
	-webkit-transition: transform .5s;
	-moz-transition: transform .5s;
	-o-transition: transform .5s;
}
.icon:hover {
  -webkit-transform: scale(1.4); /* Safari 3-8 */
  -ms-transform: scale(1.4); /* IE 9 */
  -moz-transform: scale(1.4); 
  -o-transform: scale(1.4);
  transform: scale(1.4); 
}


/**** video section ****/


.about-row {
	text-align: center;
	padding-bottom: 2%;
	padding-top: 4%;
}
.about-row h2, .about-row h3 {
	font-weight: 300;
	color: darkslategray;
	margin-right: 5px;
	margin-left: 5px;
}
.about-row h2 { 
	font-size: 30px;
	margin-bottom:0px;
}
.about-row h3 {
	font-size: 20px;
	margin-top: 5px;
}
.video-div {
	padding-left: 18%;
	padding-right: 18%;
}


/**** map/clients/industries section ****/


.map {
	padding-top: 20px;
	text-align: center;
}
.map-img {
	width: 75%;
}
.clients {
	text-align: center;
	padding: 0px 40px 40px 40px; /* top right bottom left */
}	
.logo-cloud {
	width:85%;
}
.industries, .testimonials-sample {
	overflow: hidden;
	text-align: center;
	margin-bottom: 4%;
}
.industry-row {
	width: 100%;
}
.industry-row, .industry-col {
	float: left;
}
.industry-col {
	position: relative;
	width: 25%;
}
.industry-img {
	width: 100%;
	vertical-align: bottom;
}
.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: .5s ease;
	-webkit-transition: .5s ease;
	-moz-transition: .5s ease;
	-o-transition: .5s ease;
	background-color: black;
}
.overlay-txt {
	position: absolute;
	color: white;
	font-size: 2.5vw;
	font-weight: 300;
	text-align: center;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}


/**** page headings ****/


.underline-div {
	margin-top:4%;
	display:flex!important;
	display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
}
.underline-container {
	margin:auto;
}
.underline-heading {
	color:darkslategray;
	text-align: center;
}
.underline-heading h2, .underline-heading h1 {
	font-weight: 300;
	font-size: 40px;
	border-style: solid;
    border-width: 0 0 4px 0;
    padding-bottom:3px;
    margin-bottom:20px;
    border-image: linear-gradient(90deg, rgba(0,75,165,1) 0%, rgba(6,189,220,1) 100%) 1;
}


/**** programme pages ****/


.first, .section {
	overflow: hidden;
	padding: 20px;
	color: darkslategray;
}
.first {
	margin:30px 4% 0px 4%; /* top right bottom left */
}
.section {
	margin: 80px 4% 0px 4%; /* top right bottom left */
}
.section-pic-col {
	width:30%;
	float:left;
}
.front-rect {
	position: absolute;
	z-index: 2;
}
.section-img {
	width:24vw;
}
.back-rect {
	position: relative;
	background: linear-gradient(90deg, rgba(0,75,165,1) 0%, rgba(6,189,220,1) 100%);
	height:16vw;
	width:24vw;
	top:20px;
	right:20px;
}
.info-top, .info-row {
	margin-bottom: 14px;
	overflow: hidden;
}
.info-top {
	margin-top: 40px;
}
.info-row {
	margin-top: 5px;
}
.info-top p, .info-row p, .info-row ul {
	margin:0;
	font-weight: 300;
	font-size: 14px;
}
.info-top p, .info-row p {
	padding: 0px 6px 12px 6px;
}
.info-row ul { 
	padding-left: 20px;
}
.info-pic-col {
	width:30%;
	float: left;
}
.info-text-col {
	width:70%;
	float: left;
}
.info-icon {
	height:30px;
	max-width:100%;
}
.section-text-col {
	width:70%;
	float:left;
	padding-left: 40px;
}
.h2-wide, .h3-wide, .section-text-col h4 {
	margin: 0px;
}
.section-text-col h4 {
	font-size: 18px;
	font-weight: 300;
	text-decoration: underline;
	text-underline-offset: 5px;
}
.h2-skinny, .h3-skinny, .flag-div-skinny {
	display: none;
}
.h3-wide, .h3-skinny {
	margin-top:5px;
	font-weight:500;
}
.flag-div-wide, .flag-div-skinny {
 	text-align: center;
 	margin-top: 5px;
}
.flag-icon {
 	height: 20px;
 	padding-left:5px;
 	padding-right: 5px;
}
.overview, .section-text-col li, .star-para {
	font-weight: 300;
}
.overview {
	line-height: 1.5;
}
.overview a {
	color: darkblue;
	text-decoration: none;
}
.section-text-col ul {
	padding-left: 20px;
}
.section-text-col li {
 	padding: 5px;
}
.star-para {
 	font-size: 11.5px;
}
.lang-options {
 	margin-bottom: 20px;
 	margin-top: 0px;
 	list-style-type: circle;
}
.lang-options li {
 	padding:2px;
}


/**** contact us page ****/ 


.contact-row, .contact-col-left, .contact-col-right  {
	float: left;
	font-weight: 300;
}
.contact-col-left {
	width: 39%;
	position: relative;
 	text-align: center;
  	color: white;
}
.contact-pic {
	width:100%;
	height: 100vh;
}
.typing-font {
	position: absolute;
  	top: 47%;
  	left: 52%;
  	transform: translate(-50%, -50%);
  	-webkit-transform: translate(-50%, -50%);
  	-moz-transform: translate(-50%, -50%);
  	-ms-transform: translate(-50%, -50%);
  	-o-transform: translate(-50%, -50%);
  	font-size: 3.5vw;
  	font-weight: 200;
  	text-shadow: 1px 1px darkslategrey;
}
.laptop-img {
	position: absolute;
	top:75%;
	left:51%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
  	-moz-transform: translate(-50%, -50%);
  	-ms-transform: translate(-50%, -50%);
  	-o-transform: translate(-50%, -50%);
	width: 13vw;
}
.contact-col-right {
	width: 61%;
	padding: 63px 60px 20px 60px;	
}
.contact-col-right h1 {
	font-size: 40px;
	color: rgb(33, 99, 177);
	font-weight: 300;
	margin-top:0px;
	margin-bottom:0px;
}
.contact-col-right, .input-box, .message {
	font-size: 1.22vw;
	font-weight: 300;
}
.input-box {
	border:none;
	border-bottom: 2px solid rgb(39, 54, 135);
}
.input-box, .message {
	-webkit-appearance: none;
	-moz-appearance: none;
	border-radius: 0;
}
input:focus, .message:focus {
	outline: none;
}
.name-div {
	width:40%;
	float:left;
}
.company-div {
	width:60%;
	float:left;
}
.message {
	margin-top:10px;
	width:100%;
	height:115px;
	border: 2px solid rgb(39, 54, 135);
}
.submit-btn {
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: white;
	color: rgb(39, 54, 135);
	border: 2px solid rgb(39, 54, 135);
	border-radius: 4px;
	font-size: 16px;
	padding: 10px 20px;
}
.approval-div {
	margin:100px 25px 0px 25px; /* top right bottom left */
	text-align: center;
}
.checkmark {
	width:150px;
}
.approval-div p{
	font-weight: 300;
	font-size: 18px;
}
.approval-div h1 {
	font-weight: 300;
	font-size: 40px; 
}


/**** footer ****/


.pre-foot {
	clear: both;
	height:200px;
}
.foot {
	position: absolute;
	bottom:0;
	width:100%;
	background: #2163b1 linear-gradient(180deg, rgba(6,189,220,1) 0%, rgba(39,54,135,1) 100%);
	font-weight: 300;
	color:white;
}
.foot a {
	color: white;
}
.left-foot, .center-foot, .right-foot {
	position: relative;
	float: left;
	width: 33.33%;
	padding: 10px;
	height: 25vh;
	max-height: 200px;
}
.bottom-row {
	overflow: hidden;
	width: 100%;
}
.footer-row {
	width:100%;
}
.footer-row, .footer-col-left, .footer-col-right {
	float: left;
}
.footer-col-left {
	width:10%;
}
.footer-col-right {
	width:90%;
}
.footer-icon {
	width:60%;
	padding-bottom: 6px;
}
.left-foot-txt {
	position: absolute;
	top: 50%;
	transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-o-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	padding-left:10px;
}
.left-foot-txt p {
	margin-top: 0px;
	margin-left:15px;
	font-size:1vw; 
}
#copyright {
	bottom:0;
}
#privacy-link {
	bottom: 25px;
}
.hidden-footer-div {
	clear: both;
}
#hidden-privacy-link, #hidden-copyright {
	display: none;
	font-size:11px;
	text-align: right;
	margin:0;
	padding-right: 10px;
}
#privacy-link, #copyright {
	color: white;
}
#copyright, #privacy-link {
	position: absolute;
	right:10px;
	font-size:12px;
}
.logo-foot {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	width:15vw;
}


/**** about us page ****/


.word-cloud {
  text-align: center;
  margin: 80px 10px 40px 10px; /* top right bottom left*/
}
.cloud {
	width: 70%;
}
.about-us-row {
	overflow:hidden;
	padding: 6% 20px 30px 3.5%; /* top right bottom left */
}
.about-us-row h3 {
	color:darkslategray;
	text-align: center;
	font-size:2vw;
	margin-bottom:0px;
	margin-top: -3vw;
	height: 3vw;
}
.half-col {
	width:60%;
	float:left;
	background: rgb(33, 99, 177);
	border-radius: 25px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.bullet-content {
    padding: 3%;
    font-weight: 300;
    color: white;
    min-height: 240px;
}
.bullet-content p {
	font-size:14px;
	margin: 0;
}
.bullet-content ul {
	margin: 0; 
	padding-left: 30px;
}
.bullet-content li {
	padding-bottom:6px;
	padding-top:6px;
	font-size: 14px;
}
#block-5 li {
	padding-bottom:25px;
}
#earth-div, #hat-div, #trophy-div, #hidden-trophy-div, #hands-div, #hotel-div, #hidden-hotel-div {
	width:38%;
	text-align: center;
	float: left;
}
#earth-graphic, #hat-graphic, #trophy-graphic, #hands-graphic {
	height: 200px;
	margin-top: -5px;
}
#hotel-graphic {
	height: 300px;
	margin-top: -55px;
}
#hidden-hotel-div, #hidden-trophy-div {
	display:none;
}
.shadow {
	-webkit-filter: blur(3px); /* Safari 6.0 - 9.0 */
	filter: blur(3px);
	padding-top: 16px;
	width: 210px;
}
#earth-div .shadow, #hat-div .shadow, #trophy-div .shadow, #hidden-trophy-div .shadow,  #hands-div .shadow {
	padding-top: 45px;
}
#hotel-div .shadow, #hidden-hotel-div .shadow {
	padding-top: 0px;
}
.move {
	-webkit-animation: mover 1.5s infinite alternate;
	-moz-animation: mover 1.5s infinite alternate;
	animation: mover 1.5s infinite alternate;
}
@-webkit-keyframes mover {
	0% { transform: translateY(0); }
	100% { transform: translateY(-20px); }
}
@keyframes mover {
	0% { transform: translateY(0); }
	100% { transform: translateY(-20px); }
}
.testimonials-section {
	text-align: center;
}
.testimonials-row {
	overflow: hidden;
	padding: 50px 4% 0px 4%; /* top right bottom left */
}
.hidden-testimonials-row {
	display: none;
}
.testimonials-col {
	width:33.33%;
	float: left;
}
.full-testimonials-col {
	width: 100%;
	padding-left: 10%;
	padding-right: 10%;
}
.testimonials-card {
	margin:15px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 10px;
	border: 3px solid #2163b1;
	position: relative;
	color: darkslategray;
	text-align: left;
}
.bubble:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 8px solid #2163b1;
  border-right: 10px solid transparent;
  border-top: 10px solid #2163b1;
  border-bottom: 10px solid transparent;
  left: 21px;
  bottom: -23px;
}
.bubble:after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 10px solid #fff;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  border-bottom: 10px solid transparent;
  left: 24px;
  bottom: -13px;
}
.testimonials-card p {
	padding-left:5%;
	padding-right:5%;
	margin:0;
	font-weight: 300;
	font-size: 15px;
}
.divider, .testimonials-pic-div {
	text-align: center;
}
.divider p {
	font-size: 18px;
	font-weight: 900;
	padding-top:8px;
	padding-bottom:8px;
}
.testimonials-pic {
	height: 270px;
	width: 225px;
}
.quote-mark {
	width:25px;
	margin:10px;
}
.quote-right-div {
	text-align: right;
	padding-bottom: 10px;
	padding-right:10px;
}
.quote-left-div {
	text-align: left;
	padding-top: 10px;
	padding-left:10px;
}
.testimonials-graphic {
	position: relative;
	width:90px;
	top:62px;
	border: 4px solid #2163b1;
	border-radius: 50%;
	z-index: 1;
	margin-top: -70px;
}
.testimonials-src {
	font-weight: 900;
	font-size: 14px;
	color: rgb(39, 54, 135);
	padding: 0px 50px 50px 50px;
	text-align: left;
}


/**** privacy page ****/


.privacy-div {
	padding: 5% 25% 10px 20%;  /* top right bottom left */
	font-weight: 300;
}
.privacy-div h2 {
	font-weight: 500;
	font-size: 20px;
	color: darkslategray;
}
.switch-opt {
	padding: 10px 5px 5px 5px; /* top right bottom left */
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: -7px;
  left: 0;
  right: 0;
  bottom: 7px;
  border-radius: 34px;
  background-color: #ccc;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}
input:checked + .slider {
  background-color: rgb(6, 189, 220);
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  -moz-transform: translateX(26px);
  -o-transform: translateX(26px);
  transform: translateX(26px);
}


/*******************************************************/
/******************** MEDIA QUERIES ********************/
/*******************************************************/

/* max-width = from that width down 
   min-width = from that width up */

/* widescreen styles */

@media only screen and (min-width: 4000px) {
	.contact-btn, .learn-more-btn {
		transform: scale(3);
		-webkit-transform: scale(3);
		-moz-transform: scale(3);
		-ms-transform: scale(3);
		-o-transform: scale(3);
	}
	.contact-container {
		margin-left: 4%;
	}
}
@media only screen and (min-width: 3500px) and (max-width: 4000px){
	.contact-btn, .learn-more-btn {
		transform: scale(3);
		-webkit-transform: scale(3);
		-moz-transform: scale(3);
		-ms-transform: scale(3);
		-o-transform: scale(3);
	}
	.contact-container {
		margin-left: 5%;
	}
}

@media only screen and (min-width: 2800px) and (max-width: 3500px) {
	.contact-btn, .learn-more-btn {
		transform: scale(2);
		-webkit-transform: scale(2);
		-ms-transform: scale(2);
		-moz-transform: scale(2);
		-o-transform: scale(2);
	}
	.contact-container {
		margin-left: 3%;
	}
}
@media only screen and (min-width: 1700px) and (max-width: 2800px) {
	.contact-btn, .learn-more-btn {
		transform: scale(1.5);
		-webkit-transform: scale(1.5);
		-ms-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-o-transform: scale(1.5);
	}
	.contact-container {
		margin-left: 2.5%;
	}
}

@media only screen and (min-aspect-ratio: 20/9) {
	.large-logo {
		width: 17vw;
	} 
}

@media only screen and (min-width: 2500px) {
	.testimonials-graphic {
		width: 3.5vw;
	}
	.quote-mark {
		width: 1vw;
	}
	.testimonials-pic {
		width: 10vw;
		height: auto;
	}
}

@media only screen and (min-width: 2000px) {
	.pre-foot {
		height: 450px;
	}
	.left-foot, .center-foot, .right-foot {
		max-height: 450px;
	}
	.word-cloud {
		margin-top: 5%;
	}
}
@media only screen and (min-width: 1500px) {
	.drop-content a {
		font-size: 1vw;
	}
} 



@media only screen and (min-width: 1281px) {
	.small-logo {
		height: 4vw;
	}
	.intro-text {
		padding-right: 60%;
		padding-top: 3%;
	}
	.map h2, .clients h2, .industries h2, .testimonials-sample h2, .about-row h2, .underline-heading h2, .underline-heading h1 {
		font-size: 2vw;
	}
	.services-row h2, .about-row h3 {
		font-size: 1.5vw;
	}
	#tagline, .services-row p, .benefits-col li, .testimonials-sample p, .bullet-content p, .bullet-content li, .testimonials-section p, .section-text-col, .section-text-col h4{
		font-size: 1vw;
	}
	.info-text-col p, .info-text-col li {
		font-size: 0.8vw;
	}
	.star-para {
		font-size: 0.7vw;
	}
	.info-row ul {
		padding-left: 4%;
	}
	.info-top {
		margin-top: 10%;
	}
	.info-icon {
		height: 1.8vw;
	}
	.assist-banner, .benefits-banner {
		height: 20vw;
	}
	.icon {
		height: 6vw;
	}
	.benefits-col {
		border-left: 0.6vw solid;
	}
	.testimonials-col {
		padding: 1%;
	}
	#earth-graphic, #hat-graphic, #trophy-graphic, #hands-graphic {
		width: 34%;
		height: auto;
	}
	#earth-div .shadow, #hat-div .shadow, #trophy-div .shadow, #hidden-trophy-div .shadow,  #hands-div .shadow {
		padding-top: 3vw;
	}
	.shadow {
		width: 13vw;
	}
	#hotel-graphic {
		width: 51%;
		height: auto;
	}
	.learn-more-container {
		padding-left: 25%;
	}
	.flag-div-wide {
		text-align: left;
	}
	#privacy-link {
		bottom: 2vw;
	}
	#privacy-link, #copyright {
		font-size: 1vw;
	}
	.contact-col-right h1 {
		font-size: 3vw;
	}
	.contact-col-right {
		padding: 5%;
	}
	.contact-col-right .info-row {
		margin-top: 2%;
		margin-bottom: 4%;
	}
	.message {
		height: 10vw;
	}
	.submit-btn {
		font-size: 1.2vw;
		padding: 0.8vw 1.6vw;
	}

}

/* smaller screen styles */

@media only screen and (min-height:800px) and (min-width:880px) and (max-width: 1400px) {  
	.intro-text p {
		font-size:2.2vh;
	}
}

@media only screen and (max-width:1216px){
	.horiz-navbar {
		display:none;
	}
	.vert-navbar {
		display:block;
	}
}

@media only screen and (max-width:1060px){
	.name-div, .company-div {
  		width:100%;
  	}
    .company-div {
  		margin-top: 19px;
  	}
  	.left-foot, .center-foot, .right-foot {
  		height: 140px;
  	}
}

@media only screen and (min-height:1000px) and (max-width: 1800px){  /* >=1000px height, <= 1800px width */
    .contact-col-right, .input-box, .message {
  	    font-size: 1.6vw;
    }
}

@media only screen and (min-height:850px) and (max-width: 1600px){  /* >=850px height, <= 1600px width */
    .contact-pic{
  	    height: 68vh;
    }
}

@media only screen and (max-height: 525px) and (min-width: 880px) { /* <=525px height, >=880px width */
	.container {
		min-height: 800px;
	}
}

@media only screen and (max-width:880px), (max-aspect-ratio:3/4){ /* , == or */
  .manage-content {
  	width: 70vw;
  	left: 14%;
  }
  .large-logo {
	padding-top:5px;
	height: 160px;
	width:auto;
  }
  .testimonials-row, .h2-wide, .h3-wide, .flag-div-wide, #hotel-div, #trophy-div {
  	display: none;
  }
  .hidden-testimonials-row, .h2-skinny, .h3-skinny, .flag-div-skinny, .services-row, .services-col, .benefits-row, .benefits-col, #hidden-hotel-div, #hidden-trophy-div {
  	display: block;
  }
  .services-col {
  	width: 100%;
  }
  .container, #slide1, #slide2, #slide3, #slide4 {
  	height: 55vh; 
  }
  #slide1 {
  	background-image: linear-gradient(180deg, rgba(255,255,255,1) 9%, rgba(255,255,255,0) 100%), url('../images/relocation-bottom.jpg');
  }
  #slide2 {
  	background-image: linear-gradient(180deg, rgba(255,255,255,1) 9%, rgba(255,255,255,0) 100%), url('../images/diverse-team-bottom.jpg');
  }
  #slide3 {
  	background-image: linear-gradient(180deg, rgba(255,255,255,1) 9%, rgba(255,255,255,0) 100%), url('../images/english-grammar-bottom.jpg');
  }
  #slide4 {
  	background-image: linear-gradient(180deg, rgba(255,255,255,1) 9%, rgba(255,255,255,0) 100%), url('../images/hotel-staff-bottom.jpg');
  }
  .intro-text {
  	position: relative;
  	padding-top: 40px;
  }
  .intro-text, .services-col {
  	padding-left:10%;
  	padding-right:10%;
  	text-align: center;
  }
  .intro-text p {
  	font-size: 18px;
  }
  .learn-more-container {
  	padding-left: 0;
  	position: inherit;
  }
  .contact-container {
  	position: inherit;
  }
  .service-img {
  	width:55vw;
  }
  .video-div {
  	padding-left: 5%;
  	padding-right: 5%;
  }
  .map-img {
  	max-width: 100%;
  	height: auto;
  }
  .map h2, .clients h2, .industries h2, .testimonials-sample h2 {
  	font-size: 25px;
  }
  .assist-txt, .benefits-txt{
  	font-size: 50px;
  }
  .benefits-col {
  	border-left: 0px solid;
  	border-bottom: 8px solid;
  	border-image-source: linear-gradient(90deg, rgba(6,189,220,1) 0%, rgba(0,75,165,1) 100%);
  }
  .benefits-col, .section-pic-col, .section-text-col{
    width:100%;
    padding-bottom: 20px;
    padding-left:0px;
  }
  .first {
  	margin:0px 40px 0px 40px; /* top right bottom left */
  }
  .section {
  	margin:30px 40px 0px 40px ; /* top right bottom left */
  }
  .underline-div {
	margin-top:60px;
  }
  .section-pic-col, .section-text-col h4 {
  	text-align: center;
  }
  .front-rect {
  	position: relative;
  }
  .back-rect {
  	height:200px;
  	width:300px;
  	top: -180px;
  	right:25px;
  	margin-left:auto;
  	margin-right:auto;
  	margin-bottom:-170px;
  }
  .section-img {
  	width:300px;
  }
  .info-pic-col {
  	width:35%;
  	text-align:right;
  	padding-right:15px;
  }
  .info-text-col {
  	width:65%;
  	text-align:left;
  	padding-left:10px;
  }
  .cloud {
  	width: 100%;
  }
  #earth-div, #hidden-hotel-div, #hat-div, #hidden-trophy-div, #hands-div {
  	width:100%;
  }
  #earth-graphic, #hat-graphic, #trophy-graphic, #hands-graphic {
  	height: 160px;
  }
  #hotel-graphic {
  	height: 240px;
  }
  .shadow {
  	width:180px;
  }
  .about-us-row {
  	padding: 60px 10px 60px 10px; /* top right bottom left */
  }
  .about-us-row h3 {
  	font-size: 3vw;
  	margin-top: -45px;
	height: 50px;
  }
  .bullet-content {
  	padding: 4%;
  }
  .bullet-content ul {
  	padding-left: 5%;
  }
  .half-col {
  	width:78%;
  	margin-left:11%;
  	margin-top:80px;
  }
  .contact-col-right, .input-box, .message {
  	font-size: 15px;
  }
  .contact-form label {
  	padding-right: 100%;
   }
}

@media only screen and (max-width:600px) {
	.left-foot{
	  	width:100%;
	}
	.industry-col {
  		width:50%;
  	}
	#hidden-privacy-link, #hidden-copyright {
		display: block;
	}
	.center-foot, .right-foot, .bottom-row{
		display:none;
	}
	.left-foot-txt p {
		font-size: 10px;
	}
	.footer-icon {
		width:20px;
	}
  	.clients {
  		padding-left:10px;
  		padding-right:10px;
  	}
  	.about-us-row h3 {
  		font-size: 18px;
  	}
}

@media only screen and (max-aspect-ratio:73/100), (max-width: 550px){
	.contact-col-left, .contact-col-right {
  	    width:100%;
  	    max-width: 100vw;
    }
    .typing-font{
  	    font-size:10vw;
    }
    .laptop-img {
    	width:40vw;
    }
    .contact-pic {
    	height: 100vh;
    }
    .privacy-div {
    	padding-right: 5%;
    	padding-left: 10%;
    }
}

@media only screen and (max-width:550px) {
    .underline-heading h2, .underline-heading h1 {
    	font-size: 8vw;
    }
    .about-row h2 {
  		font-size: 20px;
  	}
  	.about-row h3 {
  		font-size: 15px;
  	}
  	.assist-txt{
  		font-size: 9vw;
  	}
  	.benefits-txt {
  		font-size: 8vw;
  	}
}

@media only screen and (max-width: 420px) {
	.section, .first {
	  	margin-left: 5px;
	  	margin-right: 5px;
  	}
    .consent-div {
    	text-align: center;
    	padding-right: 0;
    }
    #accept, #manage {
    	margin-top:5px;
    }
    .manage-content {
    	width: 94vw;
    	left: 3%;
    }
}
