*{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.stage_width{
    width: 1200px;
}

.margin0auto{
    margin: 0 auto;
}

#main {
	overflow-x: hidden;
}

.hide{
    display: none;
}

h1,h2,h3,a,p,ul,li{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-weight: normal;
}

.table > :not(caption) > * > *{
    padding: 0;
}

h1 {
	font-size: 32px;
	line-height: 36px;
	margin-bottom: 22px;
}

h2 {
	font-size: 26px;
	line-height: 30px;
	margin-bottom: 15px;
}

h3 {
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 14px;
}

body, p, a, li {
	font-size: 15px;
	line-height: 26px;
	letter-spacing: 0.1px;
}

.w30{
    width: 30%;
}

.w50{
    width: 50%;
}

.w60{
    width: 60%;
}

.w65{
    width: 65%;
}

.w70{
    width: 70%;
}

.w75{
    width: 75%;
}

.w100{
    width: 100%;
}

.pointer{
    cursor: pointer;
}

.marginauto{
    margin-left:auto;
    margin-right: auto;
}

.trns{
	transition: all 0.2s;
}

.centered_content{
    text-align: center;
}

.table{
    display: table;
}

.text_wrapper {
	max-width: 800px;
	padding-bottom: 30px;
}

.padding_bottom_120,.strip.padding_bottom_120{
    padding-bottom: 120px;
}

.flex {
    display: flex;
}

.flex-row{
    flex-flow: row;
}

.flex-row.mirror{
    flex-flow: row-reverse !important;
}

.flex-column{
    flex-flow: column;
}

.flex-column.mirror{
    flex-flow: column-reverse !important;
}

.grid{
    display: grid;
}

.grid2{
    grid-template-columns: 1fr 1fr;
}

.grid3{
    grid-template-columns: 1fr 1fr 1fr;
}
.grid4{
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid5{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid21{
    grid-template-columns: 2fr 1fr;
}

.mirror.grid21{
    grid-template-columns: 1fr 2fr;
}

.gap0{
    gap: 0;
}

.gap10{
    gap: 10px;
}

.gap20{
    gap: 20px;
}

.grid_mobile2{

}

.float_left{
    float: left;
}

.float_right{
    float: right;
}

.only_mobile{
	display: none;
}

.white_bg{
    background-color: white;
}

.black_bg{
    background-color: black;
}

.grey_bg{
    background-color: #f4f1ec;
}

.white_text{
    color:white;
}

.black_text{
    color:black;
}

.relative{
    position: relative;
}

.h100{
    height: 100vh;
}

.h50{
    height: 50vh;
}

.h25{
    height: 25vh;
}

a.white_border_b {
	border: 1px solid #fff;
	color: #fff;
	padding: 10px 25px;
	margin-top: 30px;
}

a.white_border_b:hover {
	background-color: #fff1;
}




.overlay_wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0009;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
}

.overlay_content {
	background: #fff;
	text-align: center;
	padding: 35px;
	width: 510px;
	max-width: 90%;
	border-radius: 30px;
}

.overlay_x {
	font-size: 19px;
	margin: 30px auto 0;
	background-color: #f4b407;
	display: table;
	padding: 10px 48px;
	border-radius: 5px;
	cursor: pointer;
}

.top_strip {
	height: 500px;
	overflow: hidden;
}

img{
    /*width: 100%;
    height: auto;*/
}

.top_strip img {
	height: 100%;
	object-fit: cover;
}

/*
.slick-arrow {
	font-size: 0;
	border: none;
	background: #0008;
	width: 30px;
	height: 100px;
	position: absolute;
	z-index: 20;
	top: 35%;
	left: 0;
}

.slick-arrow::after {
	content: "";
	width: 1px;
	height: 30px;
	background: #fff;
	display: table;
	transform: rotate(20deg);
	position: absolute;
	top: 21px;
	left: 13px;
}

.slick-arrow::before {
	content: "";
	width: 1px;
	height: 30px;
	background: #fff;
	display: table;
	transform: rotate(-20deg);
	position: absolute;
	left: 13px;
	bottom: 21px;
}

.slick-next.slick-arrow {
	transform: scaleX(-1);
	right: 0;
	left: auto;
}
*/

.scroll_fx_up.show{

}


/***********************************************************************************/
/***************************** **** MOBILE *****************************************/
/***********************************************************************************/

@media screen and (orientation: portrait) {
    /* Styles for portrait mode here */

    body, p, a, li {
        font-size: 13px;
        line-height: 23px;
    }

    .stage_width{
        width: 100%;
    }

    .only_mobile{
        display: block;
    }
    .only_desktop{
        display: none;
    }

    .grid{
        grid-template-columns: 1fr;
    }

    .grid_mobile2{
        grid-template-columns: 1fr 1fr;
    }

    .gap0{
        gap: 0;
    }
    
    .gap10{
        gap: 2px;
    }
    
    .gap20{
        gap: 5px;
    }

    .padding5{
        padding:5%;
    }

    .w100_mobile{
        width: 100%;
    }

    .h100_mobile{
        height: 100vh;
    }
    
    .h50_mobile{
        height: 50vh;
    }




}