@charset "utf-8";

/*	

01)	DIZME BASE
02) DIZME MOBILE MENU
03) DIZME HEADER
04) DIZME HERO
05) DIZME PROCESS
06) DIZME ABOUT
07) DIZME PORTFOLIO
08) DIZME SKILLS
09) DIZME SERVICES
10) DIZME TESTIMONIALS
11) DIZME PARTNERS
12) DIZME NEWS
13) DIZME SUBSCRIBE
14) DIZME CONTACT
15) DIZME COPYRIGHT
16) DIZME MAGIC CURSOR
17) DIZME TOTOP
18) DIZME MEDIA QUERIES (FOR SMALL DEVIVES)


/*---------------------------------------------------*/
/*	01) DIZME BASE
/*---------------------------------------------------*/

	@font-face {
		font-family: 'Cuckoo Regular';
		font-style: normal;
		font-weight: normal;
		src: local('Cuckoo Regular'), url('font/Cuckoo\ Regular.woff') format('woff');
		}

		@font-face {
			font-family: 'apple-braille';
			font-style: normal;
			font-weight: normal;
			src: local('apple-braille'), url('font/apple-braille.ttf') format('truetype');
			}

		
		  
		  




.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay */
	z-index: 9999; /* Place it above other content */
	display: none; /* Initially hidden */
  }
  
  .loader {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -25px;
	margin-left: -25px;
	z-index: 10000; 
	display: none; 
  } 




html {
	overflow-x: hidden;
	padding: 0px;
	margin: 0px
}
body{
	overflow-x: hidden;
	width: 100%;
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0px;
	word-wrap: break-word;
	font-weight: 400;
	background-color: rgb(245, 229, 209);
	color: #6f6b80;
}

svg{
	fill: currentcolor;
	width: 15px;
	height: 15px;
}
img.svg{
	width: 15px;
	height: 15px;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #6f6f6f;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #6f6f6f;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #6f6f6f;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #6f6f6f;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color: #6f6f6f;
}

::placeholder { /* Most modern browsers support this now. */
   color: #6f6f6f;
}

body::-webkit-scrollbar {
  width: 11px;
}
body{
  scrollbar-width: thin;
  scrollbar-color: #999 #fff;
}
body:-webkit-scrollbar-track {
  background: #fff;
}
body::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 6px;
  border: 3px solid #fff;
}

.container{
	max-width: 1400px;
	width:100%;
	margin-left: auto;
	margin-right: auto;
	height:auto;
	padding:0px 40px;
	position:relative;
	clear:both;
}

h1, h2, h3, h4, h5, h6{
	font-weight:500;
	line-height: 1.3;
	font-family: 'Jost', sans-serif;
	color: #000;
}

h1 { font-size: 45px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

.rt_all_wrap{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.rt_all_wrap_vendor{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	background-color: #F7F097 ;
}
.rt_all_wrap,
.rt_all_wrap *{
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	   -moz-box-sizing: border-box; /* Firefox, other Gecko */
			box-sizing: border-box; /* Opera/IE 8+ */
}

#preloader{
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    display: flex;
}
#preloader:before,
#preloader:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#preloader:after{
    left: auto;
    right: 0;
}
#preloader .loader_line{
    margin: auto;
    width: 1px;
    height: 250px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.loader_line:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
    -o-animation: lineheight 1000ms ease-in-out 0s forwards;
    animation: lineheight 1000ms ease-in-out 0s forwards;
}
.loader_line:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #999999;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-animation: lineround 1200ms linear 0s infinite;
    -o-animation: lineround 1200ms linear 0s infinite;
    animation: lineround 1200ms linear 0s infinite;
    animation-delay: 2000ms;
}

@keyframes lineheight{
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}

@keyframes lineround{
    0%{
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100%{
        -webkit-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }
}

/*hiding all*/
.preloaded .loader_line:after{
    opacity: 0;
}
.preloaded  .loader_line{
    opacity: 0;
    height: 100%!important;
}
.preloaded:before,
.preloaded:after{
    -webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    -o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    animation: preloadedzero 300ms ease-in-out 500ms forwards;
}
@keyframes preloadedzero{
    0%{
        width: 50%;
    }
    100%{
        width: 0%;
    }
}
.rt_section{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
} 

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    display: flex;
    background-color: #000; /* Set background color if needed */
}

#preloader img {
    margin: auto;
    max-height: 250px; /* Set max height for your image */
    width: auto;
    height: auto;
    animation: fadeIn 0.8s ease 10s forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*---------------------------------------------------*/
/*	02) DIZME MOBILE MENU
/*---------------------------------------------------*/

.rt_mobile_menu{
	width: 100%;
	height: auto;
	position: fixed;
	top: 0px;
	left: 0px;
	display: none;
	z-index: 10;
}
.rt_mobile_menu .mobile_menu_inner{
	width: 100%;
	height: auto;
	float: left;
	clear: both;
	/* background-color: #fff;
	border-bottom: 1px solid rgba(0,0,0,.1); */
	padding: 10px 20px 10px 20px;
}
.rt_mobile_menu .mobile_in{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.rt_mobile_menu .mobile_in .logo img{
	max-width: 90px;
	max-height: 70px;
}
.rt_mobile_menu .trigger{
	line-height: 0;
}
.rt_mobile_menu .dropdown{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #fff;
	display: none;
}
.rt_mobile_menu .dropdown .dropdown_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 25px 40px;
}
.rt_mobile_menu .dropdown .dropdown_inner ul{
	margin: 0px;
	list-style-type: none;
}
.rt_mobile_menu .dropdown .dropdown_inner ul li{
	margin: 0px;
	float: left;
	width: 100%;
}
.rt_mobile_menu .dropdown .dropdown_inner ul li a{
	text-decoration: none;
	color: #000;
	display: inline-block;
	padding: 0px 0px;
	font-family: 'Jost', sans-serif;
	font-weight: 500;
}
.rt_mobile_menu .download_cv{
	padding-top: 20px;
}
.rt_mobile_menu .download_cv a{
	color: #fff !important;
	border-radius: 50px;
	background-color: #f75023;
	padding: 7px 40px !important;
}
.rt_mobile_menu .hamburger-inner, 
.rt_mobile_menu .hamburger-inner:after, 
.rt_mobile_menu .hamburger-inner:before{
	width: 30px;
	height: 2px;
	background-color: #f23a00;
}
.rt_mobile_menu .hamburger-box{
	width: 30px;
}
.rt_mobile_menu .hamburger{
	padding: 0px;
}

/*---------------------------------------------------*/
/*	03) DIZME HEADER
/*---------------------------------------------------*/
#scroll{
	margin-top: 50px;
}

.rt_header{
	/* position: absolute;
	top: 0px;
	left: 0px;
	right: 0px; */
	z-index: 10;
	padding: 25px 0px;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.rt_header .inner{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rt_header .menu{
	background-color: rgb(0, 0, 0);
	border-radius: 20px;
	padding: 1em;
}



.rt_header.animate{
	background-color: #fff;
	padding: 20px 0px;
	box-shadow: 0px 0px 10px rgba(0,0,0,.1);
}
.rt_header .logo img{
	max-width: 150px;
	max-height: 80px;
}
.rt_header .menu ul{
	margin: 0px 48px 0px 48px;
	list-style-type: none;
	display: flex;
	align-items: center;
}
.rt_header .menu ul li{
	margin: 0px 48px 0px 0px;
	display: inline-block;
}
.rt_header .menu ul li:last-child{
	margin-right: 0px;
}
.rt_header .menu ul li.current a{
	color: #f75023;
}
.rt_header .menu ul li a:hover{
	color: #f75023;
}

.rt_header .menu ul li a{
	text-decoration: none;
	color: #ffffff;
	font-weight: 500;
	font-family: 'poppins', sans-serif;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}

.rt_header .rt_button a{
	padding: 5px 15px 5px 15px;
	margin: 5px;
}


.rt_header .download_cv{
	position: relative;
	top: 3px;
}
.rt_header .download_cv a{
	border: 2px solid #f75023;
	border-radius: 50px;
	padding: 8px 35px 7px 35px;
	position: relative;
	overflow: hidden;
	display: inline-block;
}
.rt_header .download_cv span{
	position: relative;
	z-index: 2;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}

.rt_header .download_cv a:before{
	position: absolute;
	content: "";
	z-index: 0;
	background-color: #f75023;
	left: -5px;
	right: -5px;
	bottom: -5px;
	height: 0px;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.rt_header .download_cv a:hover:before{
	height: 115%;
}
.rt_header .download_cv a:hover span{
	color: #fff;
}

.countdown {

	background-color: #000;
	color: #ff4500;
	padding: 12px 20px;
	font-size: 20px;
	font-weight: bold;
	border-radius: 0px 0px 20px 20px;
	width: fit-content;
	margin: auto;
	margin-bottom: 20px;
	top: 0;

}

.rt_header .menu ul li a.tick{
	background-color: #ff4500;
	border-radius: 15px;
	padding: 5px 15px 5px 15px;
	color: white;
}

/*---------------------------------------------------*/
/*	04) DIZME HERO
/*---------------------------------------------------*/

.greenText{color: #1cbe59 !important;}
.purpleText{color: #8067f0 !important;}
.orangeText{color: #f75023 !important;}
.yellowText{color: #f0c45c !important;}

.orangeBackground{background-color: #fedfd7 !important;}
.greenBackground{background-color: #ddf5e6 !important;}
.purpleBackground{background-color: #ece8fd !important;}

.rt_hero{
	width: 100%;
	height: 82vh;
	clear: both;
	float: left;
	position: relative;
}
.rt_hero .background, .background{
	position: absolute;
	top: -1px;
	bottom: -1px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
}

.background_vendor{
	background-position: center top;
}

.mobile{
	background-position: top center;
	background-size: cover;
	display: none;
}

.rt_hero .container{
	height: 100%;
}
.rt_hero .content{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
}
.rt_hero .details{
	width: 50%;
	padding-right: 20px;
}
.rt_hero .hello h3{
	padding-bottom: 20px;
	font-size: 15px;
	text-align: center;
}
.rt_hero .name{
	margin-bottom: 18px;
}
.rt_hero .name h3{
	font-size: 85px;
}
.rt_hero .job{
	margin-bottom: 35px;
}
.rt_hero .job p{
	font-size: 28px;
	color: #000;
	font-weight: 500;
}
.rt_hero .text{
	margin-bottom: 42px;
}
.rt_hero .text p{
	font-size: 23px;
	line-height: 1.5;
}
.rt_hero .button{
	display: flex;
	align-items: center;
}
.rt_hero .rt_button{
	width: auto;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.rt_hero .title h3{
    font-family: 'Alfa Slab One', 'Jost','sans-serif';
    color: #f23a00;
    font-size: 3rem;
    
}
.rt_button{
	width: 100%;
	height: auto;
	clear: both;
	float: none;
	text-align: center;
}
.rt_button a{
	text-decoration: none;
	color: #fff !important;
	display: inline-block;
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	border-radius: 50px;
	border: 2px solid #f75023;
	padding: 14px 48px 13px 48px;
	position: relative;
	overflow: hidden;
}
.rt_button input[type="submit"]{
	text-decoration: none;
	color: #f23a00;
	display: inline-block;
	font-family: 'poppins', 'Jost', 'sans-serif';
	font-weight: bold;
	border-radius: 50px;
	border: 2px solid #f2e7d2;
	padding: 20px 50px 30px 50px;
	position: relative;
	overflow: hidden;
	background-color: #f2e7d2;
    margin-top: 2rem;
	text-transform: none;
    
}

.rt_button input[type="button"]:hover{
	color: #f75023;
	background-color: white;

}

.form-control{
    
	border: none !important;
	border-bottom: 2px solid #ffffff !important;
	background-color: transparent !important;
    border-radius: 0px;
    color: white !important;
    font-size: 24px !important;
}

.form-floating input:focus + label,
        .form-floating input:not(:placeholder-shown) + label{
	background-color: transparent !important;
}

.form-control:focus + label,
    .form-control:not(:placeholder-shown) + label {
      opacity: 0;
      visibility: hidden;
	}


	.form-control:focus,
    .form-control:not(:placeholder-shown) {
      background-color: transparent;  /* Ensures background stays transparent */
      
    }

.form-floating select{
	background-color: transparent !important;
	border: none;
	border-bottom: 2px solid #ffffff !important;
	border-radius: 0px;
	color: white !important;
    font-size: 18px !important;
	
}
.form-floating select option {
  color: #001631;
}


.rt_button span{
	position: relative;
	z-index: 2;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.rt_button a:before{
	position: absolute;
	content: "";
	z-index: 0;
	background-color: #f75023;
	left: -5px;
	right: -5px;
	bottom: -5px;
	height: 110%;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.rt_button a:hover:before{
	height: 0;
}
.rt_button a:hover span{
	color: #000;
}
.rt_hero .social{
	position: relative;
	top: -4px;
}
.rt_hero .social ul{
	margin: 0px;
	list-style-type: none;
	text-align: center;
}
.rt_hero .social ul li{
	margin: 0px 5px 0px 0px;
	display: inline-block;
}
.rt_hero .social ul li:last-child{
	margin-right: 0px;
}
.rt_hero .social ul li a{
	text-decoration: none;
	color: #000;
}
.rt_hero .image{
	position: relative;
	text-align: center;
}
.rt_hero .avatar{
	width: 50%;
	/* padding-left: 100px; */
}
.rt_hero .avatar img{
	max-height: 650px;
}
.rt_hero .skills{
	display: inline-block;
	width: 75px;
	height: 75px;
	border-radius: 8px;
	position: absolute;
	box-shadow: 24px 0px 72px rgba(54,32,152,.3);
}
.rt_hero .skills.illustrator{
	background-color: #390000;
	top: 20px;
	left: -30px;
}
.rt_hero .skills.photoshop{
	background-color: #001631;
	right: 70px;
	top: 80px;
}
.rt_hero .skills.figma{
	background-color: #fff;
	bottom: 60px;
	left: 140px;
}
.rt_hero .skills .svg{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 40px;
	height: 40px;
}
.rt_hero .skills.illustrator .svg{
	color: #ff9a00;
}
.rt_hero .skills.photoshop .svg{
	color: #00a9ff;
}
.rt_down{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 60px;
	z-index: 5;
}
.rt_down svg{
	width: 35px !important;
	height: 35px !important;
	
}
.rt_down svg #wheel{
	animation: scroll ease 2s infinite;
}
@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(60px);
    }
}

.animPulse{
	animation: animPulse 3s linear 0s infinite alternate;
}
@keyframes animPulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

.anim_moveLeft{
	animation: animMoveLeft 3s linear 0s infinite alternate;
}

@keyframes animMoveLeft {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-20px);
  }
}

.anim_moveRight{
	animation: anim_moveRight 3s linear 0s infinite alternate;
}

@keyframes anim_moveRight {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(20px);
  }
}

.anim_moveTop{
	animation: anim_moveTop 1s linear 0s infinite alternate;
}

@keyframes anim_moveTop {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}

.anim_moveBottom{
	animation: anim_moveBottom 3s linear 0s infinite alternate;
}

@keyframes anim_moveBottom {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(20px);
  }
}





.rt_hero .title img{
        position: relative;
        text-align: center;
        max-height: 18rem;
        margin: auto;
        margin-top: -2rem;
        display: flex;
}



/*---------------------------------------------------*/
/*	05) Forms
/*---------------------------------------------------*/


.reg{
    color: #FFF3DD;
}

.form-label{
    font-family: 'Alfa Slab One', 'Jost', 'sans-serif';
    color: white;
    margin-top: 20px;
    
}   
.form-label span{
    font-family: 'poppins', 'Jost', 'sans-serif';
    font-style: italic;
}

.form-floating .form-control:focus ~ label, 
.form-floating .form-control:valid ~ label{

    display: none;
}

.form-control:focus {
    outline: none; /* Removes the default outline */
    box-shadow: none; /* Removes Bootstrap's box shadow on focus */
  }







/*---------------------------------------------------*/
/*	05) DIZME PROCESS
/*---------------------------------------------------*/

.rt_process{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.rt_process .container{
	margin-top: 5rem;
}
.rt_process .list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.rt_process ul{
	margin: 0px 35px 0px 20px;
	list-style-type: none;
}
.rt_process ul li{
	margin: 0px 70px 70px 0px;
	width: 27%;
	float: left;
	padding-right: 35px;
	
}

.rt_process ul li.emo{
	padding-right: 0px !important;
	width: 25%;
	margin-right: 40px;

}

.rt_process ul li.mid{
	width: 30%;
}




.rt_process ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}


.rt_process .icon{
	margin-bottom: 30px;
}
.rt_process .icon span{
	position: relative;
	display: inline-block;
}
.rt_process .icon .brush{
	max-width: 125px;
	position: relative;
}
.rt_process .icon .svg{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 60px;
	height: 60px;
}
.rt_process .title{
	margin-bottom: 3rem;
}
.rt_process .title h3{
	font-size: 22px;
	font-family: 'Alfa Slab One', 'Jost', 'sans-serif';
	color: #f2e7d2 ;
	line-height: 1;
	margin-bottom: .1rem;
}
.rt_process  h1 {
	font-family: 'irish grover', 'Jost', 'sans-serif';
	color: #f75023 ;
	font-size: 60px;
	padding-left: 2rem;

}
.rt_process p{

	font-family: 'apple-braille', 'Jost', 'sans-serif';
	color: #f2e7d2 ;
	line-height: 1.4;

}

.rt_process ul li .list_inner .smiley{
	position: relative;
	top: 4rem;
	right: 4rem;
	width: 100%;
}

.rt_process ul li .list_inner .ellipse{
	position: relative;
	top: 10rem;
	width: 100%;
}




/*---------------------------------------------------*/
/*	06) DIZME ABOUT
/*---------------------------------------------------*/

.discription{
	color: #ffbc00
}


.rt_about{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	/* padding-top: 112px; */
	position: relative;
	/* padding-bottom: 120px; */
}



#bigMeat .rt_about {
	padding-bottom: 0px;
	
}



.vendor_list{
	background: transparent;
	border: 0.15rem solid #ffbc00;
}
.vendor_list:hover{
	background-color: #ffbc00;
}


.rt_about .wrapper{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	align-items: center;
	margin-bottom: 10rem;
}
.rt_about .left{
	width: 50%;
	padding-right: 60px;
}
.rt_about .left .image{
	position: relative;
}
.rt_about .left .image img{
	max-height: 800px;
}
.rt_about .numbers{
	position: absolute;
}
.rt_about .numbers.year{
	top: 120px;
	left: -80px;
}
.rt_about .numbers.project{
	bottom: 70px;
	right: -30px;
}
.rt_about .numbers .wrapper{
	display: flex;
	align-items: center;
	/* background-color: #fff; */
	box-shadow: 25px 0px 65px rgba(54,32,152,.11);
	border-radius: 8px;
	padding: 34px 40px 31px 36px;
}
.rt_about .numbers.project .wrapper{
	padding: 14px 30px 11px 26px;
}
.rt_about .numbers .wrapper h3{
	font-size: 60px;
	color: #1cbe59;
}
.rt_about .numbers.project h3{
	color: #6e50f0;
}
.rt_about .numbers .wrapper .name{
	font-size: 21px;
	color: #000;
	font-weight: 500;
	font-family: 'Jost', sans-serif;
	line-height: 1.3;
	padding-left: 17px;
}
.rt_about .right{
	width: 50%;
	padding-left: 60px;
}
.rt_about .right .title{
	margin-bottom: 25px;
}
.rt_about .right .title span{
	display: inline-block;
	color: #f75023;
	font-size: 24px;
	font-weight: 500;
	font-family: 'Jost', sans-serif;
	margin-bottom: 6px;
}
.rt_about .right .title h3{
	font-size: 48px;
	max-width: 90%;
	line-height: 1.25;
}
.rt_about .right .text{
	margin-bottom: 47px;
}
.rt_about .brush_1{
	position: absolute;
	top: 20px;
	left: 120px;
}
.rt_about .brush_2{
	position: absolute;
	bottom: -50px;
	right: 0px;
}


.center-text{
	text-align: center;
	font-size: 40px;
}

#about .brush_1{
	left: 0px;
}

.rt_section#bigMeat {
	
	/* background-color: #27fce7; */
}

#vendors {
	background-color: #ff3d00;
	
}

#contact{
	
	background-color: #f2e7d2;
}

.policy {
	background-color: #f2e7d2;
	
}
.cont{
	background-color: #97f7f0; 
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

#bigMeat .rt_title{
	display: flex;
}


#bigMeat .container {
	margin-top: 20rem;
	max-width: 1550px;
}

#bigMeat .detailText{
	display: flex;
	justify-content: space-between;
	width: 70%;
	margin: auto;
	margin-bottom: 3rem;
	margin-top: 1rem;
}

#bigMeat .detailText h3{
	margin: 0px;
	padding: 0px;
	font-size: 25px;
}

#bigMeat h3{
	font-family: "Alfa Slab One", 'Jost', sans-serif ;
	font-size: 60px;
	color: #f75023;
	margin: auto;
	margin-top: 1rem;
}



#bigMeat .imageBox{
	display: flex;
	justify-content: center;
	margin: auto;
	gap: 2rem;
	width: 100%;
}
#bigMeat .imageBox div {
	height: 90vh;
    overflow: hidden;
    width: 30%;
    border-radius: 2rem;
	
	
}
#bigMeat .imageBox .start{
	background-image: url('../img/pexels-vida.jpg');
	background-size: cover;
	background-position: center center;
	
}

#bigMeat .imageBox .mid{
	background-image: url('../img/pexels-marc.jpg');
	background-size: cover;
	background-position: center center;
	
}

#bigMeat .imageBox .end{
	background-image: url('../img/pexels-cari.jpg');
	background-size: cover;
	background-position: center center;
	
}



#bigMeat .imageBox img{
	border-radius: 2rem;
	width: 110%;
	height: 100%;
}


#rt_ticket .rt_about{
	min-height: 110vh;
}


#rt_ticket .imageBox{
	display: flex;
	justify-content: space-between;
	margin: auto;
	gap: 3rem;
	margin-bottom: 9rem;
}

#rt_ticket .imageBox img{
	border-radius: 2rem;
	width: 100%;
	height: 100%;
}

#rt_ticket h3{
	font-family: 'Alfa Slab One', 'Jost', 'sans-serif';
	color: #f75023 ;
	font-size: 4rem;
	margin-bottom: 3rem;
}

#rt_ticket .imageBox div{
	height: 21rem;
	width: 18rem;
}

.beigeBG{
	background-color: #f2e7d2;
}


#faq{
	background-color: #000;
}

#faq .container{
	margin-top: 3rem;
}

#faq .rt_services{
	padding-top: 0rem;
	padding-bottom: 5rem;
}

#faq .rt_main_title{
	max-width: fit-content;
	margin-bottom: 2rem;
}

#faq .rt_main_title h3{
	font-family: 'Alfa Slab One', 'Jost', 'sans-serif';
	color: #f75023 ;
	font-size: 3.5rem;

}


#rt_img .rt_about{
	min-height: 140vh;
}



#rt_img .container{
	position: absolute;
	top: 0;
}



.rt_copyright .logo{
	width: 20%;
	margin: auto;
}
.rt_copyright p{
	font-weight: 700;
	color: black;
	font-size: 0.5rem;
}
.rt_copyright span{
	color: #f23a00;
}

#contact h3, #contact p, #contact a{
	color: black;
	font-size: 1rem;
	font-weight: 800;
}

#contact .contactText{
	margin-top: 15rem;
}

.checkbox{
    background-color: transparent !important;
    border: 2px #f2e7d2 solid;
}

.form-check{
    margin-bottom: 3rem;
}

.form-check span{
    font-weight: bold;
    text-decoration: underline;
}

/*---------------------------------------------------*/
/*	07) DIZME PORTFOLIO
/*---------------------------------------------------*/

.rt_main_title{
	width: 100%;
	
	height: auto;
	clear: both;
	text-align: center;
	margin: 0px auto;
	
}
.rt_main_title[data-align="left"]{
	text-align: left;
	margin: 0px !important;
}
.rt_main_title[data-align="center"]{
	text-align: center;
	margin: 0px auto;
}
.rt_main_title[data-align="right"]{
	text-align: right;
	margin: 0px !important;
}
.rt_main_title span{
	font-size: 24px;
	font-weight: 500;
	color: #f75023;
	font-family: 'Jost', sans-serif;
	display: inline-block;
	margin-bottom: 6px;
}
.rt_main_title h3{
	font-size: 48px;
	line-height: 1.25;
	margin-bottom: 23px;
	font-family: 'Cuckoo Regular', 'Jost', 'sans-serif';
	color: #f75023;
}
.rt_portfolio{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 185px;
	margin-bottom: 165px;
	position: relative;
}
.rt_portfolio .portfolio_filter{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	text-align: center;
	padding: 78px 0px 56px 0px;
}
.rt_portfolio .portfolio_filter ul{
	margin: 0px;
	list-style-type: none;
}
.rt_portfolio .portfolio_filter ul{
	margin: 0px;
	list-style-type: none;
}
.rt_portfolio .portfolio_filter ul li{
	margin: 0px 50px 0px 0px;
	display: inline-block;
}
.rt_portfolio .portfolio_filter ul li:last-child{
	margin-right: 0px;
}
.rt_portfolio .portfolio_filter ul li a{
	text-decoration: none;
	color: #000;
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.rt_portfolio .portfolio_filter ul li a.current{
	color: #f75023;
}
.rt_portfolio .portfolio_filter ul li a:hover{
	color: #f75023;
}
.rt_portfolio .portfolio_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.rt_portfolio .portfolio_list ul{
	margin: 0px 0px 0px -25px;
	list-style-type: none;
	position: relative;
	z-index: 2;
}
.rt_portfolio .portfolio_list ul li{
	margin: 0px 0px 25px 0px;
	width: 33.3333%;
	float: left;
	padding-left: 25px;
}
.rt_portfolio .portfolio_list ul li .inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}
.rt_portfolio .portfolio_list .image{
	position: relative;
	overflow: hidden;
}
.rt_portfolio .portfolio_list .inner img{
	min-width: 100%;
	opacity: 0;
}
.rt_portfolio .portfolio_list .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
    transform: scale(1) translateZ(0);
	
	-webkit-transition: all .3s ease-in-out;
	   -moz-transition: all .3s ease-in-out;
	    -ms-transition: all .3s ease-in-out;
	     -o-transition: all .3s ease-in-out;
	        transition: all .3s ease-in-out;
}
.rt_portfolio .portfolio_list ul li .inner:hover .main{
	transform: scale(1.1) translateZ(0);
}
.rt_portfolio_titles{
	white-space: nowrap;
	background: #ffffff;
	font-size: 21px;
	padding: 7px 15px;
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	color: #000;
	position: fixed;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
}
.rt_portfolio_titles.visible {
	opacity: 1;
	visibility: visible;
}
.rt_portfolio_titles .work__cat {
	position: absolute;
	background: #ffffff;
	top: 100%;
	left: 0;
	margin-top: -10px;
	font-size: 16px;
	font-weight: 500;
	padding: 5px 15px;
	color: #6f6b80;
}
.entry{
	position: relative;
}
.rt_portfolio .mobile_title{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 20px;
	display: none;
}
.rt_portfolio .mobile_title h3{
	font-size: 18px;
	font-weight: 600;
}
.rt_portfolio .mobile_title span{
	font-family: "Poppins";
	font-weight: 500;
}
.rt_modalbox{
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 100vh;
	z-index: 20;
	background-color: rgba(0,0,0,.9);
	opacity: 0;
	visibility: hidden;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.rt_modalbox.opened{
	opacity: 1;
	visibility: visible;
}
.rt_modalbox .box_inner{
	position: absolute;
	top: 70px;
	bottom: 70px;
	width: 968px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	margin-top: -20px;
	transition-delay: .3s;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.rt_modalbox.opened .box_inner{
	opacity: 1;
	visibility: visible;
	margin-top: 0px;
}
.rt_modalbox .close{
	position: fixed;
	left: 100%;
	top: 0px;
	margin-left: 30px;
	z-index: 10;
}
.rt_modalbox .close a{
	display: block;
	width: 40px;
	height: 40px;
	text-decoration: none;
	color: #fff;
	border:2px solid #fff;
	border-radius: 10px;
	position: relative;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.rt_modalbox .close a:hover{
	border-radius: 100%;
}
.rt_modalbox .close a i{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.rt_modalbox .description_wrap{
	position: relative;
	width: 100%;
	height: 100%;
	float: left;
	overflow: hidden;
	padding: 50px;
	overflow-y: scroll;
}
.rt_modalbox .description_wrap:before{
	position: fixed;
	content: "";
	top: 0px;
	left: 0px;
	right: 0px;
	height: 50px;
	background-color: #fff;
	z-index: 2;
}
.rt_modalbox .description_wrap:after{
	position: fixed;
	content: "";
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 50px;
	background-color: #fff;
	z-index: 2;
}
.rt_modalbox .description_wrap::-webkit-scrollbar{
  width: 11px;
}
.rt_modalbox .description_wrap{
  scrollbar-width: thin;
  scrollbar-color: #999 #fff;
}
.rt_modalbox .description_wrap:-webkit-scrollbar-track{
  background: #fff;
}
.rt_modalbox .description_wrap::-webkit-scrollbar-thumb{
  background-color: #999;
  border-radius: 10px;
  border: 3px solid #fff;
}
.rt_portfolio .hidden_content{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
}
.rt_modalbox .popup_details{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.rt_modalbox .popup_details .top_image{
	position: relative;
	overflow: hidden;
	margin-bottom: 37px;
}
.rt_modalbox .popup_details .top_image img{
	position: relative;
	min-width: 100%;
	opacity: 0;
}
.rt_modalbox .popup_details .top_image .main{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 12px;
}
.rt_modalbox .portfolio_main_title{
	width: 100%;
	float: left;
	margin-bottom: 20px;
}
.rt_modalbox .portfolio_main_title span{
	display: inline-block;
	font-size: 16px;
	font-family: 'Jost', sans-serif;
}
.rt_modalbox .portfolio_main_title span a{
	text-decoration: none;
	color: #6f6b80;
}
.rt_modalbox .portfolio_main_title h3{
    font-size: 22px;
	margin-bottom: 3px;
}
.rt_modalbox .main_details{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	margin-bottom: 60px;
}
.rt_modalbox .main_details .textbox{
	width: 70%;
	padding-right: 40px;
}
.rt_modalbox .main_details .textbox p{
	margin-bottom: 15px;
}
.rt_modalbox .main_details .textbox p:last-child{
	margin-bottom: 0px;
}
.rt_modalbox .main_details .detailbox{
	width: 30%;
	padding-left: 40px;
}
.rt_modalbox .main_details .detailbox > ul{
	margin: 0px;
	list-style-type: none;
}
.rt_modalbox .main_details .detailbox > ul > li{
	margin: 0px 0px 10px 0px;
	width: 100%;
	float: left;
}
.rt_modalbox .main_details .detailbox > ul > li:last-child{
	margin-bottom: 0px;
}
.rt_modalbox .main_details .detailbox .first{
    font-weight: 500;
	font-size: 18px;
	display: block;
	color: #000;
	font-family: 'Jost', sans-serif;
}
.rt_modalbox .main_details .detailbox span{
	font-size: 16px;
	font-family: 'Jost', sans-serif;
}
.rt_modalbox .main_details .detailbox span a{
	text-decoration: none;
	color: #7d7789;
}
.rt_modalbox .additional_images{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.rt_modalbox .additional_images ul{
	margin: 0px 0px 0px -30px;
	list-style-type: none;
}
.rt_modalbox .additional_images ul li{
	margin: 0px 0px 30px 0px;
	float: left;
	width: 50%;
	padding-left: 30px;
}
.rt_modalbox .additional_images ul li:nth-child(3n-2){
	width: 100%;
}
.rt_modalbox .additional_images ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.rt_modalbox .additional_images ul li .my_image{
	position: relative;
}
.rt_modalbox .additional_images ul li .my_image img{
	opacity: 0;
	min-width: 100%;
}
.rt_modalbox .additional_images ul li .my_image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
}
.rt_portfolio .brush_1{
	position: absolute;
	top: 150px;
	left: 100px;
}
.rt_portfolio .brush_2{
	position: absolute;
	bottom: -120px;
	right: 60px;
}

/*---------------------------------------------------*/
/*	08) DIZME SKILLS
/*---------------------------------------------------*/

.rt_skills{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.rt_skills .wrapper{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	align-items: center;
}
.rt_skills .left{
	width: 50%;
	padding-right: 100px;
}
.dodo_progress{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 30px;
	overflow: hidden;
}
.progress_inner{
	width:100%;
	margin-bottom:22px;
}
.progress_inner:last-child{
	margin-bottom: 0px;
}
.progress_inner > span{
	margin:0px 0px 9px 0px;
	display:block;
	text-align:left;
	position: relative;
}
.progress_inner span.label{
	opacity: 0;
	transform: translateY(10px);
	display: block;
	color: #000;
	font-size: 18px;
	font-weight: 500;
	font-family: 'Jost', sans-serif;
	
	-webkit-transition: all .5s ease;
	   -moz-transition: all .5s ease;
	    -ms-transition: all .5s ease;
	     -o-transition: all .5s ease;
	        transition: all .5s ease;
}
.progress_inner span.label.opened{
	opacity: 1;
	transform: translateY(0px);
}
.progress_inner span.number{
	float: right;
	position: absolute;
	right: 100%;
	bottom: -2px;
	transition: all 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);  /* IE 10+ */
	color: #f75023;
	font-size: 16px;
	font-family: 'Jost', sans-serif;
}
.progress_inner .background{
	background:#e7e5f1;
	width:100%;
	min-width:100%;
	position:relative;
	height:8px;
	border-radius: 50px;
}
.progress_inner .background .bar_in{
	height:8px;
	width:0px;
	overflow:hidden;
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	position: relative;
	top: 0px;
}
.progress_inner .background .bar{
	width:0px;
	height:100%;
}
.progress_inner .background .bar.open{
	-webkit-animation: wow 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);  /* Safari 4+ */
	-moz-animation:    wow 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);  /* Fx 5+ */
	animation:         wow 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);  /* IE 10+ */
	width:100%;	
}

@-webkit-keyframes wow {0%{ width:0%; } 100%{ width:100%; }}
@-moz-keyframes wow {0%{ width:0%; } 100%{ width:100%; }}
@keyframes wow {0%{ width:0%; } 100%{ width:100%; }}

.rt_skills .right{
	width: 50%;
	padding-left: 100px;
}
.rt_skills .right img{
	max-height: 800px;
}






/*---------------------------------------------------*/
/*	09) DIZME SERVICES
/*---------------------------------------------------*/
.list-group-item{
	text-align: center;
	align-items: center;
	justify-content: center;
}

.list-group{
	width: 65%;
}


.rt_full_link{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 5;
}
.rt_services{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 5rem;
	padding-bottom: 10rem;
	position: relative;
}
.rt_services .service_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 86px;
}
.rt_services .service_list ul{
	margin: 0px 0px 0px -25px;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 3;
}
.rt_services .service_list ul li{
	margin: 0px 0px 25px 0px;
	width: 50%;
	float: left;
	padding-left: 25px;
	background-image: url("/img/yelBg.jpg");
}
.rt_services .service_list ul li .list_inner{
	width: 100%;
	height: 100%;
	clear: both;
	float: left;
	position: relative;
	border-radius: 12px;
	background-color: #fff;
	box-shadow: 18px 0px 87px rgba(10,15,70,.07);
	padding: 65px 65px 65px 195px;
	background-image: url("/img/yelBg.jpg");
}
.rt_services .service_list ul li.simple .list_inner{
	box-shadow: none;
	border-radius: 0px;
	padding: 0px 60px 0px 0px;
	background-color: transparent;
}
.rt_services .service_list ul li.text{
	text-align: center;
	padding: 0px 100px;
}
.rt_services .service_list .title{
	width: 100%;
	float: left;
	margin-bottom: 19px;
}
.rt_services .service_list .title h3{
	font-size: 30px;
	margin-bottom: 16px;
}
.rt_services .service_list .price{
	font-weight: 500;
	font-size: 21px;
	color: #000;
	font-family: 'Jost', sans-serif;
}
.rt_services .service_list .price span{
	font-size: 24px;
	color: #f75023;
}
.rt_services .service_list .icon{
	position: absolute;
	left: 65px;
	top: 65px;
	width: 95px;
	height: 95px;
}
.rt_services .service_list .icon .svg{
	width: 45px;
	height: 45px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	position: absolute;
	z-index: 2;
	color: #E8060A;
}
.rt_services .service_list .icon .back{
	position: absolute;
	max-width: 95px;
	top: 0px;
}
.rt_services .service_list .wrapper{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}
.rt_services .service_list .wrapper h3{
	font-size: 36px;
	font-weight: 700;
	letter-spacing: -.2px;
	margin-bottom: 35px;
}
.rt_services .popup_service_image{
	opacity: 0;
	visibility: hidden;
	display: none;
	position: absolute;
	z-index: -111;
}
.rt_services .service_hidden_details{
	opacity: 0;
	visibility: hidden;
	display: none;
	position: absolute;
	z-index: -111;
}
.rt_modalbox .service_popup_informations{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.rt_modalbox .service_popup_informations .image{
	width: 100%;
	float: left;
	position: relative;
	margin-bottom: 37px;
}
.rt_modalbox .service_popup_informations .image img{
	position: relative;
	min-width: 100%;
	opacity: 0;
}
.rt_modalbox .service_popup_informations .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
}
.rt_modalbox .service_popup_informations .main_title{
	width: 100%;
	float: left;
	margin-bottom: 23px;
}
.rt_modalbox .service_popup_informations .main_title h3{
	font-size: 30px;
	margin-bottom: 5px;
}
.rt_modalbox .service_popup_informations .main_title span{
	font-weight: 500;
    font-size: 21px;
    color: #000;
    font-family: 'Jost', sans-serif;
}
.rt_modalbox .service_popup_informations .main_title span span{
	font-size: 24px;
    color: #f75023;
}
.rt_modalbox .service_popup_informations .descriptions{
	width: 100%;
	float: left;
}
.rt_modalbox .service_popup_informations .descriptions p{
	margin-bottom: 15px;
}
.rt_modalbox .service_popup_informations .descriptions p:last-child{
	margin-bottom: 0px;
}
.rt_services .brush_1{
	position: absolute;
	top: 300px;
	left: 0px;
}

.bot{
	position: absolute;
	bottom: -10px;
	margin-top: 0px;
	margin-bottom: -10px;
}

.rt_process .list{
	margin-bottom: 5rem;
}

.rt_services .brush_1 img{
	max-width: 460px;
}
.rt_services .brush_2{
	position: absolute;
	top: 0px;
	right: 0px;
}

#vendors h3, #contact h3 {
	color: #5a2c4f;
	font-family: 'Cuckoo Regular', 'Jost', 'sans-serif';
}

#contact p, #bigMeat p, #vendors p{
	color: black;
}

.policy h3, .ticket h3{
	font-family: 'Cuckoo Regular', 'Jost', 'sans-serif';
}

#vendors h2{
	color: #f2e7d2;
	font-family: 'Alfa Slab One', 'Jost', 'sans-serif';
	font-size: 80px;
	margin-top: 8rem;

}

#vendors .rt_butt{
	margin-left: 1rem;
	margin-top: 3rem;
}

#vendors .rt_butt a{
	text-decoration: none;
	background-color: #f2e7d2;
    color: #f75023;
    border-radius: 5rem;
    width: fit-content;
    padding: 1rem 3rem;
	font-weight: bolder;
	font-size: 1.2rem;
	
}


#sponsors .rt_logoContainer, .rt_logoContainer{
	width: 100%;
	overflow: hidden;
	padding: 2rem;
	margin: auto;
	display: inline-block;
	display: flex;
	white-space: nowrap;
	margin-top: 2rem;

  }
  
#sponsors .logoSlide, .logoSlide {
	display: flex;
	gap: 40px;
	justify-content: space-between;
	animation: scroll 10s linear infinite;
	

  }

  #sponsors .logoSlide img, .logoSlide img {
	width: 100px;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s;
	margin: 0px 4rem;
  }
  
  #sponsors .logoSlide img:hover {
	transform: scale(1.1);
  }

  @keyframes scroll {
	from {
	  transform: translateX(0%);
	}
	to {
	  transform: translateX(-100%);
	}
  }


  #sponsors .sponsorText{
	text-align: center;
	margin: auto;
	margin-top: 3rem;
	margin-bottom: 3rem;
  }
  #sponsors .sponsorText h3, a{
	color: #f23a00;
	text-decoration: none;
	font-family: 'poppins', 'Jost', 'sans-serif';
	font-weight: bold;
  }

  #sponsors .rt_main_title h3{
	color: #f23a00;
	font-family: 'Alfa Slab One', 'Jost', 'sans-serif';
	font-size: 4rem;
  }

  #sponsors .rt_services{
	padding-top: 3rem;
	padding-bottom: 4rem;
  }
  #crossSection .rt_services{
	padding-top: 10rem;
	padding-bottom: 3rem;
  }

  .cross{
	display: flex;
	position: relative;
	padding-bottom: 10rem;
	
  }

  #cross .logoSlide{
	display: flex;
	gap: 30px;
	justify-content: flex-start;
	

  }



  .cross1{
	transform: rotate(10deg);
	position: absolute;
	background-color: #f2e7d2;
	padding: 0rem;
	padding-left: 10vw;
	padding-right: 10vw;
	width: 120vw;
	text-align: center;
	margin-left: -10vw;
  }
  .cross2{
	transform: rotate(-10deg);
	position: absolute;
	background-color: #f75023;
	padding: 0rem;
	padding-left: 10vw;
	padding-right: 10vw;
	width: 120vw;
	text-align: center;
	margin-left: -10vw;
  }
  .background.contBg, .background.contBg1{
	height: 5rem;
    background-size: contain;
    background-position: center;
    background-repeat: repeat-x;
	width: 120vw;
    margin-left: -10vw;

  }
  .contBg{
	transform: rotate(-5deg);
	background-color: #f2e7d2;
	box-shadow: 0px 4px 4px 0px #F8E0B7;
    margin-top: 5rem;

    

  }
  .contBg1{
	transform: rotate(5deg);
	background-color: #ff3d00;
    margin-top: 5rem;
  }



/*---------------------------------------------------*/
/*	Accordion
/*---------------------------------------------------*/

.accordion{
	width: 55vw;
	margin: auto;
}

.accordion-item {
	margin-bottom: 1rem; 
	overflow: hidden; 
	border: none; 
	border-radius: 1rem !important; 
	background-color: #f2e7d2; 
	padding: 1rem;
  }
  
.accordion-button {
	border-radius: 10px; 
	background-color: #f2e7d2; 
	color: #f75023; 
	box-shadow: none; 
	outline: none; 
	font-family: 'Alfa Slab One', 'Jost', 'sans-serif';
	font-size: 1.5rem;
	padding-bottom: 0px;
	align-items: center;
  }
  

.accordion-button:not(.collapsed) {
	background-color: #f2e7d2; 
	color: #f75023; 
	box-shadow: none;
  }
  
  .accordion-button:focus {
	box-shadow: none; 
  }

  .accordion-body{
	background-color: #f2e7d2;
	font-size: 1rem;
	font-family: 'Poppins','Jost', 'sans-serif';
	font-weight: 500;
  }
 






/*---------------------------------------------------*/
/*	10) DIZME TESTIMONIALS
/*---------------------------------------------------*/

.rt_testimonials{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 187px;
	position: relative;
}
.rt_testimonials .list_wrapper{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	margin-top: 80px;
}
.rt_testimonials .in{
	width: 100%;
	max-width: 900px;
	text-align: center;
	margin: 0px auto;
}
.rt_testimonials .total{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.rt_testimonials ul{
	margin: 0px;
	list-style-type: none;
}
.rt_testimonials ul li{
	margin: 0px;
}
.rt_testimonials .icon{
	margin-bottom: 35px;
}
.rt_testimonials .icon .svg{
	width: 65px;
	height: 65px;
	color: #f75023;
}
.rt_testimonials .text{
	margin-bottom: 51px;
}
.rt_testimonials .text p{
	font-size: 30px;
	font-style: italic;
	line-height: 1.6;
}
.rt_testimonials .short{
	width: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.rt_testimonials .short .image{
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 100%;
}
.rt_testimonials .short .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 100%;
}
.rt_testimonials .detail{
	text-align: left;
	padding-left: 25px;
}
.rt_testimonials .detail h3{
	font-size: 24px;
}
.rt_testimonials .detail span{
	font-size: 16px;
}
.rt_testimonials .owl-theme .owl-dots .owl-dot span{
	width: 15px;
	height: 15px;
	background-color: #f75023;
	position: relative;
	margin: 0px 12px;
}
.rt_testimonials .owl-theme .owl-dots .owl-dot span:before{
	position: absolute;
	content: "";
	top: 1px;
	bottom: 1px;
	left: 1px;
	right: 1px;
	border-radius: 100%;
	border: 2px solid #ffb324;
	z-index: -1;
	
	-webkit-transition: all .5s ease;
	   -moz-transition: all .5s ease;
	    -ms-transition: all .5s ease;
	     -o-transition: all .5s ease;
	        transition: all .5s ease;
}
.rt_testimonials .owl-theme .owl-dots .owl-dot.active span:before{
	top: -5px;
	bottom: -5px;
	left: -5px;
	right: -5px;
}
.rt_testimonials .owl-theme .owl-nav.disabled+.owl-dots{
	top: -5px;
	bottom: -5px;
	left: -5px;
	right: -5px;
	margin-top: 64px;
}
.rt_testimonials .brush_1{
	position: absolute;
	top: -120px;
	right: 20px;
}
.rt_testimonials .left_details{
	position: absolute;
	top: 50%;
	left: 45px;
	transform: translateY(-50%);
	margin-top: -10px;
}
.rt_testimonials .left_details .det_image{
	position: absolute;
	border-radius: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.rt_testimonials .left_details .det_image.one{
	width: 55px;
	height: 55px;
}
.rt_testimonials .left_details .det_image.two{
	width: 70px;
	height: 70px;
	top: -217px;
	left: 133px;
}
.rt_testimonials .left_details .det_image.three{
	width: 60px;
	height: 60px;
	top: -60px;
	left: 255px;
}
.rt_testimonials .left_details .det_image.four{
	width: 35px;
	height: 35px;
	left: 260px;
	bottom: -153px;
}
.rt_testimonials .left_details .circle{
	position: absolute;
	width: 18px;
	height: 18px;
	display: inline-block;
	border-radius: 100%;
}
.rt_testimonials .left_details .circle.green{
	background-color: #1cbe59;
	top: -108px;
	left: 55px;
}
.rt_testimonials .left_details .circle.yellow{
	background-color: #f0c45c;
	left: 148px;
	bottom: -42px;
}
.rt_testimonials .left_details .border{
	border: 4px solid #6e50f0;
	width: 30px;
	height: 30px;
	top: -152px;
	left: 300px;
}
.rt_testimonials .right_details{
	position: absolute;
	top: 50%;
	right: 85px;
	transform: translateY(-50%);
	margin-top: -50px;
}
.rt_testimonials .right_details .det_image{
	position: absolute;
	border-radius: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.rt_testimonials .right_details .det_image.one{
	width: 49px;
	height: 49px;
}
.rt_testimonials .right_details .det_image.two{
	width: 79px;
	height: 79px;
	bottom: -100px;
	right: 225px;
}
.rt_testimonials .right_details .det_image.three{
	width: 58px;
	height: 58px;
	top: -162px;
	right: 50px;
}
.rt_testimonials .right_details .circle{
	position: absolute;
	width: 21px;
	height: 21px;
	display: inline-block;
	border-radius: 100%;
}
.rt_testimonials .right_details .circle.yellow{
	background-color: #f0c45c;
	top: -173px;
	right: 263px;
}
.rt_testimonials .right_details .circle.purple{
	background-color: #8067f0;
	bottom: -180px;
	right: 38px;
}
.rt_testimonials .right_details .border{
	border:6px solid #1cbe59;
	width: 54px;
	height: 54px;
	right: 109px;
	top: -13px;
}

/*---------------------------------------------------*/
/*	11) DIZME PARTNERS
/*---------------------------------------------------*/

.rt_partners{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.rt_partners .partners_inner{
	width: 100%;
    float: left;
    clear: both;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #eee;
}
.rt_partners ul{
	margin: -2px -10px -2px -2px;
    list-style-type: none;
    padding-top: 2px;
    float: left;
    padding-left: 2px;
    min-width: calc(100% + 12px);
} 
.rt_partners ul li{
	margin: 0px;
    float: left;
    width: 25%;
    border: 2px solid #eee;
    text-align: center;
    height: 180px;
    line-height: 180px;
    position: relative;
    margin-top: -2px;
    margin-left: -2px;
    overflow: hidden;
} 
.rt_partners ul li img{
	max-width: 88%;
    max-height: 100px;
} 
.rt_partners ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	opacity: .5;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.rt_partners ul li .list_inner:hover{
	opacity: 1;
}
.rt_partners .brush_1{
	position: absolute;
	top: -170px;
	left: 0px;
}

/*---------------------------------------------------*/
/*	12) DIZME NEWS
/*---------------------------------------------------*/

.rt_news{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 185px;
	margin-bottom: 160px;
	position: relative;
}
.rt_news .news_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 65px;
}
.rt_news ul{
	margin: 0px 0px 0px -25px;
	list-style-type: none;
}
.rt_news ul li{
	margin: 0px 0px 25px 0px;
	width: 33.3333%;
	float: left;
	padding-left: 25px;
}
.rt_news ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.rt_news ul li .image{
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
	border-radius: 12px;
}
.rt_news ul li .image img{
	position: relative;
	opacity: 0;
	min-width: 100%;
}
.rt_news ul li .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
	transform: scale(1) translateZ(0);
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.rt_news ul li .image:hover .main{
	transform: scale(1.1) translateZ(0);
}
.rt_news ul li .date{
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 2;
	display: inline-block;
	background-color: #1cbe59;
	border-radius: 12px;
	text-align: center;
	padding: 13px 19px 12px 19px;
	line-height: 1;
}
.rt_news ul li .date h3{
	font-size: 24px;
	color: #fff;
	font-family: inherit;
	line-height: 1.2;
}
.rt_news ul li .date span{
	font-size: 14px;
	color: #fff;
}
.rt_news ul li .details .category a{
	font-size: 16px;
	color: #f75023;
	font-family: 'Jost', sans-serif;
	text-decoration: none;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 2px;
}
.rt_news ul li .details .title{
	line-height: 1.4;
}
.rt_news ul li .details .title a{
	font-size: 21px;
	color: #000;
	display: inline-block;
	text-decoration: none;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.rt_news ul li .details .title a:hover{
	color: #f75023;
}
.rt_news .news_hidden_details{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
}
.rt_modalbox .news_popup_informations{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.rt_modalbox .news_popup_informations .image{
	position: relative;
	margin-bottom: 37px;
}
.rt_modalbox .news_popup_informations .image img{
	position: relative;
	opacity: 0;
	min-width: 100%;
}
.rt_modalbox .news_popup_informations .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
}
.rt_modalbox .news_popup_informations .details{
	width: 100%;
	float: left;
	margin-bottom: 20px;
}
.rt_modalbox .news_popup_informations .details span a{
	text-decoration: none;
	color: #6f6b80;
	font-family: 'Jost', sans-serif;
	font-size: 16px;
}
.rt_modalbox .news_popup_informations .details h3{
	font-size: 22px;
	margin-bottom: 3px;
}
.rt_modalbox .news_popup_informations .text{
	width: 100%;
	float: left;
}
.rt_modalbox .news_popup_informations .text p{
	margin-bottom: 15px;
}
.rt_modalbox .news_popup_informations .text p:last-child{
	margin-bottom: 0px;
}
.rt_news .brush_1{
	position: absolute;
	top: 250px;
	left: 115px;
}
.rt_news .brush_2{
	position: absolute;
	top: 0px;
	right: 0px;
}

/*---------------------------------------------------*/
/*	13) DIZME SUBSCRIBE
/*---------------------------------------------------*/

.rt_subscribe{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.rt_subscribe .inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.rt_subscribe .background{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	border-radius: 12px;
}
.rt_subscribe .background .dots{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
}
.rt_subscribe .background .overlay{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: rgba(128,103,240,.92);
	z-index: 1;
	border-radius: 12px;
}
.rt_subscribe .content{
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	padding: 83px 90px 86px 90px;
}
.rt_subscribe .left{
	width: 50%;
	padding-right: 40px;
}
.rt_subscribe .subtitle{
	display: inline-block;
	font-size: 21px;
	font-weight: 500;
	color: #fff;
	font-family: 'Jost', sans-serif;
	margin-bottom: 5px;
}
.rt_subscribe .title{
	color: #fff;
	font-size: 48px;
	margin-bottom: 10px;
}
.rt_subscribe .text{
	color: #fff;
}
.rt_subscribe .right{
	width: 50%;
	padding-left: 10px;
}
.rt_subscribe .field{
	width: 100%;
	position: relative;
}
.rt_subscribe .field input[type="text"]{
	width: 100%;
	height: 72px;
	border-radius: 12px;
	color: #6f6b80;
	background-color: #fff;
	padding-left: 30px;
}
.rt_subscribe .field input[type="text"]:focus{
	outline: none;
}
.rt_subscribe .field input[type="submit"]{
	position: absolute;
	right: 0px;
	top: 0px;
	height: 72px;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	color: #fff;
	font-family: 'Jost', sans-serif;
	font-size: 18px;
	text-transform: capitalize;
	font-weight: 500;
	background-color: #f75023;
	padding: 0px 35px;
}

/*---------------------------------------------------*/
/*	14) DIZME Vendor Policy
/*---------------------------------------------------*/

.rt_Vendor_Policy{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 120px;
	margin-bottom: 120px;
	position: relative;
}

.rt_Vendor_Policy p{
	text-align: center;
	margin-top: 25px;
}

.rt_Vendor_Policy h5{
	text-align: center;
	margin-top : 25px;
}

.last_section{
	margin-top: 90px;
}
.last_section .rt_button{
	margin-top: 30px;
}

.volunteerTerms p , .volunteerTerms h5{
	text-align: left;

}

/*---------------------------------------------------*/
/*	14) DIZME CONTACT 
/*---------------------------------------------------*/

.rt_contact{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.rt_contact .contact_inner{
	/* width: 100%;
	display: flex;
	margin-top: 80px;
	margin-bottom: 182px;
	position: relative; */
}
.rt_contact .left{
	width: 50%;
}
.rt_contact .left ul{
	margin: 0px;
	list-style-type: none;
}
.rt_contact .left ul li{
	margin: 0px 0px 15px 0px;
}
.rt_contact .left ul li:last-child{
	margin-bottom: 0px;
}
.rt_contact .left .list_inner{
	display: flex;
	align-items: center;
}
.rt_contact .left .icon{
	width: 88px;
	height: 88px;
	border-radius: 100%;
	position: relative;
}
.rt_contact .left .icon i{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 24px;
}
.rt_contact .left .short{
	padding-left: 25px;
}
.rt_contact .left .short h3{
	font-size: 30px;
	margin-bottom: 5px;
}
.rt_contact .left .short a{
	text-decoration: none;
	color: #6f6b80;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.rt_contact .left .short a:hover{
	color: #f75023;
}
.rt_contact .right{
	width: 50%;
}
.rt_contact .fields{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.rt_contact .input_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.rt_contact .input_list ul{
	margin: 0px 0px 0px -12px;
	list-style-type: none;
}
.rt_contact .input_list ul li{
	margin: 0px 0px 12px 0px;
	width: 50%;
	float: left;
	padding-left: 12px;
}
.rt_contact input{
	width: 100%;
	height: 58px;
	padding: 0px 30px;
	background-color: transparent;
	border:1px solid #d6dbe5;
	border-radius: 12px;
	color: #6f6b80;
	font-size: 18px;
}
.rt_contact input:focus{
	background-color: transparent;
	outline: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}
.rt_contact .message_area{
	width: 100%;
	float: left;
	margin-bottom: 4px;
}
.rt_contact .message_area textarea{
	width: 100%;
	height: 200px;
	padding: 16px 30px 30px 30px !important;
	background-color: transparent;
	border:1px solid #d6dbe5;
	border-radius: 12px;
	color: #6f6b80;
	font-size: 18px;
}
.rt_contact .message_area textarea:focus{
	background-color: transparent;
	outline: none;
}
.rt_contact .empty_notice{
	color: #F52225;
	margin-bottom: 7px;
	display: none;
	text-align: left;
	font-weight: 500;
}
.rt_contact .contact_error{
	color: #F52225;
	text-align: left;
	font-weight: 500;
}
.rt_contact .returnmessage{
	color:#3A00FF;
	margin-bottom: 7px;
	text-align: left;
	font-weight: 500;
}
.rt_map{
	width: 100%;
	float: left;
}
.gmap_canvas{
	border-radius: 12px;
}
.rt_contact .brush_1{
	position: absolute;
	top: 100px;
	left: 0px;
}
.rt_contact .contact_inner .brush_2{
	position: absolute;
	top: 10px;
	right: -150px;
}

/*---------------------------------------------------*/
/*	15) DIZME COPYRIGHT
/*---------------------------------------------------*/

.rt_copyright{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 10px 0px 15px 0px;
}
.rt_copyright .inner{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.rt_copyright .left p{
	font-size: 16px;
}
.rt_copyright .left a{
	text-decoration: none;
	color: #f23a00;
	font-weight: 700;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.rt_copyright .left a:hover{
	color: #f75023;
}
.rt_copyright .right ul{
	margin: 0px;
	list-style-type: none;
}
.rt_copyright .right ul li{
	margin: 0px 42px 0px 0px;
	display: inline-block;
}
.rt_copyright .right ul li:last-child{
	margin-right: 0px;
}
.rt_copyright .right ul li a{
	text-decoration: none;
	color: #6f6b80;
	font-size: 16px;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.rt_copyright .right ul li a:hover{
	color: #f75023;
}

/*---------------------------------------------------*/
/*	16) DIZME MAGIC CURSOR
/*---------------------------------------------------*/

.mouse-cursor{
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 100;
  background-color: #f75023;
  -webkit-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
  transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
}
.cursor-inner.cursor-hover {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  background-color: #f75023;
  opacity: .3;
}
.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #f75023;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 100;
  opacity: .5;
  -webkit-transition: all .08s ease-out;
  transition: all .08s ease-out;
}
.cursor-outer.cursor-hover{opacity: 0;}
.rt_all_wrap[data-magic-cursor="hide"] .mouse-cursor{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -1111;
}

/*---------------------------------------------------*/
/*	17) DIZME TOTOP
/*---------------------------------------------------*/

.progressbar{
    position: fixed;
	height: 100px;
    width: 1px;
	bottom: 25px;
    right: -25px;
    background-color: rgba(0,0,0,.08);
    z-index: 10;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.progressbar.animate{
	right: 25px;
}
.progressbar .line {
	position: absolute;
    width: 1px;
	height: auto;
    background-color: rgba(0,0,0,.4);
}

.progressbar .text{
	position: absolute;
    bottom: 100px;
    left: 0px;
    font-size: 13px;
    transform: rotateZ(90deg);
    text-transform: uppercase;
    transform-origin: left;
    white-space: nowrap;
}
.progressbar a{
	text-decoration: none;
	color: #000;
}

/*---------------------------------------------------*/
/*	 DIZME INTRO
/*---------------------------------------------------*/

.rt_intro .short_info{
	position: fixed;
	top: 10%;
	width: 100%;
	text-align: center;
}
.rt_intro .short_info img{
	margin-bottom: 25px;
}
.rt_intro .short_info h3{
	font-size: 20px;
	color: #767676;
}
.rt_intro{
	width: 100%;
	height: 100vh;
	clear: both;
	float: left;
	position: relative;
}
.rt_intro .demos{
	width: 100%;
	height: 100%;
	clear: both;
	display: flex;
	align-items: center;
	text-align: center;
	position: relative;
}
.rt_intro .left,
.rt_intro .right{
	width: 50%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.rt_intro .demos img{
	max-width: 400px;
	margin-bottom: 25px;
}
.rt_intro .desc{
	position: relative;
	top: 0px;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.rt_intro .desc h3{
	font-size: 20px;
}
.rt_intro .intro_line,
.rt_intro .intro_line_2,
.rt_intro .intro_line_3{
	position: fixed;
	top: 0px;
	width: 1px;
	height: 200%;
	left: 50%;
	transform: translateY(-50%);
	z-index: -1;
	background-color: rgba(0,0,0,.06);
}
.rt_intro .intro_line{
	left: 25%;
}
.rt_intro .intro_line_2{
	left: 50%;
	transform: translateY(-50%);
}
.rt_intro .intro_line_3{
	left: 75%;
}
.rt_intro .intro_link{
	position: absolute;
	z-index: 2;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}
.rt_intro .left:hover .desc{top: -20px;}
.rt_intro .right:hover .desc{top: -20px;}
.rt_intro_fixed_price .pricing-info,
.rt_intro_fixed_price .anim {text-decoration: none;
	color: #fff;
    font-family: "Montserrat";
    background-color: #e54b4b;
    position: fixed;
    font-size: 22px;
    text-align: center;
    z-index: 3;
    border-radius: 100%;
    height: 70px;
    width: 70px;
    line-height: 70px;
	display: inline-block;
	left: 50%;
	bottom: 10%;
	margin-left: -35px;
	font-weight: 600;
		
	-webkit-transition: all 0.2s;
	   -moz-transition: all 0.2s;
	    -ms-transition: all 0.2s;
	     -o-transition: all 0.2s;
	        transition: all 0.2s;	
		
}

@-webkit-keyframes myAnim {
    0% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: 0
    }
    50% {
        opacity: .3
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

@keyframes myAnim {
    0% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: 0
    }
    50% {
        opacity: .3
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

.rt_intro_fixed_price .anim:nth-child(1) {
    -webkit-animation: myAnim 2s infinite;
    animation: myAnim 2s infinite
}

.rt_intro_fixed_price .anim:nth-child(2) {
    -webkit-animation: myAnim 2s infinite .3s;
    animation: myAnim 2s infinite .3s
}

.rt_intro_fixed_price .anim:nth-child(3) {
    -webkit-animation: myAnim 2s infinite .6s;
    animation: myAnim 2s infinite .6s
}

/*---------------------------------------------------*/
/*	18) DIZME MEDIA QUERIES (FOR SMALL DEVIVES)
/*---------------------------------------------------*/

@media (max-width: 1600px) {
	body{font-size: 16px;}
	.container{max-width:1170px;}
	.rt_header{padding: 0px 0px;}
	.rt_header.animate{padding: 10px 0px;}
	.rt_header .download_cv a{padding: 5px 25px 4px 25px;}
	.rt_header .logo img{max-width: 110px;max-height: 70px;}
	/* .rt_header .menu ul li{margin-right: 30px;} */
	.rt_hero .hello h3{font-size: 25px;}
	.rt_hero .name h3{font-size: 60px;}
	.rt_hero .job p{font-size: 19px;}
	.rt_hero .text p{font-size: 16px;}
	.rt_button a{padding: 9px 35px 8px 35px;}
	.rt_hero .name{margin-bottom: 13px;}
	.rt_hero .job{margin-bottom: 23px;}
	.rt_hero .text{margin-bottom: 30px;}
	.rt_down{bottom: 30px;}
	.rt_hero .avatar img{max-height: 400px;}
	.rt_hero .skills{width: 50px;height: 50px;}
	.rt_hero .skills .svg{width: 25px;height: 25px;}
	.rt_hero .skills.figma{bottom: 20px;left: 100px;}
	.rt_hero .skills.photoshop{right: 110px;}
	.rt_hero .skills.illustrator{left: -20px;}
	.rt_process .icon .brush{max-width: 90px;}
	.rt_process .icon .svg{width: 45px;height: 45px;}
	.rt_about .right .title span{font-size: 22px;}
	.rt_about .right .title h3{font-size: 40px;}
	.rt_main_title{max-width: 550px;}
	.rt_main_title span{font-size: 22px;}
	.rt_main_title h3{font-size: 38px;}
	.rt_main_title h3{margin-bottom: 16px;}
	.rt_services .service_list .title h3{font-size: 25px;margin-bottom: 10px;}
	.rt_services .service_list .price{font-size: 18px;}
	.rt_services .service_list .price span{font-size: 20px;}
	.rt_testimonials .in{max-width: 650px;}
	.rt_testimonials .text p{font-size: 19px;}
	.rt_testimonials .detail h3{font-size: 22px;}
	.rt_testimonials .left_details .det_image.two{left: 120px;}
	.rt_testimonials .left_details .det_image.three{left: 200px;}
	.rt_testimonials .left_details .border{left: 240px;}
	.rt_testimonials .right_details .det_image.two{right: 170px;}
	.rt_testimonials .right_details .border{right: 68px;}
	.rt_testimonials .right_details .circle.yellow{right: 210px;}
	.rt_testimonials .right_details .circle.yellow{width: 55px;height: 55px;}
	.rt_about .brush_1{left: 40px;}
	.rt_about .numbers .wrapper{padding: 25px 30px 21px 26px;}
	.rt_about .numbers .wrapper h3{font-size: 50px;}
	.rt_about .numbers .wrapper .name{font-size: 18px;}
	.rt_portfolio .brush_1{left: 50px;}
	.rt_portfolio .brush_2{right: 10px;}
	.rt_news .brush_1{left: 60px;}
	.rt_contact .contact_inner .brush_2{right: -100px;}
	.rt_modalbox .description_wrap{padding: 40px;}
	.rt_modalbox .description_wrap:before{height: 40px;}
	.rt_modalbox .description_wrap:after{height: 40px;}
	.rt_modalbox .box_inner{top: 50px;bottom: 50px;width: 800px;}
	.rt_modalbox .close{margin-left: 20px;}
}
@media (max-width: 1200px) {
	.rt_modalbox .box_inner{width: 500px;}
	.rt_modalbox .description_wrap{padding: 35px;}
	.rt_modalbox .description_wrap:before{height: 35px;}
	.rt_modalbox .description_wrap:after{height: 35px;}
	.rt_modalbox .main_details{flex-direction: column;align-items: baseline;}
	.rt_modalbox .main_details .textbox{width: 100%;padding: 0px;margin-bottom: 40px;}
	.rt_modalbox .main_details .detailbox{width: 100%;padding: 0px;}
	.rt_modalbox .additional_images ul{margin: 0px;}
	.rt_modalbox .additional_images ul li{width: 100% !important;padding: 0px;}
	.rt_modalbox .popup_details .top_image{margin-bottom: 25px;}
	.rt_modalbox .service_popup_informations .image{margin-bottom: 25px;}
	.rt_modalbox .news_popup_informations .image{margin-bottom: 25px;}
}
@media (max-width: 1040px) {
	.container{padding: 0px 20px;}
	.mouse-cursor{display: none;}
	.rt_header{display: none;}
	.rt_mobile_menu{display: block;}
	.rt_portfolio .portfolio_list .main{border-radius: 12px;}
	.rt_portfolio .mobile_title{display: block;}
	.rt_portfolio_titles.visible{opacity: 0;visibility: hidden;}
	.rt_portfolio .portfolio_list ul li .inner:hover .main{transform: scale(1);}
	.rt_hero .content{flex-direction: column-reverse;justify-content: center}
	.rt_hero .avatar{padding: 0px;width: auto;margin-bottom: 30px;}
	.rt_hero .avatar img{max-width: 300px;max-height: 300px;}
	.rt_hero .skills{display: none;}
	.rt_hero .details{width: 100%;padding-right: 0px;text-align: center;}
	.rt_hero .button{justify-content: center;}
	.rt_hero .hello h3{font-size: 25px;}
	.rt_hero .name{margin-bottom: 11px;}
	.rt_hero .name h3{font-size: 55px;}
	.rt_hero .job{margin-bottom: 23px;}
	.rt_hero .job p{font-size: 23px;}
	.rt_hero .text{margin-bottom: 30px;}
	.rt_hero .text p{font-size: 20px;}
	.rt_down {bottom: 20px;}
	.rt_process ul{margin: 0px;}
	.rt_process ul li{width: 100%;padding-left: 0px;}
	.rt_about .wrapper{flex-direction: column;text-align: center;}
	.rt_about .left{padding-right: 0px;width: 100%;margin-bottom: 40px;}
	.rt_about .left .image img{max-width: 300px;max-height: 300px;}
	.rt_about .right{width: 100%;padding: 0px;}
	.rt_about .right .title span{font-size: 20px;}
	.rt_about .right .title h3{font-size: 35px;max-width: 100%;}
	.rt_about .numbers{position: relative;}
	.rt_about .numbers.year{top: auto;left: auto;margin-top: 20px;margin-bottom: 20px;}
	.rt_about .numbers.project{bottom: auto;right: auto;margin-bottom: 30px;}
	.rt_about .numbers .wrapper h3{font-size: 45px;}
	.rt_about .brush_1{display: none;}
	.rt_main_title span{font-size: 20px;}
	.rt_main_title h3{font-size: 35px;}
	.rt_portfolio .portfolio_list ul li{width: 50%;}
	.rt_about .brush_1{display: none;}
	.rt_about .brush_2{display: none;}
	.rt_portfolio .brush_1{display: none;}
	.rt_portfolio .brush_2{display: none;}
	.rt_skills .wrapper{flex-direction: column;align-items: baseline;}
	.rt_skills .left{padding-right: 0px;width: 100%;margin-bottom: 50px;}
	.rt_skills .right{padding-left: 0px;width: 100%;}
	.rt_skills .right img{max-width: 300px;max-height: 300px;}
	.rt_main_title{max-width: 100% !important;}
	.rt_services .brush_1{display: none;}
	.rt_services .brush_2{display: none;}
	.rt_services .service_list ul{margin: 0px;}
	.rt_services .service_list ul li{width: 100%;padding-left: 0px;}
	.rt_testimonials .left_details{display: none;}
	.rt_testimonials .right_details{display: none;}
	.rt_testimonials .brush_1{display: none;}
	.rt_testimonials .icon .svg{width: 50px;height: 50px;}
	.rt_testimonials .text p{font-size: 20px;}
	.rt_testimonials .detail h3{font-size: 21px;}
	.rt_partners .brush_1{display: none;}
	.rt_news .brush_1{display: none;}
	.rt_news .brush_2{display: none;}
	.rt_contact .brush_1{display: none;}
	.rt_news ul li{width: 50%;}
	.rt_subscribe .content{flex-direction: column;align-items: baseline;padding-left: 30px;padding-right: 30px;}
	.rt_subscribe .left{padding: 0px;width: 100%;margin-bottom: 40px;}
	.rt_subscribe .right{padding: 0px;width: 100%;}
	.rt_subscribe .subtitle{font-size: 19px;}
	.rt_subscribe .title{font-size: 35px;}
	.rt_contact .contact_inner{flex-direction: column;align-items: baseline;}
	.rt_contact .left .short h3{font-size: 25px;}
	.rt_contact .left{width: 100%;margin-bottom: 40px;}
	.rt_contact .right{width: 100%;}
	.rt_contact .contact_inner .brush_2{width: 20rem;} 
	.rt_copyright .inner{flex-direction: column;align-items: center;}
}
@media (max-width: 768px) {
	.rt_hero .avatar img{max-width: 220px;max-height: 220px;}
	.rt_hero .job{margin-bottom: 15px;}
	.rt_hero .job p{font-size: 18px;}
	.rt_hero .hello h3{font-size: 21px;}
	.rt_hero .text p{font-size: 16px;}
	.rt_hero .name h3{font-size: 42px;}
	.rt_hero .social{padding-left: 15px;}
	.rt_portfolio .portfolio_list ul{margin: 0px;}
	.rt_portfolio .portfolio_list ul li{width: 100%;padding-left: 0px;}
	.rt_services .service_list .icon{display: none;}
	.rt_services .service_list ul li .list_inner{padding: 40px 20px;}
	.rt_services .service_list .title h3{font-size: 25px;}
	.rt_services .service_list .price{font-size: 19px;}
	.rt_services .service_list .price span{font-size: 21px;}
	.rt_partners ul li{width: 50%;}
	.rt_news ul{margin: 0px;}
	.rt_news ul li{width: 100%;padding-left: 0px;}
	.rt_contact .input_list ul{margin: 0px;}
	.rt_contact .input_list ul li{width: 100%;padding-left: 0px;}
	.rt_subscribe .field input[type="submit"]{padding: 0px 15px;}
	.rt_modalbox .box_inner{width: 300px;}
	.rt_modalbox .portfolio_main_title h3{font-size: 19px;margin-bottom: 2px;}
	.rt_modalbox .description_wrap{padding: 20px;}
	.rt_modalbox .description_wrap:before{height: 20px;}
	.rt_modalbox .description_wrap:after{height: 20px;}
	.rt_modalbox .close{left: auto;right: 0px;margin-left: 0px;top: -40px;}
	.rt_modalbox .close a{width: 30px;height: 30px;}
	.rt_modalbox .service_popup_informations .main_title h3{font-size: 19px;}
	.rt_modalbox .service_popup_informations .main_title span{font-size: 16px;}
	.rt_modalbox .service_popup_informations .main_title span span{font-size: 16px;}
	.rt_modalbox .service_popup_informations .main_title h3{margin-bottom: 0px;}
	.rt_modalbox .news_popup_informations .details h3{font-size: 19px;}
	/* .rt_hero{margin-bottom: 135px;} 
	.rt_about{padding-top: 50px;}*/
	.rt_portfolio{padding-top: 113px;margin-bottom: 88px;}
	.rt_portfolio .portfolio_filter{padding-top: 53px;padding-bottom: 46px;}
	.rt_services{padding-top: 50px;margin-bottom: 0px;}
	.rt_testimonials .list_wrapper{margin-top: 65px;}
	.rt_testimonials .in{padding: 0px 20px;}
	.rt_testimonials{margin-bottom: 127px;}
	.rt_testimonials .owl-theme .owl-nav.disabled+.owl-dots{margin-top: 50px;}
	.rt_news{padding-top: 120px;margin-bottom: 100px;}
	.rt_contact{padding-top: 10px;}
	.rt_contact .contact_inner{margin-top: 67px;margin-bottom: 10px;}
	/* .rt_contact{margin-bottom: 120px;} */
	.reg{width: 97% !important;}
	.cont{width: 80% !important;}


	.mobile{
		display: block;

	}
	

	.rt_contact .contact_inner .brush_2{
		position: absolute;
		top: 20rem;
		
	}

	.bot{
		position: absolute;
		bottom: -2px;
		margin-top: 0px;
		margin-bottom: -2px;
	}

	.rt_hero{
		height: 80vh;
		
	}

	.policy h3{
		font-size: 24px;
		font-family: 'Cuckoo Regular', 'Jost', 'sans-serif';
	}

	.countdown {
		padding: 9px 20px;
		font-size: 16px;
		border-radius: 0px 0px 15px 15px;
		margin-bottom: 0px;
		transition: opacity 0.5s ease;
	}

	.rt_hero .title h3{
		font-size: 1.5rem;
		text-align: center;
	}

	.rt_button input[type="submit"] {
		padding-bottom: 30px;
	}

	.rt_copyright .logo{
		width: 50%;
	}

	.background.contBg, 
	.background.contBg1{
		height: 3rem;

	}

	#vendors .rt_services{
		padding-bottom: 5rem;

	}

	.rt_copyright{
		margin-top: 3rem;
		margin-bottom: 3rem;
	}

	#contact .contactText {
		margin-top: 13rem;
	}






}