/*GENERIC CLASSES*/

@font-face {
  font-family: Montserrat-Italic;
  src: url("../fonts/Montserrat-Italic.ttf");
}

@font-face {
  font-family: Montserrat-Light;
  src: url("../fonts/Montserrat-Light.ttf");
}

@font-face {
  font-family: Montserrat-LightItalic;
  src: url("../fonts/Montserrat-LightItalic.ttf");
}

@font-face {
  font-family: Montserrat-Medium;
  src: url("../fonts/Montserrat-Medium.ttf");
}

@font-face {
  font-family: Montserrat-MediumItalic;
  src: url("../fonts/Montserrat-MediumItalic.ttf");
}

@font-face {
  font-family: Montserrat-Regular;
  src: url("../fonts/Montserrat-Regular.ttf");
}

@font-face {
  font-family: Montserrat-SemiBold;
  src: url("../fonts/Montserrat-SemiBold.ttf");
}

@font-face {
  font-family: Montserrat-Thin;
  src: url("../fonts/Montserrat-Thin.ttf");
}

@font-face {
  font-family: Montserrat-ThinItalic;
  src: url("../fonts/Montserrat-ThinItalic.ttf");
}



html, body {
	margin: 0px;
	padding: 0px;
	background: #343538;snow
	color: white;
	font-family: 'Montserrat-Light', sans-serif;
	font-size: 13px;
	scroll-behavior: smooth;
}

#anchor {
	height: 60px;
	display: block;
}

@media only screen and (max-width: 750px) {
	#anchor {
		height: 55px;
	}
}




.heroTitle {
	text-transform: uppercase;
	font-size: 20px;
	letter-spacing: 3px;
	color: red;
	font-family: 'Montserrat-Regular', Sans-serif;
	padding: 16px 40px;
	background-color: white;
	position: absolute;
	bottom: 225px;
	left: 4%
}

.heroSubtitle1 {
	position: absolute;
	bottom: 98px;
	font-size: 40px;
	letter-spacing: 2px;
	color: white;
	line-height: 54px;
	font-family: 'Montserrat-Regular', Sans-serif;
	left: 4%
}

.heroSubtitle2 {
	position: absolute;
	bottom: 50px;
	font-size: 30px;
	letter-spacing: 3px;
	color: white;
	font-family: 'Montserrat-ThinItalic', Sans-serif;
	left: 4%
}

@media only screen and (max-width: 450px) {
	.heroTitle {
		font-size: 17px;
		padding: 14px 35px;
		bottom: 200px;
	}
	
	.heroSubtitle1 {
		font-size: 29px;
		bottom: 83px;
		line-height: 45px;
	}
	
	.heroSubtitle2 {
		font-size: 25px;
		bottom: 40px;
	}
}






/*HEADER & IT'S MENUS*/


#header {
	width: 100%;
	background-color: #252628;
	height: 60px;
	transition: 0.3s;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}

.headerDesktop {
	width: 92%;
	height: 100%;
	margin: auto;
	display: block;
}

.logo {
	width: 120px;
	float: left;
	margin-top: 10px;
	padding-top: 7px;
}

.navbar {
	float: right;
	padding-top: 10px;
	letter-spacing: 1px;
}

.navGeneral {
	display: inline-block;
	margin-right: 35px;
	color: white;
	cursor: pointer;
	text-decoration: none;
	transition: 0.2s;
	font-family: 'Montserrat-Medium', sans-serif;
	font-size: 14px;
	background-color: transparent;
	outline: 0;
	border: 0;
}

.navGeneral:hover {
	color: #80b9db;
}

.contactDot {
	display: none;
	width: 6px;
	height: 6px;
	background-color: #80b9db;
	border-radius: 100px;
	margin: auto;
	margin-top: 5px;
}

.quote {
	display: inline-block;
	margin-top: 4px;
	background-color: #80b9db;
	padding: 8px 23px;
	border-radius: 7px;
	color: white;
	cursor: pointer;
	text-decoration: none;
	transition: 0.2s;
	border: none;
	outline: none;
	font-family: 'Montserrat-Medium', sans-serif;
	font-size: 14px;
}

.quote:hover {
	color: #252628;
}

.iconContact {
	background-image: url("../Images/IconContactGrey.png");
}

.iconContact:hover {
	background-image: url("../Images/IconContactWhite.png");
}

.iconQuote {
	background-image: url("../Images/IconQuoteGrey.png");
	width: calc(92% - 200px);
	min-width: 100px;
	background-repeat: no-repeat;
	background-position: center left;
	padding: 18px 0px 18px 35px;
	margin: 0 4%;
	text-align: left;
	background-size: 17px;
	transition: 0.2s;
}

.iconQuote:hover {
	background-image: url("../Images/IconQuoteWhite.png");
}







.headerMobile {
	width: 92%;
	height: 55px;
	margin: auto;
	display: none;
	padding: 0 4%;
	background-color: #252628;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 110;
}

.burgerIcon {
	border: 0;
	margin: 0;
	padding: 0;
	outline: 0;
	background-color: #252628;
	float: right;
	line-height: 9px;
	margin-top: 17px;
	cursor: pointer;
}

#closeBurger {
	pointer-events: none;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: none;
	position: absolute;
	top: 10px;
	right: calc(4% - 5px);
	width: 35px;
	height: 35px;
	cursor: pointer;
}

.burgerLine {
	transition: 0.2s;
	height: 3px;
	background-color: white;
	border-radius: 100px;
	float: right;
}

#topBurgerLine {
	width: 21px;
}

#midBurgerLine {
	width: 23px;
}

#bottomBurgerLine {
	width: 19px;
}



#burgerMenu {
	opacity: 0;
	display: none;
	position: fixed;
	top: calc(-100vh + 55px);
	left: 0;
	width: 100vw;
	background-color: #343538;
	height: calc(100vh + 100px);
	z-index: 105;
	transition: 0.3s;
}

.navMobileMenu {
	display: block;
	font-family: 'Montserrat-Medium', sans-serif;
	font-size: 16px;
	text-decoration: none;
	color: white;
}

.navMobileQuote {
	display: block;
	font-family: 'Montserrat-Medium', sans-serif;
	font-size: 16px;
	text-decoration: none;
	color: white;
	background: none;
	border: 0;
	outline: 0;
	width: 100vw;
	margin: 0;
	padding: 0;
}

.mobileMenuIcons {
	width: calc(92% - 200px);
	background-repeat: no-repeat;
	background-position: center left;
	padding: 18px 0px 18px 35px;
	margin: 0 4%;
	text-align: left;
	background-size: 17px;
	transition: 0.2s;
}


.mobileMenuBar {
	position: fixed;
	bottom: 20px;
	left: 4%;
	width: 92%;
	text-align: left;
	border-top: 2px solid #5e5f63;
}

.burgerFooter {
	position: fixed;
    bottom: 20px;
	height: 19px;
    right: 4%;
    display: block;
}

.burgerFooterMob {
	position: fixed;
    bottom: 16px;
	height: 30px;
    right: 4%;
    display: none;
}

@media only screen and (max-width: 500px) {

    .burgerFooter {
    	display: none;
    }

    .burgerFooterMob {
    	display: block;
    }
}





@media only screen and (max-width: 750px) {
	#header {
		height: 55px;
		background-color: #343538;
	}
	
	.headerDesktop {
		display: none;
	}
	
	.headerMobile {
		display: block;
	}
	
	#burgerMenu {
		display: block;
	}
	
	.logo {
		width: 120px;
		margin-top: 8px;
	}
}













/*QUOTE FORM STYLING*/

#getQuotePopup {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	pointer-events: none;
}
	
#getQuoteBLACK {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: black;
	transition: 0.4s;
	opacity: 0;
}
	
#getQuoteFORM {
	width: 90vw;
	max-width: 450px;
	height: 600px;
	position: fixed;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 13px;
	background-color: white;
	transition: 0.2s;
	opacity: 0;
	text-align: center;
}

#closeQuoteForm {
	width: 25px;
	height: 25px;
	position: absolute;
	top: 5%;
	right: 6%;
	cursor: pointer;
	outline: 0;
	border: 0;
	background-image: url("../Images/closeFormCross.png");
	background-repeat: no-repeat;
	background-size: 13px;
	background-position: center;
}

::placeholder {
  color: #252628;
}

.formUnderline {
	margin-bottom: 35px;
}
	
.formTitle {
	color: #252628;
	margin-top: 11%;
}

.formText {
	margin-bottom: 25px !important;
}

.selectContainer {
	border: none;
	background-color: #E9EAEA;
	outline: 0;
	color: #252628;
	padding: 0;
	height: 40px;
	width: 90%;
	margin: auto;
	margin-bottom: 0px;
	border-radius: 6px;
}

.FORMdefaults {
	margin-top: 20px;
	margin-left: 5%;
	height: 40px;
	border-radius: 6px;
	border: 0;
	float: left;
	background-color: #E9EAEA;
	color: #252628;
	outline: 0;
	padding: 0px 20px;
	font-size: 13px;
	font-family: 'Montserrat-Light', sans-serif;
}

.serviceSelect {
	border: none;
	background-color: transparent;
	outline: 0;
	color: #252628;
	padding: 0;
	margin: auto;
	height: 40px;
	width: calc(100% - 26px);
	font-size: 13px;
	font-family: 'Montserrat-Light', sans-serif;
}

.FORMname {
	width: calc(45% - 50px);
}
	
.FORMsurname {
	width: calc(45% - 50px);
	margin-left: 20px;
}

.FORMemail {
	width: calc(90% - 40px);
}

.FORMmessage {
	width: calc(90% - 40px);
	height: 80px;
	resize: none;
	padding-top: 20px;
}

.submitFormButton {
	background-color: transparent;
	border: 2px solid #80b9db;
	cursor: pointer;
	position: absolute;
	bottom: 35px;
	left: 50%;
	transform: translate(-50%, 0);
	outline: 0;
}

.submitFormButton:hover {
	background-color: #80b9db;
}


@media only screen and (max-width: 750px) {
	#getQuoteFORM {
		height: 620px;
	}
	
	.FORMdefaults {
		margin-top: 15px;
	}
	
	.FORMname {
		width: calc(90% - 40px);
	}
	
	.FORMsurname {
		width: calc(90% - 40px);
		margin-left: 5%;
	}
	
	.submitFormButton {
		bottom: 25px;
	}
}























/*FOOTER & ITS MENUS*/



#footer {
	width: 100%;
	background-color: #252628;
	height: 110px;
	transition: 0.3s;
	display: block;
	position: relative;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.topFooter {
	width: 100%;
	height: 65px;
	margin: auto;
	background-color: #343538;
	display: block;
}

.topContent {
	width: 92%;
	height: 100%;
	margin: auto;
}

.bottomContent {
	width: 92%;
	margin: auto;
}

.copyright {
	float: left;
	opacity: 0.3;
	margin-top: 14px;
    color: white;
    opacity: 0.3;
}

.iconFooter {
	float: right;
	height: 19px;
	margin-top: 14px;
	display: block;
    pointer-events: all;
}

.toTop {
	margin: auto;
	width: 30px;
	height: 30px;
	position: absolute;
	right: calc(50% - 30px);
	bottom: 30px;
	background-color: #80badc;
	text-align: center;
	border-radius: 6px;
	text-decoration: none;
    transition: 0.2s;
}

.toTop:hover {
	background-color: white;
}

.footerChevron {
	width: 14px;
	margin-top: 11px;
}

.footerIcon {
	width: 20px;
	display: inline-block;
	text-decoration: none;
	height: 19px;
	margin-right: 28px;
	margin-top: 22px;
	transition: 0.2s;
}

.mailIcon {
	background-image: url("../Images/IconMail.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.3;
}

.skypeIcon {
	background-image: url("../Images/IconSkype.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.3;
	cursor: pointer;
}

.termsIcon {
	background-image: url("../Images/IconTerms.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.3;
}

.footerText {
	position: absolute;
	top: 24px;
	left: 230px;
	transition: 0.2s;
	pointer-events: none;
    color: white;
}

.mailText {
	opacity: 0;
}

.skypeText {
	opacity: 0;
}

.termsText {
	opacity: 0;
}




.mailIcon:hover {
	opacity: 1;
}

.mailIcon:hover ~ .mailText {
	opacity: 1;
}

.skypeIcon:hover {
	opacity: 1;
}

.skypeIcon:hover ~ .skypeText {
	opacity: 1;
}

.termsIcon:hover {
	opacity: 1;
}

.termsIcon:hover ~ .termsText {
	opacity: 1;
}



@media only screen and (max-width: 750px) {
	.topFooter {
		display: none;
	}
	
	#footer {
		height: 45px;
	}
	
	.iconFooter {
		display: none;
        pointer-events: none;
	}
	
	.toTop {
		bottom: 7px;
		right: 4%;
	}
	
	.footerIcon {
		margin-right: 24px;
		margin-top: 22px;
	}
	
	.footerText {
		left: 0;
		top: -41px;
		font-size: 15px;
		font-family: 'Montserrat-Regular', sans-serif;
	}
}








/*MAIN CONTENT CLASSES*/



#content {
	width: 100vw;
	min-height: calc(100vh - 60px - 110px);
	border: 0;
	padding: 0;
	margin: 0;
	outline: 0;
	background: none;
}




.heroBanner {
	width: 100vw;
	margin: auto;
	background-color: #343538;
	background-size: cover;
	background-position: 50% 85%;
	background-repeat: no-repeat;
	position: relative;
}

.homeHero {
	top: 0;
	height: 30vh;
	min-height: 400px;
	max-height: 500px;
	background-image: url("../Images/homeHero.jpeg");
}

.snow {
	filter: blur(2px);
	opacity: 0.6;
	pointer-events: none;
	position: absolute;
	z-index: 50;
	top: 60px;
	left: 0;
	width: 100vw;
	height: calc(100vh - 60px);
}

.bigLogo {
	display: block;
	width: 60vw;
	max-width: 500px;
	position: absolute;
	bottom: 5vw;
	left: 5%;
    transform: translate(0, 0);
}

.scrollIcon {
	width: 40px;
	position: absolute;
	bottom: 200px;
	left: 50%;
    transform: translate(-50%, 0);
}

.scrollBtn.disabled {
    display: none;
    text-decoration: none;
}

.scrollBtn.disabled:hover {
        animation-duration: 2s;
        animation-timing-function: linear;
        animation-iteration-count: 1;
        animation-name: wiggle;
    }

@keyframes wiggle {
  0% { transform: translate(0, 1px); }
  10% { transform: translate(0, -1px); }
  20% { transform: translate(0, 3px); }
  30% { transform: translate(0, -3px); }
  40% { transform: translate(0, 6px); }
  50% { transform: translate(0, -6px); }
  60% { transform: translate(0, 3px); }
  70% { transform: translate(0, -3px); }
  80% { transform: translate(0, 1px); }
  90% { transform: translate(0, -1px); }
  100% { transform: translate(0, 0); }
}



#anchorHome {
    
}




@media only screen and (max-width: 750px) {
	/*homeHero {
		padding-top: calc(100vh - 55px);
	}*/

    .snow {
    	top: 55px;
    }
    
    .bigLogo {
    	width: 80vw;
    	bottom: 100px;
    	left: 50%;
        transform: translate(-50%, 0);
    }
        /*display: none;
	}
    
    .scrollBtn.disabled {
        display: block;
    }*/
	
	#content {
		min-height: calc(100vh - 55px - 45px);
	}
}









.sectionContainer {
	width: 100vw;
	padding: 60px 0;
	text-align: center;
}

.whoWeAreContainer {
	background-color: #343538;
}

.whatWeDoContainer {
	background-color: white;
}






.sectionTitle {
	font-family: 'Montserrat-Regular', sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 5px;
}

@media only screen and (max-width: 400px) {
	.sectionTitle {
		font-size: 17px;
		letter-spacing: 4px;
	}
}

.titleUnderline {
	height: 3px;
	width: 50px;
	margin: 13px auto 45px;
}

.underlineHome {
	background-color: #80b9db;
}

.sectionBody {
	font-family: 'Montserrat-Light', sans-serif;
	font-size: 13px;
	line-height: 23px; 
	width: 90%;
	max-width: 750px;
	margin: auto;
	color: #8b8d90;
}

.clientsTrustContainer {
	background-color: white;
}

.clientCarousel {
	background-image: url("../Images/clientsDesktop.gif");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	max-width: 1250px;
	margin: auto;
	height: 11vw;
	max-height: 135px;
}

@media only screen and (max-width: 700px) {
	.clientCarousel {
		background-image: url("../Images/clientsMobile.gif");
		height: 44vw;
		max-height: 305px;
	}
}





.buttonSpacer {
	margin-top: 70px;
}

.allButtons {
	padding: 8px 30px 9px;
	border-radius: 7px;
	text-decoration: none;
	font-size: 13px;
	transition: 0.2s;
	font-family: 'Montserrat-Regular', sans-serif;
	outline: 0;
	cursor: pointer;
}

.homeButton {
	border: 2px solid #80b9db;
	color: white;
	background-color: transparent;
}

.homeButton:hover {
	color: #252628;
	background-color: #80b9db;
}

.infoButton {
	border: 2px solid #80b9db;
	color: #252628;
	background-color: transparent;
}

.infoButton:hover {
	color: #252628;
	background-color: #80b9db;
}

.TsAndCsContainer {
	color: black;
	width: 90%;
	max-width: 800px;
	margin: auto;
	padding-bottom: 60px;
}




.infoText {
	width: 100%;
	max-width: 220px;
	margin: auto;
    line-height: 20px;
}

.servicesInfoContainer {
	width: 92%;
	max-width: 900px;
	color: #8B8D90;
	margin: auto;
}

.servicesBigIcons {
	height: 100px;
}

.servicesInfo {
	display: inline-block;
	width: 32%;
	vertical-align: top;
    text-align: left;
    position: relative;
}

.infoTextDot {
    display: inline-block;
    margin-right: 7px;
    height: 4px;
    width: 4px;
    border-radius: 100px;
    margin-bottom: 2px;
}

@media only screen and (max-width: 800px) {
	.servicesInfo {
		display: block;
		width: 100%;
	}
}






.arcticInfoSection {
	background-color: white;
}

.arcticTextTitle {
	color: #252628;
}

.arcticInfoSection {
	background-color: white;
}

.arcticInfo1 {
	margin-bottom: 0;
}

.arcticInfo2 {
	margin-bottom: 0;
}

.arcticInfo3 {
	margin-right: 0;
}

.infoDotArctic {
    background-color: #80BADC;
}

@media only screen and (max-width: 800px) {
    .arcticInfo1 {
		margin-bottom: 60px;
	}
	
	.arcticInfo2 {
		margin-bottom: 60px;
	}
}






















/*QUOTE LEAD PAGES*/

.formLeadLayout {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 25vh;
	min-height: 250px;
	text-align: center;
}

.leadTextPositive {
	width: 100%;
	max-width: 250px;
}

.leadTextNegative {
	width: 100%;
	max-width: 360px;
}

.formLeadTitle {
	color: #252628;
	margin-bottom: 25px;
}

.formLeadPositiveIcon {
	background-image: url("../Images/formLeadPositive.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 20px;
	width: 29px;
	margin: auto;
	margin-bottom: 60px;
}

.formLeadNegativeIcon {
	background-image: url("../Images/formLeadNegative.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 20px;
	width: 29px;
	margin: auto;
	margin-bottom: 60px;
}

.leadButton {
	border: 2px solid #80b9db;
	color: #252628;
	outline: 0;
	background-color: transparent;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	cursor: pointer;
}

.leadButton:hover {
	background-color: #80b9db;
}









/*CONTACT PAGE*/

.contactHero {
	background-image: url("../Images/contactHero.png");
	height: 30vh;
	min-height: 400px;
	max-height: 500px;
	background-position: 70% 50%;
	position: relative;
}

.contactSectionContainer {
	background-color: #343538;
	text-align: center;
}


.heroTitleContact {
	color: #80b9db;
}







.infoContainer {
	margin: auto;
	width: 450px;
	color: #8B8D90;
	height: 225px;
}

.addressInfo {
	float: left;
	margin-bottom: 0;
}

.contactInfo {
	float: right;
}

@media only screen and (max-width: 600px) {
	.infoContainer {
		width: 100%;
		height: 510px;
	}
	
	.addressInfo {
		float: none;
		margin-bottom: 60px;
	}
	
	.contactInfo {
		float: none;
	}
}

.infoBigIcon {
	margin-bottom: 28px;
	width: 88px;
}

.infoTextTitle {
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 3px;
	font-family: 'Montserrat-Medium', Sans-serif;
    margin: auto;
    width: 100%;
    max-width: 220px;
	margin-bottom: 15px;
}

.infoTextIcon {
	margin: auto;
	width: 100%;
	max-width: 220px;
	margin-bottom: 20px;
}

.contactInfoText {
	line-height: 25px;
}

.contactInfoText {
	display: block;
}

.contactInfoIcon {
	height: 12px;
	margin-right: 15px;
}






.contactFormContainer {
	width: 92%;
	max-width: 650px;
	margin: 60px auto 0;
}




.contactFormSec1 {
	display: inline-block;
	width: calc(50% - 20px);
	text-align: left;
	height: 150px;
	vertical-align: text-bottom;
}

.contactFormSec2 {
	display: inline-block;
	width: calc(50%);
	text-align: right;
	height: 150px;
	vertical-align: text-bottom;
}








.FORMcontactDefaults {
	height: 40px;
	border-radius: 6px;
	border: 0;
	background-color: #E9EAEA;
	color: #252628;
	outline: 0;
	padding: 0px 20px;
	font-size: 13px;
	font-family: 'Montserrat-Light', sans-serif;
}





.FORMcontactName {
	width: calc(100% - 50px);
	margin-bottom: 15px;
}
	
.FORMcontactSurname {
	width: calc(100% - 50px);
	margin-bottom: 15px;
}

.FORMcontactEmail {
	width: calc(100% - 50px);
}

.FORMcontactMessage {
	width: calc(100% - 50px);
	height: calc(100% - 40px);
	resize: none;
	padding: 20px;
}




.contactFormButtonSpacing {
	margin-top: 30px;
}

.submitContactFormButton {
	background-color: transparent;
	border: 2px solid #80b9db;
	cursor: pointer;
	outline: 0;
	color: white;
}

.submitContactFormButton:hover {
	background-color: #80b9db;
	color: #252628;
}





@media only screen and (max-width: 600px) {
	.contactFormSec1 {
		display: block;
		width: 100%;
	}
	
	.contactFormSec2 {
		display: block;
		width: 100%;
		text-align: left;
	}

	.FORMcontactMessage {
		margin-top: 15px;
	}
	
	.contactFormButtonSpacing {
		margin-top: 50px;
	}
}








.mapContainer {
	height: 40vh;
	min-height: 300px;
	max-height: 700px;
	background-color: #5D7B92;
}







.infoText {
	width: 100%;
	max-width: 220px;
	margin: auto;
    line-height: 20px;
}

.servicesInfoContainer {
	width: 92%;
	max-width: 900px;
	color: #8B8D90;
	margin: auto;
}

.servicesBigIcons {
	height: 100px;
}

.servicesInfo {
	display: inline-block;
	width: 32%;
	vertical-align: top;
    text-align: left;
    position: relative;
}

@media only screen and (max-width: 750px) {
	.servicesInfo {
		display: block;
		width: 100%;
	}
}








/*HOME BANNERS*/
.arcticBanner {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 50vh;
    max-height: 350px;
    width: 100%;
}

.homeBanner1 {
    background-image: url("../Images/homeBanner2.jpg");
}

.homeBanner2 {
    background-image: url("../Images/homeBanner1.jpg");
}










