/*====================== Google fonts ========================*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/*====================== web fonts =========================*/
@font-face {
    font-family: 'Product Sans';
    src: url('../webfonts/ProductSans-Black.eot');
    src: url('../webfonts/ProductSans-Black.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/ProductSans-Black.woff2') format('woff2'),
        url('../webfonts/ProductSans-Black.woff') format('woff'),
        url('../webfonts/ProductSans-Black.ttf') format('truetype'),
        url('../webfonts/ProductSans-Black.svg#ProductSans-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Product Sans';
    src: url('../webfonts/ProductSans-Italic.eot');
    src: url('../webfonts/ProductSans-Italic.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/ProductSans-Italic.woff2') format('woff2'),
        url('../webfonts/ProductSans-Italic.woff') format('woff'),
        url('../webfonts/ProductSans-Italic.ttf') format('truetype'),
        url('../webfonts/ProductSans-Italic.svg#ProductSans-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Product Sans';
    src: url('../webfonts/ProductSans-Bold.eot');
    src: url('../webfonts/ProductSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/ProductSans-Bold.woff2') format('woff2'),
        url('../webfonts/ProductSans-Bold.woff') format('woff'),
        url('../webfonts/ProductSans-Bold.ttf') format('truetype'),
        url('../webfonts/ProductSans-Bold.svg#ProductSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Product Sans';
    src: url('../webfonts/ProductSans-Regular.eot');
    src: url('../webfonts/ProductSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/ProductSans-Regular.woff2') format('woff2'),
        url('../webfonts/ProductSans-Regular.woff') format('woff'),
        url('../webfonts/ProductSans-Regular.ttf') format('truetype'),
        url('../webfonts/ProductSans-Regular.svg#ProductSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Product Sans';
    src: url('../webfonts/ProductSans-Medium.eot');
    src: url('../webfonts/ProductSans-Medium.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/ProductSans-Medium.woff2') format('woff2'),
        url('../webfonts/ProductSans-Medium.woff') format('woff'),
        url('../webfonts/ProductSans-Medium.ttf') format('truetype'),
        url('../webfonts/ProductSans-Medium.svg#ProductSans-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Product Sans';
    src: url('../webfonts/ProductSans-Light.eot');
    src: url('../webfonts/ProductSans-Light.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/ProductSans-Light.woff2') format('woff2'),
        url('../webfonts/ProductSans-Light.woff') format('woff'),
        url('../webfonts/ProductSans-Light.ttf') format('truetype'),
        url('../webfonts/ProductSans-Light.svg#ProductSans-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Steelfish Eb';
    src: url('../webfonts/SteelfishEb-Italic.eot');
    src: url('../webfonts/SteelfishEb-Italic.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/SteelfishEb-Italic.woff2') format('woff2'),
        url('../webfonts/SteelfishEb-Italic.woff') format('woff'),
        url('../webfonts/SteelfishEb-Italic.ttf') format('truetype'),
        url('../webfonts/SteelfishEb-Italic.svg#SteelfishEb-Italic') format('svg');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Steelfish Eb';
    src: url('../webfonts/SteelfishEb-Regular.eot');
    src: url('../webfonts/SteelfishEb-Regular.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/SteelfishEb-Regular.woff2') format('woff2'),
        url('../webfonts/SteelfishEb-Regular.woff') format('woff'),
        url('../webfonts/SteelfishEb-Regular.ttf') format('truetype'),
        url('../webfonts/SteelfishEb-Regular.svg#SteelfishEb-Regular') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/*====================== Basic css ========================*/
@-ms-viewport {
    width: device-width;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
    font-size: 0.521vw;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
	scroll-behavior: unset;

	/* fonts */
	--noto-sans: "Noto Sans", sans-serif;
	--steelfish-eb: 'Steelfish Eb';
	--product-sans: 'Product Sans';

	/* color */
	--white: #FFF;
	--black: #000;
	--dark: #383838;
	--dark-light: #444444;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}


/* body */
body {
	font-family: var(--noto-sans), sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	background: var(--dark-light);
	color: var(--white);
}

/*====================== main_wrapper start ========================*/
.main_wrapper {
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: flex-start;
}

.sidebar {
	width: 37rem;
	min-height: 100vh;
	flex-shrink: 0;
	background: var(--dark);
}

.content_wrapper {
	width: calc(100% - 37rem);
	min-height: 100vh;
	flex-grow: 1;
	background: var(--dark-light);
}

.social {
width: 37rem;
margin: 0 auto 1rem auto;
text-align: center;
vertical-align: middle;
}

.links {
width: 20%;
padding: 1rem;
}

.sidebar ul {
	width: 37rem;
	height: 100vh;
	flex-shrink: 0;
	background: var(--dark);
	padding: 5rem 0rem;
	position: fixed;
	z-index: 1024;
	overflow-y: auto;
	-ms-overflow-style: none;  
    scrollbar-width: none; 
}
 
.sidebar ul::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

.sidebar ul li a {
	background: transparent;
	display: block;
	text-align: center;
	padding: 2rem 1rem;
	transition: 0.2s all ease;
}

.sidebar ul li a img {
	max-width: 100%;
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
	background: var(--dark-light);
}

.sidebar ul li a.active img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2207%) hue-rotate(17deg) brightness(109%) contrast(96%);
}

.sidebar ul li .phone_number {
	padding: 2rem 1rem;
	text-align: center;
}

.rjholiday {
	width: 27rem;
	text-align: center;
	position: relative;
    left: 15px;
}

.sidebar ul li .side_img1 {
	width: 23rem;
}

.sidebar ul li a .side_img2 {
	width: 23rem;
}

.sidebar ul li a .side_img3 {
	width: 23rem;
}

.sidebar ul li a .side_img4 {
	width: 23rem;
}

.sidebar ul li a .side_img5 {
	width: 23rem;
}

.sidebar ul li a .side_img6 {
	width: 23rem;
}

.sidebar ul li a .side_img7 {
	width: 23rem;
}

.sidebar ul li a .side_img8 {
	width: 23rem;
}

.sidebar ul li a .side_img9 {
	width: 23rem;
}

.wrapper_text {
	padding-left: 6.5rem;
    padding-top: 2em;
}

.wrapper_text p {
	font-size: 4.2rem;
	font-weight: 500;
	color: #FF3586;
}

.wrapper_text p strong {
	font-weight: 900;
}

.swiper {
  	width: 100%;
  	height: 100%;
}

.slider_wraper {
	padding: 10rem 5.5rem;
	position: relative;
}

.swiper-button-prev {
	width: 2.6rem;
	left: 2.5rem;
}

.swiper-button-next {
	width: 2.6rem;
	right: 3.5rem;
}

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

.swiper-button-prev img,
.swiper-button-next img {
	width: 2.6rem;
}

.swiper-button-prev .left_arrow {
	transform: rotate(-180deg);
}

.swiper-button-disabled {
	opacity: 0 !important;
}

.wrapper_title {
	margin-top: 2rem;
	margin-left: 1rem;
}

.wrapper_title img {
	width: 82rem;
}

.price_item {
	padding-left: 6.5rem;
	display: flex;
	align-items: center;
	gap: 6rem;
	padding-top: 5rem;
}

.price_item img {
	width: 30rem;
}

.price_item ul li {
	font-family: var(--product-sans), sans-serif;
	font-size: 4.6rem;
	font-weight: 700;
	line-height: 1.14;
	color: #90ff88;
	padding-left: 4.2rem;
	position: relative;
}

.price_item ul li::before {
	content: "";
	width: 2.5rem;
	height: 2.5rem;
	display: block;
	background: #90ff88;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.logos_wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	min-height: 74rem;
}

.splash {
	width: 85%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0rem 2rem;

	margin-right: auto;
}

.brand_logo {
	width: 70%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0rem 2rem;
	margin-left: auto;
	margin-right: auto;
}

.brand_logo img {
	width: 100%;
}

.brand_logo1 {
	width: 80%;
}

.brand_logo2 {
	width: 36%;
}

.brand_logo3 {
	width: 65%;
}

.brand_logo4 {
	width: 70%
}

.brand_logo5 {
	width: 85%
}

.brand_logo6 {
	width: 70%
}

.brand_logo7 {
	width: 70%
}

.brand_logo8 {
	width: 70%
}

.brand_logo9 {
	width: 47%
}

.brand_logo10 {
	width: 70%
}

.brand_logo11 {
	width: 70%
}

.brand_logo12 {
	width: 70%
}

.brand_logo13 {
	width: 70%
}

.brand_logo14 {
	width: 70%
}

/*===================== mobile_version start =======================*/
.mobile_version {
	background: var(--dark-light);
	padding: 5rem 2.4rem 2rem;
	display: none;
	position: relative;
    transition: opacity 0.3s ease;
}

.mobile_version.show {
    display: block;
}

.brands_header {
	display: flex;
	align-items: center;
	padding: 0rem 0.5rem;
}

.back_btn a {
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	z-index: 9;
	cursor: pointer;
}

.back_btn a img {
	width: 2rem;
}

.brands_logo2 {
	margin: 0 15px;
}

.brands_logo2 img {
	width: 29rem;
	display: block;
	margin: 0 auto;
}

.mobile_version .wrapper_title {
	margin: 2.8rem 0rem;
	margin-left: 1rem;
}

.mobile_version .wrapper_title img {
	width: 68rem;
}

.mobile_version .wrapper_text {
	padding: 0rem 2rem;
}

.mobile_version .wrapper_text p {
	font-size: 2.5rem;
}

.mobile_version .wrapper_text p br {
	display: none;
}

.mobile_version .price_item {
	padding: 3.6rem 2rem 3rem;
	gap: 3rem;
}

.mobile_version .price_item img {
	width: 22rem;
}

.mobile_version .price_item ul li {
	font-size: 3.4rem;
	padding-left: 2.5rem;
}

.mobile_version .price_item ul li::before {
	width: 1.5rem;
	height: 1.5rem;
}

.contact_text {
	width: 50rem;
	display: block;
	margin: 15px 25px 30px 25px;
	text-align: center;
}

.contact_text img {
	width: 50rem;
	display: block;
	margin: ;
}

.down {
	width: 5rem;
	display: block;
	text-align: center;
	margin: 50px auto 0 auto;
}

.mobile_logos {
	padding: 1rem 0rem 0rem;
	text-align: center;
}

.mobile_logos img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

.mobile_logos .logo {
	margin-bottom: 2rem;
}

.sidebar ul li a .side_im2mobile {
	display: none;
}

.sidebar ul .group_chat_item {
	display: none;
}

.sidebar ul .group_chat_item a .side_group {
	width: 23rem;
}

/* copy phone number */
.phone_number {
    position: relative;
}

.copy-message {
    position: absolute;
    top: 90%; 
    left: 50%;
    transform: translateX(-50%);
    background-color: #4caf50;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 0.4rem;
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    z-index: 9;
}

.copy-message.show {
    opacity: 1;
}

.contact_text .copy-message {
	top: 110%;
}



.content_wrapper iframe {
	width: 100%;
	height: 100vh;
	border: none;
	box-shadow: none;
	outline: none;
}