@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a,
a:hover {
    text-decoration: none;
    color: inherit;
}

p {
    margin: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

button:focus {
    outline: none !important;
}

.btn {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.rest-btn {
    background: transparent;
    border: 0;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding: 0;
    cursor: pointer;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

:root {
    --main-color: #8AC300;
    --second-color: #1A5AA8;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1194px;
    }
}

.roboto-font {
    font-family: "Roboto", sans-serif;
}

body {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 16px;
    min-height: 100vh;
    background: #FFFFFF;
    color: #082034;
    padding-left: 0 !important;
}

body::-webkit-scrollbar-track {
    background: #FFF;
}

body::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

body::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

body.overflow-toggle {
    overflow: hidden;
}

.btn-primary {
    background: var(--main-color);
    color: #FFF;
    border: 0;
    border-radius: 23px;
}

.btn-primary:hover {
    background: var(--second-color);
}

.btn-secondary {
    background: var(--second-color);
    color: #FFF;
    border: 0;
    border-radius: 23px;
}

.btn-secondary:hover {
    background: var(--main-color);
}

.btn-main {
    min-width: 152px;
    height: 45px;
    font-weight: bold;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--second-color);
    color: #FFF;
    border-radius: 30px;
    border: none !important;
}

.btn-main:hover {
    background-color: var(--main-color) !important;
    color: #FFF !important;
}

.btn-outline-main {
    height: 45px;
    font-weight: bold;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    color: var(--second-color);
    border-radius: 30px;
    border: 1px solid var(--second-color);
    min-width: 152px;
}

.btn-outline-main:hover {
    background-color: var(--second-color) !important;
    color: #FFF !important;
    border-color: var(--second-color) !important;
}

.dropdown .dropdown-toggle:after {
    display: none;
}

.dropdown .dropdown-item:focus,
.dropdown .dropdown-item:hover,
.dropdown .dropdown-item:active {
    background-color: #f3f3ff;
    color: #303030;
}

.main-color {
    color: var(--main-color) !important;
}

.second-color {
    color: var(--second-color) !important;
}

.fw-medium {
    font-weight: 500;
}

.scroll {
    overflow: auto;
}

.scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.scroll::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 5px;
}

.scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.main-wrapper {
    min-height: 100vh;
}

.page-container {
    margin-top: 150px;
    margin-bottom: 80px;
    position: relative;
}

@media (max-width: 1199px) {
    .page-container {
        margin-top: 100px;
    }
}

@media (max-width: 767px) {
    .page-container {
        margin-bottom: 40px;
    }
}

.page-container .page-contaienr-logo-pattern {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    transform: rotateY(180deg);
}

@media (max-width: 1199px) {
    .page-container .page-contaienr-logo-pattern {
        display: none;
    }
}

.page-container .sec-heading {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .page-container .sec-heading {
        margin-bottom: 20px;
    }
}

.page-container .sec-heading h4 {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .page-container .sec-heading h4 {
        font-size: 25px;
        margin-bottom: 0;
    }
}

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 45px;
    width: 100%;
    z-index: 3;
}

@media (max-width: 1199px) {
    .header {
        background: var(--second-color);
        top: 0;
        height: 70px;
    }
}

.header .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header .header-inner .header-nav .close-menu {
    display: none;
}

@media (max-width: 1199px) {
    .header .header-inner .header-nav .close-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        right: 20px;
        top: 20px;
        padding: 5px;
        border-radius: 50%;
        border: 1px solid #030F17;
    }
}

.header .header-inner .header-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 43px;
}

.header .header-inner .header-nav ul li a {
    color: #FFFFFF;
    font-size: 18px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}

.header .header-inner .header-nav ul li a:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -6px;
    background: #FFF;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.header .header-inner .header-nav ul li a:hover:after {
    opacity: 1;
    visibility: visible;
}

.header .header-inner .header-nav ul li.active a:after {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1199px) {
    .header .header-inner .header-nav {
        -webkit-margin-start: 0;
        margin-inline-start: 0;
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: #FFF;
        z-index: 999;
        padding: 20px;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        overflow-y: scroll;
    }

    .header .header-inner .header-nav.show-menu {
        left: 0;
    }

    .header .header-inner .header-nav ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 50px;
    }

    .header .header-inner .header-nav ul li {
        margin-bottom: 15px;
    }

    .header .header-inner .header-nav ul li:last-child {
        margin-bottom: 0;
    }

    .header .header-inner .header-nav ul li a {
        color: #082034;
    }

    .header .header-inner .header-nav ul li a:after {
        background: var(--second-color);
    }
}

.header .header-inner .header-logo {
    position: absolute;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}

.header .header-inner .header-logo a {
    display: block;
}

.header .header-inner .header-logo a img {
    width: 145.81px;
}

@media (max-width: 1199px) {
    .header .header-inner .header-logo {
        position: unset;
        right: unset;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .header .header-inner .header-logo img {
        width: 60%;
    }
}

.header .header-inner .header-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 20px;
}

@media (max-width: 767px) {
    .header .header-inner .header-action {
        gap: 0 15px;
    }
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-toggle span {
    font-size: 18px;
    color: #FFF;
}

@media (max-width: 1199px) {
    .header .header-inner .header-action .header-lang .dropdown .dropdown-toggle span {
        font-size: 16px;
    }
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-toggle .arrow {
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-menu {
    -webkit-box-shadow: 0 3px 6px rgba(211, 211, 211, 0.12);
    box-shadow: 0 3px 6px rgba(211, 211, 211, 0.12);
    min-width: 109px;
    border: 0;
    text-align: left;
    border-radius: 12px;
    top: 15px !important;
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-menu:after {
    content: "";
    position: absolute;
    top: -5px;
    right: 80%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background-color: #FFF;
    width: 16.25px;
    height: 14.6px;
    border-radius: 2px;
    z-index: -1;
}

@media (max-width: 575px) {
    .header .header-inner .header-action .header-lang .dropdown .dropdown-menu:after {
        display: none;
    }
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-menu .dropdown-item {
    padding: 8px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-menu .dropdown-item:last-child {
    margin-bottom: 0;
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-menu .dropdown-item img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-menu .dropdown-item span {
    color: #232F3E;
    font-size: 16px;
}

.header .header-inner .header-action .header-user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .header-inner .header-action .header-user .login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 8.3px;
}

.header .header-inner .header-action .header-user .login span {
    font-size: 18px;
    color: #FFFFFF;
}

@media (max-width: 1199px) {
    .header .header-inner .header-action .header-user .login span {
        display: none;
    }
}

.header .header-inner .header-action .header-user .user-auth .dropdown-toggle {
    font-size: 16px;
    color: #232F3E;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 12px;
}

.header .header-inner .header-action .header-user .user-auth .dropdown-toggle span {
    color: #FFF;
}

@media (max-width: 1199px) {
    .header .header-inner .header-action .header-user .user-auth .dropdown-toggle span {
        display: none;
    }
}

@media (max-width: 1199px) {
    .header .header-inner .header-action .header-user .user-auth .dropdown-toggle .arrow {
        display: none;
    }
}

.header .header-inner .header-action .header-user .user-auth .dropdown-menu {
    -webkit-box-shadow: 0 -2px 30px rgba(137, 137, 137, 0.12);
    box-shadow: 0 -2px 30px rgba(137, 137, 137, 0.12);
    min-width: 182.5px;
    border: 0;
    text-align: left;
    padding: 10px 0 5px;
    border-radius: 12px;
    top: 15px !important;
}

@media (min-width: 576px) {
    .header .header-inner .header-action .header-user .user-auth .dropdown-menu {
        top: 25px !important;
    }
}

.header .header-inner .header-action .header-user .user-auth .dropdown-menu:after {
    content: "";
    position: absolute;
    top: -5px;
    right: 80%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background-color: #FFF;
    width: 16.25px;
    height: 14.6px;
    border-radius: 2px;
    z-index: -1;
}

@media (max-width: 575px) {
    .header .header-inner .header-action .header-user .user-auth .dropdown-menu:after {
        display: none;
    }
}

.header .header-inner .header-action .header-user .user-auth .dropdown-menu li:last-child {
    padding-top: 10px;
    margin-top: 8px;
    border-top: 1px solid rgba(112, 112, 112, 0.07);
}

.header .header-inner .header-action .header-user .user-auth .dropdown-menu li:last-child .dropdown-item {
    margin-bottom: 10px;
}

.header .header-inner .header-action .header-user .user-auth .dropdown-menu .dropdown-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12.5px;
    padding: 10px 13px;
}

.header .header-inner .header-action .header-user .user-auth .dropdown-menu .dropdown-item svg {
    width: 15px;
    height: 15px;
}

.header .header-inner .header-action .header-user .user-auth .dropdown-menu .dropdown-item span {
    font-size: 14px;
    color: #252122;
}

.header .header-inner .header-action .menu-toggle {
    display: none;
}

@media (max-width: 1199px) {
    .header .header-inner .header-action .menu-toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.header .page-header-img {
    display: none !important;
}

.header.header-page {
    top: 0;
    height: 100px;
    -webkit-box-shadow: 0 0 6px rgba(26, 90, 168, 0.12);
    box-shadow: 0 0 6px rgba(26, 90, 168, 0.12);
}

@media (max-width: 1199px) {
    .header.header-page {
        background-color: #FFF !important;
        height: 70px;
    }
}

.header.header-page .main-header-img {
    display: none !important;
}

.header.header-page .page-header-img {
    display: block !important;
}

.header.header-page .header-inner .header-action .menu-toggle svg path {
    stroke: var(--main-color) !important;
}

.header.header-page .header-inner .header-nav ul li a {
    color: #1A263E;
}

.header.header-page .header-inner .header-nav ul li a:after {
    background: var(--main-color);
}

.header.header-page .header-action .header-user .login span {
    font-size: 18px;
    color: #1A263E;
}

.header.header-page .header-action .header-lang .dropdown .dropdown-toggle span {
    color: #1A263E;
}

.header.header-page .header-inner .header-action .header-lang .dropdown .dropdown-toggle .arrow path {
    stroke: #1A263E;
}

.header.header-page .header-action .header-user .user-auth .dropdown-toggle span {
    font-size: 18px;
    color: #1A263E;
}

.header.header-page .header-action .header-user .user-auth .dropdown-toggle .arrow svg path {
    stroke: #1A263E;
}

.hero-section {
    min-height: 100vh;
    background: url("../img/hero-section.jpg") no-repeat;
    background-size: cover;
    position: relative;
    background-position: bottom;
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 150px 0 50px;
    }
}

.hero-section:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, right top, right bottom, from(#04121E), to(rgba(4, 11, 18, 0.47)));
    background: -o-linear-gradient(top, #04121E, rgba(4, 11, 18, 0.47));
    background: linear-gradient(to bottom, #04121E, rgba(4, 11, 18, 0.47));
    z-index: 1;
}

.hero-section .hero-section-inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

@media (max-width: 991px) {
    .hero-section .hero-section-inner {
        min-height: auto;
    }
}

.hero-section .hero-section-inner .hero-section-slider {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 991px) {
    .hero-section .hero-section-inner .hero-section-slider {
        height: auto;
        margin-bottom: 20px;
    }

    .hero-section .hero-section-inner .hero-section-slider .swiper-wrapper {
        margin-bottom: 15px;
    }
}

.hero-section .hero-section-inner .hero-section-slider .hero-swiper {
    width: 100%;
}

.hero-section .hero-section-inner .hero-section-slider .hero-swiper h4 {
    color: #FFF;
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 26px;
}

@media (max-width: 991px) {
    .hero-section .hero-section-inner .hero-section-slider .hero-swiper h4 {
        font-size: 30px;
        margin-bottom: 15px;
    }
}

.hero-section .hero-section-inner .hero-section-slider .hero-swiper p {
    font-size: 19px;
    color: #FFF;
    line-height: 49px;
    max-width: 588px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .hero-section .hero-section-inner .hero-section-slider .hero-swiper p {
        max-width: 100%;
        font-size: 17px;
        line-height: 35px;
    }
}

.hero-section .hero-section-inner .hero-section-slider .hero-swiper .btn-primary {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
    min-width: 152px !important;
    height: 45px !important;
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 991px) {
    .hero-section .hero-section-inner .hero-section-slider .hero-swiper .btn-primary {
        font-size: 14px;
        width: 130px !important;
        height: 40px !important;
    }
}

.hero-section .hero-section-inner .hero-section-slider .slider-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #FFF;
    font-size: 18px;
    font-weight: normal;
    margin-top: 55px;
    font-family: "Roboto", sans-serif;
}

@media (max-width: 991px) {
    .hero-section .hero-section-inner .hero-section-slider .slider-number {
        font-size: 14px;
    }
}

.hero-section .hero-section-inner .swiper-button-prev,
.hero-section .hero-section-inner .swiper-button-next {
    width: 47.41px;
    height: 17.41px;
}

.hero-section .hero-section-inner .swiper-button-prev svg,
.hero-section .hero-section-inner .swiper-button-next svg {
    transform: rotate(180deg);
}

.hero-section .hero-section-inner .swiper-button-prev:after,
.hero-section .hero-section-inner .swiper-button-next:after {
    display: none;
}

@media (max-width: 991px) {

    .hero-section .hero-section-inner .swiper-button-prev,
    .hero-section .hero-section-inner .swiper-button-next {
        position: unset;
        width: auto;
        height: auto;
        margin: 0 5px;
        display: inline;
    }

    .hero-section .hero-section-inner .swiper-button-prev svg,
    .hero-section .hero-section-inner .swiper-button-next svg {
        width: 30px;
    }
}

.filter-section {
    width: 1097px;
    position: absolute;
    bottom: -41px;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}

@media (max-width: 1199px) {
    .filter-section {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .filter-section {
        position: relative;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        bottom: unset;
        right: unset;
    }
}

.filter-section .filter-sec__form {
    background: #FFF;
    padding: 36px 23px 30px 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0 -3px 19px rgba(26, 90, 168, 0.21);
    box-shadow: 0 -3px 19px rgba(26, 90, 168, 0.21);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    .filter-section .filter-sec__form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 10px;
        padding: 20px;
    }
}

.filter-section .filter-sec__form div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (max-width: 991px) {
    .filter-section .filter-sec__form div {
        width: 100%;
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
}

.filter-section .filter-sec__form div label {
    font-size: 18px;
    margin-bottom: 13px;
    font-weight: bold;
}

@media (max-width: 991px) {
    .filter-section .filter-sec__form div label {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

.filter-section .filter-sec__form div .select-icon-box {
    position: relative;
}

.filter-section .filter-sec__form div .select-icon-box .form-select {
    border-radius: 8px;
    height: 40px;
    -webkit-padding-start: 51px;
    padding-inline-start: 51px;
    min-width: 279px;
}

@media (max-width: 1199px) {
    .filter-section .filter-sec__form div .select-icon-box .form-select {
        min-width: auto;
    }
}

.filter-section .filter-sec__form div .select-icon-box .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 15.7px;
    top: 10px;
}

.filter-section .filter-sec__form div .btn {
    min-width: 143px;
    height: 41px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
    border-radius: 10px;
    margin-top: 35px;
}

@media (max-width: 991px) {
    .filter-section .filter-sec__form div .btn {
        min-width: 100%;
        margin-top: 20px;
    }
}

.filter-section .filter-sec__form div .btn span {
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 991px) {
    .filter-section .filter-sec__form div .btn span {
        font-size: 16px;
    }
}

.filter-section .filter-sec__form .filter-pattern {
    position: absolute;
    right: 0;
    top: 0;
    transform: rotateY(180deg);
}

.filter-section .filter-sec__form .filter-pattern img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

@media (max-width: 991px) {
    .filter-section .filter-sec__form .filter-pattern {
        display: none;
    }
}

.intro-section {
    margin-top: 187px;
    margin-bottom: 134px;
}

@media (max-width: 1199px) {
    .intro-section {
        margin-top: 130px;
    }
}

@media (max-width: 991px) {
    .intro-section {
        margin-top: 100px;
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .intro-section {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.intro-section .sec-heading h4 {
    font-size: 30px;
}

@media (max-width: 767px) {
    .intro-section .sec-heading h4 {
        font-size: 25px;
    }
}

.intro-section .intro-section-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 115px;
}

@media (max-width: 1199px) {
    .intro-section .intro-section-inner {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .intro-section .intro-section-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.intro-section .intro-section-inner .intro-sec-imgs {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}

@media (max-width: 991px) {
    .intro-section .intro-section-inner .intro-sec-imgs {
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        margin-bottom: 20px;
    }
}

.intro-section .intro-section-inner .intro-sec-imgs .intro-sec-img1 {
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 991px) {
    .intro-section .intro-section-inner .intro-sec-imgs .intro-sec-img1 {
        position: unset;
    }
}

.intro-section .intro-section-inner .intro-sec-imgs .intro-sec-img1 img {
    border-radius: 6px;
}

@media (max-width: 767px) {
    .intro-section .intro-section-inner .intro-sec-imgs .intro-sec-img1 img {
        width: 200px;
        height: 200px;
    }
}

.intro-section .intro-section-inner .intro-sec-imgs .intro-sec-img2 {
    position: absolute;
    left: 175px;
    top: 90px;
    z-index: 2;
}

@media (max-width: 1199px) {
    .intro-section .intro-section-inner .intro-sec-imgs .intro-sec-img2 {
        left: 140px;
    }
}

@media (max-width: 767px) {
    .intro-section .intro-section-inner .intro-sec-imgs .intro-sec-img2 {
        left: 80px;
        top: 80px;
    }
}

.intro-section .intro-section-inner .intro-sec-imgs .intro-sec-img2 img {
    border-radius: 6px;
}

@media (max-width: 767px) {
    .intro-section .intro-section-inner .intro-sec-imgs .intro-sec-img2 img {
        width: 200px;
        height: 200px;
    }
}

.intro-section .intro-section-inner .intro-sec-imgs .intro-sec-pattern {
    position: absolute;
    right: -50px;
    top: -30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: -1;
    transform: rotateY(180deg);
}

@media (max-width: 1199px) {
    .intro-section .intro-section-inner .intro-sec-imgs .intro-sec-pattern {
        display: none;
    }
}

.intro-section .intro-section-inner .intro-sec-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 73px;
}

.intro-section .intro-section-inner .intro-sec-text p {
    font-size: 17px;
    line-height: 48px;
}

@media (max-width: 767px) {
    .intro-section .intro-section-inner .intro-sec-text p {
        font-size: 16px;
        line-height: 35px;
    }
}

.intro-section .intro-section-inner .intro-sec-text .btn-primary {
    margin-top: 20px;
    min-width: 152px;
    height: 45px;
    font-weight: bold;
    font-size: 18px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .intro-section .intro-section-inner .intro-sec-text .btn-primary {
        font-size: 14px;
        min-width: 130px;
        height: 40px;
    }
}

.sec-heading {
    margin-bottom: 5px;
}

.sec-heading h4 {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    .sec-heading h4 {
        font-size: 25px;
        margin-bottom: 5px;
    }
}

.playground-card {
    border-radius: 28px;
    -webkit-box-shadow: 0 3px 21px rgba(26, 90, 168, 0.12);
    box-shadow: 0 3px 21px rgba(26, 90, 168, 0.12);
    overflow: hidden;
    display: block;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .playground-card {
        border-radius: 20px;
    }
}

.playground-card .img {
    height: 273.27px;
    width: 100%;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
}

@media (max-width: 991px) {
    .playground-card .img {
        height: 200px;
        border-radius: 20px 20px 0 0;
    }
}

.playground-card .img img {
    width: 100%;
    height: 100%;
}

.playground-card .content {
    padding: 23px 23px;
}

@media (max-width: 991px) {
    .playground-card .content {
        padding: 15px;
    }
}

.playground-card .content h4 {
    font-size: 24px;
    font-weight: bold;
    color: var(--second-color);
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .playground-card .content h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }
}

.playground-card .content span {
    font-size: 16px;
    color: #818B9E;
}

.playground-reserv-section {
    margin-top: 134px;
    margin-bottom: 120px;
}

@media (max-width: 1199px) {
    .playground-reserv-section {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .playground-reserv-section {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.playground-reserv-section .sec-heading {
    text-align: center;
    margin-bottom: 53px;
}

@media (max-width: 991px) {
    .playground-reserv-section .sec-heading {
        margin-bottom: 20px;
    }
}

.playground-reserv-section .playground-reserv-inner .playground-reserv-slider {
    padding: 0 20px;
}

@media (max-width: 1199px) {
    .playground-reserv-section .playground-reserv-inner .playground-reserv-slider {
        padding: 0;
    }
}

.playground-reserv-section .swiper-pagination {
    position: relative;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .playground-reserv-section .swiper-pagination {
        margin-top: 10px;
    }
}

.playground-reserv-section .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #EDF2F8;
    opacity: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .playground-reserv-section .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

.playground-reserv-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 31px;
    border-radius: 5px;
    background: #91CC00;
    opacity: 1;
}

@media (max-width: 991px) {
    .playground-reserv-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 20px;
    }
}

.subscription-types-section {
    margin-top: 120px;
    margin-bottom: 173px;
    position: relative;
}

@media (max-width: 1199px) {
    .subscription-types-section {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .subscription-types-section {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.subscription-types-section:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(237, 242, 248, 0.64);
    width: 63vw;
    height: 504px;
    z-index: -1;
}

@media (max-width: 1199px) {
    .subscription-types-section:after {
        width: 90%;
    }
}

@media (max-width: 991px) {
    .subscription-types-section:after {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .subscription-types-section:after {
        height: 100%;
    }
}

.subscription-types-section .subscription-types-inner {
    padding: 66px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 42px;
}

@media (max-width: 1199px) {
    .subscription-types-section .subscription-types-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .subscription-types-section .subscription-types-inner {
        padding: 40px 0;
    }
}

.subscription-types-section .subscription-types-inner .text {
    margin-top: 29px;
    max-width: 502px;
}

@media (max-width: 1199px) {
    .subscription-types-section .subscription-types-inner .text {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .subscription-types-section .subscription-types-inner .text {
        margin-top: 0;
    }
}

.subscription-types-section .subscription-types-inner .text .sec-heading {
    margin-bottom: 19px;
}

.subscription-types-section .subscription-types-inner .text p {
    font-size: 18px;
    line-height: 55px;
}

@media (max-width: 767px) {
    .subscription-types-section .subscription-types-inner .text p {
        font-size: 16px;
        line-height: 35px;
    }
}

.subscription-types-section .subscription-types-inner .text .btn-primary {
    margin-top: 24px;
    min-width: 152px;
    height: 45px;
    font-weight: bold;
    font-size: 18px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .subscription-types-section .subscription-types-inner .text .btn-primary {
        font-size: 14px;
        min-width: 130px;
        height: 40px;
    }
}

.subscription-types-section .subscription-types-inner .imgs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    width: 626px;
}

@media (max-width: 1199px) {
    .subscription-types-section .subscription-types-inner .imgs {
        width: auto;
    }
}

@media (max-width: 767px) {
    .subscription-types-section .subscription-types-inner .imgs {
        display: none;
    }
}

.subscription-types-section .subscription-types-inner .imgs img {
    border-radius: 8px;
}

.services-section {
    margin-top: 173px;
    margin-bottom: 108px;
}

@media (max-width: 1199px) {
    .services-section {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .services-section {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.services-section .sec-heading {
    margin-bottom: 41px;
    text-align: center;
    position: relative;
}

.services-section .sec-heading .services-heading-pattern {
    position: absolute;
    right: 50%;
    top: -90%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: -1;
    -webkit-transform: translate(50%);
    -ms-transform: translate(50%);
    transform: translate(50%);
}

@media (max-width: 991px) {
    .services-section .sec-heading .services-heading-pattern {
        display: none;
    }
}

.services-section .services-section-inner {
    display: grid;
    grid-template-columns: repeat(4, 270.5px);
    grid-gap: 20px;
    padding: 15px;
}

@media (max-width: 1199px) {
    .services-section .services-section-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

.services-section .services-section-inner .services-section-card {
    -webkit-box-shadow: 0 0 13px rgba(26, 90, 168, 0.12);
    box-shadow: 0 0 13px rgba(26, 90, 168, 0.12);
    border-radius: 25px;
    padding: 30px 17px 26px;
    background: #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

@media (max-width: 575px) {
    .services-section .services-section-inner .services-section-card {
        padding: 20px 10px;
        border-radius: 15px;
    }
}

@media (min-width: 1200px) {
    .services-section .services-section-inner .services-section-card:hover {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
        -webkit-box-shadow: 0 0 25px rgba(26, 90, 168, 0.2);
        box-shadow: 0 0 25px rgba(26, 90, 168, 0.2);
    }
}

.services-section .services-section-inner .services-section-card .img {
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 575px) {
    .services-section .services-section-inner .services-section-card .img {
        width: 40px;
        height: 40px;
    }
}

.services-section .services-section-inner .services-section-card h4 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 10px;
    text-align: center;
}

@media (max-width: 575px) {
    .services-section .services-section-inner .services-section-card h4 {
        font-size: 18px;
        margin-top: 20px;
    }
}

.services-section .services-section-inner .services-section-card p {
    text-align: center;
    font-size: 14px;
    line-height: 36px;
}

@media (max-width: 575px) {
    .services-section .services-section-inner .services-section-card p {
        line-height: 30px;
    }
}

.image-album-section {
    margin-top: 108px;
    position: relative;
}

@media (max-width: 1199px) {
    .image-album-section {
        margin-top: 80px;
    }
}

@media (max-width: 991px) {
    .image-album-section {
        margin-top: 40px;
    }
}

.image-album-section .image-album-slider:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, right top, right bottom, from(#04121E), to(rgba(4, 11, 18, 0.47)));
    background: -o-linear-gradient(top, #04121E, rgba(4, 11, 18, 0.47));
    background: linear-gradient(to bottom, #04121E, rgba(4, 11, 18, 0.47));
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.image-album-section .image-album-img img {
    width: 100%;
    height: 100%;
}

.image-album-section .image-album-img a {
    outline: none !important;
}

.image-album-section .swiper-button-prev,
.image-album-section .swiper-button-next {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.36);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 1;
    z-index: 3;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}

.image-album-section .swiper-button-prev:after,
.image-album-section .swiper-button-next:after {
    display: none;
}

.image-album-section .swiper-button-prev svg,
.image-album-section .swiper-button-next svg {
    transform: rotateY(180deg);
}

.image-album-section .swiper-button-prev:hover,
.image-album-section .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

.image-album-section .swiper-button-prev {
    left: 80px;
    top: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

@media (max-width: 991px) {
    .image-album-section .swiper-button-prev {
        left: 20px;
    }
}

.image-album-section .swiper-button-next {
    right: 80px;
    top: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

@media (max-width: 991px) {
    .image-album-section .swiper-button-next {
        right: 20px;
    }
}

.image-album-section .swiper-button-next.swiper-button-disabled,
.image-album-section .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35 !important;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-color: var(--main-color);
    border-radius: 22px;
}

.fancybox__thumb {
    border-radius: 22px;
    overflow: hidden;
}

.fancybox__thumbs .carousel__slide {
    width: 162.67px;
    height: 110px;
}

.research-results-wrap {
    display: grid;
    grid-template-columns: 354px 1fr;
    grid-gap: 30px;
}

@media (max-width: 1199px) {
    .research-results-wrap {
        grid-template-columns: 100%;
        grid-gap: 15px;
    }
}

.aside-filter h4 {
    font-size: 22px;
    font-weight: bold;
    color: #082034;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .aside-filter h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

.aside-filter .aside-filter-form {
    padding: 38px 20px 24px;
    background: #F3F7FA;
    border-radius: 20px;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .aside-filter .aside-filter-form {
        padding: 20px;
    }
}

.aside-filter .aside-filter-form .form-group {
    margin-bottom: 23px;
}

.aside-filter .aside-filter-form .form-group label {
    color: #1A5AA8;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.aside-filter .aside-filter-form .form-group .form-control {
    border-radius: 23px;
    height: 45px;
    width: 100%;
    border: none;
    padding: 0.375rem 20px 0.375rem;
}

.aside-filter .aside-filter-form .form-group .form-select {
    background-image: url(../img/select-arrow-blue.svg);
    background-position: 93%;
    background-size: 11px;
}

.aside-filter .aside-filter-form .form-group .time-picker {
    font-family: "Roboto", sans-serif;
}

.aside-filter .aside-filter-form .form-group .time-picker-box {
    position: relative;
}

.aside-filter .aside-filter-form .form-group .time-picker-box .time-picker {
    padding-right: 50px;
}

.aside-filter .aside-filter-form .form-group .time-picker-box .arrow {
    position: absolute;
    right: 25px;
    top: 20px;
    user-select: none;
    pointer-events: none;
}


.aside-filter .aside-filter-form .form-group .calendar-box {
    position: relative;
}

.aside-filter .aside-filter-form .form-group .calendar-box .form-control {
    -webkit-padding-end: 50px;
    padding-inline-end: 50px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}

.aside-filter .aside-filter-form .form-group .calendar-box img {
    position: absolute;
    right: 20px;
    top: 12px;
}

.aside-filter .aside-filter-form .btn-primary {
    width: 100%;
    height: 45px;
}

.flatpickr-calendar {
    font-family: "Roboto", sans-serif;
}

.flatpickr-current-month input.cur-year,
.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-size: 14px;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    border-color: var(--main-color);
    background: var(--main-color);
}

.research-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 382.94px);
    grid-gap: 20px;
}

@media (max-width: 1199px) {
    .research-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .research-results-grid {
        grid-template-columns: 100%;
    }
}

.paddle-stadiums-grid {
    display: grid;
    grid-template-columns: repeat(3, 370px);
    grid-gap: 30px;
}

@media (max-width: 1199px) {
    .paddle-stadiums-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
}

@media (max-width: 991px) {
    .paddle-stadiums-grid {
        grid-template-columns: 100%;
    }
}

.research-results-cards h4 {
    font-size: 22px;
    font-weight: bold;
    color: #082034;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .research-results-cards h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

.stadium-card {
    -webkit-box-shadow: 0 3px 19px rgba(26, 90, 168, 0.12);
    box-shadow: 0 3px 19px rgba(26, 90, 168, 0.12);
    border-radius: 15px;
    overflow: hidden;
    background-color: #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.stadium-card .stadium-card-top {
    height: 250.27px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

@media (max-width: 991px) {
    .stadium-card .stadium-card-top {
        height: 160px;
    }
}

.stadium-card .stadium-card-top:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 18, 30, 0.4);
}

.stadium-card .stadium-card-top .img {
    width: 100%;
    height: 100%;
}

.stadium-card .stadium-card-top .img img {
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.stadium-card .stadium-card-top h5 {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 0;
    position: absolute;
    left: 20px;
    bottom: 26px;
    font-weight: bold;
    z-index: 2;
}

@media (max-width: 991px) {
    .stadium-card .stadium-card-top h5 {
        font-size: 20px;
        left: 15px;
        bottom: 15px;
    }
}

.stadium-card .stadium-card-top .fav-card-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.37);
    position: absolute;
    right: 18px;
    top: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
}

.stadium-card .stadium-card-top .fav-card-btn.active svg path {
    fill: #D90202;
}

.stadium-card .stadium-card-body {
    padding: 19.7px 20px 23.6px 10.6px;
    width: 100%;
}

.stadium-card .stadium-card-body .stadium-card-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 10px;
}

.stadium-card .stadium-card-body .stadium-card-title .stadium-name {
    font-weight: bold;
    font-size: 14px;
}

.stadium-card .stadium-card-body .rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3.8px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.stadium-card .stadium-card-body .rate span {
    color: #2B2B2B;
    font-family: "Roboto", sans-serif;
}

.stadium-card .stadium-card-body .card-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 18px;
}

.stadium-card .stadium-card-body .card-info .type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.stadium-card .stadium-card-body .card-info .type span {
    font-size: 18px;
    color: #082034;
}

.stadium-card .stadium-card-body .time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.stadium-card .stadium-card-body .time span {
    font-family: "Roboto", sans-serif;
    color: #082034;
}

.stadium-card .stadium-card-body .btn-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 19.4px;
}

.stadium-card .stadium-card-body .btn-action .btn {
    width: 100%;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #1A5AA8;
    background: #F3F7FA;
    border-radius: 25px;
}

@media (max-width: 991px) {
    .stadium-card .stadium-card-body .btn-action .btn {
        border-radius: 20px;
        height: 45px;
        font-size: 18px;
    }
}

.stadium-card .stadium-card-body .btn-action .btn:hover {
    color: #FFF;
    background: #1A5AA8;
}

.stadium-card:hover {
    -webkit-box-shadow: 0 3px 40px rgba(26, 90, 168, 0.1);
    box-shadow: 0 3px 40px rgba(26, 90, 168, 0.1);
}

.stadium-card:hover .stadium-card-top .img img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.pagination-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50.7px;
}

.pagination-list .pagination .page-item:first-child .page-link,
.pagination-list .pagination .page-item:last-child .page-link {
    background: #F3F7FA;
    border-radius: 50%;
}

.pagination-list .pagination .page-item:first-child .page-link:hover,
.pagination-list .pagination .page-item:last-child .page-link:hover {
    background: #1A5AA8;
}

.pagination-list .pagination .page-item:first-child .page-link:hover svg path,
.pagination-list .pagination .page-item:last-child .page-link:hover svg path {
    fill: #FFF;
}

.pagination-list .pagination .page-item .page-link {
    width: 31.03px;
    height: 31.03px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    color: #2C2C2C;
    font-size: 13px;
    padding: 0;
    font-family: "Roboto", sans-serif;
    margin: 0 3px;
}

.pagination-list .pagination .page-item .page-link:hover {
    color: var(--main-color);
}

.pagination-list .pagination .page-item.active .page-link {
    color: var(--main-color);
}

.stadium-details-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
    border-bottom: 1px solid rgba(26, 90, 168, 0.11);
    padding-bottom: 70px;
}

@media (max-width: 1199px) {
    .stadium-details-grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.stadium-details-grid .stadium-details-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .stadium-details-grid .stadium-details-info {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
    }
}

.stadium-details-grid .stadium-details-info .stadium-slider-box {
    position: relative;
    height: 504px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-slider-box {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .stadium-details-grid .stadium-details-info .stadium-slider-box {
        height: 250px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider {
    width: 100%;
    height: 100%;
}

.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .stadium-img {
    width: 100%;
    height: 100%;
}

.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .stadium-img img {
    width: 100%;
    height: 100%;
}

.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-prev,
.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-next {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.36);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 1;
    z-index: 3;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}

.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-prev svg,
.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-next svg {
    transform: rotateY(180deg);
}

.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-prev:after,
.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-next:after {
    display: none;
}

@media (max-width: 991px) {

    .stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-prev,
    .stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-next {
        width: 25px;
        height: 25px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-prev:hover,
.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-prev {
    left: 30px;
    top: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-prev {
        left: 20px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-next {
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-next {
        right: 20px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-next.swiper-button-disabled,
.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35 !important;
}

.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider-count {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: rgba(8, 32, 52, 0.49);
    min-width: 83px;
    height: 35px;
    color: #FFF;
    border-radius: 6px;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    gap: 7px;
}

.stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider-count span {
    font-size: 16px;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider-count span {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-slider-box .stadium-slider-count {
        right: 20px;
        bottom: 20px;
        font-size: 15px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-data {
    margin-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-data {
        margin-top: 15px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.stadium-details-grid .stadium-details-info .stadium-data h1 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-data h1 {
        font-size: 20px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-data .stadium-data-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.stadium-details-grid .stadium-details-info .stadium-data .stadium-data-action .btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(34, 58, 143, 0.08);
    padding: 0;
    border: 0 !important;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-data .stadium-data-action .btn-icon {
        width: 30px;
        height: 30px;
        padding: 7px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-data .stadium-data-action .fav-btn svg path {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.stadium-details-grid .stadium-details-info .stadium-data .stadium-data-action .fav-btn.active svg path {
    fill: #D90202;
    opacity: 1;
}

.stadium-details-grid .stadium-details-info .stadium-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-address {
        margin-bottom: 15px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-address .rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-address .rate {
        font-size: 14px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-address address {
    margin: 0;
    font-family: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.stadium-details-grid .stadium-details-info .stadium-desc {
    margin-top: 30px;
    margin-bottom: 48px;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-desc {
        margin-bottom: 15px;
        margin-top: 15px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-desc ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-desc ul {
        grid-gap: 15px;
    }
}

@media (max-width: 767px) {
    .stadium-details-grid .stadium-details-info .stadium-desc ul {
        grid-template-columns: 100%;
    }
}

.stadium-details-grid .stadium-details-info .stadium-desc ul li label {
    font-weight: bold;
}

.stadium-details-grid .stadium-details-info .stadium-services {
    margin-top: 48px;
    margin-bottom: 47px;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-services {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-services h6 {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-services h6 {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-services .stadium-services-boxs {
    display: grid;
    grid-template-columns: repeat(2, 282.5px);
    grid-gap: 20px;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-services .stadium-services-boxs {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-services .stadium-services-boxs div {
    border: 1px solid rgba(26, 90, 168, 0.07);
    border-radius: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-services .stadium-services-boxs div {
        height: 35px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-services .stadium-services-boxs div span {
    font-weight: bold;
}

.stadium-details-grid .stadium-details-info .stadium-location {
    margin-top: 47px;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-location {
        margin-top: 20px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-location h6 {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-location h6 {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-location .map {
    width: 100%;
    height: 328px;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-location .map {
        height: 200px;
    }
}

.stadium-details-grid .stadium-details-info .stadium-location .map #map {
    width: 100%;
    height: 328px;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-info .stadium-location .map #map {
        height: 200px;
    }
}

.stadium-details-grid .stadium-details-sidebar {
    width: 384px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border: 1px solid rgba(26, 90, 168, 0.1);
    border-radius: 12px;
}

@media (max-width: 1199px) {
    .stadium-details-grid .stadium-details-sidebar {
        width: 100%;
    }
}

.stadium-details-grid .stadium-details-sidebar .stadium-details-sidebar__head {
    padding: 15px 24px;
    background: rgba(26, 90, 168, 0.03);
    overflow: hidden;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-sidebar .stadium-details-sidebar__head {
        padding: 10px 15px;
    }
}

.stadium-details-grid .stadium-details-sidebar .stadium-details-sidebar__head h5 {
    font-size: 20px;
    font-weight: bold;
    color: var(--second-color);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-sidebar .stadium-details-sidebar__head h5 {
        font-size: 17px;
    }
}

.stadium-details-grid .stadium-details-sidebar .stadium-details-sidebar__body {
    padding: 25px 24px;
}

.stadium-details-grid .stadium-details-sidebar .stadium-details-sidebar__body .calendar-box .pignose-calendar .pignose-calendar-top .pignose-calendar-top-nav .pignose-calendar-top-icon {
    display: none;
}

.stadium-details-grid .stadium-details-sidebar .stadium-details-sidebar__body .form-group {
    margin-bottom: 20px;
}

.stadium-details-grid .stadium-details-sidebar .stadium-details-sidebar__body .form-group label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 17px;
}

@media (max-width: 991px) {
    .stadium-details-grid .stadium-details-sidebar .stadium-details-sidebar__body .form-group label {
        margin-bottom: 15px;
        font-size: 16px;
    }
}

.stadium-details-grid .stadium-details-sidebar .stadium-details-sidebar__body .form-group .form-select {
    border-radius: 8px;
    height: 46px;
    padding: 10px 16px;
}

.stadium-details-grid .stadium-details-sidebar .stadium-details-sidebar__body .booking-btn {
    margin-top: 20.2px;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 20px;
}

.stadium-ratings {
    padding-top: 28px;
    margin-bottom: 80px;
}

@media (max-width: 767px) {
    .stadium-ratings {
        margin-bottom: 40px;
    }
}

.stadium-ratings .heading {
    margin-bottom: 66px;
}

@media (max-width: 991px) {
    .stadium-ratings .heading {
        margin-bottom: 50px;
    }
}

.stadium-ratings .heading h5 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    position: relative;
}

@media (max-width: 767px) {
    .stadium-ratings .heading h5 {
        font-size: 18px;
        margin-bottom: 0;
    }
}

.stadium-ratings .heading h5:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    background-color: var(--main-color);
    width: 59px;
    height: 6px;
    border-radius: 10px;
}

.stadium-ratings .heading h5>span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
}

.stadium-ratings .heading h5 img {
    width: 16.23px;
}

.stadium-ratings .heading h5 span {
    font-size: 15px;
}

.stadium-ratings .stadium-rating-box .ratings-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(26, 90, 168, 0.11);
}

.stadium-ratings .stadium-rating-box .ratings-box .user-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
}

.stadium-ratings .stadium-rating-box .ratings-box .user-img img {
    width: 100%;
    height: 100%;
}

.stadium-ratings .stadium-rating-box .ratings-box .rate-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.stadium-ratings .stadium-rating-box .ratings-box .rate-content .rate-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 767px) {
    .stadium-ratings .stadium-rating-box .ratings-box .rate-content .rate-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.stadium-ratings .stadium-rating-box .ratings-box .rate-content .rate-info .user-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 9px;
}

.stadium-ratings .stadium-rating-box .ratings-box .rate-content .rate-info .user-name h3 {
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    margin-bottom: 0;
}

.stadium-ratings .stadium-rating-box .ratings-box .rate-content .rate-info .user-name .rate-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4.5px;
}

.stadium-ratings .stadium-rating-box .ratings-box .rate-content .rate-info .time {
    font-size: 14px;
    color: #9F9F9F;
}

@media (max-width: 767px) {
    .stadium-ratings .stadium-rating-box .ratings-box .rate-content .rate-info .time {
        margin-top: 8px;
    }
}

.stadium-ratings .stadium-rating-box .ratings-box .rate-content p {
    margin-top: 16px;
}

.paddle-stadiums-sec .sec-heading {
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .paddle-stadiums-sec .sec-heading {
        margin-bottom: 20px;
    }
}

.paddle-stadiums-sec .sec-heading h4 {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
}

@media (max-width: 991px) {
    .paddle-stadiums-sec .sec-heading h4 {
        font-size: 25px;
        margin-bottom: 20px;
    }
}

.paddle-stadiums-sec .sec-heading h4:after {
    content: "";
    position: absolute;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    bottom: -15px;
    background-color: #91CC00;
    width: 73px;
    height: 7px;
    border-radius: 4px;
}

.paddle-stadiums-sec .paddle-stadiums-inner .playground-card {
    border-radius: 6px;
    -webkit-box-shadow: 0 0 19px rgba(26, 90, 168, 0.12);
    box-shadow: 0 0 19px rgba(26, 90, 168, 0.12);
    margin-bottom: 0;
}

.paddle-stadiums-sec .paddle-stadiums-inner .playground-card .img {
    border-radius: 6px 6px 0 0;
}

.paddle-stadiums-sec .paddle-stadiums-inner .playground-card .content h4 {
    color: #082034;
    font-size: 22px;
}

@media (max-width: 767px) {
    .paddle-stadiums-sec .paddle-stadiums-inner .playground-card .content h4 {
        font-size: 20px;
    }
}

.paddle-stadiums-sec .paddle-stadiums-inner .swiper-pagination {
    position: relative;
    margin-top: 126px;
}

@media (max-width: 991px) {
    .paddle-stadiums-sec .paddle-stadiums-inner .swiper-pagination {
        margin-top: 40px;
    }
}

.paddle-stadiums-sec .paddle-stadiums-inner .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #EDF2F8;
    opacity: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .paddle-stadiums-sec .paddle-stadiums-inner .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

.paddle-stadiums-sec .paddle-stadiums-inner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 31px;
    border-radius: 5px;
    background: #1A5AA8;
    opacity: 1;
}

@media (max-width: 991px) {
    .paddle-stadiums-sec .paddle-stadiums-inner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 20px;
    }
}

@media (min-width: 992px) {
    .main-modal .modal-dialog {
        max-width: 541px;
    }
}

.main-modal .modal-content {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    border-radius: 12px;
}

.main-modal .modal-header {
    padding: 27px 31px;
    border-bottom: 0;
}

@media (max-width: 991px) {
    .main-modal .modal-header {
        padding: 20px;
    }
}

.main-modal .modal-header .modal-title {
    position: absolute;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    font-size: 20px;
    font-weight: bold;
    color: var(--second-color);
}

@media (max-width: 991px) {
    .main-modal .modal-header .modal-title {
        font-size: 18px;
    }
}

.main-modal .modal-header .close-modal {
    background: transparent;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    border: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-modal .modal-body {
    border-top: 1px solid rgba(26, 90, 168, 0.11);
    margin: 0 40px;
    padding: 20px 0;
}

@media (max-width: 991px) {
    .main-modal .modal-body {
        margin: 0 20px;
    }
}

.main-modal .form-group {
    margin-bottom: 12px;
}

.main-modal .form-group:last-child {
    margin-bottom: 0;
}

.main-modal .form-group label {
    margin-bottom: 10px;
    font-size: 16px;
}

.main-modal .form-group .form-control {
    height: 50px;
    border-radius: 25px;
}

@media (max-width: 991px) {
    .main-modal .form-group .form-control {
        height: 45px;
    }
}

.main-modal .form-group .form-control::-webkit-input-placeholder {
    font-size: 14px;
    color: #BCBCBC;
}

.main-modal .form-group .form-control::-moz-placeholder {
    font-size: 14px;
    color: #BCBCBC;
}

.main-modal .form-group .form-control:-ms-input-placeholder {
    font-size: 14px;
    color: #BCBCBC;
}

.main-modal .form-group .form-control::-ms-input-placeholder {
    font-size: 14px;
    color: #BCBCBC;
}

.main-modal .form-group .form-control::placeholder {
    font-size: 14px;
    color: #BCBCBC;
}

.main-modal .form-group .form-control.form-select {
    padding: 10px 16px;
}

.main-modal .form-group textarea {
    height: 99px !important;
    padding: 15px 20px;
}

.main-modal .form-group .form-group-icon {
    position: relative;
}

.main-modal .form-group .form-group-icon .form-control {
    -webkit-padding-end: 60px;
    padding-inline-end: 60px;
}

.main-modal .form-group .form-group-icon .icon {
    position: absolute;
    right: 21px;
    top: 12px;
}

@media (max-width: 991px) {
    .main-modal .form-group .form-group-icon .icon {
        top: 8px;
    }
}

.main-modal .main-modal-action {
    text-align: center;
    margin-top: 23px;
}

.main-modal .main-modal-action .btn-primary {
    min-width: 178px;
    height: 50px;
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 991px) {
    .main-modal .main-modal-action .btn-primary {
        height: 45px;
        font-size: 18px;
    }
}

.main-modal .main-modal-action .btn-primary span {
    font-weight: normal !important;
    font-size: 16px !important;
}

@media (max-width: 991px) {
    .main-modal .main-modal-action .btn-primary span {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .main-modal.booking-stadium .modal-dialog {
        max-width: 1084px;
    }
}

.main-modal.booking-stadium .booking-stadium-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
}

@media (max-width: 991px) {
    .main-modal.booking-stadium .booking-stadium-grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.main-modal.booking-stadium .booking-stadium-grid .calendar-box {
    width: 367.87px;
}

@media (max-width: 991px) {
    .main-modal.booking-stadium .booking-stadium-grid .calendar-box {
        width: 100%;
    }
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (max-width: 991px) {
    .main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form {
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        width: 100%;
    }
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .form-group {
    margin-bottom: 28px;
}

@media (max-width: 991px) {
    .main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .form-group {
        margin-bottom: 20px;
    }
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .form-group:last-child {
    margin-bottom: 0;
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .form-group label {
    font-weight: bold;
    font-size: 18px;
    color: var(--second-color);
    margin-bottom: 15px;
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .form-group .form-select {
    border-radius: 8px;
    height: 46px;
    padding: 10px 16px;
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-boxs {
    display: grid;
    grid-template-columns: repeat(4, 142px);
    grid-gap: 14px 10px;
    max-height: 194px;
    padding-bottom: 15px;
}

@media (max-width: 991px) {
    .main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-boxs {
        grid-template-columns: repeat(2, 1fr);
        -webkit-padding-end: 15px;
        padding-inline-end: 15px;
    }
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-boxs .available-time-box {
    min-width: 142px;
    height: 58px;
    border: 1px solid rgba(26, 90, 168, 0.11);
    border-radius: 8px;
    background-color: #FFF;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-boxs .available-time-box .time {
    color: #2B2B2B;
    font-size: 14px;
    margin-bottom: 2px;
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-boxs .available-time-box .price {
    font-size: 14px;
    color: var(--main-color);
    font-weight: bold;
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-boxs .available-time-box .price span {
    font-weight: normal !important;
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-boxs .available-time-box.active {
    border-color: var(--second-color);
    background-color: #F6F9FB;
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-boxs .available-time-box.reserved {
    background-color: #F6F9FB;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-boxs .available-time-box.reserved .time {
    opacity: 0.67;
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-boxs .available-time-box.reserved .price {
    opacity: 0.67;
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-boxs .available-time-box.reserved .reserved-badge {
    width: 128px;
    height: 67px;
    overflow: hidden;
    position: absolute;
    top: -6px;
    right: -5px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-boxs .available-time-box.reserved .reserved-badge span {
    left: -12px;
    top: 18px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    display: block;
    width: 229px;
    padding: 1px 0;
    background-color: #D50000;
    color: #fff;
    text-align: center;
    font-size: 8px;
    font-weight: bold;
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-action {
    margin-top: 38px;
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-action .btn {
    min-width: 214px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    gap: 5px;
}

@media (max-width: 991px) {
    .main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-action .btn {
        margin: 0 auto;
        font-size: 18px;
    }
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-action .btn span {
    font-size: 15px !important;
}

.main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-action .btn span span {
    font-size: 16px !important;
    font-weight: 500 !important;
}

@media (max-width: 991px) {
    .main-modal.booking-stadium .booking-stadium-grid .booking-stadium-form .available-times-action .btn span span {
        font-size: 14px;
    }
}

.main-modal.order-modal .modal-body {
    padding: 20px 0 30px;
}

@media (max-width: 991px) {
    .main-modal.order-modal .modal-body {
        padding: 15px 0;
    }
}

.main-modal.order-confirmation-modal .payment-boxs>label {
    font-weight: bold;
    color: #1A263E;
    margin-bottom: 15px;
}

.main-modal.order-confirmation-modal .payment-boxs .payment-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 767px) {
    .main-modal.order-confirmation-modal .payment-boxs .payment-cards {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
    }
}

.main-modal.order-confirmation-modal .payment-boxs .payment-cards .payment-card {
    border: 1px solid rgba(26, 90, 168, 0.11);
    border-radius: 17px;
    padding: 18px 20px 13px;
    background: #FFF;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}

@media (max-width: 767px) {
    .main-modal.order-confirmation-modal .payment-boxs .payment-cards .payment-card {
        width: 100%;
        padding: 10px;
    }
}

.main-modal.order-confirmation-modal .payment-boxs .payment-cards .payment-card span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-top: 5px;
    color: #1A263E;
    font-size: 13px;
    font-weight: bold;
}

.main-modal.order-confirmation-modal .payment-boxs .payment-cards .payment-card.active {
    border-color: #1A5AA8;
    background: #F6F9FB;
}

.main-modal.order-confirmation-modal .order-info {
    background: #F6F9FB;
    padding: 40px 30px 23px;
    margin-top: 20px;
    border-radius: 17px;
}

@media (max-width: 767px) {
    .main-modal.order-confirmation-modal .order-info {
        padding: 20px 10px;
    }
}

.main-modal.order-confirmation-modal .order-info ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.main-modal.order-confirmation-modal .order-info ul li:last-child {
    margin-bottom: 0;
}

.main-modal.order-confirmation-modal .order-info ul li span {
    font-weight: bold;
    font-size: 15px;
    color: #1A263E;
}

.main-modal.order-confirmation-modal .order-info ul li p {
    font-weight: bold;
    font-size: 15px;
}

.main-modal.order-confirmation-modal .order-info ul li.total-price {
    border-top: 1px solid rgba(26, 90, 168, 0.04);
    padding-top: 20px;
}

.main-modal.order-confirmation-modal .order-info ul li.total-price span {
    font-size: 18px;
}

.main-modal.order-confirmation-modal .order-info ul li.total-price p {
    font-size: 17px;
    color: var(--main-color) !important;
}

.main-modal.order-confirmation-modal .order-info ul li.total-price p span {
    color: var(--main-color) !important;
    font-size: 18px;
}

.main-modal.reservation-details-modal .reservation-map {
    margin-bottom: 19px;
    width: 100%;
    height: 148.91px;
    border-radius: 16px;
}

.main-modal.reservation-details-modal .reservation-map #reservationMap {
    width: 100%;
    height: 148.91px;
    border-radius: 16px;
}

.main-modal.reservation-details-modal .reservation-details {
    background: #F6F9FB;
    padding: 19px 25px 25px;
    border-radius: 17px;
}

@media (max-width: 767px) {
    .main-modal.reservation-details-modal .reservation-details {
        padding: 20px 10px;
    }
}

.main-modal.reservation-details-modal .reservation-details ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 22px;
}

.main-modal.reservation-details-modal .reservation-details ul li:last-child {
    margin-bottom: 0;
}

.main-modal.reservation-details-modal .reservation-details ul li span {
    font-weight: bold;
    font-size: 15px;
    color: #1A263E;
}

.main-modal.reservation-details-modal .reservation-details ul li p {
    font-size: 15px;
    font-weight: bold;
}

.main-modal.reservation-details-modal .reservation-details ul li p span {
    font-weight: 500 !important;
}

.main-modal.reservation-details-modal .reservation-details ul li p.fw-medium {
    font-weight: 500 !important;
}

.main-modal.reservation-details-modal .btn-primary {
    margin-top: 20px;
    min-width: 167px;
    height: 40px;
    font-weight: bold;
    font-size: 20px;
}

@media (min-width: 992px) {
    .small-modal .modal-dialog {
        max-width: 325px;
    }
}

.small-modal .modal-content {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    border-radius: 22px;
}

.small-modal .close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    background: transparent;
    border: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.small-modal .modal-body {
    padding: 42px 15px 78px;
}

.small-modal .small-modal-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.small-modal .small-modal-body .icon {
    margin-bottom: 22.6px;
}

.small-modal .small-modal-body h5 {
    font-size: 17px;
    font-weight: bold;
    color: #1A263E;
}

.small-modal .small-modal-body p {
    font-size: 16px;
    color: #1A263E;
    margin-top: 15px;
}

.small-modal .small-modal-body .btn-primary {
    width: 100%;
    height: 40.94px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    margin-top: 15px;
}

.small-modal .small-modal-pattern {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.calendar-box {
    border: 1px solid rgba(26, 90, 168, 0.11);
    border-radius: 18px;
}

.pignose-calendar {
    width: 100%;
    margin: 0;
    max-width: 100%;
    border-radius: 18px;
    border: none;
    background-color: #FFFFFF;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pignose-calendar .pignose-calendar-unit {
    height: 33.6px;
    width: 14.28%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pignose-calendar .pignose-calendar-unit a {
    width: 33.6px;
    height: 33.6px;
    font-size: 14px;
    color: #666666 !important;
    font-family: "Roboto", sans-serif;
}

.pignose-calendar .pignose-calendar-body .pignose-calendar-row .pignose-calendar-unit.pignose-calendar-unit-active a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--main-color);
    color: #FFF !important;
    font-weight: normal;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.pignose-calendar .pignose-calendar-unit a:active {
    background-color: var(--main-color);
    color: #FFF !important;
}

.pignose-calendar .pignose-calendar-body {
    padding: 0;
    background-color: #FFF;
    margin: 7px 0 0;
    padding-bottom: 10px;
    border-radius: 18px;
}

.pignose-calendar .pignose-calendar-header {
    background: transparent;
    margin-top: 5px;
    font-weight: bold;
    padding: 0;
}

.pignose-calendar .pignose-calendar-header .pignose-calendar-week.pignose-calendar-week-sat,
.pignose-calendar .pignose-calendar-header .pignose-calendar-week.pignose-calendar-week-sun {
    color: #333333;
    font-weight: bold;
}

.pignose-calendar .pignose-calendar-header .pignose-calendar-week {
    color: #141517;
    font-size: 13px;
    text-transform: capitalize !important;
}

.pignose-calendar .pignose-calendar-top {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 10px 0;
    color: #1A5AA8;
    background-color: #F6F9FB !important;
    border: none;
    font-family: "Roboto", sans-serif;
    border-radius: 18px 18px 0 0;
}

.pignose-calendar .pignose-calendar-top .pignose-calendar-top-month {
    margin-bottom: 0;
    font-size: 14px;
    padding-left: 5px;
    font-weight: normal;
    text-transform: capitalize;
}

.pignose-calendar .pignose-calendar-top .pignose-calendar-top-date {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    line-height: 0;
}

.pignose-calendar .pignose-calendar-top .pignose-calendar-top-year {
    font-size: 14px;
    color: #1A5AA8;
}

.inner-page .about-sec-one {
    padding: 91px 0 64px;
}

@media (max-width: 991px) {
    .inner-page .about-sec-one {
        padding: 40px 0;
    }
}

.inner-page .about-sec-one .about-sec-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 126px;
}

@media (max-width: 1199px) {
    .inner-page .about-sec-one .about-sec-inner {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .inner-page .about-sec-one .about-sec-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.inner-page .about-sec-one .about-sec-inner .imgs {
    position: relative;
}

.inner-page .about-sec-one .about-sec-inner .imgs .pattern-img {
    position: absolute;
    right: 0;
    bottom: -30%;
    z-index: -1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

@media (max-width: 991px) {
    .inner-page .about-sec-one .about-sec-inner .imgs .pattern-img {
        display: none;
    }
}

.inner-page .about-sec-one .about-sec-inner .imgs .sec-img img {
    width: 459px;
    height: 379px;
    border-radius: 38px;
}

@media (max-width: 1199px) {
    .inner-page .about-sec-one .about-sec-inner .imgs .sec-img img {
        width: 400px;
    }
}

@media (max-width: 991px) {
    .inner-page .about-sec-one .about-sec-inner .imgs .sec-img img {
        border-radius: 20px;
        width: 300px;
        height: 200px;
    }
}

.inner-page .about-sec-one .about-sec-inner .text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.inner-page .about-sec-one .about-sec-inner .text .sec-heading h4 {
    font-size: 32px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .inner-page .about-sec-one .about-sec-inner .text .sec-heading h4 {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .inner-page .about-sec-one .about-sec-inner .text .sec-heading h4 {
        font-size: 20px;
    }
}

.inner-page .about-sec-one .about-sec-inner .text p {
    color: #082034;
    font-size: 18px;
    line-height: 44px;
}

@media (max-width: 991px) {
    .inner-page .about-sec-one .about-sec-inner .text p {
        font-size: 16px;
        line-height: 35px;
    }
}

.inner-page .stadium-types {
    padding: 57px 0 56px;
    background: #F3F7FA;
    margin-bottom: 120px;
}

@media (max-width: 991px) {
    .inner-page .stadium-types {
        padding: 30px 0;
        margin-bottom: 40px;
    }
}

.inner-page .stadium-types .stadium-types-header {
    text-align: center;
    margin-bottom: 77px;
}

@media (max-width: 991px) {
    .inner-page .stadium-types .stadium-types-header {
        margin-bottom: 40px;
    }
}

.inner-page .stadium-types .stadium-types-header p {
    color: #91CC00;
    margin-bottom: 20px;
}

.inner-page .stadium-types .stadium-types-header h4 {
    font-size: 34px;
    font-weight: bold;
}

@media (max-width: 991px) {
    .inner-page .stadium-types .stadium-types-header h4 {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .inner-page .stadium-types .stadium-types-header h4 {
        font-size: 20px;
    }
}

.inner-page .stadium-types .stadium-types-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 106px;
}

@media (max-width: 991px) {
    .inner-page .stadium-types .stadium-types-cards {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 50px;
    }
}

.inner-page .stadium-types .stadium-types-cards .stadium-type-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.inner-page .stadium-types .stadium-types-cards .stadium-type-box .img {
    margin-bottom: 30px;
    width: 122.24px;
    height: 116.32px;
}

@media (max-width: 991px) {
    .inner-page .stadium-types .stadium-types-cards .stadium-type-box .img {
        width: 100px;
        height: 100px;
    }
}

.inner-page .stadium-types .stadium-types-cards .stadium-type-box h5 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.inner-page .stadium-types .stadium-types-cards .stadium-type-box p {
    font-size: 18px;
}

.inner-page .responsibility-sec {
    margin-bottom: 171px;
}

@media (max-width: 991px) {
    .inner-page .responsibility-sec {
        margin-bottom: 50px;
    }
}

.inner-page .responsibility-sec .responsibility-sec-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 75px;
}

@media (max-width: 991px) {
    .inner-page .responsibility-sec .responsibility-sec-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.inner-page .responsibility-sec .responsibility-sec-inner .text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 116px;
}

@media (max-width: 1199px) {
    .inner-page .responsibility-sec .responsibility-sec-inner .text {
        padding-top: 20px;
    }
}

.inner-page .responsibility-sec .responsibility-sec-inner .text .heading {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .inner-page .responsibility-sec .responsibility-sec-inner .text .heading {
        margin-bottom: 0;
    }
}

.inner-page .responsibility-sec .responsibility-sec-inner .text .heading h5 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
    position: relative;
}

@media (max-width: 991px) {
    .inner-page .responsibility-sec .responsibility-sec-inner .text .heading h5 {
        font-size: 25px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .inner-page .responsibility-sec .responsibility-sec-inner .text .heading h5 {
        font-size: 20px;
    }
}

.inner-page .responsibility-sec .responsibility-sec-inner .text .heading h5:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25px;
    background-color: var(--main-color);
    width: 70px;
    height: 6px;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .inner-page .responsibility-sec .responsibility-sec-inner .text .heading h5:after {
        bottom: -20px;
    }
}

.inner-page .responsibility-sec .responsibility-sec-inner .text p {
    font-size: 18px;
    line-height: 48px;
}

@media (max-width: 767px) {
    .inner-page .responsibility-sec .responsibility-sec-inner .text p {
        font-size: 16px;
        line-height: 35px;
    }
}

.inner-page .responsibility-sec .responsibility-sec-inner .img {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    margin-left: auto;
}

@media (max-width: 991px) {
    .inner-page .responsibility-sec .responsibility-sec-inner .img {
        display: none;
    }
}

.inner-page .responsibility-sec .responsibility-sec-inner .img .responsibility-sec-img1 {
    position: absolute;
    right: 0;
    top: 0;
}

.inner-page .responsibility-sec .responsibility-sec-inner .img .responsibility-sec-img1 img {
    border-radius: 6px;
}

.inner-page .responsibility-sec .responsibility-sec-inner .img .responsibility-sec-img2 {
    position: absolute;
    right: 177px;
    top: 97px;
    z-index: 2;
}

@media (max-width: 1199px) {
    .inner-page .responsibility-sec .responsibility-sec-inner .img .responsibility-sec-img2 {
        right: 80px;
    }
}

.inner-page .responsibility-sec .responsibility-sec-inner .img .responsibility-sec-img2 img {
    border-radius: 6px;
}

.inner-page .responsibility-sec .responsibility-sec-inner .img .responsibility-sec-pattern {
    position: absolute;
    right: -17%;
    top: 74px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 1199px) {
    .inner-page .responsibility-sec .responsibility-sec-inner .img .responsibility-sec-pattern {
        display: none;
    }
}

.inner-page .our-partners-sec {
    margin-top: 171px;
}

@media (max-width: 991px) {
    .inner-page .our-partners-sec {
        margin-top: 50px;
    }
}

.inner-page .our-partners-sec .our-partners-header {
    text-align: center;
    margin-bottom: 77px;
}

@media (max-width: 991px) {
    .inner-page .our-partners-sec .our-partners-header {
        margin-bottom: 40px;
    }
}

.inner-page .our-partners-sec .our-partners-header p {
    color: #91CC00;
    font-size: 18px;
    margin-bottom: 20px;
}

.inner-page .our-partners-sec .our-partners-header h4 {
    font-size: 30px;
    font-weight: bold;
}

@media (max-width: 991px) {
    .inner-page .our-partners-sec .our-partners-header h4 {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .inner-page .our-partners-sec .our-partners-header h4 {
        font-size: 20px;
    }
}

.inner-page .our-partners-sec .our-partners-inner .partner-img {
    height: 100.46px;
}

.inner-page .our-partners-sec .our-partners-inner .partner-img img {
    height: 100%;
}

.inner-page .our-partners-sec .our-partners-inner .swiper-pagination {
    position: relative;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .inner-page .our-partners-sec .our-partners-inner .swiper-pagination {
        margin-top: 20px;
    }
}

.inner-page .our-partners-sec .our-partners-inner .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #EDF2F8;
    opacity: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .inner-page .our-partners-sec .our-partners-inner .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

.inner-page .our-partners-sec .our-partners-inner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 31px;
    border-radius: 5px;
    background: var(--second-color);
    opacity: 1;
}

@media (max-width: 991px) {
    .inner-page .our-partners-sec .our-partners-inner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 20px;
    }
}

.inner-page .inner-page-header {
    min-height: 410px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

@media (max-width: 991px) {
    .inner-page .inner-page-header {
        min-height: 250px;
    }
}

.inner-page .inner-page-header:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, right top, right bottom, from(#04121E), to(rgba(4, 11, 18, 0.74)));
    background: -o-linear-gradient(top, #04121E, rgba(4, 11, 18, 0.74));
    background: linear-gradient(to bottom, #04121E, rgba(4, 11, 18, 0.74));
    opacity: 0.74;
}

.inner-page .inner-page-header h1 {
    font-size: 45px;
    color: #FFF;
    z-index: 2;
    position: relative;
    padding-top: 50px;
}

@media (max-width: 1199px) {
    .inner-page .inner-page-header h1 {
        padding-top: 70px;
    }
}

@media (max-width: 991px) {
    .inner-page .inner-page-header h1 {
        font-size: 30px;
    }
}

.inner-page .inner-page-header.about-header {
    background: url("../img/about-header-img.png") no-repeat;
    background-size: cover;
}

.inner-page .inner-page-header.privacy-policy-header {
    background: url("../img/privacy-header-img.png") no-repeat;
    background-size: cover;
}

.inner-page .inner-page-header.contact-header {
    background: url("../img/contact-header-img.png") no-repeat;
    background-size: cover;
}

.inner-page .inner-page-header.terms-of-use-header {
    background: url("../img/terms-of-use-header-img.png") no-repeat;
    background-size: cover;
}

#page_content>* {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

#page_content p {
    font-size: 18px !important;
    font-weight: normal !important;
    line-height: 48px;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    #page_content p {
        font-size: 16px !important;
        line-height: 34px !important;
        margin-bottom: 10px !important;
    }
}

.inner-page-content {
    padding: 50px;
    max-width: 768px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .inner-page-content {
        max-width: 100%;
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    .inner-page-content {
        max-width: 100%;
    }
}

.contact-inner {
    padding: 81px 0 114px;
}

@media (max-width: 991px) {
    .contact-inner {
        padding: 40px 0;
    }
}

.contact-inner .contact-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 54px;
}

@media (max-width: 991px) {
    .contact-inner .contact-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.contact-inner .contact-wrapper .contact-info {
    max-width: 513px;
}

@media (max-width: 1199px) {
    .contact-inner .contact-wrapper .contact-info {
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .contact-inner .contact-wrapper .contact-info {
        max-width: 100%;
    }
}

.contact-inner .contact-wrapper .contact-info .contact-img {
    width: 513px;
    height: 381px;
    position: relative;
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 36px;
}

@media (max-width: 1199px) {
    .contact-inner .contact-wrapper .contact-info .contact-img {
        width: 100%;
        height: 100%;
    }
}

.contact-inner .contact-wrapper .contact-info .contact-img:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, right top, right bottom, from(#04121E), to(rgba(4, 11, 18, 0.47)));
    background: -o-linear-gradient(top, #04121E, rgba(4, 11, 18, 0.47));
    background: linear-gradient(to bottom, #04121E, rgba(4, 11, 18, 0.47));
    opacity: 0.41;
}

.contact-inner .contact-wrapper .contact-info .address {
    margin-top: 36px;
}

.contact-inner .contact-wrapper .contact-info .address address {
    margin-bottom: 34px;
}

.contact-inner .contact-wrapper .contact-info .address address ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.contact-inner .contact-wrapper .contact-info .address address ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.contact-inner .contact-wrapper .contact-info .address address ul li:last-child {
    margin-bottom: 0;
}

.contact-inner .contact-wrapper .contact-info .address address ul li span {
    color: #2B2B2B;
    font-size: 16px;
}

.contact-inner .contact-wrapper .contact-info .social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 11px;
}

.contact-inner .contact-wrapper .contact-info .social ul li a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #F6F9FB;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}

.contact-inner .contact-wrapper .contact-info .social ul li a:hover {
    background: var(--second-color);
}

.contact-inner .contact-wrapper .contact-info .social ul li a:hover svg path {
    fill: #FFF;
}

.contact-inner .contact-wrapper .contact-form {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (max-width: 991px) {
    .contact-inner .contact-wrapper .contact-form {
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        width: 100%;
    }
}

.contact-inner .contact-wrapper .contact-form .contact-form-inner h5 {
    font-size: 31px;
    color: #082034;
    font-weight: bold;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .contact-inner .contact-wrapper .contact-form .contact-form-inner h5 {
        font-size: 25px;
        margin-bottom: 20px;
    }
}

.contact-inner .contact-wrapper .contact-form .contact-form-inner .form-group {
    margin-bottom: 25px;
}

.contact-inner .contact-wrapper .contact-form .contact-form-inner .form-group:last-child {
    margin-bottom: 0;
}

.contact-inner .contact-wrapper .contact-form .contact-form-inner .form-group label {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-inner .contact-wrapper .contact-form .contact-form-inner .form-group .form-control {
    height: 50px;
    border-radius: 25px;
}

.contact-inner .contact-wrapper .contact-form .contact-form-inner .form-group textarea {
    height: 139px !important;
}

.account-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 41px;
}

@media (max-width: 1199px) {
    .account-page {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .account-page {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }
}

.account-page .account-aside {
    background: #FFF;
    border-radius: 19px;
    -webkit-box-shadow: 0 -1px 19px rgba(26, 90, 168, 0.12);
    box-shadow: 0 -1px 19px rgba(26, 90, 168, 0.12);
    padding: 34px 22px 81px;
    width: 341px;
    position: relative;
}

@media (max-width: 1199px) {
    .account-page .account-aside {
        width: 300px;
    }
}

@media (max-width: 991px) {
    .account-page .account-aside {
        width: 100%;
    }
}

.account-page .account-aside .account-aside-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(243, 246, 251, 0.45);
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.account-page .account-aside .account-aside-head .user-img {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    overflow: hidden;
}

.account-page .account-aside .account-aside-head .user-img img {
    width: 100%;
    height: 100%;
}

.account-page .account-aside .account-aside-head h6 {
    margin-bottom: 0;
    margin-top: 11px;
    font-size: 17px;
    font-weight: bold;
}

.account-page .account-aside .account-aside-body ul li {
    border-bottom: 1px solid rgba(243, 246, 251, 0.45);
    padding: 10px 0;
}

.account-page .account-aside .account-aside-body ul li:nth-child(1) {
    padding-top: 0;
}

.account-page .account-aside .account-aside-body ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20.5px;
    color: #082034;
    font-size: 17px;
    border-radius: 8px;
    font-weight: bold;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
    padding: 10px 14px;
}

.account-page .account-aside .account-aside-body ul li a:hover {
    background: #F4F8FA;
}

.account-page .account-aside .account-aside-body ul li.sign-out {
    border-bottom: 0;
}

.account-page .account-aside .account-aside-body ul li.sign-out a {
    color: #FF0000;
}

.account-page .account-aside .account-aside-body ul li.active a {
    background: #F4F8FA;
}

.account-page .account-aside .account-aside-pattern {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

@media (max-width: 991px) {
    .account-page .account-aside .account-aside-pattern img {
        width: 100%;
        height: 60px;
    }
}

.account-page .account-content-body {
    background: #FFF;
    border-radius: 19px;
    -webkit-box-shadow: 0 -1px 19px rgba(26, 90, 168, 0.12);
    box-shadow: 0 -1px 19px rgba(26, 90, 168, 0.12);
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-height: 529px;
    position: relative;
}

@media (max-width: 991px) {
    .account-page .account-content-body {
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        width: 100%;
        min-height: auto;
    }
}

.account-page .account-content-body .account-content-head {
    padding: 18px 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6.5px;
}

.account-page .account-content-body .account-content-head h5 {
    color: var(--second-color);
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 0;
}

.account-page .account-content-body .profile-form {
    max-width: 431px;
    margin: 0 auto;
    padding: 48px 0 43px;
}

@media (max-width: 991px) {
    .account-page .account-content-body .profile-form {
        max-width: 100%;
        padding: 40px 20px;
    }
}

.account-page .account-content-body .profile-form .avatar-picture {
    margin-bottom: 24px;
}

.account-page .account-content-body .profile-form .form-group {
    margin-bottom: 20px;
}

.account-page .account-content-body .profile-form .form-group label {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 14px;
}

.account-page .account-content-body .profile-form .form-group .form-control {
    border-radius: 25px;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    height: 45px;
    background: #F3F7FA;
    padding: 5px 22px;
    font-size: 13px;
    color: #082034;
}

.account-page .account-content-body .profile-form .form-group .form-control:disabled {
    color: #9F9F9F;
}

.account-page .account-content-body .profile-form .form-group .form-group-btn {
    position: relative;
}

.account-page .account-content-body .profile-form .form-group .form-group-btn .toggle-input {
    position: absolute;
    right: 23.5px;
    top: 9px;
}

.account-page .account-content-body .profile-form .btn-main {
    width: 100%;
    height: 45px;
    font-weight: bold;
    border-radius: 25px;
}

.account-page .account-content-body .account-content-pattern {
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 0;
    transform: rotateY(180deg);
}

@media (max-width: 991px) {
    .account-page .account-content-body .account-content-pattern {
        display: none;
    }
}

.account-page .account-content-body .account-content-table {
    position: relative;
    z-index: 1;
}

.favorite-wrap {
    padding: 0 24px 38px;
    position: relative;
    z-index: 2;
}

.favorite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20.4px 20px;
}

@media (max-width: 1199px) {
    .favorite-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .favorite-grid {
        grid-template-columns: 100%;
    }
}

.favorite-grid .stadium-card .stadium-card-top {
    height: 160.27px;
}

.favorite-grid .stadium-card .stadium-card-body {
    padding: 15.7px 12.5px 15.3px 10px;
}

.favorite-grid .stadium-card .stadium-card-body .card-info {
    margin-bottom: 10px;
}

.favorite-grid .stadium-card .stadium-card-body .card-info .type {
    gap: 9.7px;
}

.favorite-grid .stadium-card .stadium-card-body .card-info .type span {
    font-size: 14px;
}

.favorite-grid .stadium-card .stadium-card-body .time {
    gap: 10.7px;
}

.favorite-grid .stadium-card .stadium-card-body .time span {
    font-size: 14px;
}

.favorite-grid .stadium-card .stadium-card-body .btn-action {
    margin-top: 17.7px;
}

.favorite-grid .stadium-card .stadium-card-body .btn-action .btn {
    height: 40px;
    font-size: 16px;
}

.modal .phone-input {
    padding-left: 100px !important;
    font-size: 15px;
}

@media (min-width: 992px) {
    .sign-modals .modal-dialog {
        max-width: 831.48px;
    }
}

.sign-modals .modal-content {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    border-radius: 12px;
}

.sign-modals .close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 3;
    width: 21.88px;
    height: 21.88px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(26, 38, 62, 0.35);
    border: 0;
}

.sign-modals .close-modal .close {
    opacity: 1 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.sign-modals .modal-body {
    padding: 0;
}

.sign-modals .sign-modals-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 0 12px 12px 0;
    overflow: hidden;
}

@media (max-width: 991px) {
    .sign-modals .sign-modals-wrap {
        grid-template-columns: 100%;
    }
}

.sign-modals .sign-modals-wrap .sign-modals-form {
    padding: 42.6px 20px 40px;
    position: relative;
    z-index: 2;
}

.sign-modals .sign-modals-wrap .sign-modals-form .sign-modals-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 49px;
}

.sign-modals .sign-modals-wrap .sign-modals-form .sign-modals-header h5 {
    font-size: 19px;
    color: #082034;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 28px;
}

.sign-modals .sign-modals-wrap .sign-modals-form .form-group label {
    margin-bottom: 14px;
    font-size: 16px;
}

.sign-modals .sign-modals-wrap .sign-modals-form .form-group .form-control {
    height: 50px;
    border-radius: 25px;
    text-align: left;
    direction: ltr;
}

.sign-modals .sign-modals-wrap .sign-modals-form .form-group .form-control::-webkit-input-placeholder {
    font-size: 14px;
    color: rgba(26, 38, 62, 0.26);
}

.sign-modals .sign-modals-wrap .sign-modals-form .form-group .form-control::-moz-placeholder {
    font-size: 14px;
    color: rgba(26, 38, 62, 0.26);
}

.sign-modals .sign-modals-wrap .sign-modals-form .form-group .form-control:-ms-input-placeholder {
    font-size: 14px;
    color: rgba(26, 38, 62, 0.26);
}

.sign-modals .sign-modals-wrap .sign-modals-form .form-group .form-control::-ms-input-placeholder {
    font-size: 14px;
    color: rgba(26, 38, 62, 0.26);
}

.sign-modals .sign-modals-wrap .sign-modals-form .form-group .form-control::placeholder {
    font-size: 14px;
    color: rgba(26, 38, 62, 0.26);
}

.sign-modals .sign-modals-wrap .sign-modals-form .sign-modals-action {
    margin-top: 20px;
}

.sign-modals .sign-modals-wrap .sign-modals-form .sign-modals-action .btn {
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
}

.sign-modals .sign-modals-wrap .sign-modals-form .sign-modals-pattern {
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: -1;
}

.sign-modals .sign-modals-wrap .sign-modals-form .terms-use-box {
    margin-top: 20px;
}

.sign-modals .sign-modals-wrap .sign-modals-form .terms-use-box .terms-use-text {
    font-size: 14px;
    color: #041E42;
}

.sign-modals .sign-modals-wrap .sign-modals-form .terms-use-box .terms-use-text a {
    color: var(--second-color);
    text-decoration: underline;
}

.sign-modals .sign-modals-wrap .sign-modals-img {
    position: relative;
}

.sign-modals .sign-modals-wrap .sign-modals-img img {
    height: 100%;
    width: 100%;
}

.sign-modals .sign-modals-wrap .sign-modals-img:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background: -webkit-gradient(linear, right bottom, right top, from(rgba(4, 18, 30, 0.47)), to(rgba(4, 11, 18, 0.47)));
    background: -o-linear-gradient(bottom, rgba(4, 18, 30, 0.47), rgba(4, 11, 18, 0.47));
    background: linear-gradient(to top, rgba(4, 18, 30, 0.47), rgba(4, 11, 18, 0.47));
    opacity: 0.32;
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .sign-modals .sign-modals-wrap .sign-modals-img {
        display: none;
    }
}

.sign-modals.sign-modals-verification .form-group,
.sign-modals.sign-modals-personal-data .form-group {
    margin-bottom: 20px;
}

.sign-modals.sign-modals-verification .form-group .form-control,
.sign-modals.sign-modals-personal-data .form-group .form-control {
    padding: 0.375rem 20px;
}

@media (min-width: 992px) {
    .dialog-modal .modal-dialog {
        max-width: 365px;
    }
}

.dialog-modal .modal-content {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    border-radius: 22px;
}

.dialog-modal .close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    background: transparent;
    border: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dialog-modal .modal-body {
    padding: 49px 30px 27px;
}

.dialog-modal .dialog-modal-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dialog-modal .dialog-modal-wrap .dialog-modal-content p {
    font-weight: bold;
    color: #303030;
    font-size: 16px;
}

.dialog-modal .dialog-modal-wrap .dialog-modal-action {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

@media (min-width: 992px) {
    .evaluation-modal .modal-dialog {
        max-width: 501px;
    }
}

.evaluation-modal .modal-body {
    padding: 51px 32px 21px;
}

.evaluation-modal .modal-content {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    border-radius: 12px;
}

.evaluation-modal .close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    background: transparent;
    border: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.evaluation-modal .evaluation-form h5 {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #000000;
}

.evaluation-modal .evaluation-form .form-group textarea {
    height: 174px;
    padding: 10px 15px;
    resize: none;
}

.evaluation-modal .evaluation-form .evaluation-box {
    margin: 0 auto 20px;
}

.evaluation-modal .evaluation-form .btn-primary {
    margin-top: 24px;
    min-width: 210px;
    height: 45px;
    font-weight: bold;
    font-size: 16px;
}

.phone-input {
    text-align: right;
    direction: rtl;
}

.phone-input::-webkit-input-placeholder {
    text-align: left;
}

.phone-input::-moz-placeholder {
    text-align: left;
}

.phone-input:-ms-input-placeholder {
    text-align: left;
}

.phone-input::-ms-input-placeholder {
    text-align: left;
}

.phone-input::placeholder {
    text-align: left;
}

.iti {
    width: 100%;
}

.iti__arrow {
    border: none;
    position: relative;
    width: 10px;
    height: 7.33px;
    margin-top: 3px;
}

.iti__arrow:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 7.33px;
    background: url(../img/select-arrow.svg);
    background-repeat: no-repeat;
    background-size: 10px 7.33px;
}

.iti__selected-flag {
    direction: ltr !important;
    outline: none;
    padding-left: 20px;
    padding-right: 0;
}

.iti__country-name {
    font-size: 12px;
}

.iti__country-list {
    left: 0;
    right: auto;
    max-width: 290px;
    overflow-x: scroll !important;
    z-index: 21;
}

.iti__country-name,
.iti__flag-box {
    margin-right: 6px;
}

.iti__country {
    direction: ltr;
    text-align: ltr;
}


.iti--separate-dial-code .iti__selected-dial-code {
    color: #1A263E;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
}

.iti--separate-dial-code .iti__selected-flag {
    background: transparent;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background: transparent;
}

/* tel responsive */
@media (max-width: 1024px) {
    .iti__country-list {
        right: 0;
        left: auto;
    }
}

@media (max-width: 576px) {
    .iti__country-list {
        left: 0;
        right: auto;
    }
}

.form-select {
    background-image: url(../img/select-arrow.svg);
    background-position: 94%;
    background-size: 10px;
}

.form-select:active,
.form-select:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.form-control {
    border-color: rgba(19, 57, 89, 0.12);
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.form-control:focus,
.form-control:active {
    border-color: var(--second-color);
}

.avatar-picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.avatar-picture .image-input {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-shadow: 0 3px 13px rgba(26, 90, 168, 0.12);
    box-shadow: 0 3px 13px rgba(26, 90, 168, 0.12);
}

.avatar-picture .image-input .image-input-wrapper {
    background-image: url("");
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.avatar-picture .image-input .btn {
    height: 21px;
    width: 21px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    right: 3px;
    bottom: 0;
    background-color: #FFF;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: 0 2px 6px rgba(146, 146, 146, 0.35) !important;
    box-shadow: 0 2px 6px rgba(146, 146, 146, 0.35) !important;
}

.avatar-picture .image-input .btn input {
    width: 0 !important;
    height: 0 !important;
    overflow: hidden;
    opacity: 0;
    display: none;
}

.checkbox,
.radio {
    margin-bottom: 6px;
}

.checkbox.inline,
.radio.inline {
    display: inline-block;
    vertical-align: top;
    margin-right: 2px;
}

.checkbox.inline:last-child,
.radio.inline:last-child {
    margin-right: 0;
}

.checkbox label,
.radio label {
    display: block;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.checkbox input[type=checkbox],
.radio input[type=checkbox],
.checkbox input[type=radio],
.radio input[type=radio] {
    position: absolute;
    top: 0;
    right: 0;
    visibility: hidden;
}

.checkbox .custom-checkbox,
.radio .custom-checkbox,
.checkbox .custom-radio,
.radio .custom-radio {
    display: inline-block;
    vertical-align: top;
    margin: 0 4px 0 0;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid #D3D3FF;
    position: relative;
}

.checkbox .custom-checkbox {
    border-radius: 3px;
    background: var(--main-color);
    -webkit-transition: -webkit-box-shadow 180ms ease;
    transition: -webkit-box-shadow 180ms ease;
    -o-transition: box-shadow 180ms ease;
    transition: box-shadow 180ms ease;
    transition: box-shadow 180ms ease, -webkit-box-shadow 180ms ease;
    -webkit-box-shadow: inset 0 0 0 12px #fff;
    box-shadow: inset 0 0 0 12px #fff;
    top: 5px;
}

.checkbox .icon-check {
    width: 9px;
    height: 9px;
    background-size: cover;
    position: absolute;
    top: 3px;
    right: 3px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 180ms ease;
    -o-transition: all 180ms ease;
    transition: all 180ms ease;
}

.checkbox input[type=checkbox]:checked+.custom-checkbox {
    border-color: var(--main-color);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.checkbox input[type=checkbox]:checked+.custom-checkbox .icon-check {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.radio .custom-radio {
    border-radius: 18px;
    background: var(--main-color);
    -webkit-box-shadow: inset 0 0 0 12px #fff;
    box-shadow: inset 0 0 0 12px #fff;
    -webkit-transition: all 180ms ease;
    -o-transition: all 180ms ease;
    transition: all 180ms ease;
    top: -2px;
}

.radio input[type=radio]:checked+.custom-radio {
    border-color: var(--main-color);
    background: var(--main-color);
    -webkit-box-shadow: inset 0 0 0 4px #fff;
    box-shadow: inset 0 0 0 4px #fff;
}

.icon-check {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%2216%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.483%201.992l-7.186%207.066-3.778-3.715-2.518%202.475%205.037%204.954%201.259%201.237%209.704-9.541-2.518-2.476z%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
}

.cst-switch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.cst-switch label {
    margin-bottom: 0;
    margin: 0 8px;
    font-size: 13px;
    color: #222;
}

.cst-switch input[type=checkbox] {
    width: 37.95px;
    height: 22.77px;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #DDD;
    outline: none;
    border-radius: 20px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.cst-switch input[type=checkbox]:focus {
    outline: none;
}

.cst-switch input[type=checkbox]:after {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    top: 5px;
    right: 4px;
    background: #FFF;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cst-switch input[type=checkbox]:checked {
    background: var(--gradient);
}

.cst-switch input[type=checkbox]:checked:after {
    right: 20px;
}

.cs-table thead {
    background: #F4F8FA;
}

.cs-table thead tr th {
    border-bottom: 0;
    padding: 12px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 991px) {
    .cs-table thead tr th {
        min-width: 100px;
    }
}

.cs-table thead tr th:first-child {
    -webkit-padding-start: 30px;
    padding-inline-start: 30px;
}

.cs-table thead tr th:last-child {
    -webkit-padding-end: 30px;
    padding-inline-end: 30px;
}

.cs-table tbody tr td {
    padding: 15px 12px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid #F3F6FB;
}

@media (max-width: 991px) {
    .cs-table tbody tr td {
        min-width: 100px;
    }
}

.cs-table tbody tr td:first-child {
    -webkit-padding-start: 30px;
    padding-inline-start: 30px;
}

.cs-table tbody tr td:last-child {
    -webkit-padding-end: 30px;
    padding-inline-end: 30px;
}

.cs-table tbody tr:last-child td {
    border-bottom: none;
}

.status.close {
    color: #FF0000;
}

.status.complete {
    color: #91CC00;
}

.footer {
    background: #082034;
    position: relative;
}

.footer .footer-layer-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.footer .footer-pattern {
    position: absolute;
    top: 48px;
    right: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    transform: rotateY(180deg);
}

@media (max-width: 991px) {
    .footer .footer-pattern {
        display: none;
    }
}

.footer .footer-top {
    padding: 80px 0 57px;
    display: grid;
    grid-template-columns: 338px 1fr 1fr 239px;
    grid-gap: 100px;
}

@media (max-width: 1199px) {
    .footer .footer-top {
        grid-template-columns: 1fr 1fr;
        grid-gap: 50px;
        padding: 30px 0 0;
    }
}

@media (max-width: 991px) {
    .footer .footer-top {
        grid-gap: 35px;
    }
}

@media (max-width: 991px) {
    .footer .footer-top .footer-info {
        grid-column: 1/3;
    }
}

.footer .footer-top .footer-info .footer-logo {
    margin-bottom: 27.6px;
}

.footer .footer-top .footer-info .footer-logo img {
    width: 170.82px;
}

.footer .footer-top .footer-info p {
    font-size: 16px;
    color: #C3C3C3;
    line-height: 39px;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .footer .footer-top .footer-info p {
        margin-bottom: 15px;
    }
}

.footer .footer-top .footer-info .footer-soical ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 11px;
}

.footer .footer-top .footer-info .footer-soical ul li a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}

.footer .footer-top .footer-info .footer-soical ul li a:hover {
    background: var(--main-color);
}

.footer .footer-top .footer-info .footer-soical ul li a:hover img {
    -webkit-filter: invert(0) brightness(100);
    filter: invert(0) brightness(100);
}

.footer .footer-top .footer-list h4 {
    color: #EBEBEB;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 23px;
}

.footer .footer-top .footer-list ul li {
    margin-bottom: 22px;
}

.footer .footer-top .footer-list ul li:last-child {
    margin-bottom: 0;
}

.footer .footer-top .footer-list ul li a {
    color: #C3C3C3;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.footer .footer-top .footer-list ul li a:hover {
    color: var(--main-color);
}

@media (max-width: 991px) {
    .footer .footer-top .footer-contact {
        grid-column: 1/3;
    }
}

.footer .footer-top .footer-contact h4 {
    color: #EBEBEB;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 23px;
}

.footer .footer-top .footer-contact address ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer .footer-top .footer-contact address ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.footer .footer-top .footer-contact address ul li span {
    color: #C3C3C3;
    font-size: 16px;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px 0 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991px) {
    .footer .footer-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 15px 0;
        gap: 10px;
    }
}

.footer .footer-bottom p {
    color: #C3C3C3;
}

@media (max-width: 991px) {
    .footer .footer-bottom p {
        font-size: 12px;
    }
}

.loveapex {
    -webkit-animation: loveapex 1s ease-in-out alternate forwards infinite;
    animation: loveapex 1s ease-in-out alternate forwards infinite;
    padding: 0 3px;
}

@-webkit-keyframes loveapex {

    0%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes loveapex {

    0%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}


.share-product-box {
    position: relative;
    transition: 0.3s;
}

.share-product-box .share-product-btn {
    transition: 0.3s;
}

.share-product-box .share-product-btn .share-icon path {
    fill: #1A263E;
}

.share-product-box.active .share-product-btn {
    background: var(--main-color);
}

.share-product-box .share-product-btn svg.share-ico path {
    fill: var(--main-color);
}

.share-product-box .share-product-btn svg.close-share path {
    fill: #2a2a2a;
}

.share-product-box .share-product-btn .close-share {
    display: none;
}

.share-product-box.active
.share-product-btn
.share-icon {
    display: none;
}

.share-product-box.active
.share-product-btn
.close-share {
    display: flex;
}

.share-product-box.active
.share-product-btn
.close-share svg path {
    fill: #FFF !important;
}

.share-product-list {
    background: #fff;
    border-radius: 19px;
    display: flex;
    padding: 10px 8px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.18);
    justify-content: center;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transition: 0.3s;
    transform-origin: top;
    z-index: 9;
    overflow: hidden;
}

.share-product-box.active
.share-product-list {
    transform: translateX(-50%) scaleY(1);
}

.share-product-list ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.services-section .swiper-button-prev,
.services-section .swiper-button-next {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 1;
    z-index: 3;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}
.services-section .swiper-button-prev:after,
.services-section .swiper-button-next:after {
    display: none;
}
.services-section .swiper-button-prev:hover,
.services-section .swiper-button-next:hover {
    background: var(--second-color);
}
.services-section .swiper-button-prev {
    left: 0;
    top: 48%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}
@media (max-width: 991px) {
    .services-section .swiper-button-prev {
        left: 20px;
    }
}
.services-section .swiper-button-next {
    right: 0;
    top: 48%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}
@media (max-width: 991px) {
    .services-section .swiper-button-next {
        right: 20px;
    }
}
.services-section .swiper-button-next.swiper-button-disabled,
.services-section .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35 !important;
}

/*# sourceMappingURL=style.css.map */
