@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --font-family: "Manrope", sans-serif;
    /* --second-family: "ATC Arquette", sans-serif;
    --third-family: "Inter", sans-serif;
    --font3: "FontAwesome", sans-serif; */
}

body,
html {
    height: 100%;
    scroll-behavior: smooth;
}

.font-1 {
    font-family: "Manrope", sans-serif;
}

:focus {
    box-shadow: none !important;
    border-color: #01204a5e !important;
}

body {
    font-family: "Manrope", sans-serif;
    --font-family: "ATC Manrope", sans-serif;
    /* font-family: var(--second-family); */
    font-size: 1rem;
    font-weight: 300;
    line-height: 26px;
    color: #666666;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    word-break: break-word;
}

body,
html {
    height: 100%;
}

/* 
@font-face {
    font-family: "ATC Arquette";
    src: url("../fonts/ATCArquette-Black.ttf") format("ttf");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "ATC Arquette";
    src: url("../fonts/ATCArquette-BlackItalic.ttf") format("ttf");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "ATC Arquette";
    src: url("../fonts/ATCArquette-Bold.ttf") format("ttf");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "ATC Arquette";
    src: url("../fonts/ATCArquette-BoldItalic.ttf") format("ttf");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "ATC Arquette";
    src: url("../fonts/ATCArquette-SemiboldItalic.ttf") format("ttf");
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: "ATC Arquette";
    src: url("../fonts/ATCArquette-Medium.ttf") format("ttf");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "ATC Arquette";
    src: url("../fonts/ATCArquette-MediumItalic.ttf") format("ttf");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "ATC Arquette";
    src: url("../fonts/ATCArquette-Regular.ttf") format("ttf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "ATC Arquette";
    src: url("../fonts/ATCArquette-RegularItalic.ttf") format("ttf");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "ATC Arquette";
    src: url("../fonts/ATCArquette-Light.ttf") format("ttf");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "ATC Arquette";
    src: url("../fonts/ATCArquette-LightItalic.ttf") format("ttf");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "ATC Arquette";
    src: url("../fonts/ATCArquette-Extralight.ttf") format("ttf");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "ATC Arquette";
    src: url("../fonts/ATCArquette-ExtralightItalic.ttf") format("ttf");
    font-weight: 200;
    font-style: italic;
} */

/* SWIPER SLIDER  */

.hero-slider {
    width: 100%;
    height: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
}

@media (max-width: 991px) {
    .hero-slider {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 500px;
    }
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: #0000008c;
    width: 55px;
    height: 55px;
    line-height: 53px;
    margin-top: -30px;
    text-align: center;
    /* border: 2px solid #d4d3d3; */
    border-radius: 7px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-button-prev {
    left: 25px;
    transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
    font-family: "Font Awesome 5 Free";
    content: "\f060";
    font-size: 15px;
    color: #d4d3d3;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
}

.hero-slider .swiper-button-next {
    right: 25px;
    transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 15px;
    color: #d4d3d3;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background: #fff;
    transition: all 0.2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

@media screen and (min-width: 992px) {

    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
    .hero-slider .swiper-pagination-custom,
    .hero-slider .swiper-pagination-fraction {
        /*     display: none; */
    }
}

.swiper-pagination {
    text-align: left;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 50px;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 30px;
    }
}

/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/
.hero-style {
    height: 850px;
    transition: all 0.4s ease;
}

@media (max-width: 991px) {
    .hero-style {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-style {
        height: 500px;
    }
}

@media screen and (min-width: 992px) {
    .hero-style .container {
        padding-top: 295px;
    }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
    /* max-width: 690px; */
    text-align: right;
}

.hero-style .slide-title h2 {
    line-height: 1;
    margin: 0 0 40px;
    text-transform: capitalize;
    transition: all 0.4s ease;
    font-weight: 700;
    font-size: 58px;
    letter-spacing: -0.05em;
    color: #fff;
    font-family: var(--second-family);
}

@media (max-width: 1199px) {
    .hero-style .slide-title h2 {
        font-size: 75px;
    }
}

@media (max-width: 991px) {
    .hero-style .slide-title h2 {
        font-size: 50px;
        margin: 0 0 35px;
    }
}

@media (max-width: 767px) {
    .hero-style .slide-title h2 {
        font-size: 35px;
        margin: 0 0 30px;
    }
}

.hero-style .slide-text p {
    line-height: 1.25;
    margin: 0 0 40px;
    transition: all 0.4s ease;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 25px;
    letter-spacing: -0.05em;
    color: #fff;
}

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns>a:first-child {
    margin-right: 10px;
}

/*--------------------------------------------------------------
	#button-style
--------------------------------------------------------------*/
.theme-btn,
.theme-btn-s2 {
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #2b3b95;
    padding: 9px 32px;
    border: 0;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    line-height: initial;
    transition: all 0.4s ease;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.theme-btn-s2 {
    background-color: rgba(255, 255, 255, 0.9);
    color: #131e4a;
}

.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn:active,
.theme-btn-s2:active {
    background-color: #9f2656;
    color: #fff;
}

.theme-btn-s3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
}

i.fa-chevron-circle-right {
    height: 22px;
    width: 22px;
}

a:hover {
    text-decoration: none;
}

@media (max-width: 991px) {

    .theme-btn,
    .theme-btn-s2,
    .theme-btn-s3 {
        font-size: 13px;
        padding: 15px 25px;
    }
}

@media (max-width: 767px) {

    .theme-btn,
    .theme-btn-s2 {
        padding: 13px 20px;
        font-size: 13px;
    }
}

/* test  */

/******* Common Element CSS End *********/

/* -------- title style ------- */
.line-title {
    position: relative;
    width: 400px;
}

.line-title::before,
.line-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    border-radius: 2px;
}

.line-title::before {
    width: 100%;
    background: #f2f2f2;
}

.line-title::after {
    width: 32px;
    background: #e73700;
}

/******* Middle section CSS Start ******/
/* -------- Landing page ------- */

.game-section .owl-stage {
    margin: 15px 0;
    display: flex;
    display: -webkit-flex;
}

.game-section .item {
    margin: 0 5px 60px;
    width: 320px;
    height: 400px;
    display: flex;
    display: -webkit-flex;
    align-items: flex-end;
    -webkit-align-items: flex-end;
    background: #343434 no-repeat center center / cover;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.game-section .item.active {
    width: 600px;
    /* box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25); */
    /* -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25); */
    height: 488px;
}

.game-section .item:after {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.game-section .item-desc {
    padding: 0px 30px 12px;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transform: translateY(calc(100% - 90px));
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    /* top: -25px; */
    margin: 0 0 35px;
}

.game-section .item.active .item-desc {
    /* transform: none; */
    -webkit-transform: none;
    background: #00A1DB;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    position: absolute;
    bottom: -35px;
}

.game-section .item-desc p {
    opacity: 0;
    -webkit-transform: translateY(32px);
    transform: translateY(32px);
    transition: all 0.4s ease-in-out 0.2s;
    -webkit-transition: all 0.4s ease-in-out 0.2s;
}

.game-section .item.active .item-desc h3 {
    font-size: 25px;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    text-decoration: none;
}

.game-section .item.active .item-desc p {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.game-section .owl-theme.custom-carousel .owl-dots {
    margin-top: -20px;
    position: relative;
    z-index: 5;
    display: none;
}

/******** Middle section CSS End *******/

/***** responsive css Start ******/

@media (min-width: 992px) and (max-width: 1199px) {
    h2 {
        margin-bottom: 32px;
    }

    h3 {
        margin: 0 0 8px;
        font-size: 24px;
        line-height: 32px;
    }

    /* -------- Landing page ------- */
    .game-section {
        padding: 50px 30px;
    }

    .game-section .item {
        margin: 0 12px 60px;
        width: 260px;
        height: 360px;
        padding-bottom: 60px;
    }

    .game-section .item.active {
        width: 400px;
    }

    .game-section .item-desc {
        transform: translateY(calc(100% - 46px));
        -webkit-transform: translateY(calc(100% - 46px));
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    h2 {
        margin-bottom: 32px;
    }

    h3 {
        margin: 0 0 8px;
        font-size: 24px;
        line-height: 32px;
    }

    .line-title {
        width: 330px;
    }

    /* -------- Landing page ------- */
    .game-section {
        padding: 50px 30px 40px;
    }

    .game-section .item {
        margin: 0 12px 60px;
        width: 240px;
        height: 330px;
        padding-bottom: 60px;
    }

    .game-section .item.active {
        width: 320px;
    }

    .game-section .item-desc {
        transform: translateY(calc(100% - 42px));
        -webkit-transform: translateY(calc(100% - 42px));
    }
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    h2 {
        margin-bottom: 20px;
    }

    h3 {
        margin: 0 0 8px;
        font-size: 19px;
        line-height: 24px;
    }

    .line-title {
        width: 250px;
    }

    /* -------- Landing page ------- */

.game-section .item {
    margin: 0 10px 40px;
    /* width: 221px; */
    height: 280px;
}

.game-section .item.active {
    width: 355px;
    box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
}

    .game-section .item-desc {
        padding: 0 14px 5px;
        transform: translateY(calc(100% - 42px));
        -webkit-transform: translateY(calc(100% - 65px));
    }
}

/* SLICK GALLERY SLIDER  */

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-slider {
    min-width: 0;
}

.slick-list {
    overflow: hidden;
}

.slick-track {
    display: flex;
    align-items: flex-start;
}

.slider {
    position: relative;
}


.slider .slick-arrow {
    position: absolute;
    top: 50%;
    margin: -20px 0px 0px;
    z-index: 10;
    font-size: 0px;
    width: 30px;
    height: 30px;
    display: none !important;
}

.slider .slick-arrow.slick-prev {
    left: 0;
    background: url("https://img.icons8.com/ios/50/000000/long-arrow-left.png") 0 0 / 100% no-repeat;
}

.slider .slick-arrow.slick-next {
    right: 0;
    background: url("https://img.icons8.com/ios/50/000000/long-arrow-right.png") 0 0 / 100% no-repeat;
}

.slider .slick-arrow.slick-disabled {
    opacity: 0.2;
}

.slider__item {
    padding: 0px 10px;
}

.slider__item img.slider_main_img {
    max-width: 100%;
    width: 100%;
    height: 476px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .slider__item img.slider_main_img {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .slider__item img.slider_main_img {
        height: 250px;
    }
}


/* CLient Slider  */


.client {
    position: relative;
}

.client .slick-arrow {
    position: absolute;
    top: 50%;
    margin: -20px 0px 0px;
    z-index: 10;
    font-size: 0px;
    width: 30px;
    height: 30px;
    display: none !important;
}

.client .slick-arrow.slick-prev {
    left: 0;
    background: url("https://img.icons8.com/ios/50/000000/long-arrow-left.png") 0 0 / 100% no-repeat;
}

.client .slick-arrow.slick-next {
    right: 0;
    background: url("https://img.icons8.com/ios/50/000000/long-arrow-right.png") 0 0 / 100% no-repeat;
}

.client .slick-arrow.slick-disabled {
    opacity: 0.2;
}

.client__item {
    padding: 0px 10px;
}

.client__item img {
    max-width: 100%;
    width: 100%;
    height: 120px;
    object-fit: cover;
}








/* TEST  */

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
    -webkit-text-fill-color: black !important;
}

.form-horizontal input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #303132 inset !important;
    -webkit-text-fill-color: white !important;
}