:root {
    --Main-Orange: #df6c47;
    --Main-Dark: #34323d;
    --Main-Grey: rgb(231 239 255 / 40%);
    --Main-Light: #9693a1;
}

body{
    background-color: #fff;
    margin: 0px;
    width: 100vw;
    height: fit-content;
    color: var(--Main-Dark);
	font-family: 'Avenir Next Pro Heavy', sans-serif;
	overflow-x: hidden;
	overflow-y: scroll;
}

.hidden{
	display: none!important;
}

::-webkit-scrollbar {
  width: 15px;
}
 
::-webkit-scrollbar-thumb {
	background: var(--Main-Dark); 
}

::-webkit-scrollbar-thumb:hover{
	background: var(--Main-Orange); 
}

::-webkit-scrollbar-track {
  background: #bbbdc4;; 
}

.cky-show-desc-btn{
	color: var(--Main-Orange) !important;
}

.mainTitle{
	font-weight: 600;
    font-size: 3em;
    color: var(--Main-Dark);
    text-align: center;
	line-height: 1.2;
}

.subTitle{
	font-weight: 600;
    font-size: 2.5em;
    color: var(--Main-Dark);
	line-height: 1.2;
}

.bodyText{
    font-weight: 500;
    font-size: 1.2em;
    color: var(--Main-Dark);
}


.cta .box{
	z-index:20;
	position: relative;
    width: 200px;
    background: var(--Main-Dark);
    color: #fff;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0px 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.cta .box div i{
    color: var(--Main-Orange);
}

.cta .box div{
    font-weight: 600;
    font-size: 1.4em;
}

.cta.left{
    margin: 0px !important;
}

.cta .box:hover{
	background: var(--Main-Light);
}

.pointer:hover{
	cursor: pointer;
}

.cta.centered .box{
	margin: 0px auto;
}

.pageRow{
	display: flex;
	justify-content: center;
    align-items: center;
	height: 100%;
	width: 100%;
}

.pageCol{
	height: 100%;
}

.textCenter{
	text-align: center;
}

.orangeText{
	color: var(--Main-Orange);
}

section{
	width: 100vw;
	overflow: hidden;
}


@media only screen and (max-width: 1240px) {	
	.cta .box {
		width: fit-content;
	}
	.cta .box div i{
		margin-left: 10px;
	}
	
	.mainTitle{
		font-size: 2.5em
	}
	.subTitle{
		font-size: 2em
	}

}




@media only screen and (max-width: 900px) {
	.pageRow{
		flex-direction: column;
	}
}