@charset "utf-8";

/*---------------------------------------------------*/
/*	BASE
/*---------------------------------------------------*/

html {
	overflow-x: hidden;
	padding: 0px;
	margin: 0px;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
body{
	font-family: "Mulish";
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: 0px;
	word-wrap: break-word;
	font-weight: 400;
	background-color: #fff;
	color: #888888;
}
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;
	position:relative;
	padding: 0px 40px;
	clear:both;
}

h1, h2, h3, h4, h5, h6{
	font-weight:600;
	line-height: 1.2;
	font-family: "Montserrat Alternates", sans-serif;
	color: #222;
}

h1.title{
	font-size: 20px;
	font-size: 20px;
	font-weight:600;
	line-height: 1.2;
	font-family: "Mulish", sans-serif;
	color: #2886c8;
}

h1 { font-size: 45px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

.deltaplay_tm_all_wrap{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.deltaplay_tm_all_wrap,
.deltaplay_tm_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%;
    }
}

.footer-container {
	background: #F0AB25;
	color: #fff;
	max-width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
	clear: both;
}
.footer__left {
	display: flex;
	gap: 60px;
}

.footer-container .container {
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}

.footer__social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.footer-container li {
	list-style-type: none;
}

.footer-container a {
	color: #fff;
	text-decoration: none;
}

.footer__list-link {
	display: block;
	font-size: 20px;
	padding-bottom: 10px;
}

.footer__contacts-us {
	color: #1a2331;
	margin-top: 35px;
}

.footer__info {
	color: #1a2331;
	margin-top: 35px;
	font-size: 14px;
}
.email-container input{
	background: 0;
	width: 250px;
	outline: 0;
	border: 0;
	border-bottom: 3px solid rgba(255,255,255, 0.3);
	margin: 0 0 20px;
	padding-bottom: 10px;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255,255,255, 0.8);
}
.email-container ::placeholder {
	font-size: 18px;
	font-weight: bold;
	color: rgba(255,255,255, 0.5);
}
.email-container input:focus{
	background: rgba(255,255,255, 0.3);
}
.email-container button{
	border-radius: 8px;
	padding: 0;
	height: 50px;
	width: 100%;
	border: 3px solid #F16471;
	background: #F16471;
	font-size: 15px;
	font-weight: 400;
	color: white;
	cursor: pointer;
	transition: all 600ms ease-in-out;
}
.email-container button:hover{
	background: transparent;
	border: 3px solid #F16471;
}
span a{
	color: rgba(255,255,255, 0.8);
}

/* Popup styles */
.modal {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.5);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}
.modal-content {
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	max-width: 90%;
	width: 300px;
	text-align: center;
	position: relative;
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.modal-content h2 {
	margin-top: 0;
	font-size: 18px;
	color: #333;
}
.modal-close {
	position: absolute;
	top: 10px; right: 10px;
	cursor: pointer;
	font-size: 18px;
	color: #555;
}

@media (max-width: 768px) {
	.modal-content {
		width: 95%;
		font-size: 14px;
		padding: 15px;
	}
	.modal-close {
		font-size: 20px;
	}
}

/*---------------------------------------------------*/
/*	MENU
/*---------------------------------------------------*/

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before{
	width: 30px !important;
	height: 2px !important;
}
.hamburger-box{
	width: 30px !important;
}

/*---------------------------------------------------*/
/* TOPBAR
/*---------------------------------------------------*/

.deltaplay_tm_topbar{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 10;
}
.deltaplay_tm_topbar .topbar_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 45px;
}
.deltaplay_tm_topbar .logo{
	display: inline-block;
}
.deltaplay_tm_topbar .logo img{
	max-width: 85px;
}
.deltaplay_tm_topbar .right{
	display: flex;
	align-items: center;
}
.deltaplay_tm_topbar .right .social{
	position: relative;
	top: 3px;
}
.deltaplay_tm_topbar .right .social ul{
	margin: 0px;
	list-style-type: none;
}
.deltaplay_tm_topbar .right .social ul li{
	margin: 0px 15px 0px 0px;
	display: inline-block;
}
.deltaplay_tm_topbar .right .social ul li:last-child{
	margin-right: 0px;
}
.deltaplay_tm_topbar .right .social ul li a{
	text-decoration: none;
	color: #000;
}
.deltaplay_tm_topbar .right .social ul li .svg{
	width: 20px;
	height: 20px;
	display: block;
}
.deltaplay_tm_button{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.deltaplay_tm_topbar .deltaplay_tm_button{
	width: auto;
	margin-left: 30px;
}
.deltaplay_tm_button a{
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	display: inline-block;
	background-color: #F16471;
	padding: 14px 50px;
	border-radius: 10px;
	white-space: nowrap;

	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.deltaplay_tm_button a:hover{
	background-color: #EFAB22;
}

/*---------------------------------------------------*/
/*	HERO
/*---------------------------------------------------*/

.deltaplay_tm_hero{
	width: 100%;
	min-height: 100vh;
	clear: both;
	float: left;
	position: relative;
}
.deltaplay_tm_hero .background_shape{
	position: absolute;
	width: 76%;
	top: 0px;
	left: 0px;
	height: calc(100vh + 0px);
	background-color: #f1faff;
	clip-path: polygon(100% 0%, 81% 86%, 0% 100%, 0% 0%);
}
.deltaplay_tm_hero .background_shape.opened{
	height: calc(100vh + 65px);
}
.deltaplay_tm_hero .hero_content{
	width: 100%;
	height: 100%;
	float: left;
	clear: both;
	position: relative;
	z-index: 3;
}
.deltaplay_tm_hero .content_inner{
	width: 100%;
	min-height: 100vh;
	float: left;
	clear: both;
	position: relative;
	display: flex;
	justify-content: space-around;
	flex-direction: column;
}
.deltaplay_tm_hero .content_inner .main_info{
	display: flex;
	justify-content: space-between;
	min-height: calc(100vh - 150px);
	padding: 100px 0;
}
.deltaplay_tm_hero .left{
	max-width: 610px;
}
.deltaplay_tm_hero .subtitle{
	display: inline-block;
	font-family: "Mulish", sans-serif;
	color: #F16471;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 5px;
}
.deltaplay_tm_hero .name{
	font-size: 85px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 22px;
	color: #1B2331;
}
.deltaplay_tm_hero .text{
	font-size: 24px;
	margin-bottom: 27px;
}

.deltaplay_tm_full_link{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 5;
}
.deltaplay_tm_hero .right{
	width: 50%;
	padding-left: 230px;
}
.deltaplay_tm_hero .right .image{
	position: relative;
	height: 100%;
}
.deltaplay_tm_hero .right .image img{
	position: relative;
	opacity: 0;
	min-width: 100%;
}
.deltaplay_tm_hero .right .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	border-radius: 15px;
}
.deltaplay_tm_hero .right .image .main:before{
	position: absolute;
	content: "";
	top: 24px;
	bottom: 24px;
	left: 24px;
	right:24px;
	border-radius: 20px;
	background-color: #EFAB22;
	z-index: -1;
	transform: rotate(-50deg);
	animation: animeRotate 13s linear 0s infinite alternate;
}

@keyframes animeRotate {
  0% {
    transform: rotate(-50deg);
  }
  100% {
    transform: rotate(-30deg);
  }
}

/*---------------------------------------------------*/
/*	04) deltaplay HERO ICONS
/*---------------------------------------------------*/

.simple_shapes .one,
.simple_shapes .two,
.simple_shapes .three,
.simple_shapes .four,
.simple_shapes .five,
.simple_shapes .six,
.simple_shapes .seven,
.simple_shapes .eight,
.simple_shapes .nine,
.simple_shapes .ten,
.simple_shapes .eleven,
.simple_shapes .twelve,
.simple_shapes .thirteen,
.simple_shapes .fourteen,
.simple_shapes .fifteen,
.simple_shapes .sixteen,
.simple_shapes .seventeen,
.simple_shapes .eighteen,
.simple_shapes .nineteen,
.simple_shapes .twenty{
	position: absolute;
}
.simple_shapes .one{
	top: 15%;
	left: 7%;
}
.simple_shapes .one .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .one .svg{
	width: 10px;
	height: 10px;
	stroke: rgba(46,185,146,.3);
}
.simple_shapes .two{
	bottom: 15%;
	left: 5%;
}
.simple_shapes .two .cls-1{
	stroke: none;
	fill: rgba(46,185,146,.3);
}
.simple_shapes .two .svg{
	width: 95px;
	height: 95px;
}
.simple_shapes .three{
	top: 13%;
	right: 5%;
}
.simple_shapes .three .cls-1{
	stroke: none;
	fill: rgba(46,185,146,.2);
}
.simple_shapes .three .svg{
	width: 120px;
	height: 120px;
}
.simple_shapes .four{
	top: 29%;
	left: 10%;
}
.simple_shapes .four .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .four .svg{
	width: 35px;
	height: 35px;
	stroke: rgba(169,219,90,.3);
}
.simple_shapes .five{
	top: 50%;
	transform: translateY(-50%);
	left: 8%;
	transform: rotate(90deg);
}
.simple_shapes .five .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .five .svg{
	width: 35px;
	height: 35px;
	stroke: rgba(46,185,146,.3);
}
.simple_shapes .six{
	bottom: 33%;
	left: 3%;
	transform: rotate(250deg);
}
.simple_shapes .six .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .six .svg{
	width: 30px;
	height: 30px;
	stroke: rgba(51,51,51,.3);
}
.simple_shapes .seven{
	bottom: 4%;
	left: 10%;
}
.simple_shapes .seven .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .seven .svg{
	width: 35px;
	height: 35px;
	stroke: rgba(255,71,71,.3);
}
.simple_shapes .eight{
	bottom: 24%;
	left: 14%;
}
.simple_shapes .eight .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .eight .svg{
	width: 10px;
	height: 10px;
	stroke: rgba(169,219,90,.3);
}
.simple_shapes .nine{
	top: 19%;
	left: 36%;
	transform: rotate(70deg);
}
.simple_shapes .nine .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .nine .svg{
	width: 30px;
	height: 30px;
	stroke: rgba(46,185,146,.3);
}
.simple_shapes .ten{
	top: 25%;
	left: 50%;
	transform: rotate(180deg);
}
.simple_shapes .ten .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .ten .svg{
	width: 35px;
	height: 35px;
	stroke: rgba(169,219,90,.3);
}
.simple_shapes .eleven{
	bottom: 50%;
	left: 48%;
}
.simple_shapes .eleven .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .eleven .svg{
	width: 10px;
	height: 10px;
	stroke: rgba(169,219,90,.3);
}
.simple_shapes .twelve{
	bottom:30%;
	left: 49%;
}
.simple_shapes .twelve .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .twelve .svg{
	width: 24px;
	height: 24px;
	stroke: rgba(255,71,71,.3);
}
.simple_shapes .thirteen{
	bottom: 26%;
	left: 39%;
}
.simple_shapes .thirteen .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .thirteen .svg{
	width: 18px;
	height: 18px;
	stroke: rgba(91,215,180,.3);
}
.simple_shapes .fourteen{
	top: 14%;
	right: 13%;
}
.simple_shapes .fourteen .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .fourteen .svg{
	width: 10px;
	height: 10px;
	stroke: rgba(169,219,90,.3);
}
.simple_shapes .fifteen{
	top: 32%;
	right: 2%;
}
.simple_shapes .fifteen .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .fifteen .svg{
	width: 35px;
	height: 35px;
	stroke: rgba(51,51,51,.3);
}
.simple_shapes .sixteen{
	top: 50%;
	right: 3%;
}
.simple_shapes .sixteen .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .sixteen .svg{
	width: 10px;
	height: 10px;
	stroke: rgba(169,219,90,.3);
}
.simple_shapes .seventeen{
	top: 59%;
	right: 3%;
}
.simple_shapes .seventeen .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .seventeen .svg{
	width: 35px;
	height: 35px;
	stroke: rgba(46,185,146,.3);
}
.simple_shapes .eighteen{
	bottom: 19%;
	right: 10%;
}
.simple_shapes .eighteen .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .eighteen .svg{
	width: 30px;
	height: 30px;
	stroke: rgba(255,71,71,.3);
}
.simple_shapes .nineteen{
	bottom: 12%;
	right: 19%;
}
.simple_shapes .nineteen .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .nineteen .svg{
	width: 10px;
	height: 10px;
	stroke: rgba(169,219,90,.3);
}
.simple_shapes .twenty{
	bottom: 12%;
	right: 3%;
}
.simple_shapes .twenty .cls-1{
	stroke: inherit;
	fill: none;
}
.simple_shapes .twenty .svg{
	width: 35px;
	height: 35px;
	stroke: rgba(169,219,90,.3);
}

.deltaplay_tm_main_section{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 150px 0;
}
.deltaplay_tm_main_section.active{
	display: block;
	-webkit-animation: slide-down .7s ease;
    -moz-animation: slide-down .7s ease;
}
@-webkit-keyframes slide-down {
      0% { -webkit-transform: translateY(30px); }
    100% {  -webkit-transform: translateY(0); }
}
@-moz-keyframes slide-down {
      0% {  -moz-transform: translateY(30px); }
    100% {  -moz-transform: translateY(0); }
}
.deltaplay_tm_main_title{
	width: 100%;
	max-width: 500px;
	height: auto;
	clear: both;
	float: left;
}
.deltaplay_tm_main_title span{
	font-size: 21px;
	color: #F16471;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 6px;
}
.deltaplay_tm_main_title h3{
	font-size: 47px;
	font-weight: 700;
}

/*---------------------------------------------------*/
/* PORTFOLIO
/*---------------------------------------------------*/
.deltaplay_tm_game img {
	width: 100%;
}
.deltaplay_tm_game .details {
	margin: 40px 0 25px;
}
.deltaplay_tm_game .main_details {
	margin-bottom: 25px;
}
.deltaplay_tm_portfolio{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.deltaplay_tm_portfolio .portfolio_filter{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	text-align: center;
	padding: 50px 0px 43px 0px;
}
.deltaplay_tm_portfolio .portfolio_filter ul{
	margin: 0px;
	list-style-type: none;
}
.deltaplay_tm_portfolio .portfolio_filter ul li{
	margin: 0px 30px 0px 0px;
	display: inline-block;
}
.deltaplay_tm_portfolio .portfolio_filter ul li:last-child{
	margin-right: 0px;
}
.deltaplay_tm_portfolio .portfolio_filter ul li a.current{
	color: #F16471;
}
.deltaplay_tm_portfolio .portfolio_filter ul li a{
	text-decoration: none;
	color: #222;
	font-size: 18px;
	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;
}
.deltaplay_tm_portfolio .portfolio_filter ul li a:hover{
	color: #F16471;
}
.deltaplay_tm_portfolio .portfolio_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.deltaplay_tm_portfolio .portfolio_list ul{
	margin: 0px 0px 0px -30px;
	list-style-type: none;
}
.deltaplay_tm_portfolio .portfolio_list ul li{
	margin: 0px 0px 30px 0px;
	width: 33.3333%;
	float: left;
	padding-left: 30px;
}
.deltaplay_tm_portfolio .portfolio_list ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.deltaplay_tm_portfolio .portfolio_list ul li .list_inner .image{
	position: relative;
}
.deltaplay_tm_portfolio .portfolio_list ul li .list_inner .image img{
	position: relative;
	min-width: 100%;
	opacity: 0;
}
.deltaplay_tm_portfolio .portfolio_list ul li .list_inner .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 10px;
}
.deltaplay_tm_portfolio .portfolio_list {
	margin-top: 50px;
}
.deltaplay_tm_portfolio .portfolio_list ul li .list_inner .overlay{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 1;
	background-color: rgba(46,185,146,.72);
	border-radius: 10px;
	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;
}
.deltaplay_tm_portfolio .portfolio_list ul li .list_inner:hover .overlay{
	opacity: 1;
	visibility: visible;
}
.deltaplay_tm_portfolio .portfolio_list .svg{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
	width: 50px;
	height: 50px;
	color: #fff;
	margin-top:10px;
	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;
}
.deltaplay_tm_portfolio .portfolio_list ul li .list_inner:hover .svg{
	opacity: 1;
	visibility: visible;
	margin-top: 0px;
}
.deltaplay_tm_portfolio .portfolio_list .details{
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: -10px;
	left: 0px;
	z-index: 2;
	padding: 0px 20px 35px 20px;
	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;
}
.deltaplay_tm_portfolio .portfolio_list ul li .list_inner:hover .details{
	opacity: 1;
	visibility: visible;
	bottom: 0px;
}
.deltaplay_tm_portfolio .portfolio_list .details span{
	font-size: 16px;
	color: #fff;
	display: inline-block;
	margin-bottom: 10px;
}
.deltaplay_tm_portfolio .portfolio_list .details h3{
	font-size: 21px;
	color: #fff;
	font-weight: 700;
}
.deltaplay_tm_portfolio .hidden_content{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
}
.additional_images{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.additional_images ul{
	margin: 0px 0px 0px -30px;
	list-style-type: none;
}
.additional_images ul li{
	margin: 0px 0px 30px 0px;
	float: left;
	width: 50%;
	padding-left: 30px;
}
.additional_images ul li:nth-child(3n-2){
	width: 100%;
}
.additional_images ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.additional_images ul li .my_image{
	position: relative;
}
.additional_images ul li .my_image img{
	opacity: 0;
	min-width: 100%;
}
.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: 10px;
}

/*---------------------------------------------------*/
/*	CONTACT
/*---------------------------------------------------*/

.deltaplay_tm_contact{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.deltaplay_tm_contact .wrapper{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	padding-top: 70px;
}
.deltaplay_tm_contact .wrapper .left{
	width: 35%;
	padding-right: 40px;
}
.deltaplay_tm_contact .wrapper .left ul{
	margin: 0px;
	list-style-type: none;
}
.deltaplay_tm_contact .wrapper .left ul li{
	margin: 0px 0px 25px 0px;
	width: 100%;
	float: left;
}
.deltaplay_tm_contact .wrapper .left ul li:last-child{
	margin-bottom: 0px;
}
.deltaplay_tm_contact .wrapper .left ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	display: flex;
	align-items: center;
}
.deltaplay_tm_contact .wrapper .left ul li .list_inner .icon{
	display: inline-block;
	position: relative;
	width: 90px;
	height: 90px;
	min-width: 90px;
	border-radius: 100%;
	background-color: #EFAB22;
}
.deltaplay_tm_contact .wrapper .left ul li .list_inner .icon .svg{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 35px;
	height: 35px;
	color: #fff;
}
.deltaplay_tm_contact .wrapper .left ul li .list_inner .short{
	padding-left: 15px;
}
.deltaplay_tm_contact .wrapper .left ul li .list_inner .short h3{
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 11px;
}
.deltaplay_tm_contact .wrapper .left ul li .list_inner .short span a{
	text-decoration: none;
	color: #888;

	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.deltaplay_tm_contact .wrapper .left ul li .list_inner .short span a:hover{
	color: #F16471;
}
.deltaplay_tm_contact .wrapper .right {
	width: 100%;
	max-width: 700px;
	padding-left: 0;
}
.deltaplay_tm_contact .wrapper .right .fields{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.deltaplay_tm_contact .wrapper .right .input_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.deltaplay_tm_contact .wrapper .right .input_list ul{
	margin: 0px 0px 0px -25px;
	list-style-type: none;
}
.deltaplay_tm_contact .wrapper .right .input_list ul li{
	margin: 0px 0px 25px 0px;
	float: left;
	width: 50%;
	padding-left: 25px;
}
.deltaplay_tm_contact .wrapper .right .input_list ul li input{
	width: 100%;
	height: 60px;
	border: 1px solid rgba(0,0,0,.15);
	border-radius: 10px;
	padding: 25px !important;
	background-color: transparent;
}
.deltaplay_tm_contact .wrapper .right .input_list ul li input:focus{
	outline: none;
	background-color: transparent;
	border: 1px solid rgba(0,0,0,.3);
}
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 */
}
.deltaplay_tm_contact .message_area{
	width: 100%;
	float: left;
	margin-bottom: 18px;
}
.deltaplay_tm_contact .message_area textarea{
	width: 100%;
	height: 230px;
	border-radius: 10px;
	border: 1px solid rgba(0,0,0,.15);
	padding: 25px !important;
	background-color: transparent;
}
.deltaplay_tm_contact .message_area textarea:focus{
	outline: none;
	background-color: transparent;
	border: 1px solid rgba(0,0,0,.3);
}
.deltaplay_tm_contact .empty_notice{
	color: #F52225;
	margin-bottom: 7px;
	display: none;
	text-align: left;
	font-weight: 500;
}
.deltaplay_tm_contact .contact_error{
	color: #F52225;
	text-align: left;
	font-weight: 500;
}
.deltaplay_tm_contact .returnmessage{
	color:#3A00FF;
	margin-bottom: 7px;
	text-align: left;
	font-weight: 500;
}

.deltaplay_tm_fixed_background{
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.anim_circle{
	animation: animCircle 15s infinite linear;
}

@keyframes animCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.anim_scale{
	animation: animScale 5s linear 0s infinite alternate;
}

@keyframes animScale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(2);
  }
}

.anim_scale2{
	animation: animScale2 5s linear 0s infinite alternate;
}

@keyframes animScale2 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.4);
  }
}

.anim_translate{
	animation: animTranslate 5s linear 0s infinite alternate;
}

@keyframes animTranslate {
  0% {
    transform: rotate(42deg) translateX(-5px);
  }
  100% {
    transform: rotate(42deg) translateX(5px);
  }
}

.anim_moveTop{
	animation: animMoveTop 5s linear 0s infinite alternate;
}

@keyframes animMoveTop {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(30px);
  }
}

.anim_moveLeft{
	animation: animMoveLeft 5s linear 0s infinite alternate;
}

@keyframes animMoveLeft {
  0% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(30px);
  }
}

.anim_extra{
	animation: animExtra 5s linear 0s infinite alternate;
}

@keyframes animExtra {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

.anim_right{
	animation: animRight 5s linear 0s infinite alternate;
}

@keyframes animRight {
  0% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(-15px);
  }
}

.anim_right2{
	animation: animRight2 5s linear 0s infinite alternate;
}

@keyframes animRight2 {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-30px);
  }
}

.anim_left2{
	animation: animLeft2 5s linear 0s infinite alternate;
}

@keyframes animLeft2 {
  0% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(0px);
  }
}

/*---------------------------------------------------*/
/*	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: #F16471;
  -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: #F16471;
  opacity: .3;
}
.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #F16471;
  -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;
}
.deltaplay_tm_all_wrap[data-magic-cursor="hide"] .mouse-cursor{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -1111;
}

.deltaplay_tm_button.yellow a{
	background-color: #EFAB22;
}
.deltaplay_tm_button.yellow a:hover{
	background-color: #F16471;
}

/*---------------------------------------------------*/
/*
/*---------------------------------------------------*/

.deltaplay_tm_extra_demo{
	width: 100%;
	/*height: 100vh;*/
	position: relative;
}
.deltaplay_tm_extra_demo .top_shape,
.deltaplay_tm_extra_demo .bottom_shape{
	position: fixed;
	left: 0px;
	right: 0px;
	height: 110px;
	background-color: #fff6f1;
}
.deltaplay_tm_extra_demo .top_shape{
	top: 0px;
	z-index: 8;
}
.deltaplay_tm_extra_demo .bottom_shape{
	bottom: 0px;
	z-index: 11;
}
.deltaplay_tm_extra_demo .background_part{
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	/*height: 100vh;*/
	background-color: #fff6f1;
}
.deltaplay_tm_extra_demo .deltaplay_tm_topbar{
	left: 132px;
	right: 132px;
	z-index: 10;
}
.deltaplay_tm_extra_demo .deltaplay_tm_topbar .social .svg{
	width: 45px !important;
	height: 45px !important;
}
.deltaplay_tm_extra_demo .deltaplay_tm_topbar .right .social ul li{
	margin-right: 8px;
}
.deltaplay_tm_extra_demo .deltaplay_tm_topbar .topbar_inner{
	padding-top: 0px;
	height: 110px;
}
.deltaplay_tm_topbar .wrapper{
	display: flex;
	align-items: center;
	position: relative
}
.deltaplay_tm_topbar.smaller{
	left: 15%;
	right: 15%;
}
.deltaplay_tm_topbar .wrapper .trigger{
	position: relative;
	top: 7px;
}
.deltaplay_tm_topbar .wrapper .menu .ccc{
	position: absolute;
	bottom: 0;
	width: 30px;
	background-color: #DD4242;
	display: block;
	top: 10px;
	bottom: 10px;
	border-radius: 20px;
	border-radius: 50px;
	background-color: #EFAB22;
	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;
}
.deltaplay_tm_topbar .wrapper .menu{
	background-color: #fff;
	padding: 10px;
	box-shadow: 18px 18px 30px rgba(8,32,93,.07);
	border-radius: 50px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(20px);
	margin-right: 20px;
	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;
}
.deltaplay_tm_topbar .wrapper .menu.opened{
	opacity: 1;
	visibility: visible;
	transform: translateX(0px);
}
.deltaplay_tm_topbar .wrapper .menu ul{
	margin: 0px;
	list-style-type: none;
}
.deltaplay_tm_topbar .wrapper .menu ul li{
	margin: 0px 0px 0px 0px;
	float: left;
}
.deltaplay_tm_topbar .wrapper .menu ul li:last-child{
	margin-right: 0px;
}
.deltaplay_tm_topbar .wrapper .menu ul li a{
	text-decoration: none;
	color: #222222;
	font-weight: 700;
	font-size: 16px;
	display: inline-block;
	padding: 9px 24px 8px 24px;
	border-radius: 50px;

	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.deltaplay_tm_topbar .wrapper .menu ul li.mleave.active a{
	color: #222;
}
.deltaplay_tm_topbar .wrapper .menu ul li.active a{
	color: #fff;
}
.deltaplay_tm_topbar .wrapper .menu ul li a:hover{
	color: #fff;
}
.deltaplay_tm_topbar .hamburger-inner,
.deltaplay_tm_topbar .hamburger-inner:after,
.deltaplay_tm_topbar .hamburger-inner:before{
	width: 30px;
	height: 2px;
}
.deltaplay_tm_topbar .hamburger{
	padding: 0px;
}
.deltaplay_tm_topbar .hamburger-box{
	width: 30px;
}


/*---------------------------------------------------*/
/*	MEDIA QUERIES (FOR SMALL DEVICES)
/*---------------------------------------------------*/

@media screen and (max-width: 1400px) {
	body {
		font-size: 16px;
		line-height: 1.6;
	}

	.container {
		max-width: 1070px;
	}

	.deltaplay_tm_topbar .topbar_inner {
		padding-top: 25px;
	}

	.deltaplay_tm_topbar .logo img {
		max-width: 95px;
	}

	.deltaplay_tm_button a {
		font-size: 14px;
		padding: 8px 35px;
	}

	.deltaplay_tm_topbar .right .social ul li {
		margin-right: 8px;
	}

	.deltaplay_tm_topbar .right .social ul li .svg {
		width: 17px;
		height: 17px;
	}

	.deltaplay_tm_topbar .deltaplay_tm_button {
		margin-left: 23px;
	}

	.deltaplay_tm_hero .subtitle {
		font-size: 25px;
	}

	.deltaplay_tm_hero .name {
		font-size: 70px;
		margin-bottom: 15px;
	}

	.deltaplay_tm_hero .text {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.deltaplay_tm_main_title h3 {
		font-size: 35px;
	}

	.deltaplay_tm_portfolio .portfolio_list .svg {
		width: 40px;
		height: 40px;
	}

	.deltaplay_tm_portfolio .portfolio_list .details span {
		margin-bottom: 7px;
		font-size: 14px;
	}

	.deltaplay_tm_portfolio .portfolio_list .details h3 {
		font-size: 19px;
	}

	.deltaplay_tm_portfolio .portfolio_list .details {
		padding-bottom: 25px;
	}

	.deltaplay_tm_contact .wrapper .left ul li .list_inner .short h3 {
		font-size: 19px;
		margin-bottom: 7px;
	}

	.deltaplay_tm_extra_demo .top_shape, .deltaplay_tm_extra_demo .bottom_shape {
		height: 75px;
	}

	.deltaplay_tm_extra_demo .deltaplay_tm_topbar .topbar_inner {
		height: 75px;
	}

	.deltaplay_tm_extra_demo .deltaplay_tm_topbar .social .svg {
		width: 30px !important;
		height: 30px !important;
	}

	.deltaplay_tm_extra_demo .deltaplay_tm_topbar .right .social ul li {
		margin-right: 4px;
	}

	.deltaplay_tm_extra_demo .deltaplay_tm_topbar {
		left: 75px;
		right: 75px;
	}

	.deltaplay_tm_extra_demo .deltaplay_tm_topbar.smaller {
		left: 15%;
		right: 15%;
	}
}

@media screen and (max-width: 1024px) {
	.deltaplay_tm_topbar.onepage{display: none;}
	.deltaplay_tm_extra_demo .top_shape, .deltaplay_tm_extra_demo .bottom_shape{display: none;}
	.deltaplay_tm_topbar.smaller{left: 10px;right: 10px;}
	.deltaplay_tm_extra_demo .deltaplay_tm_topbar .topbar_inner{height: 70px;}
	.deltaplay_tm_topbar .wrapper .menu{margin: 0;width: 180px;right: 0;transform: translateY(10px);border-radius: 10px;position: absolute;top: 100%;box-shadow: 0px 0px 30px rgb(8 32 93 / 10%);}
	.deltaplay_tm_topbar .wrapper .menu.opened{transform: translateY(19px);}
	.deltaplay_tm_topbar .wrapper .menu ul{display: flex;flex-direction: column;}
	.deltaplay_tm_topbar .wrapper .menu ul li a{display: block;}
	.deltaplay_tm_topbar .wrapper .menu .ccc{display: none;}
	.deltaplay_tm_topbar .wrapper .menu ul li.active a{color: #F16471;}
	.deltaplay_tm_topbar .wrapper .menu ul li a:hover{color: #F16471;}
	.deltaplay_tm_topbar .wrapper .menu ul li a{padding: 6px 15px 5px 15px;}

	.mouse-cursor{display: none;}
	.deltaplay_tm_button a{padding: 10px 30px;font-size: 14px;}
	.deltaplay_tm_topbar .topbar_inner{padding-top: 25px;}
	.deltaplay_tm_topbar .deltaplay_tm_button a{padding: 8px 20px;font-size: 13px;}
	.deltaplay_tm_topbar .right .social{display: none;}
	.container{padding: 0px 20px;}
	.deltaplay_tm_hero .content_inner .main_info{min-height: auto;}
	.deltaplay_tm_hero .content_inner .main_info{flex-direction: column-reverse;align-items: baseline;}
	.deltaplay_tm_hero .right{padding-left: 0px;width: 100%;}
	.deltaplay_tm_hero .right .image .main:before{display: none;}
	.deltaplay_tm_hero .left{width: 100%;margin-top: 40px;}
	.deltaplay_tm_hero .name{font-size: 35px;}
	.deltaplay_tm_hero .text{font-size: 20px;}
	.deltaplay_tm_main_title{max-width: 100%;}
	.deltaplay_tm_main_title h3{font-size: 40px;}
	.deltaplay_tm_portfolio .portfolio_list ul li{width: 50%;}
	.deltaplay_tm_portfolio .portfolio_filter{text-align: left;}
	.deltaplay_tm_contact .wrapper{flex-direction: column;}
	.deltaplay_tm_contact .wrapper .left{width: 100%;padding-right: 0px;margin-bottom: 40px;}
	.deltaplay_tm_contact .wrapper .right{width: 100%;}
	.deltaplay_tm_button.fixedVersion{display: none;}
	.simple_shapes .one,.simple_shapes .two,.simple_shapes .three,.simple_shapes .four,.simple_shapes .five,.simple_shapes .six,.simple_shapes .seven,.simple_shapes .eight,.simple_shapes .nine,.simple_shapes .ten,.simple_shapes .eleven,.simple_shapes .twelve,.simple_shapes .thirteen,.simple_shapes .fourteen,.simple_shapes .fifteen,.simple_shapes .sixteen,.simple_shapes .seventeen,.simple_shapes .eighteen,.simple_shapes .nineteen,.simple_shapes .twenty{display: none;}
	.rounded_shapes .one,.rounded_shapes .two,.rounded_shapes .three,.rounded_shapes .four,.rounded_shapes .five,.rounded_shapes .six,.rounded_shapes .seven,.rounded_shapes .eight,.rounded_shapes .nine,.rounded_shapes .ten,.rounded_shapes .eleven,.rounded_shapes .twelve,.rounded_shapes .thirteen,.rounded_shapes .fourteen,.rounded_shapes .fifteen,.rounded_shapes .sixteen,.rounded_shapes .seventeen,.rounded_shapes .eighteen{display: none;}
	.deltaplay_tm_hero .right .image .main {
		min-height: 300px;
		position: static;
	}
	.footer-container .container {
		flex-direction: column;
		gap: 70px;
		align-items: center;
	}
	.footer__left {
		flex-direction: column;
		align-items: center;
	}
}
@media screen and (max-width: 768px) {
	.deltaplay_tm_topbar .logo img{max-width: 70px;}
	.deltaplay_tm_main_title span{font-size: 18px;}
	.deltaplay_tm_main_title h3{font-size: 30px;}
	.deltaplay_tm_portfolio .portfolio_list ul{margin: 0px;}
	.deltaplay_tm_portfolio .portfolio_list ul li{width: 100%;padding-left: 0px;}
	.deltaplay_tm_portfolio .portfolio_list .details span{margin-bottom: 5px;}
	.deltaplay_tm_portfolio .portfolio_list .svg{width: 40px;height: 40px;}
	.deltaplay_tm_contact .wrapper .right .input_list ul{margin: 0px;}
	.deltaplay_tm_contact .wrapper .right .input_list ul li{width: 100%;padding-left: 0px;}
	.deltaplay_tm_contact .wrapper .left ul li .list_inner .short h3{font-size: 19px;margin-bottom: 8px;}
	.deltaplay_tm_contact .wrapper .left ul li .list_inner .icon{width: 80px;height: 80px;min-width: 80px;min-height: 80px;}
	.deltaplay_tm_contact .wrapper .left ul li .list_inner .icon .svg{width: 30px;height: 30px;}
	.additional_images ul{margin: 0px;}
	.additional_images ul li{width: 100%;padding-left: 0px;}
	}
