/* Fonts Include  */
@font-face {
    font-family: 'font200';
        src: url('../fonts/ALMARAI-LIGHT.eot?#iefix') format('embedded-opentype'),  
        url('../fonts/ALMARAI-LIGHT.woff') format('woff'), 
        url('../fonts/ALMARAI-LIGHT.ttf')  format('truetype'), 
        url('../fonts/ALMARAI-LIGHT.svg#ALMARAI-LIGHT') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'font400';
        src: url('../fonts/ALMARAI-REGULAR.eot?#iefix') format('embedded-opentype'),  
        url('../fonts/ALMARAI-REGULAR.woff') format('woff'), 
        url('../fonts/ALMARAI-REGULAR.ttf')  format('truetype'), 
        url('../fonts/ALMARAI-REGULAR.svg#ALMARAI-REGULAR') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'font700';
        src: url('../fonts/ALMARAI-BOLD.eot?#iefix') format('embedded-opentype'),  
        url('../fonts/ALMARAI-BOLD.woff') format('woff'), 
        url('../fonts/ALMARAI-BOLD.ttf')  format('truetype'), 
        url('../fonts/ALMARAI-BOLD.svg#ALMARAI-BOLD') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'font900';
        src: url('../fonts/ALMARAI-EXTRABOLD.eot?#iefix') format('embedded-opentype'),  
        url('../fonts/ALMARAI-EXTRABOLD.woff') format('woff'), 
        url('../fonts/ALMARAI-EXTRABOLD.ttf')  format('truetype'), 
        url('../fonts/ALMARAI-EXTRABOLD.svg#ALMARAI-EXTRABOLD') format('svg');
    font-weight: normal;
    font-style: normal;
}



/*  Start General  */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'font400', sans-serif;
}
.btn,a{
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
:root {
    --mainColor: #585858;
    --redColor: #ef5d9f;
    --blueColor: #000;
   
    --trans: all 0.4s ease-in-out;
    --fontL: 'font200', sans-serif;
    --fontR: 'font400', sans-serif;
    --fontM: 'font700', sans-serif;
    --fontS: 'font900', sans-serif;
}

body, html {
    margin: 0px;
    padding: 0px;
    background-color: #FFFFFF;
    font-family: 'font400', sans-serif;
    /*font-size: 22px;*/
    font-size: 20px;
    color: var(--mainColor);
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale

}

body {
    overflow-x: hidden;
    position: relative;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
}
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    /* font-weight: 900; */
    font-weight: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
[type=email], [type=file], [type=number], [type=password], [type=tel], [type=url], code, samp, var{
    direction: rtl;
    text-align: right;
}
/* Loader */
.pre-loader{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgb(0 129 252 / 71%);
}

.loader {
    -webkit-filter: url("#goo");
    filter: url("#goo");
    position: absolute;
    width: 500px;
    height: 100px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
}
.loader::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    margin: 0 auto;
    position: absolute;
    top: 25px;
    left: 225px;
    -webkit-animation: scale 2.5s ease-in-out infinite;
    animation: scale 2.5s ease-in-out infinite;
}
.loader div {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff;
    top: 35px;
    left: 235px;
    -webkit-animation: move 2.5s ease-in-out infinite alternate;
    animation: move 2.5s ease-in-out infinite alternate;
}
.loader div::after, .loader div::before {
    content: '';
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff;
}
.loader div::before {
    left: -75px;
}
.loader div::after {
    left: 75px;
}

@-webkit-keyframes move {
    0% {
        -webkit-transform: translateX(-150px);
        transform: translateX(-150px);
    }
    100% {
        -webkit-transform: translateX(150px);
        transform: translateX(150px);
    }
}

@keyframes move {
    0% {
        -webkit-transform: translateX(-150px);
        transform: translateX(-150px);
    }
    100% {
        -webkit-transform: translateX(150px);
        transform: translateX(150px);
    }
}
@-webkit-keyframes scale {
    10% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.25);
        transform: scale(1.25);
    }
    90% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes scale {
    10% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.25);
        transform: scale(1.25);
    }
    90% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
/* svg {
    position: absolute;
    z-index: -100;
    pointer-events: none;
} */

/* Loader */


/* style */
.body-content {
    min-height: 100vh;
    position: relative;
    z-index: 1; 
    background-image: url('../images/bottom-shape.png');
    background-position: center bottom;
    background-repeat: repeat-x;
    /*padding-bottom: 60px;*/
    padding-bottom: 50px;
    background-size: auto 55px;
}
::-webkit-input-placeholder { /* Edge */
  font-size: 16px;
  font-family: 'font200',sans-serif;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-size: 16px;
  font-family: 'font200',sans-serif;
}

::placeholder {
  font-size: 16px;
  font-family: 'font200',sans-serif;
}
html[dir="rtl"] .datepicker{
    direction: rtl;
}
/**/
/* .mobile-tag{
    display: none;
} */
/* .body-content::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom:0;
    right: 0;
    background-image: url('../images/bg-img-1.png');
    position: top left;
    background-size: auto 100%;
    background-repeat: no-repeat;
    z-index: -1;
} */
@media(min-width: 1200px){
    .container {
        /* max-width: 822px; */
        /*max-width: 922px;*/
        //max-width: 960px;
    }
}
/* .main{
    padding: 35px 0;
} */
.top-header{
    /*padding-top: 15px;*/
    padding-top: 10px;
}
.logo{
    margin-bottom: 0;
}
.logo img{
    max-height: 90px;

}
.share-dropdown .btn{
    background-color: #F8F8F8;
    color: #707070;
    border-radius: 25px;
    font-size: 15px;
}
.share-dropdown .btn:hover{
    background-color: var(--redcolor);
    color: #fff;
}
.share-dropdown .btn span{
    margin-inline-start: 8px;
}
.share-dropdown .dropdown-menu{
    min-width: 6rem;
}
.share-dropdown .dropdown-item{
    color: #707070;
    font-size: 16px;
}

.blue-btn{
    background-color: var(--blueColor);
    border-color: var(--blueColor);
    color: #fff;
    border-radius: 8px;
    font-family: 'font700',sans-serif;
    font-size: 14px;
}
.blue-btn:hover{
    background-color: var(--redColor);
    border-color: var(--redColor);
    color: #fff;
}
.red-btn{
    background-color: var(--redColor);
    border-color: var(--redColor);
    color: #fff;
    border-radius: 8px;
    font-family: 'font700',sans-serif;
    font-size: 14px;
}
.red2-btn{
    background-color: var(--redColor) !important;
    border-color: var(--redColor);
    color: #fff !important;
    border-radius: 8px;
    font-family: 'font700',sans-serif;
    font-size: 18px;
}

.red2-btn:hover {
   background-color: var(--blueColor) !important;
    border-color: var(--blueColor);
    color: #fff;
}
.red-btn:hover{
    background-color: var(--blueColor);
    border-color: var(--blueColor);
    color: #fff;
}
.red-outline-btn{
    background-color: transparent;
    border-color: var(--redColor);
    color: var(--redColor);
    border-radius: 8px;
    font-family: 'font700',sans-serif;
    font-size: 18px;
}
.red-outline-btn:hover{
    background-color: var(--redColor);
    border-color: var(--redColor);
    color: #fff;
}
.info{}
.info .title{
    text-align: center;
    /*margin-bottom: 50px;*/
   margin-bottom: 35px;
}
.info .title h1{
    color: #2B2B2B;
    font-size: 45px;
    font-family: 'font900';
    margin-bottom: 25px;
}
.info .title p{
    /*font-size: 23px;*/
    color: #6F7070;
    font-size:16px;
    font-family: 'font700',sans-serif;
}
.buttons-sec{
    margin-bottom: 50px;
    font-size: 0;
	    margin-top: 30px;
}
.buttons-sec .btn{
    background-color: #fff;
    border-radius: 20px;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.09);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.09);
    width: 130px;
    color: #000;
    margin: 0 5px;
}
.buttons-sec .btn:hover{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.buttons-sec .btn.red-card-btn{
    color: #000;
    box-shadow: 0 10px 20px rgba(243, 50, 94, 0.2);
}
.buttons-sec .btn.blue-card-btn{
    /* color: #14B8C7; */
    color: #000;
    box-shadow: 0 10px 20px rgba(56, 197, 210, 0.17);
}
.buttons-sec figure{
    height: 80px;
    margin-bottom: 5px;
    padding: 5px;
}
.buttons-sec figure svg{
    max-width: 100%;
    height: auto;
}
.buttons-sec h3{
    font-size: 16px;
    font-family: 'font700';
    
}
.apps-sec{
	margin-bottom: 30px;
}
.apps-sec p{
    color: #6F7070;
    font-size: 14px;
    text-align: center;
}
.apps-sec h3{
    color: #2B2B2B;
    font-size: 20px;
    font-family: 'font700';
    text-align: center;
    margin-bottom: 5px;
}
.apps-sec div{}
.apps-sec a{
    margin: 0 5px;
    display: inline-block;
}
.apps-sec a img{
    height: 44px;
}
.img-wrapper{
    background-color: #F8F8F8;
    padding: 65px;
    border-radius: 250px;
    top: -50px;
}
.img-wrapper .btn{
    border-radius: 25px;
    /*pointer-events: none;*/
    /* font-size: 23px; */
    /* font-family: 'font900'; */
}
/**/

/* responsive */
@media (min-width: 1600px){
    
}
@media (max-width: 1240px){
}
@media (max-width: 1199px){
   
}
@media (max-width: 1023px){  
}
@media (max-width: 991px){
	.logo img{
		 max-height: 120px;
        display: block;
        margin: 20px auto;
	}
    .img-wrapper{
        background-color: transparent;
        padding: 15px;
        border-radius: 0;
        top: 0;
        max-width: 300px;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 25px;
    }
    .img-wrapper figure{
        background-color: #F8F8F8;
        padding: 35px;
        border-radius: 250px;
        /* position: relative; */
        /* top: -50px; */
    }
    .img-wrapper figure img{
        /* max-width: 95%; */
        /* height: auto; */
    }
    .info .title h1{
        font-size: 25px;
        margin-bottom: 15px;
    }
    .info .title p{
        font-size: 17px;
    }
    .buttons-sec .btn{
        border: 1px solid currentcolor;
    }
    .buttons-sec figure{
        //display: none!important;
    }
    .buttons-sec h3{
        margin-bottom: 0;
        font-size: 13px;
        font-family: 'font700',sans-serif;
    }
    .app-links a img{
        /* width: 120px; */
        height: 40px;
        padding: 0 5px;
    }
    .info .title,
    .buttons-sec{
        margin-bottom: 25px;
    }
    .share-dropdown .btn{
        font-size: 13px;
    }
	.share-dropdown{
		justify-content: center;
	}
	.head{
		display: inline-block !important;
		width: 100%;
	}
	.jobs{
		//display: none;
	}
	video {
  width: 90%;
  height: auto;
  border-radius: 20px!important;

}
	.desktop {
		display: none;
	}
	.mobile {
		display: block !important;
	}
	video { 
			margin-right:0 !important;
		}
	.csslider > input {
			display: inline-block !important;
		}
}
@media (max-width: 768px){
}
@media (max-width: 767px){
}
@media (max-width: 575px){
    .buttons-sec .btn{
        width: 100px;
        margin: 0 5px;
    }
}
@media (max-width: 480px){ 
}
@media (max-width: 479px){
    .buttons-sec{
        flex-wrap: wrap;
    }
    .buttons-sec .btn{
        min-width: 100px;
        /*width: auto;*/
        /*margin: 0 5px;*/
        margin: 10px 5px;
        width: 40%;
    }
    .body-content{
        background-size: auto 40px;
    }
    .img-wrapper{
        margin-bottom: 10px;
    }
}
@media (max-width: 320px){

}

* {
  box-sizing: border-box;
}


#cont{
    z-index: 1;
    
}

.dropdown {
  position:relative;
  display: inline-block;
    
 
    font-size: 0;
    
    
     z-index: 1;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 140px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 10px ;
  align-content: right;
    float: right;
  z-index: 1;
  border-radius: 15px;  
}

.dropdown:hover  .dropdown-content  {
  display: block;
    color: #fff;

}



.dropdown2 {
  position:relative;
  display: inline-block;
    font-size: 0;
     z-index: 4;
}

.dropdown2-content {
  display:none;
  position: absolute;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 10px ;
   
  z-index: 4;
  border-radius: 15px;
    
}


.dropdown2:hover  .dropdown2-content  {
  display: block;

}


.dropdown3 {
  position:relative;
  display: inline-block;
 
    font-size: 0;
    color: #6F7070;
    
     z-index: 3;
}

.dropdown3-content {
  display:none;
  position: absolute;
  background-color: #fff;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 10px ;
   
  z-index: 3;
  border-radius: 15px;
    
}


.dropdown3:hover  .dropdown3-content  {
  display: block;

}

.dropdown4 {
  position:relative;
  display: inline-block;
 
    font-size: 0;
    color: #6F7070;
    //background-color: #000;
    
     z-index: 3;
}

.dropdown4-content {
  display:none;
  position: absolute;
  background-color: #fff;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 10px ;
  left: 50px;
    top: 30px;
   
  z-index: 3;
  border-radius: 15px;
    
}


.dropdown4:hover  .dropdown4-content  {
  display: block;

}



.dropdown-content .cell2{
    
   z-index: 4;
 
}

.cell2 >img{
    margin: 5px;
}



.more{
    font-size: 12px;
    font-weight: 900;
    margin: 5px;
    display: block !important;
    background-color:#000; 
    align-content: center;
    color: #fff !important;
    padding: 5px 15px; 
    border-radius: 15px;
}


.more:hover{
   background-color: #000 !important;

}


#bton1 {
  background-color: #ef5d9f;
  border: 2px solid #ef5d9f;
  border-radius: 40px;
  color: #fff;
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
  display:inline-table;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
	width: 180px;
}

#bton2 {
    background-color: white;
    border: 2px solid #2B2B2B;

  border-radius: 40px;
  color: #2b2b2b;
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
  display:inline-table;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
	width: 180px;
}

#bton3 {
   background-color: #ef5d9f;
  border: 2px solid #ef5d9f;

  border-radius: 40px;
  color: #fff;
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
  display:inline-table;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
	width: 180px;
}

#bton4 {
    background-color: white;
    border: 2px solid #2B2B2B;

  border-radius: 40px;
  color: #2b2b2b;
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
  display:inline-table;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
	width: 180px;
}
.dropdown6 {
  position:relative;
  display: block;
     z-index: 3;
	
}

.dropdown6-content {
  display:none;
  position: absolute;
  background-color: #fff;
  font-size: 12px;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 10px ;
  left: 40px;
    top: 30px;   
  z-index: 3;
  border-radius: 15px;
    
}
.dropdown6:hover  .dropdown6-content{
  display: block;

}
.cobutton{
  background-color: white;
  border: 1px dashed #2B2B2B;
  float:right;
    width: 100%;
  border-radius: 40px;
  color: #2b2b2b !important;
  padding: 5px 15px;
  text-align: right;
  text-decoration: none;
  display:inline-table;
  font-size: 12px;
  font-weight: 900;

  margin: 4px 2px;
  cursor: pointer;
  
}
.cobutton:hover{
  background-color: #ef5d9f;


}
.coimg{
    margin-right: 5px;
}

#share-app:hover{
    color:#fff;
    
}

.copyright{
    padding-bottom: 5px;
    font-size: 12px;
    font-weight: 900;
    color: #6F7070;
    text-align: center;
    margin-bottom: 0 !important;
}
    
#outside_your_house {
	color: #000;
	border: 1px solid #000;
	background-color: #fff;
}

iframe{
	background-color: #fff;
}
.mobile{
	display: none;
}
 .csslider {
			-moz-perspective: 1300px;
			-ms-perspective: 1300px;
			-webkit-perspective: 1300px;
			perspective: 1300px;
			display: inline-block;
			//text-align: left;
			position: relative;
			margin-bottom: 22px;
	 background-color: #fff;
		}
		.csslider > input {
			display: none;
		}
		.csslider > input:nth-of-type(10):checked ~ ul li:first-of-type {
			margin-left: -900%;
		}
		.csslider > input:nth-of-type(9):checked ~ ul li:first-of-type {
			margin-left: -800%;
		}
		.csslider > input:nth-of-type(8):checked ~ ul li:first-of-type {
			margin-left: -700%;
		}
		.csslider > input:nth-of-type(7):checked ~ ul li:first-of-type {
			margin-left: -600%;
		}
		.csslider > input:nth-of-type(6):checked ~ ul li:first-of-type {
			margin-left: -500%;
		}
		.csslider > input:nth-of-type(5):checked ~ ul li:first-of-type {
			margin-left: -400%;
		}
		.csslider > input:nth-of-type(4):checked ~ ul li:first-of-type {
			margin-left: -300%;
		}
		.csslider > input:nth-of-type(3):checked ~ ul li:first-of-type {
			margin-left: -200%;
		}
		.csslider > input:nth-of-type(2):checked ~ ul li:first-of-type {
			margin-left: -100%;
		}
		.csslider > input:nth-of-type(1):checked ~ ul li:first-of-type {
			margin-left: 0%;
		}
		.csslider > ul {
			position: relative;
			z-index: 1;
			font-size: 0;
			line-height: 0;
			border: 10px solid #ffffff;
			margin: 0 auto;
			padding: 0;
			overflow: hidden;
			white-space: nowrap;
			-moz-box-sizing: border-box;
			-webkit-box-sizing: border-box;
			box-sizing: border-box;

		}
		.csslider > ul > li {
			position: relative;
			display: inline-block;
			width: 100%;
			height: 100%;
			overflow: hidden;
			font-size: 15px;
			font-size: initial;
			line-height: normal;
			-moz-transition: all 0.5s cubic-bezier(0.4, 1.3, 0.65, 1);
			-o-transition: all 0.5s ease-out;
			-webkit-transition: all 0.5s cubic-bezier(0.4, 1.3, 0.65, 1);
			transition: all 0.5s cubic-bezier(0.4, 1.3, 0.65, 1);
			vertical-align: top;
			-moz-box-sizing: border-box;
			-webkit-box-sizing: border-box;
			box-sizing: border-box;
			white-space: normal;
				 background-color: #fff;

		}

		.csslider > .navigation {
			position: absolute;
			bottom: -8px;
			left: 50%;
			z-index: 10;
			margin-bottom: -10px;
			font-size: 0;
			line-height: 0;
			text-align: center;
			-webkit-touch-callout: none;
			-webkit-user-select: none;
			-khtml-user-select: none;
			-moz-user-select: none;
			-ms-user-select: none;
			user-select: none;
		}
		.csslider > .navigation > div {
			  margin-left: -100%;
		}
		.csslider > .navigation label {
			position: relative;
			display: inline-block;
			cursor: pointer;
			border-radius: 50%;
			margin: 0 4px;
			padding: 4px;
			background: #3A3A3A;
		}
		.csslider > .navigation label:hover:after {
			opacity: 1;
		}
		.csslider > .navigation label:after {
			content: '';
			position: absolute;
			left: 50%;
			top: 50%;
			margin-left: -6px;
			margin-top: -6px;
			background: #09aadc;
			border-radius: 50%;
			padding: 6px;
			opacity: 0;
		}
		.csslider > .arrows {
			-webkit-touch-callout: none;
			-webkit-user-select: none;
			-khtml-user-select: none;
			-moz-user-select: none;
			-ms-user-select: none;
			user-select: none;
		}
		.csslider.inside .navigation {
			bottom: 10px;
			margin-bottom: 10px;
		}
		.csslider > input:nth-of-type(1):checked ~ .navigation label:nth-of-type(1):after,
		.csslider > input:nth-of-type(2):checked ~ .navigation label:nth-of-type(2):after,
		.csslider > input:nth-of-type(3):checked ~ .navigation label:nth-of-type(3):after,
		.csslider > input:nth-of-type(4):checked ~ .navigation label:nth-of-type(4):after,
		.csslider > input:nth-of-type(5):checked ~ .navigation label:nth-of-type(5):after,
		.csslider > input:nth-of-type(6):checked ~ .navigation label:nth-of-type(6):after,
		.csslider > input:nth-of-type(7):checked ~ .navigation label:nth-of-type(7):after,
		.csslider > input:nth-of-type(8):checked ~ .navigation label:nth-of-type(8):after,
		.csslider > input:nth-of-type(9):checked ~ .navigation label:nth-of-type(9):after,
		.csslider > input:nth-of-type(10):checked ~ .navigation label:nth-of-type(10):after,
		.csslider > input:nth-of-type(11):checked ~ .navigation label:nth-of-type(11):after {
			opacity: 1;
		}
		.csslider > .arrows {
			position: absolute;
			left: -31px;
			top: 50%;
			width: 100%;
			height: 26px;
			padding: 0 31px;
			z-index: 0;
			-moz-box-sizing: content-box;
			-webkit-box-sizing: content-box;
			box-sizing: content-box;
		}
		.csslider > .arrows label {
			display: none;
			position: absolute;
			top: -50%;
			padding: 13px;
			box-shadow: inset 2px -2px 0 1px #3A3A3A;
			cursor: pointer;
			-moz-transition: box-shadow 0.15s, margin 0.15s;
			-o-transition: box-shadow 0.15s, margin 0.15s;
			-webkit-transition: box-shadow 0.15s, margin 0.15s;
			transition: box-shadow 0.15s, margin 0.15s;
		}
		.csslider > .arrows label:hover {
			box-shadow: inset 3px -3px 0 2px #09aadc;
			margin: 0 0px;
		}
		.csslider > .arrows label:before {
			content: '';
			position: absolute;
			top: -100%;
			left: -100%;
			height: 300%;
			width: 300%;
		}
		.csslider.infinity > input:first-of-type:checked ~ .arrows label.goto-last,
		.csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(0),
		.csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(1),
		.csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(2),
		.csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(3),
		.csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(4),
		.csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(5),
		.csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(6),
		.csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(7),
		.csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(8),
		.csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(9),
		.csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(10) {
			display: block;
			left: 0;
			right: auto;
			-moz-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
			-o-transform: rotate(45deg);
			-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
		}
		.csslider.infinity > input:last-of-type:checked ~ .arrows label.goto-first,
		.csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(2),
		.csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(3),
		.csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(4),
		.csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(5),
		.csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(6),
		.csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(7),
		.csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(8),
		.csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(9),
		.csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(10),
		.csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(11),
		.csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(12) {
			display: block;
			right: 0;
			left: auto;
			-moz-transform: rotate(225deg);
			-ms-transform: rotate(225deg);
			-o-transform: rotate(225deg);
			-webkit-transform: rotate(225deg);
			transform: rotate(225deg);
		}
/*#region MODULES */
/*#endregion */
/*___________________________________ LAYOUT ___________________________________ */
		* {
			margin: 0;
			padding: 0;
		}
		

			#slider1 {
			margin: 37px;
			font-family: 'Lato';
		}
		#slider1 > input:nth-of-type(3):checked ~ ul #bg {
			width: 80%;
			padding: 22px;
			-moz-transition: .5s .5s;
			-o-transition: .5s .5s;
			-webkit-transition: .5s .5s;
			transition: .5s .5s;
		}
		#slider1 > input:nth-of-type(3):checked ~ ul #bg div {
			-moz-transform: translate(0);
			-ms-transform: translate(0);
			-o-transform: translate(0);
			-webkit-transform: translate(0);
			transform: translate(0);
			-moz-transition: .5s .9s;
			-o-transition: .5s .9s;
			-webkit-transition: .5s .9s;
			transition: .5s .9s;
		}
/*#videos */
/*___________________________________ LAYOUT ___________________________________ */
		video { 
			//width:710px; 
			height:auto;  
			background:transparent url('') no-repeat 0 0; 
			-webkit-background-size:cover; 
			-moz-background-size:cover; 
			-o-background-size:cover; 
			background-size:cover; 
			border-radius: 50px!important;
			margin-right: 20px

		}
		

@-webkit-keyframes cf4FadeInOut {
 0% {
   opacity:1;
 }
 17% {
   opacity:1;
 }
 25% {
   opacity:0;
 }
 92% {
   opacity:0;
 }
 100% {
   opacity:1;
 }
}

@-moz-keyframes cf4FadeInOut {
 0% {
   opacity:1;
 }
 17% {
   opacity:1;
 }
 25% {
   opacity:0;
 }

 92% {
   opacity:0;
 }
 100% {
   opacity:1;
 }
}

@-o-keyframes cf4FadeInOut {
 0% {
   opacity:1;
 }
 17% {
   opacity:1;
 }
 25% {
   opacity:0;
 }
 92% {
   opacity:0;
 }
 100% {
   opacity:1;
 }
}

@keyframes cf4FadeInOut {
 0% {
   opacity:1;
 }
 17% {
   opacity:1;
 }
 25% {
   opacity:0;
 }
 92% {
   opacity:0;
 }
 100% {
   opacity:1;
 }
}
select {
      padding: 5px;
      border: 2px solid #09aadc;
	color: ##09aadc;
      border-radius: 35px;
	margin-left: 5px;
	min-height: 30px;
	min-width: 200px;
    }

#cf4a {
  position:relative;
  height:250px;
  width:100%;
  margin:0 auto;
}
#cf4a img {
  position:absolute;
  left:0;
}

#cf4a img {
  -webkit-animation-name: cf4FadeInOut;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 8s;

  -moz-animation-name: cf4FadeInOut;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite;
  -moz-animation-duration: 8s;

  -o-animation-name: cf4FadeInOut;
  -o-animation-timing-function: ease-in-out;
  -o-animation-iteration-count: infinite;
  -o-animation-duration: 8s;

  animation-name: cf4FadeInOut;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 8s;
}
#cf4a img:nth-of-type(1) {
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  -o-animation-delay: 6s;
  animation-delay: 6s;
}
#cf4a img:nth-of-type(2) {
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  -o-animation-delay: 4s;
  animation-delay: 4s;
}
#cf4a img:nth-of-type(3) {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
#cf4a img:nth-of-type(4) {
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  -o-animation-delay: 0;
  animation-delay: 0;
}

/* responsive 