@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html {
    scroll-padding-top: 60px;
}
body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    background: url(../images/bg.jpg);
	line-height: 1.3;
}
a, a:hover, a:focus {
    text-decoration: none;
}
input:focus, textarea:focus, select:focus {
	outline: none;
	border: none;
}
::placeholder { 
    color: #777777 !important;
}
img {
    max-width: 100%;
}
.max-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 10px;
	position: relative;
}
.t-body {
    overflow: hidden;
    padding-top: 80px;
}
/* header */
.header-sec {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: #fff;
}
.header-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
	height: 80px;
}
.logo img {
    max-height: 60px;
}
ul.nav.header-nav {
    display: flex;
    align-items: center;
}
ul.nav.header-nav li {
	margin: 0 20px;
}
ul.nav.header-nav li a.menu-link {
    color: #1c4050;
    font-size: 16px;
}
ul.nav.header-nav li a.menu-link:hover{
	color: #ff5900;
}
ul.nav.header-nav li a.menu-link.contact {
    background: #ff5900;
    color: #fff;
    display: inline-block;
    padding: 9px 20px;
    border-radius: 35px;
    font-size: 15px;
    font-family: 'DM Sans';
}
.rckicon {
	margin-right: 8px;
}
.rckicon img {
	max-height: 20px;
}
ul.nav.header-nav li a.menu-link.contact:hover {
	background: #1c4050;
	color: #fff;
}
.mobile-menu-btn {
	display: none;
}


/* Footer */
.footer-sec {
	background: #143340;
	position: relative;
	padding: 45px 0 30px;
	color: #578da4;
}
.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 45px;
    border-bottom: 1px solid #578da4;
    padding: 0 0 25px;
}
.ftcol-1 {
    position: relative;
    display: grid;
    grid-template-columns: 25% auto;
    grid-gap: 25px;
}
.ft-social {
    padding: 15px 0;
}
.ft-social .ftsm {
    color: #143340;
    font-size: 24px;
    background: #335361;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
	margin-right: 15px;
}
.ft-social .ftsm:last-child {
	margin-right: 0;
}
.ft-social a {
    color: #143340;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ft-social .ftsm:hover {
	background: #fff;
}
.ftcol-2 {
    display: flex;
    grid-gap: 35px;
}
.ftqk {
    padding-bottom: 15px;
    font-weight: 700;
}
ul.ft-nav {
    padding: 0;
    list-style-type: none;
}
ul.ft-nav.ct2 {
    column-count: 2;
}
ul.ft-nav li a {
    color: #578da4;
    margin: 0 5px 10px;
    display: block;
}
ul.ft-nav li a:hover {
	color: #fff;
}
.copyright-text {
	font-family: 'DM Sans';
    text-align: center;
    padding: 20px 0 0;
}

/** Home slider **/
.banner-dekstop {
	position: relative;
	background: #000;
}
.banner-d .swiper-slide {
	background: rgb(0,0,0,0.4);
}
.slider-content-text {
    position: absolute;
    color: #fff;
    left: 10%;
    top: -5%;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    font-size: 40px;
	line-height: 1.2;
}
.sdtext-1 {
	opacity: 0;
	font-weight: 600;
	color: #ff5900;
}
.sdtext-2 {
	opacity: 0;
    font-weight: 600;
	color: #ff5900;
}
.sdtext-3 {
	opacity: 0;
    font-size: 65%;
	color: #fff;
	margin: 15px 0 0;
}
button.sd-btn {
    background: #2440da;
    border: none;
    min-width: 190px;
    height: 60px;
    margin: 25px 0 5px;
    color: #fff;
    border-radius: 45px;
    padding: 0px 15px;
    font-size: 55%;
}
button.sd-btn:hover {
	background: #fff;
	color: #000;
}
.swiper-slide-active .sdtext-1 {
	animation: fadeInUp linear 0.2s;
	animation-delay: 0.5s;
	opacity: 0;
	animation-fill-mode: both;
}
.swiper-slide-active .sdtext-2 {
	animation: fadeInUp linear 0.2s;
	animation-delay: 0.8s;
	opacity: 0;
	animation-fill-mode: both;
}
.swiper-slide-active .sdtext-3 {
	animation: fadeInUp linear 0.2s;
	animation-delay: 1.2s;
	opacity: 0;
	animation-fill-mode: both;
}
@keyframes fadeInUp {
    from {
		transform: translate3d(0,30px,0);
    }
    to {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}
@keyframes fadeInDown {
    from {
		transform: translate3d(0,-30px,0);
    }
    to {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}
@keyframes fadeInLeft {
    from {
        transform: translate3d(-100px,0,0);
    }
    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}
@keyframes fadeInRight {
    from {
        transform: translate3d(100px,0,0);
    }
    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}
.banner-d .swiper-button-prev::after {
	content: none;
}
.banner-d .swiper-button-next::after {
	content: none;
}
.banner-d .swiper-button-prev, .banner-d .swiper-button-next {
	color: #fff;
	height: 30px;
}
.banner-d .swiper-button-prev:hover, .banner-d .swiper-button-next:hover {
	transform: scale(1.07);
}

.about-sec {
	background: url("../images/bg-contact.png")no-repeat bottom center;
	background-size: cover;
	padding: 45px 0;
	color: #fff;
}
.about-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}
.about-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}
.uspbox {
    background: rgb(51, 83, 97, 0.5);
    border-radius: 12px;
    overflow: hidden;
    padding: 5px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
	line-height: 1.1;
    text-transform: uppercase;
	height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	position: relative;
}
.icon-img img {
    max-height: 55px;
}
.usptext-1 {
    margin-top: 10px;
    padding: 0 5%;
}
.uspbox.platform {
    grid-column: 3 / 5;
}
.uspbox.vip {
    grid-column: 1 / 3;
    flex-direction: row;
    grid-gap: 15px;
}
span.systext {
    font-size: 120%;
}
.icon-img-2 img {
    max-height: 50px;
}
.uspbox.rocket {
    grid-column: 3 / 5;
	background-image: url("../images/about/rocket-frame.png");
	background-repeat: no-repeat;
	background-size: cover;
}
.usptext-2 {
    text-align: left;
    font-size: 15px;
}
.systext {
    font-size: 120%;
    display: block;
}
.rocket-icon-img img {
    max-height: 65px;
}
.uspbox.games {
    grid-column: 1 / 3;
}
.uspbox.report {
    grid-column: 1 / 3;
    flex-direction: row;
    grid-gap: 15px;
}
.uspbox.language {
    grid-column: 1 / 3;
    grid-gap: 10px;
    flex-flow: row;
}
.icon-img-3 img {
    max-height: 100px;
}
.uspbox.affiliate {
    grid-column: 3 / 5;
    flex-direction: row;
	grid-gap: 15px;
}
.icon-img-4 img {
    max-height: 80px;
}
.uspbox.unique {
    grid-column: 3 / 5;
    grid-row: 3 / 5;
	background-color: rgb(51, 83, 97, 0.5);
	background-image: url("../images/about/unique-theme.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
}
.uspbox.payment {
    grid-column: 1 / 3;
	display: block;
}
.pmywrap {
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}
.payment-icon-img div {
    display: inline-block;
    margin: 0 2px;
}
.unique-img {
    margin: -10px -10px;
}
.unique-text {
    position: absolute;
    left: 7%;
    top: 8%;
    text-align: left;
    font-size: 16px;
}
button.more-btn {
	display: none;
}
.btn-wrap {
    text-align: center;
    padding: 30px 0 10px;
}
a.contact-btn {
    background: #ff5900;
    color: #fff;
    padding: 9px 20px;
    border-radius: 35px;
    display: inline-block;
    font-size: 15px;
    font-family: 'DM Sans';
}
a.contact-btn:hover {
	background: #fff;
    color: #000;
}
a.contact-btn:hover img {
	filter:brightness(0);
}
.advantage-sec {
	position: relative;
	padding: 45px 0;
	background-color: #fff;
	background-image: url("../images/bg-pattern.png");
	background-size: cover;
	background-position:  top center;
	text-align: center;
}

.adv-subtitle {
    background: #ff5900;
    color: #fff;
    padding: 6px 20px;
    border-radius: 35px;
    max-width: max-content;
    margin: 0 auto 10px;
}
.adv-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}
.orgtext {
	color: #ff5900;
}
.adv-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 30px;
}
.adva-box {
    background: url(../images/advbox-bg.jpg) no-repeat;
    background-size: cover;
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    max-width: 30%;
	min-height: 340px;
    vertical-align: top;
    padding: 30px 30px;
    margin: 0.5% 1%;
}
.adv-icon {
    margin-bottom: 12px;
}
.adv-icon img {
    max-height: 131px;
}
.advg-title {
    color: #ff5900;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}
.adtext-1 {
    font-family: 'DM Sans';
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.adtext-2 {
    font-family: 'Inter';
    font-size: 15px;
}
.pvd-note {
    font-family: 'DM Sans';
    font-size: 16px;
    padding-bottom: 15px;
}
.templates-sec {
	position: relative;
	padding: 45px 0;
	background: url("../images/global-bg.png")no-repeat top center;
	background-size: cover;
	text-align: center;
}
.global-subtitle {
    font-size: 20px;
    padding-bottom: 15px;
}
.device-img {
    max-width: 1000px;
    margin: 15px auto 15px;
}
.contact-sec {
	position: relative;
	padding: 45px 0;
	background-color: #fff;
	background-image: url("../images/contact-bg-pattern.png");
	background-size: cover;
	background-position: top center;
	text-align: center;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 43% auto;
    overflow: hidden;
    border-radius: 20px;
    color: #fff;
    max-width: 1000px;
    margin: 15px auto;
	text-align: left;
}
.contact-col-left {
    background: #163b4b;
	padding: 30px 30px;
}
.contact-col-right {
    background: #143340;
	padding: 30px 30px;
}
.contitle {
    font-size: 18px;
    font-weight: 600;
	margin-bottom: 15px;
}
.cticon {
    margin-right: 10px;
    max-width: 18px;
    display: inline-block;
}
.social-wrap {
    padding: 20px 0 10px;
}
.ct-social-box {
    background: #335361;
    margin-bottom: 15px;
    position: relative;
    border-radius: 15px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    grid-gap: 20px;
}
.social-icon {
    background: #143340;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #ff5900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.social-detail a {
    color: #fff;
}
.social-detail a:hover {
    color: #ff5900;
}
.charc-social {
    max-width: 72%;
    margin: 0 auto -30px;
}
.get-touch-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}
.input-field {
    position: relative;
    margin-bottom: 20px;
}
input.ct-input {
    height: 50px;
    width: 100%;
    border-radius: 8px;
    border: none;
    padding: 5px 20px;
}
textarea.ct-textarea {
    width: 100%;
    min-height: 130px;
    border-radius: 8px;
    padding: 10px 20px;
}
button.submit-btn {
    background: #ff5900;
    color: #fff;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 8px;
    border: 1px solid #ff5900;
    font-size: 16px;
    font-family: 'DM Sans';
    width: 100%;
    height: 45px;
}
button.submit-btn img {
    height: 20px;
    margin-right: 15px;
}
button.submit-btn:hover {
	border: 1px solid #fff;
	background: none;
	color: #fff;
}
.occas-note {
    text-align: center;
    font-size: 13px;
	padding: 10px 0;
}
.swiper-wrapper{
	transition-timing-function: linear !important;
}
.ptlogo-img {
	background: #f8f8f8;
	border: 1px solid #dcdcdc;
	border-radius: 10px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.partner-logo-slide, .partner-logo-slide-2 {
	margin: 15px 0;
}
.ptlogo-img img {
	max-height: 40px
}

/** Modal **/
.modal.top.fade .modal-dialog {
	top: -100%;
	transition: opacity 0.3s linear, top 0.3s ease-out;
}
.modal.top.fade.in .modal-dialog{top: 0;}      

.modal.top .modal-dialog {
	position: fixed;
	margin: auto;
	width: 100%;
	height: 100%;
	transform: translate3d(0%, 0, 0);
}
.modal.top .modal-content {
	height: -100%;
	overflow-y: auto;
}
.modal.top.fade.show .modal-dialog {
	top: 0%;
}
button.close-x {
    background: none;
    border: none;
    color: #ff5900;
    font-size: 24px;
    font-weight: 700;
    position: absolute;
    right: 7px;
    top: 14px;
    z-index: 2;
}
.modal-dialog.menu {
    max-width: 100%;
}
.modal-content.menu {
	background: #fff;
	border-radius: 0;
	border: none;
	padding: 15px 15px;
}
.menu-logo img {
    max-height: 40px;
}
ul.mobile-nav {
    padding: 0;
    list-style: none;
	margin: 15px 0;
}
ul.mobile-nav li.mb-item {
	padding: 10px 0;
	border-bottom: 1px solid #c6c6c6;
}
ul.mobile-nav li.mb-item:last-child {
	border-bottom: none;
}
ul.mobile-nav li.mb-item a.mb-link {
    padding: 5px 0;
    color: #1c4050;
    font-size: 16px;
}
.cont-wrap {
    text-align: center;
	margin-bottom: 20px;
}
a.contact-btn.mobile {
    font-size: 17px;
}
a.contact-btn.mobile:hover {
    border: 1px solid #000;
}
.follow-sm {
    text-align: center;
    color: #578da4;
}
.ft-social.mobile {
    text-align: center;
}
.ft-social.mobile a {
    color: #fff;
}
.ft-social.mobile .ftsm:hover {
    background: #578da4;
}



@media(max-width: 1080px) {
.t-body {
    padding-top: 60px;
}	
.header-container {
    height: 60px;
}	
button.menu-hamburger {
    background: none;
    border: none;
    max-width: 40px;
	position: relative;
	z-index: 2;
}		
.logo img {
    max-height: 40px;
}	
.mobile-menu-btn {
	display: inline-block;
}
.header-menu-wrapper {
    display: none;
}	
.about-wrapper {
    grid-template-columns: auto;
}
.swiper-banner .swiper-slide {
	height: 60vw;
}	
.mb-img {
	object-fit: cover;
	height: 100%;
}
	
}

@media(max-width: 991px) {
.contact-wrapper {
    display: grid;
    grid-template-columns: auto;
}
.contact-col-left {
    grid-row: 2 / 3;
}
}

@media(max-width: 767px) {
.slider-content-text {
    font-size: 5vw;
}	
.icon-img img {
    max-height: 47px;
}	
.uspbox {
    font-size: 11px;
	height: auto;
	padding: 10px 5px;
}
.usptext-2 {
    font-size: 12px;
}		
.adva-box {
    max-width: 100%;
    width: 100%;
    margin: 10px 0;
}
.icon-img-3 img {
    max-height: 87px;
}	
.icon-img-4 img {
    max-height: 70px;
}
.unique-text {
    font-size: 13px;
}
.adv-title {
    font-size: 30px;
	line-height: 1.2;
}
.footer-sec {
    padding: 30px 0 30px;
}	
.footer-wrapper {
    grid-template-columns: auto;
    grid-gap: 30px;
}
.ftcol-1 {
    grid-template-columns: 110px auto;
}
.ftcol-2 {
    text-align: center;
    justify-content: center;
}
.ft-social .ftsm {
    margin-right: 10px;
}	
.about-wrapper {
	max-height: 504px;
	overflow: hidden;
}	
.more-btn-wrap {
	text-align: center;
	padding: 30px 0 0;
}	
button.more-btn {
	display: initial;
	text-align: center;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	margin: 0 auto;
	background: none;
	color: #fff;
	border: none;
}	
.arrow-icon {
	max-width: 20px;
	margin: 5px auto;
	transition: transform 0.3s ease;
	animation: float 1.2s ease-in-out infinite;
}
button.more-btn.active .arrow-icon img {
	transform: rotate(180deg);
}
.about-wrapper.active {
	max-height: none;
}	

@-webkit-keyframes float {
  0% {
	transform: translateY(-2px);
  }
  50% {
	transform: translateY(3px);
  }
  100% {
	transform: translateY(-2px);
  }
}	
}

@media(max-width: 480px) {
.banner-d .swiper-button-prev, .banner-d .swiper-button-next {
	opacity: 0.5;
	height: 24px;
}	
.uspbox {
	font-size: 9px;
}
.unique-text {
	font-size: 11px;
}
.usptext-2 {
	font-size: 10px;
}	
.adv-title {
    font-size: 24px;
}	
.global-subtitle {
    font-size: 15px;
    padding-bottom: 10px;
}
.ptlogo-img {
	padding: 0 10px;
    height: 60px;
}	
.ptlogo-img img {
    max-height: 30px;
}
.about-wrapper {
	max-height: 480px;
}	
.rocket-icon-img img {
    max-height: 33px;
}
button.more-btn {
	font-size: 13px;
}
}
@media(max-width: 420px) {
.about-wrapper {
	max-height: 470px;
}
.uspbox {
	font-size: 2.2vw;
}
.usptext-2 {
	font-size: 2.4vw;
}	
}









































