:root {
    --colorTheme: #222f23;
    --colorLightRed: #f69a85;
    --colorWhite: #ededed;
    --colorBlack: #191919;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    background-color: var(--colorTheme);
}
@font-face {
    font-family: 'Gotham Bold';
    src: url('../fonts/GothamBold.otf') format('opentype');
}
@font-face {
    font-family: 'Gotham Book';
    src: url('../fonts/GothamBook.otf') format('opentype');
}
input,
select,
button {
    outline: none;
    box-shadow: none;
}
input:focus,
select:focus,
button:focus {
    outline: none;
    box-shadow: none !important;
}
.form-control:focus {
    border-color: transparent;
    box-shadow: none;
}
a {
    text-decoration: none;
}
a:hover {
    transition: all 0.4s ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Gotham Bold';
}
p, a {
    font-family: 'Gotham Book';
}
.thm-btn {
    font-size: 18px;
    color: var(--colorBlack);
    text-align: center;
    background-color: transparent;
    padding: 12px 32px;
    border: 1px solid var(--colorLightBlue);
    border-radius: 50px;
    display: inline-block;
}
.thm-btn:hover {
    color: var(--colorWhite);
    background-color: var(--colorLightBlue);
    transition: all 0.4s ease-in-out;
}
.thm-btn-1 {
    font-size: 18px;
    color: var(--colorWhite);
    text-align: center;
    background-color: var(--colorBlack);
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    display: inline-block;
}
.thm-btn-1:hover {
    color: var(--colorWhite);
    background-color: var(--colorLightBlue);
    transition: all 0.4s ease-in-out;
}

/*-- Start Header --*/
.header {
    padding: 30px 18px 0;
} 
.header .sidebar-menu .openbtn {
    width: 50px;
    height: 50px;
    background-color: var(--colorLightRed);
    border-radius: 50px;
    border: none;
}
.header .sidebar-menu .openbtn img {
    width: 25px;
}
.header .header-logo img {
    height: 50px;
}
/*-- End Header --*/

/*-- Start --*/
.main-slider {
    margin: 30px 30px 0;
    position: relative;
}
.main-slider .owl-carousel .owl-item img {
    width: auto;
    margin: 0;
}
.main-slider .owl-carousel .item .slide-bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
}
.main-slider .owl-carousel .item .slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--colorBlack);
    opacity: 0.1;
    border-radius: 15px;
}
.main-slider .home-slide-cnt {
    position: relative;
    padding: 200px 80px;
}
.main-slider .home-slide-cnt h1 {
    font-size: 70px;
    font-weight: bold;
    color: var(--colorBlack);
    margin-bottom: 50px;
}
.main-slider .home-slide-cnt a {
    font-size: 16px;
    color: var(--colorBlack);
    letter-spacing: 2px;
    margin-bottom: 0;
    display: flex;
    align-items: baseline;
}
.dot {
    position: relative;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--colorLightRed);
    margin-left: 9px;
} 
.dot::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--colorLightRed);
    opacity: 0.6;
    left: 13px;
}
.dot::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--colorLightRed);
    opacity: 0.3;
    left: 26px;
}
.main-slider .home-slide-cnt a:hover {
    color: var(--colorLightRed);
}
/*-- End --*/

/*-- Start --*/
.opening {
    padding: 100px 0;
}
.g-100 {
    --bs-gutter-y: 100px;
    --bs-gutter-x: 100px;
}
.opening-images img {
    width: 550px;
    height: 700px;
    object-fit: cover;
    border-radius: 15px;
}
.opening-images-2 {
    margin-top: -100px;
    margin-bottom: 100px;
}
.opening-images-2 img {
    width: 716px;
    height: 434px;
    object-fit: cover;
    border-radius: 15px;
}
.opening-images-3 img {
    width: 550px;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
}
.opening-images img,
.opening-images-2 img,
.opening-images-3 img {
    filter: blur(10px);
    transition: filter 0.2s linear;
}
.opening-cnt h6 {
    font-size: 24px;
    font-weight: bold;
    color: var(--colorWhite);
    line-height: 48px;
    margin-bottom: 0;
}
.opening-cnt p {
    font-size: 20px;
    color: var(--colorWhite);
    line-height: 40px;
    margin-bottom: 0;
}
/*-- End --*/

/*-- Start --*/
.gas-kit {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    min-height: 100vh;
    margin: 0 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
}
.gas-kit::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/gas-kit-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(0px);
    height: 100%;
    transition: filter 0.4s ease;
    z-index: -1;
}
.gas-kit.active::before {
    filter: blur(10px);
}
.gas-kit-cnt {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}
.gas-kit.active .gas-kit-cnt {
    opacity: 1;
    visibility: visible;
}
.gas-kit-cnt img {
    margin-bottom: 40px;
}   
.gas-kit-cnt h6 {   
    font-size: 24px;
    font-weight: bold;
    color: var(--colorWhite);
    line-height: 48px;
    margin-bottom: 20px;
}
.gas-kit-cnt p {
    font-size: 16px;
    color: var(--colorWhite);
    line-height: 24px;
    margin-bottom: 20px;
}
.gas-kit-cnt a {
    font-size: 24px;
    font-family: 'Gotham Bold';
    font-weight: bold;
    color: var(--colorWhite);
    display: flex;
    align-items: baseline;
}
.gas-kit-cnt a:hover {
    color: var(--colorLightRed);
}
/*-- End --*/

/*-- Start --*/
.studios-carousel {
    display: flex;
    align-items: center;
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.studios-carousel-mobile {
    padding: 100px 12px 50px;
}
.slider {
	display: flex;
	align-items: center;
	position: relative;
}
.carousel__slider {
	position: relative;
	width: 100%;
	min-height: 400px;
}
.carousel__item {
    position: absolute;
    top: 0%;
    opacity: 0;
}
.studios-carousel-item {
    display: flex;
    align-items: center;
    column-gap: 24px;
}
.studios-carousel-cnt {
    width: 50%;  
}
.studios-carousel-cnt h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--colorWhite);
    margin-bottom: 20px;
}
.studios-carousel-cnt p {
    font-size: 16px;
    color: var(--colorWhite);
    line-height: 24px;
    margin-bottom: 24px;
}
.studios-carousel-cnt a {
    font-size: 24px;
    font-family: 'Gotham Bold';
    font-weight: bold;
    color: var(--colorWhite);
    display: flex;
    align-items: baseline;
}
.studios-carousel-img {
    width: 50%;
}
.studios-carousel-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}
.carousel__nav {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-direction: column;
    padding-left: 0;
    margin-left: 48px;
    margin-bottom: 0;
}
.carousel__nav__item {
    display: block;
    font-size: 16px;
    color: var(--colorWhite);
    letter-spacing: 2px;
    white-space: nowrap;
    cursor: pointer;
}
.carousel__nav__item--active {
	color: var(--colorLightRed);
}
.studios-carousel-control {
    margin-left: 24px;
}
.studios-carousel-control a {
    width: 18px;
    display: block;
}
.studios-carousel-control a img {
    width: 18px;
}
.studios-carousel-control span {
    width: 3px;
    height: 3px;
    border: 3px;
    background-color: var(--colorWhite);
    display: block;
    margin: 24px 7px;
}
.studios-carousel-mobile .owl-nav {
    text-align: right;
    position: absolute;
    top: -80px;
    right: 12px;
}
.studios-carousel-mobile .owl-carousel .owl-nav button.owl-prev {
    margin-right: 43px;
    transform: rotate(-90deg);
}
.studios-carousel-mobile .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: transparent;
    color: var(--colorTheme);
    transition: .4s;
}
.studios-carousel-mobile .owl-carousel .owl-nav button.owl-prev.disabled,
.studios-carousel-mobile .owl-carousel .owl-nav button.owl-next disabled {
    opacity: 0.2;
}
.studios-carousel-mobile .owl-carousel .owl-nav button.owl-next {
    transform: rotate(-90deg);
}
.studios-carousel-mobile .owl-carousel .owl-nav button.owl-next:hover {
    background-color: transparent;
    color: var(--colorTheme);
    transition: .4s;
}
/*-- End --*/

/*-- Start --*/
.footer {
    margin: 0 30px;
}
.footer-sign-up {
    background-color: var(--colorLightRed);
    border-radius: 15px;
    padding: 18px 30px;
}
.footer-sign-up p {
    font-size: 16px;
    color: var(--colorWhite);
    letter-spacing: 2px;
    margin-bottom: 0;
}
.footer-sign-up .form-control {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--colorBlack);
    min-width: 360px;
    border: none;
}
.footer-sign-up .btn {
    font-size: 16px;
    font-weight: bold;
    color: var(--colorWhite);
    letter-spacing: 1px;
}
.footer-sign-up .btn:hover {
    color: var(--colorTheme);
    transition: all 0.4s ease-in-out;
}
.footer-box {
    background-color: #f7f2ec;
    margin-top: 30px;
    border-radius: 15px;
    padding: 30px 30px 0;
}
.footer .footer-link ul {
    padding: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.footer .footer-link ul li {
    margin-bottom: 12px;
}
.footer .footer-link ul li a {
    font-size: 16px;
    color: var(--colorBlack);
    letter-spacing: 1px;
}
.footer .footer-link ul li a:hover {
    color: var(--colorLightRed);
}
.footer-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.footer-address p {
    font-size: 16px;
    color: var(--colorBlack);
    letter-spacing: 1px;
}
.footer-contact {
    margin-top: auto;
}
.footer-contact p {
    font-size: 16px;
    color: var(--colorBlack);
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.footer-contact p a {
    color: var(--colorBlack);
}
.footer-contact p a:hover {
    color: var(--colorLightRed);
}
.footer-logo {
    margin-top: 18px;
    margin-bottom: -12px;
}
.footer-btm {
    padding: 30px 0;
}
.footer-btm p {
    font-size: 16px;
    color: var(--colorWhite);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.footer-btm p a {
    color: var(--colorWhite);
}
.footer-btm p a:hover {
    color: var(--colorLightRed);
}
/*-- End --*/


