.custom-container {
    max-width: 1023px;
}

.heading-1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 639px) {
    .heading-1 {
        font-size: 28px;
    }
}

.heading-2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.heading-3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

p {
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.heading-4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.body-1 {
    font-size: 18px;
    line-height: 1.6;
}

.body {
    font-size: 16px;
    line-height: 1.6;
}

.caption {
    font-size: 14px;
    line-height: 1.6;
}

.app-loading {
    position: absolute;
    inset: 0;
    z-index: 999;
    background-color: #11121C;
}

@media screen and (max-width: 639px) {
    .contact-form .form-data {
        border: none !important;
    }

    .heading-3 {
        font-size: 24px;
    }

    .heading-4 {
        font-size: 14px;
    }
}

.app-loading .arc {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border-top: 2px solid #ffea29;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    animation: rt 2s infinite linear;
}
.app-loading .arc::before {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border-top: 2px solid #8d29ff;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    animation: rt 4s infinite linear reverse;
    content: "";
}
.app-loading .arc::after {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    border-top: initial;
    border-left: initial;
    border-right: initial;
    animation: cw 1s infinite;
    content: "";
    background: #fffafa;
}
.app-loading h1 {
    position: absolute;
    height: 40px;
    margin: auto;
    top: 200px;
    left: 0;
    right: 0;
    bottom: 0;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 14px;
    font-weight: lighter;
    color: white;
}
.app-loading h1 span {
    display: none;
}
.app-loading h1::after {
    animation: txt 5s infinite;
    content: "";
}
@keyframes rt {
    100% {
        transform: rotate(360deg);
   }
}
@keyframes cw {
    0% {
        width: 0;
        height: 0;
   }
    75% {
        width: 40px;
        height: 40px;
   }
    100% {
        width: 0;
        height: 0;
   }
}
@keyframes txt {
    0% {
        content: "LOADING.";
   }
    50% {
        content: "LOADING..";
   }
    100% {
        content: "LOADING...";
   }
}

.menu-item {
    color: white;
    font-weight: bold;
    transition: all 0.5s;
    position: relative;
}

.menu-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    height: 1px;
    background: #4c51d4;
    width: 0;
    transition: all 0.5s;
}

.menu-item:hover, .menu-item:active, .menu-item:focus {
    color: #4c51d4;
    text-decoration: none;
}

.menu-item:hover:before, .menu-item:active:before, .menu-item:focus:before {
   width: 90%;
}



@media screen and (max-width: 980px) {
    .menu-sp-content {
        transition: all 0.3s ease;
        height: 0;
        visibility: hidden;
        opacity: 0;
    }

    .active-menu .menu-sp-content {
        height: auto !important;
        opacity: 1 !important;
        visibility: visible;

    }

    .menu-sp-content ul {
        transition: all 0.3s ease;
        height: 0;
        visibility: hidden;
        opacity: 0;
    }

    .active-menu .menu-sp-content ul {
        height: auto !important;
        opacity: 1 !important;
        visibility: visible;

    }
}

.error {
    color: #FF3333;
}

.loading-circle {
  border: 2px solid #f3f3f3;
  border-radius: 50%;
  border-top: 2px solid #3498db;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.movie-child {
    height: 0;
    transition: all 0.3s;
    position: absolute;
}

.movie-child-item {
    color: white;
    font-weight: bold;
    background-color: rgba(41, 63, 61, 0.42);
}

.movie-parent img {
    transition: all 0.3s ease-in-out;
}

.movie-parent {
    position: relative;
    overflow: hidden;
}

.play-movie {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4c51d4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.movie-parent img {
    position: relative;
}

.movie-parent:hover img {
    transform: scale(1.5);
}

.movie-parent:hover .play-movie {
    opacity: 1;
}

.menu-fixed {
    transition: ease-in-out 0.7s;
}

.menu-fixed-scroll .sp-menu {
    color: #4c4ed4 !important;
}

.menu-fixed a {
    transition: ease-in-out 0.7s;
}

.menu-fixed-scroll {
    background: white;
}



@media screen and (max-width: 980px) {
    .menu-fixed-scroll .menu-item {
        color: white !important;
    }
}

.menu-fixed-scroll a {
    color: #333333;
}

.overlay-class {
    position: relative;
    z-index: 1;
}

.overlay-class::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #19282721;
}

.flip-box {
    background-color: transparent;
    height: 240px;
    perspective: 1000px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-group:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-box-front {
    background-color: #bbb;
    color: black;
}

.flip-box-back {
    background-color: dodgerblue;
    color: white;
    transform: rotateY(180deg);
}

.customer-slider .slick-dots {
    bottom: -36px;
}

@media screen and (max-width: 639px) {
    .customer-slider .slick-dots {
        bottom: -54px;
    }

}

.customer-slider .slick-dots .slick-active button {
    background: #4c4ed4;
}

.customer-slider .slick-dots button {
    border-radius: 50%;
    background: #D9D9D9;
    width: 12px;
    height: 12px;
}

.movie-slider .slick-dots {
    bottom: 16px;
}

.movie-slider .slick-dots button {
    background: #D9D9D9;
    border-radius: 4px;
    height: 100%;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.movie-slider .slick-dots li {
    height: 4px;
}

.movie-slider .slick-active button {
    background: #4c4ed4 ;
}

.movie-slider .slick-dots button:before {
    content: none;
}

.banner-top:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
}

.custom-country {
    padding: 0 8px !important;
    cursor: pointer !important;
}

.dropdown-country .dropdown-menu {
    max-height: 500px;
    overflow-y: auto;
}
