/* GOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #292F47;
}
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea, label {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:focus {
    text-decoration: none;
}
button, input {
    outline: none !important;
}
/* GOBAL_CSS_CHANGES_END_HERE */
/* GOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --darkBlue: #0496D2;
    --lightBlue: #04A7EA;
    --white: #FFFFFF;
    --black: #161616;
    --oswald-bold: "Oswald-Bold";
    --oswald-medium: "Oswald-Medium";
    --oswald-regular: "Oswald-Regular";
    --oswald-semiBold: "Oswald-SemiBold";
    --robotoCondensed-bold: "RobotoCondensed-Bold";
    --robotoCondensed-light: "RobotoCondensed-Light";
    --robotoCondensed-regular: "RobotoCondensed-Regular";
    --roboto-bold: "Roboto-Bold";
    --roboto-light: "Roboto-Light";
    --roboto-medium: "Roboto-Medium";
    --roboto-regular: "Roboto-Regular";
}
/* GOBAL_VAR_CSS_CSS_HERE */
/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "Oswald-Bold";
    src: url("../webfonts/Oswald-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Oswald-Medium";
    src: url("../webfonts/Oswald-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Oswald-Regular";
    src: url("../webfonts/Oswald-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Oswald-SemiBold";
    src: url("../webfonts/Oswald-SemiBold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "RobotoCondensed-Bold";
    src: url("../webfonts/RobotoCondensed-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "RobotoCondensed-Light";
    src: url("../webfonts/RobotoCondensed-Light.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "RobotoCondensed-Regular";
    src: url("../webfonts/RobotoCondensed-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Roboto-Bold";
    src: url("../webfonts/Roboto-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Roboto-Light";
    src: url("../webfonts/Roboto-Light.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Roboto-Medium";
    src: url("../webfonts/Roboto-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Roboto-Regular";
    src: url("../webfonts/Roboto-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
/* HEADER-CSS-START-FROM-HERE */
.header-main-wrapper {
    position: relative;
}
.header-text-box{
    display: flex;
    gap: 100px;
    align-items: center;
    padding: 10px 0px 10px 0px;
    border-bottom: 2px solid var(--darkBlue);
}
.header-text-box-2 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    gap: 35%;
}
.header-text-box-2-text{
    display: flex;
    align-items: start;
}
.header-text-box-2-text i{
    color:#ffffff;
    font-size: 35px;
}
.header-text-box-2-text h6{
    font-size: 40px;
    font-family: var(--oswald-medium);
    color: var(--white);
}
.header-text-box-2-text span{
    font-size: 20px;
    font-family: var(--oswald-medium);
    color: var(--white);
}
.header-text-box-2-input{
    width: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    padding: 0px 10px 0px 10px;
    position: relative;
}
.header-text-box-2-input input{
    background-color: transparent;
    border: none;
    font-size: 13px;
    font-family: var(--robotoCondensed-regular);
    color: #868E96;
    width: 80%;
}
.header-text-box-2-input a i{
    color: #868E96;
}
.search-results {
    position: absolute;
    width: 100%;
    height: auto;
    background: var(--white);
    top: 40px;
    left: 0;
    z-index: 99999;
    overflow-y: auto;
}
.search-results ul li a {
    font-size: 14px;
    padding: 20px;
    display: block;
    color: var(--black);
    font-family: var(--robotoCondensed-bold);
}
.header-nav ul{
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-nav ul li{
    display: block;
    position: relative;
    transition-duration: 0.5s;
}
.header-nav ul li ul {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	transition: all 0.5s ease;
	left: 0;
	display: none;
	z-index: 9999;
}
.header-nav ul li ul li a{
	background: var(--darkBlue);
	padding: 10px;
	color: #ffff;
	width: 140%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header-nav ul li ul a {
	font-size: 13px;
}
.header-nav ul li ul li a:hover{
    background: var(--white);
    color: var(--darkBlue);
}
.header-nav ul li:hover > ul,
ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}
.header-nav ul li:hover{
    cursor: pointer;
    transition: 0.3s all;
}
.header-nav ul li a {
    font-size: 18px;
    font-family: var(--oswald-medium);
    color: var(--white);
    transition: 0.5s all;
}
.header-nav ul li a:hover{
    color: var(--lightBlue);
}
.header-nav-box{
    display: flex;
    justify-content: space-between;
    padding: 20px 0px 20px 0px;
}
.header-btn{
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-btn a{
    font-size: 17px;
    font-family: var(--robotoCondensed-regular);
    color: #F9F9F9;
    transition: 0.5s all;
    font-weight: 500;
}
.header-btn a:hover{
    color: var(--lightBlue);
}
.header-menu{
    display: none;
}
/* HEADER-CSS-END-HERE */

/* VIDEO-WRAPPER-CSS-START-FROM-HERE */
.index-video-wrapper{
    background-color: var(--lightBlue);
}
.index-video-text h3 {
    font-family: var(--oswald-regular);
    color: var(--white);
    font-size: 27px;
    width: 100%;
    margin: 0px 0px 0px 40px;
}
.index-video-img {
    padding: 5px 0px 5px 0px;
}
/* VIDEO-WRAPPER-CSS-END-HERE */

/* INDEX-FIRST-WRAP-CSS-START-FROM-HERE */
.index-first-wrapper{
    padding: 20px 0px;
}
.index-first-wrap-banner{
    position: relative;
}
.index-first-wrap-banner-text{
    position: absolute;
    bottom: 0;
    padding: 0px 40px 0px 40px;
    transform:translateY(-20%);
    transition: 0.7s all;
}
.index-first-wrap-banner:hover .index-first-wrap-banner-text{
    transform:translateY(-50%);
}
.index-first-wrap-banner-text-anchor{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--lightBlue);
    color: var(--white);
    font-size: 17px;
    font-family: var(--oswald-medium);
    width: 15%;
    margin: 0px 0px 10px 0px;
} 
.index-first-wrap-banner-text h6{
    font-size: 45px;
    font-family: var(--oswald-medium);
    color: var(--white);
}
.index-first-wrap-tab{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    width: 100%;
    margin: 0px 0px 10px 0px;
    transition: 0.5s all;
    border-radius: 10px;
}
.index-first-wrap-tab:hover{
    background-color: var(--lightBlue);
    transform: scale(1.1);
}
.index-first-wrap-tab.active{
    background-color: var(--lightBlue);
    transform: scale(1.1);
}
.index-first-wrap-tab.active .index-first-wrap-tab-text h2{
    color: var(--white);
}
.index-first-wrap-tab.active .index-first-wrap-tab-text p{
    color: var(--white);
}
.index-first-wrap-tab-text {
    padding: 0px 0px 0px 10px;
    width: 100%;
}
.index-first-wrap-banner-img img {
    border-radius: 20px;
    width: 900px;
}
.index-first-wrap-tab-text h2{
    font-size: 18px;
    font-family: var(--oswald-medium);
    color: #161616;
    margin: 0px 0px 10px 0px;
    transition: 0.5s all;
}
.index-first-wrap-tab-text p{
    font-size: 14px;
    font-family: var(--oswald-medium);
    color: #515151;
    transition: 0.5s all;
}
.marquee-flex ul {
    display: flex;
    align-items: center;
    gap: 50px;
}
.marquee-flex ul li p {
    font-size: 25px;
    font-family: var(--roboto-bold);
    color: var(--white);
}
marquee {
    background-color: var(--lightBlue);
    padding: 20px 0px;
    margin: 10px 0px 0px 0px;
    display: flex;
    align-items: center;
}
/* INDEX-FIRST-WRAP-CSS-END-HERE */

/* INDEX-SECOND-WRAP-CSS-START-FROM-HERE */
.index-second-wrapper{
    padding: 50px 0px ;
    background-color: var(--lightBlue);
}
.index-second-wrap-text{
    display: flex;
    justify-content: space-between;
    margin: 0px 0px 40px 0px;
}
.index-second-wrap-text h3{
    font-family: var(--oswald-regular);
    font-size: 25px;
    color: var(--white);
}
.index-second-wrap-text a{
    font-family: var(--oswald-regular);
    font-size: 20px;
    color: var(--white);
    text-decoration: underline var(--white);
}
.index-second-wrap{
    display: flex;
    align-items: center;
}
.index-second-text{
    margin: 0px 0px 0px 10px;
}
.index-second-text h3{
    font-family: var(--oswald-regular);
    font-size: 18px;
    color: var(--white);
}
.index-second-text p{
    font-family: var(--roboto-light);
    font-size: 13px;
    color: var(--white);
    margin: 0px 0px 10px 0px;
}
.index-second-text a{
    display: flex;
    width: 65%;
    height: 25px;
    font-family: var(--roboto-light);
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white);
    justify-content: center;
    align-items: center;
    transition: 0.3s all;
}
.index-second-text a:hover{
    background: var(--darkBlue);
    color: var(--black);
}
.index-second-live {
    width: 100%;
}
/* INDEX-SECOND-WRAP-CSS-END-HERE */

/* INDEX-THIRD-WRAP-CSS-START-FROM-HERE */
.index-third-wrapper {
    padding: 50px 0px 50px 0px;
}  
.index-third-wrap-news-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px 10px 0px;
    border-bottom: 1px solid #F1F1F1;
    margin: 0px 0px 30px 0px;
}
.index-third-wrap-news-text h6{
    font-size: 32px;
    font-family: var(--oswald-regular);
    color: var(--white);
}
.index-third-wrap-news-text-btn{
    display: flex;
}
.index-third-wrap-news-text-btn a{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 1px solid #F1F1F1;
    padding: 10px 10px 10px 10px;
    transition: 0.5s all;
}
.index-third-wrap-news-text-btn a:hover{
    background-color: var(--lightBlue);
}
/* .index-third-wrap-news-box:hover .index-third-wrap-news-banner a{
    background: var(--white);
    color: var(--black);
    transform: translate(0px, -20px);
} */
.index-third-wrap-news-banner{
    position: relative;
    margin: 0px 0px 20px 0px;
    overflow: hidden;
}
.index-third-wrap-news-banner-text h4{
    font-size: 18px;
    font-family: var(--oswald-bold);
    color: var(--white);
    margin: 0px 0px 5px 0px;
}
.index-third-wrap-news-banner-text span{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
}
.index-third-wrap-news-banner-text a{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: #999999;
}
.index-third-wrap-news-banner-text p {
    font-size: 18.5px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    margin: 10px 0px 0px 0px;
}
.index-third-wrap-social-heading{
    border-bottom: 1px solid #EFEFEF;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 10px 0px;
}
.index-third-wrap-social-heading h6{
    font-size: 32px;
    font-family: var(--oswald-regular);
    color: var(--white);
}
.index-third-wrap-social-heading-text p{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    margin: 0px 0px 10px 0px;
}
.index-third-wrap-social-tabs{
    display: flex;
    margin: 0px 0px 30px 0px;
}
.social-tab-1{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25%;
    background-color: #F0771E;
    height: 70px;
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    gap: 5px;
    transition: 0.3s all;
}
.social-tab-2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 10%;
    width: 25%;
    background-color: #436FEB;
    height: 70px;
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    gap: 5px;
    transition: 0.3s all;
}
.social-tab-3{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 10%;
    width: 25%;
    background-color: #04A7EA;
    height: 70px;
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    gap: 5px;
    transition: 0.3s all;
}
.social-tab-4{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 10%;
    width: 25%;
    background-color: #F14133;
    height: 70px;
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    gap: 5px;
    transition: 0.3s all;
}
.index-third-wrap-social-tabs i{
    font-size: 16px;
}
.index-third-wrap-social-tabs a:hover{
    transform: scale(1.1);
    color: var(--white);
}
.index-third-wrap-social-small-heading{
    border-bottom: 1px solid #EFEFEF;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 10px 0px;
}
.index-third-wrap-social-small-heading h2{
    font-size: 18px;
    font-family: var(--robotoCondensed-bold);
    color: var(--white);
}
.index-third-wrap-social-banner{
    position: relative;
}
.index-third-wrap-social-banner:hover .index-third-wrap-social-banner-text{
    transform: translateY(-40px);
}
.index-third-wrap-social-banner::before{
    content: '';
    position: absolute;
    bottom: 0px;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.95) 100%);
    width: 100%;
    height: 100px;
}
.index-third-wrap-social-banner-text{
    position: absolute;
    bottom: 0;
    padding: 0px 40px 0px 20px;
    transform: translateY(-20px);
    transition: 0.5s all;
}
.index-third-wrap-social-banner-img {
    margin: 20px 0px 20px 0px;
}
.index-third-wrap-social-banner-img img {
    width: 100%;
}
.index-third-wrap-social-banner-text a{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--lightBlue);
    color: var(--white);
    font-size: 12px;
    font-family: var(--robotoCondensed-regular);
    width: 55%;
    height: 25px;
    margin: 0px 0px 10px 0px;
    transition: 0.5s all;
}
.index-third-wrap-social-banner:hover .index-third-wrap-social-banner-text a {
    background-color: var(--white);
    color: var(--black);
}
.index-third-wrap-social-banner-text h2{
    font-size: 15px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
}
.index-third-wrap-social-banner-text span{
    font-size: 12px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
}
.index-third-wrap-social-banner-text p{
    font-size: 12px;
    font-family: var(--robotoCondensed-regular);
    color: #E1E1E1;
}
.index-third-wrap-social-box{
    margin: 0px 0px 40px 0px;
}
.index-third-wrap-social-box-text {
    padding: 20px 0px 0px 20px;
}
.index-third-wrap-social-box-text h2{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
}
.index-third-wrap-social-box-text span{
    font-size: 12px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
}
.index-third-wrap-social-box-text a{
    font-size: 12px;
    font-family: var(--robotoCondensed-regular);
    color: #999999;
}
.index-eighth-wrap-product-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 10%;
    height: 40px;
    font-family: var(--oswald-regular);
    font-size: 16px;
    color: var(--white);
    background-color: var(--lightBlue);
    transition: 0.5s all;
}
.index-eighth-wrap-product-btn a:hover {
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
}
.index-third-wrap-social-banner-1 {
    margin: 30px 0px 20px 0px;
}
.index-third-wrap-social-banner-1 img {
    width: 100%;
    border-radius: 10px;
}
.index-third-wrap-social-btns a{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    background-color: transparent;
    border: 1px solid #F1F1F1;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
    padding: 0px 10px;
    margin: 0px 0px 10px 0px;
}
.index-third-wrap-social-btns a:hover{
    background-color: var(--lightBlue);
    color: var(--white);
}
.index-third-wrap-social-prenext{
    display: flex;
    margin: 30px 0px 0px 0px;
}
.index-third-wrap-social-prenext a{
    font-size: 20px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 40px;
    background-color: #1C1F2D;
    margin: 0px 5px 0px 0px;
    transition: 0.5s all;
}
.index-third-wrap-social-prenext a:hover{
    background-color: var(--lightBlue);
}
/* INDEX-THIRD-WRAP-CSS-END-HERE */

/* INDEX-FOURTH-WRAPPER-CSS-START-FROM-HERE */

.index-fourth-wrapper{
    background: url(../images/fourth-banner.png);
    background-position: center;
    background-size: cover;
    padding: 180px 0px;
    text-align: center;
}
.index-fourth-wrap-text {
    width: 69%;
    margin: 0 auto;
}
.index-fourth-wrap-text h6{
    font-family: var(--oswald-medium);
    font-size: 55px;
    color: var(--white);
}
.index-fourth-wrap-text span{
    font-family: var(--oswald-medium);
    font-size: 55px;
    color: var(--lightBlue);
}
.index-fourth-wrap-text p{
    font-family: var(--roboto-light);
    font-size: 18px;
    color: var(--white);
    margin: 25px 0px;
}
.index-fourth-wrap-text a{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 258px;
    height: 70px;
    font-family: var(--oswald-regular);
    font-size: 25px;
    color: var(--white);
    background-color: var(--lightBlue);
    transition: 0.3s all;
}
.index-fourth-wrap-text a:hover{
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
}
/* INDEX-FOURTH-WRAPPER-CSS-END-HERE */

/* INDEX-FIFTH-WRAPPER-CSS-START-FROM-HERE */

.index-fifth-wrapper{
    padding: 100px 0px 0px 0px;
}
.index-fifth-wrap-heading{
    padding: 0px 0px 10px 0px;
    border-bottom: 1px solid #F1F1F1;
    margin: 0px 0px 20px 0px;
}
.index-fifth-wrap-heading h6{
    font-size: 32px;
    font-family: var(--oswald-regular);
    color: var(--white);
}
.index-fifth-wrap-box {
    padding: 0px 0px 50px 0px;
    position: relative;
}
.index-fifth-wrap-text h2{
    font-family: var(--oswald-bold);
    font-size: 22px;
    color: var(--white);
    margin: 20px 0px 0px 0px;
}
.index-fifth-trend-text h3{
    font-family: var(--roboto-medium);
    font-size: 17px;
    color: var(--white);
    margin: 0px 0px 17px 0px;
}
.index-fifth-trend-text h2{
    font-family: var(--roboto-regular);
    font-size: 25px;
    color:#D9D9D9;
}
.index-fifth-trend-btn a{
    display: flex;
    width: 150px;
    height: 40px;
    font-family: var(--roboto-light);
    color: var(--white);
    background: var(--lightBlue);
    justify-content: center;
    align-items: center;
    transition: 0.3s all;
    font-size: 14px;
}
.index-fifth-trend-btn a:hover{
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}
.index-fifth-trend-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.index-fifth-news-wrap-text h2 {
    font-family: var(--oswald-bold);
    font-size: 17px;
    color: var(--white);
    margin: 15px 0px 0px 0px;
}
.index-fifth-news-wrap-box {
    padding: 40px 0px 0px 0px;
}
.index-fifth-news-wrap-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* INDEX-FIFTH-WRAPPER-CSS-END-HERE */

/* INDEX-SIXTH-WRAPPER-CSS-START-HERE */
.index-sixth-wrapper{
    padding: 100px 0px;
}
.index-sixth-wrap-btn-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 185px;
    /* height: 30px; */
    font-family: var(--roboto-light);
    font-size: 15px;
    background-color: var(--lightBlue);
    color: var(--white);
    margin: 0px 0px 10px 0px;
    transition: 0.3s all;
    text-align: center;
    padding: 10px;
}
.index-sixth-wrap-img {
    max-width: 260px;
    width: 100%;
}
.index-sixth-wrap-img img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    object-position: center;
}
.index-sixth-wrap-btn-box a:hover{
    background-color: transparent;
    border: 1px solid var(--white);
}
.index-sixth-wrap-text h3 {
    font-family: var(--roboto-bold);
    font-size: 18px;
    color: var(--white);
    width: 63%;
    margin: 0px 0px 0px 130px;
}
.index-sixth-flex-wrap-box{
    display: flex;
    justify-content: space-between;
    padding: 30px 0px 30px 0px;
    border-top: 1px solid #DEDEDE;
}
.index-sixth-box{
    display: flex;
    flex-direction: column;
}
.index-sixth-wrap-icons {
    display: inline-flex;
    gap: 10px;
}
.index-seventh-wrapper{
    padding: 0px 0px 100px 0px;
}
.index-eighth-wrapper{
    padding: 50px 0px;
}
.index-eighth-wrap-product-box:hover .index-eighth-wrap-product-box-text{
    transform: translate(-50% , -20px);
}
.index-eighth-wrap-text h6 {
    font-size: 32px;
    font-family: var(--oswald-regular);
    color: var(--white);
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 40px 0px;
    border-bottom: 1px solid #fff;
}
.index-eighth-wrap-product-box-text h2 {
    font-size: 12px;
    font-family: var(--oswald-bold);
    color: var(--white);
    margin: 0px 0px 20px 0px;
    text-shadow: 2px 2px #040404;
}
.index-eighth-wrap-product-box-text h4 {
    font-size: 16px;
    font-family: var(--oswald-bold);
    color: var(--white);
    margin: 0px 0px 20px 0px;
    text-shadow: 2px 2px #040404;
}
.index-eighth-wrap-product-box-text p {
    font-size: 16px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    text-shadow: 2px 2px #040404;
}
.index-eighth-wrap-product-box {
    position: relative;
    margin: 0px 0px 40px 0px;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}
.index-eighth-wrap-product-box-text1 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 1;
    visibility: visible;
    transition: opacity .25s ease , visibility .3s ease;
}
.index-eighth-wrap-product-box:hover .index-eighth-wrap-product-box-text1{
    opacity: 0;
    visibility: hidden;
}
.index-eighth-wrap-product-box-text1 h4{
    font-size: 16px;
    font-family: var(--oswald-bold);
    color: var(--white);
    margin: 0px 0px 20px 0px;
    text-shadow: 2px 2px #040404;
}
.index-eighth-wrap-product-box-text {
    position: absolute;
    bottom: 0;
    padding: 0px 20px 0px 20px;
    text-align: center;
    transform: translate(-50% , 400px);
    transition: 0.5s ease;
    left: 50%;
    width: 100%;
}
.index-eighth-wrap-product-box::before {
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgb(0 0 0 / 84%) 0%, rgba(0,0,0,0) 80%);
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0%;
    transition: 0.3s ease;
    transform: translate(0px, 190px);
}
.index-eighth-wrap-product-box:hover::before{
    transform: translate(0px, 0px);
}
.index-eighth-wrap-product-box-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 40px;
    font-family: var(--oswald-regular);
    font-size: 16px;
    color: var(--white);
    background-color: var(--lightBlue);
    transition: 0.5s all;
    margin: 20px auto 0px auto;
}
.index-eighth-wrap-product-box-btn a:hover{
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
}
/* INDEX-SIXTH-WRAPPER-CSS-END-HERE */

/* LOGIN-CSS-START-FROM-HERE */
.login-first-wrapper{
    padding: 100px 0px 100px 0px;
    text-align: center;
}
.login-first-wrap-heading h6{
    font-size: 45px;
    font-family: var(--oswald-regular);
    color: var(--white);
    margin: 0px 0px 50px 0px;
}
.login-first-wrap-input {
    position: relative;
    width: 40%;
    margin: 0 auto;
    padding: 0;
}
.login-first-wrap-input input{
    width: 100%;
    height: 50px;
    border: 1px solid #0000001A;
    font-size: 13px;
    font-family: var(--robotoCondensed-regular);
    color: #868E96;
    padding: 0px 20px 0px 20px;
    border-radius: 12px;
}
.toggle-password {
    position: absolute;
    right: 20px;
    top: 17px;
}
.login-first-wrap-text{
    display: flex;
    justify-content: end;
    width: 40%;
    margin: 0 auto;
}
.login-first-wrap-text a{
    font-size: 18px;
    font-family: var(--roboto-regular);
    color: #04A7EA;
    margin-top: 8px;
}
.login-first-wrap-btn input{
    width: 40%;
    height: 55px;
    background-color: #04A7EA;
    font-size: 18px;
    font-family: var(--oswald-semiBold);
    border: none;
    color: #FFFFFF;
    border-radius: 12px;
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
}
.login-first-wrap-btn input:hover{
    background-color: transparent;
    border: 1px solid #04A7EA;
    color: #04A7EA;
}
.pass-change-wrap-btn input{
    width: 100%;
    height: 55px;
    background-color: #04A7EA;
    font-size: 18px;
    font-family: var(--oswald-semiBold);
    border: none;
    color: #FFFFFF;
    border-radius: 12px;
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
}
.pass-change-wrap-btn input:hover{
    background-color: transparent;
    border: 1px solid #04A7EA;
    color: #04A7EA;
}
.login-first-last-text{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.login-first-last-text p{
    font-size: 18px;
    font-family: var(--roboto-regular);
    color: #ffffffad;
}
.login-first-last-text a{
    font-size: 18px;
    font-family: var(--roboto-regular);
    color: var(--white);
}
/* LOGIN-CSS-END-HERE */

/* REGISTER-CSS-START-FROM-HERE */
.register-first-wrapper{
    padding: 100px 0px 100px 0px;
    text-align: center;
}
.register-first-wrap-heading h6{
    font-size: 45px;
    font-family: var(--oswald-regular);
    color: var(--white);
    margin: 0px 0px 50px 0px;
}
.register-first-wrap-input input {
    width: 100%;
    height: 50px;
    border: 1px solid #0000001A;
    font-size: 13px;
    font-family: var(--robotoCondensed-regular);
    color: #868E96;
    padding: 0px 20px 0px 20px;
    border-radius: 12px;
}
.register-first-wrap-input {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    width: 40%;
    margin: 0 auto;
}

.register-first-wrap-input label {
    font-size: 18px;
    font-family: var(--oswald-regular);
    color: var(--white);
    transition: 0.5s all;
    margin: 0px 0px 10px 0px;
}
.pass-change-wrap-input input{
    width: 93%;
    height: 50px;
    border: 1px solid #0000001A;
    font-size: 13px;
    font-family: var(--robotoCondensed-regular);
    color: #868E96;
    padding: 0px 20px 0px 20px;
    border-radius: 12px;
}
.register-first-wrap-input select{
    width: 100%;
    height: 50px;
    border: 1px solid #0000001A;
    outline: none;
    font-size: 13px;
    font-family: var(--robotoCondensed-regular);
    color: #868E96;
    padding: 0px 20px 0px 20px;
    border-radius: 12px;
}
.register-first-wrap-text{
    display: flex;
    justify-content: end;
    width: 40%;
    margin: 0 auto;
}
.register-first-wrap-text a{
    font-size: 18px;
    font-family: var(--roboto-regular);
    color: #04A7EA;
}
.register-first-wrap-btn input{
    width: 40%;
    height: 55px;
    background-color: #04A7EA;
    font-size: 18px;
    font-family: var(--oswald-semiBold);
    border: none;
    color: #FFFFFF;
    border-radius: 12px;
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
}
.register-first-wrap-btn input:hover{
    background-color: transparent;
    border: 1px solid #04A7EA;
    color: #04A7EA;
}
.register-first-wrap-btn a{
    width: 40%;
    height: 55px;
    background-color: #04A7EA;
    font-size: 18px;
    font-family: var(--oswald-semiBold);
    border: none;
    color: #FFFFFF;
    border-radius: 12px;
    transition: 0.5s all;
    margin: 0px auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.register-first-wrap-btn a:hover{
    background-color: transparent;
    border: 1px solid #04A7EA;
    color: #04A7EA;
}
.register-first-last-text{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.register-first-last-text p{
    font-size: 18px;
    font-family: var(--roboto-regular);
    color: #ffffffad;
}
.register-first-last-text a{
    font-size: 18px;
    font-family: var(--roboto-regular);
    color: var(--white);
}
/* LOGIN-CSS-END-HERE */

/* CONTACT-CSS-START-FROM-HERE */

.contact-first-wrapper {
    padding: 100px 0px;
}
.contact-first-wrap-text {
    margin: 0px 0px 30px 0px;
}
.contact-first-wrap-text h2 {
    font-family: var(--oswald-bold);
    font-size: 30px;
    color: var(--white);
    margin: 0px 0px 5px 0px;
}
.contact-first-wrap-text h2 span{
    color: var(--lightBlue);
}
.contact-first-input {
    margin: 0px 0px 30px 0px;
}
.contact-first-input input {
    width: 100%;
    height: 50px;
    padding: 0px 20px;
    background-color: var(--white);
    color: #868E96;
    font-size: 16px;
    font-family: var(--robotoCondensed-regular);
    border: none;
    border-radius: 0px 10px 0px 10px;
}
.contact-first-input input:focus{
    border: 1px solid var(--darkBlue);
}
.contact-first-input textarea {
    width: 100%;
    height: 150px;
    padding: 15px 20px;
    background-color: var(--white);
    resize: none;
    font-size: 16px;
    font-family: var(--robotoCondensed-regular);
    color: #868E96;
    outline: none;
    border: none;
    border-radius: 0px 10px 0px 10px;
}
.contact-first-input textarea:focus{
    border: 1px solid var(--darkBlue);
}
.contact-first-input button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 50px;
    font-family: var(--oswald-regular);
    font-size: 18px;
    color: var(--white);
    background-color: var(--lightBlue);
    transition: 0.3s all;
}
.contact-first-input button:hover{
    background-color: transparent;
    border: 1px solid var(--white);
}
.contact-first-input select{
    width: 100%;
    height: 50px;
    padding: 0px 20px 0px 20px;
    background-color: var(--white);
    color: #868E96;
    font-size: 16px;
    font-family: var(--robotoCondensed-regular);
    border: none;
    border-radius: 0px 10px 0px 10px;
    outline:none;
}
.contact-first-input select:focus{
    border: 1px solid var(--darkBlue);
}
/* CONTACT-CSS-END-HERE */

/* NEWS-CSS-START-FROM-HERE */
.news-first-wrapper{
    padding: 0px 0px 50px 0px;
}
.news-second-wrapper{
    padding: 50px 0px 50px 0px;
}
.news-third-wrapper{
    padding: 50px 0px 50px 0px;
}
/* NEWS-CSS-END-HERE */

/* LIVE-CSS-START-FROM-HERE */
.live-first-wrapper {
    padding: 50px 0px 100px 0px;
}
.live-first-wrap-text h6{
    font-size: 32px;
    font-family: var(--oswald-regular);
    color: var(--white);
    margin: 0px 0px 20px 0px;
    border-bottom: 1px solid #ffffff;
    padding: 0px 0px 10px 0px;
}
.live-first-wrap-box{
    position: relative;
    margin: 0px 0px 40px 0px;
}
.live-first-wrap-box-icon{
    position: absolute;
    bottom: 50%;
    left: 40%;
    border: 2px solid #ffffff;
    border-radius: 50px;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.live-first-wrap-box-icon i{
    color: #ffffff;
    font-size: 40px;
}
.live-first-wrap-box-1{
    position: relative;
    margin: 0px 0px 40px 0px;
}
.live-first-wrap-box-icon-1{
    position: absolute;
    bottom: 50%;
    left: 45%;
    border: 2px solid #ffffff;
    border-radius: 50px;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.live-first-wrap-box-icon-1 i{
    color: #ffffff;
    font-size: 40px;
}
.live-first-wrap-box-text{
    text-align: center;
}
.live-first-wrap-box-text h4{
    font-family: var(--roboto-regular);
    font-size: 25px;
    color: #D9D9D9;
}
.live-first-wrap-box-img {
    margin: 0px 0px 20px 0px;
    border-radius: 10px;
    overflow: hidden;
}
/* LIVE-CSS-END-HERE */
.travel-banner-wrapper {
    position: relative;
}
.travel-banner-wrap-vid{
    overflow: hidden;
    height: 550px;
    position: relative;
}
.travel-banner-wrap-vid video{
    position: absolute;
    top: -50%;
}
.travel-banner-wrap-vid::before {
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgb(0 0 0 / 40%) 0%, rgba(0,0,0,0) 350%);
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0%;
    z-index: 1;
}
.travel-banner-wrap-text{
    position: absolute;
    bottom: 20%;
    z-index: 2;
    padding: 0px 0px 0px 30px;
}
.travel-banner-wrap-text h6{
    font-size: 44px;
    font-family: var(--robotoCondensed-regular);
    color: #ffffff;
}
.travel-first-wrapper {
    padding: 50px 0px 50px 0px;
}
.travel-first-wrap-text h6{
    font-size: 16px;
    font-family: var(--oswald-regular);
    color: var(--white);
    margin: 0px 0px 30px 0px;
}
.travel-first-wrap-text p{
    font-size: 12px;
    font-family: var(--roboto-regular);
    color: #e6e6e6;
    margin: 0px 0px 30px 0px;
}
.travel-first-wrap-text a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 30px;
    font-family: var(--oswald-regular);
    font-size: 16px;
    color: var(--white);
    background-color: var(--lightBlue);
    transition: 0.5s all;
    margin: 0px 0px 50px 0px;
}
.travel-first-wrap-text a:hover {
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
}
.travel-second-wrap-text{
    text-align: center;
    padding: 20px 0px 50px 0px;
}
.travel-second-wrap-text h6{
    font-size: 16px;
    font-family: var(--roboto-bold);
    color: var(--white);
    position: relative;
    margin: 0px 0px 30px 0px;
}
.travel-second-wrap-text h6::before{
    content: '';
    position: absolute;
    width: 5%;
    height: 1px;
    background-color: #ffff;
    bottom: -70%;
    right: 47.5%;
}
.travel-second-wrap-text p{
    font-size: 20px;
    font-family: var(--roboto-light);
    color: #e6e6e6;
    width: 60%;
    margin: 0 auto;
}
.travel-second-wrap-right h6{
    font-size: 26px;
    font-family: var(--roboto-bold);
    color: var(--white);
    position: relative;
    margin: 0px 0px 50px 0px;
}
.travel-second-wrap-right h6::before{
    content: '';
    position: absolute;
    width: 5%;
    height: 1px;
    background-color: #ffff;
    bottom: -80%;
    left: 0%;
}
.travel-second-wrap-right h2{
    font-size: 16px;
    font-family: var(--roboto-light);
    color: #e6e6e6;
    margin: 0px 0px 20px 0px;
}
.travel-second-wrap-right p{
    font-size: 16px;
    font-family: var(--roboto-regular);
    color: #ffffff;
    width: 60%;
    margin: 0px 0px 40px 0px;
}
.travel-second-wrap-right a {
    font-size: 14px;
    font-family: var(--roboto-reglar);
    color: #ffffff;
    margin: 0px 0px 20px 0px;
    display: block;
}
.travel-second-wrap-right h3{
    font-size: 14px;
    font-family: var(--roboto-light);
    color: #ffffff;
    border-bottom: 1px solid #fff;
    margin: 0px 0px 20px 0px;
    padding: 0px 0px 15px 0px;
}
.travel-second-wrap-right h3:nth-child(7){
    border: none;
}
.travel-second-wrap-right h3 span{
    font-family: var(--roboto-bold);
}
.travel-second-wrap-right h4 {
    font-size: 16px;
    font-family: var(--oswald-bold);
    color: var(--white);
    margin: 0px 0px 5px 0px;
    text-shadow: 2px 2px #040404;
}
.travel-detail-first-wrap-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 40px;
    font-family: var(--oswald-regular);
    font-size: 16px;
    color: var(--white);
    background-color: var(--lightBlue);
    transition: 0.5s all;
    margin: 0px 0px 50px 0px;
}
.travel-detail-first-wrap-btn a:hover {
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
}
.travel-third-wrapper{
    background-image: url(../images/travel-6.png);
    background-position: center;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: flex-end;
    padding: 0px 0px 50px 50px;
    position: relative;
}
.travel-third-wrapper::before{
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgb(0 0 0 / 60%) 0%, rgba(0,0,0,0) 170%);
    width: 100%;
    height: 100%;
    left: 0%;
    bottom: 0%;
}
.travel-third-wrap-text {
    z-index: 1;
}
.travel-third-wrap-text h2{
    font-size: 14px;
    font-family: var(--roboto-bold);
    color: #ffffff;
}
.travel-third-wrap-text h4{
    font-size: 60px;
    font-family: var(--robotoCondensed-regular);
    color: #ffffff;
}
.travel-third-wrap-text p{
    font-size: 18px;
    font-family: var(--robotoCondensed-regular);
    color: #ffffff;
    width: 50%;
}
.travel-fourth-wrapper {
    padding: 50px 0px 50px 0px;
}
.travel-fourth-wrap-text{
    text-align: center;
    padding: 50px 0px 50px 0px;
    border-top: 1px solid #fff;
}
.travel-fourth-wrap-text h6{
    font-size: 14px;
    font-family: var(--roboto-bold);
    color: #ffffff;
    position: relative;
    margin: 0px 0px 20px 0px;
}
.travel-fourth-wrap-text h6::before{
    content: '';
    position: absolute;
    width: 5%;
    height: 1px;
    background-color: #ffff;
    bottom: -70%;
    left: 47.5%;
}
.travel-fourth-wrap-text h3{
    font-size: 18px;
    font-family: var(--roboto-light);
    color: #e6e6e6;
    margin: 0px 0px 20px 0px;
}
.travel-fourth-wrap-text select{
    width: 50%;
    height: 50px;
    text-align: center;
    background-color: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid #fff;
    font-size: 30px;
    font-family: var(--robotoCondensed-regular);
    color: #ffffff;
    transition: 0.5s all;
}
.travel-fourth-wrap-text select option{
    color: #414141;
}
.travel-fourth-wrap-text-1 {
    margin: 0px 0px 30px 0px;
}
.travel-fourth-wrap-text-1 a{
    font-size: 24px;
    font-family: var(--robotoCondensed-light);
    color: #b9b9b9;
}
.travel-first-wrap-images{
    position: relative;
    overflow: hidden;
    margin: 0px 0px 20px 0px;
    width: 100%;
    border-radius: 10px;
}
.travel-first-wrap-images::before{
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgb(0 0 0 / 60%) 0%, rgba(0,0,0,0) 80%);
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0%;
    transition: 0.5s all;
    transform: translate(0px, 250px);
}
.travel-first-wrap-img-text{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -10px);
    text-align: center;
    transition: 0.6s all;
    width: 70%;
}
.travel-first-wrap-text{
    position: absolute;
    bottom: 0;
    left: 35%;
    transform: translate(0px, 250px);
    text-align: center;
    transition: 0.6s all;
}
.travel-first-wrap-img-text h6{
    font-size: 26px;
    font-family: var(--oswald-bold);
    color: var(--white);
}
.travel-first-wrap-images:hover::before{
    transform: translate(0px, 0px);
}
.travel-first-wrap-images:hover .travel-first-wrap-img-text{
    transform: translate(-50%, -80px);
}
.nav-tabs {
    border-bottom: none !important;
}
.nav {
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin: 0px 0px 30px 0px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #fff !important;
    background-color: var(--lightBlue) !important;
    border:none;
}
.nav-tabs .nav-link {
    color: #fff;
    border-radius: 20px;
}
.index-fifth-wrap-img img {
    border-radius: 10px;
    width: 85%;
    height: 235px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}
.index-second-wrap-img img {
    border-radius: 10px;
}
.index-third-wrap-news-banner img {
    border-radius: 10px;
    overflow: hidden;
    height: 320px;
    object-fit: cover;
}
.index-third-wrap-social-banner-img img {
    border-radius: 10px;
}
.index-third-wrap-social-box-img img {
    border-radius: 10px;
    min-width: 100%;
}
.index-fifth-news-wrap-img img {
    border-radius: 10px;
}
.index-eighth-wrap-product-box-img img {
    border-radius: 10px;
}
.index-video-img .item img {
    border-radius: 10px;
}
.index-second-wrap-img {
    width: 70%;
}
.live-first-wrap-box-img img {
    transition: 0.4s all;
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.live-first-wrap-box:hover .live-first-wrap-box-img img{
    transform:scale(1.1);
}
.live-first-wrap-box-icon{
    transition: 0.6s all;
}
.live-first-wrap-box:hover .live-first-wrap-box-icon {
    z-index: 99;
    transform: rotatex(190deg);
}
.travel-first-wrap-images img {
    border-radius: 10px;
    height: 275px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.travel-second-wrap-left img {
    border-radius: 10px;
}
.travel-island-wrapper{
    padding:50px 0px;
}
/* FOOTER-CSS-START-FROM-HERE */
.footer-wrapper{
    background-color: #1D212F;
    padding: 50px 0px 0px 0px;
}
.footer-text p{
    font-size: 15px;
    font-family: var(--robotoCondensed-regular);
    color: #AAAAAA;
    margin: 30px 0px 20px 0px;
}
.foooter-icon ul{
    display: flex;
    align-items: center;
    gap: 5px;
}
.foooter-icon ul li a{
    font-size: 17px;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    transition: 0.5s all;
}
.link-tag-img img {
    border-radius: 10px;
    width: 160px;
    height: 70px;
    object-fit: cover;
}
.footer-link-img img {
    border-radius: 10px;
}
.foooter-icon ul li a:hover{
    background-color: var(--lightBlue);
}
.footer-links h6{
    font-size: 20px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    margin: 0px 0px 30px 0px;
}
.link-tags{
    display: flex;
    gap: 20px;
    margin: 0px 0px 10px 0px;
}
.link-tag-text h2{
    font-size: 17px;
    font-family: var(--robotoCondensed-regular);
    color: #CCCCCC;
}
.link-tag-text span{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
}
.link-tag-text p{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: #999999;
}
.footer-link-img {
    margin: 0px 0px 10px 0px;
}
.footer-link-text h2{
    font-size: 17px;
    font-family: var(--robotoCondensed-regular);
    color: #CCCCCC;
}
.footer-links-tab a{
    display: inline-flex;
    font-size: 12px;
    font-family: var(--robotoCondensed-regular);
    color: #CCCCCC;
    border: 1px solid #333333;
    padding: 0px 10px;
    height: 40px;
    justify-content: center;
    align-items: center;
}
.footer-links-tab a {
    margin: 0px 0px 10px 0px;
    transition: 0.5s all;
}
.footer-links-tab a:hover{
    background-color: var(--lightBlue);
    color: var(--white);
}
.copyright{
    border-top: 1px solid #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0px 50px 0px;
}
.copyright-nav ul{
    display: flex;
    align-items: center;
    gap: 30px;
}
.copyright-nav ul li a{
    font-size: 15px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    transition: 0.3s all;
}
.copyright-nav ul li a:hover{
    color: var(--lightBlue);
}
.copyright-text p{
    font-size: 15px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
}
/* FOOTER-CSS-END-HERE */
.court-first-wrapper {
    padding: 100px 0px;
}
.google-map iframe {
    border-radius: 10px;
}
.live-first-wrap-box-img-1 {
    width: 80%;
    height: 300px;
    background-color: #000000;
    margin: 0 auto 20px auto;
    background-position: center!important;
    background-size: cover!important;
}
.live-second-wrapper {
    padding: 100px 0px 0px 0px;
}
.article-first-wrapper {
    padding: 50px 0px;
}
.article-first-wrap-box-img img {
    border-radius: 20px;
    margin: 0px 0px 20px 0px;
}
.article-first-wrap-box-head-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0px 20px 0px;
}
.article-first-wrap-box-heading h6{
    font-size: 28px;
    font-family: var(--oswald-bold);
    color: var(--white);
}
.article-first-wrap-box-heading span{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
}
.article-first-wrap-box-heading a{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: #999999;
}
.article-first-wrap-box-text p {
    font-size: 16px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    margin: 0px 0px 15px 0px;
}
.article-first-wrap-box-text li {
   
    color: var(--white);
}
.article-first-wrap-box-text h2 {
   
    color: var(--white);
}
.comment-accordian .accordion-button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 40px;
    font-family: var(--oswald-regular);
    font-size: 16px;
    color: var(--white);
    background-color: var(--lightBlue);
    transition: 0.5s all;
    outline: none;
    box-shadow: none;
}
.comment-accordian .accordion-button:not(.collapsed){
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
}
.comment-accordian .accordion-button::after{
    display: none;
}
.comment-accordian .accordion-item{
    background-color: transparent;
}
.comment-accordian-input input{
    width: 100%;
    height: 50px;
    padding: 0px 20px;
    background-color: var(--white);
    color: #868E96;
    font-size: 16px;
    font-family: var(--robotoCondensed-regular);
    border: none;
    margin: 0px 0px 10px 0px;
    border-radius: 5px;
}
.comment-accordian-input textarea{
    width: 100%;
    height: 150px;
    padding: 25px 20px;
    outline: none;
    resize: none;
    border: none;
    background-color: var(--white);
    color: #868E96;
    font-size: 16px;
    font-family: var(--robotoCondensed-regular);
    border-radius: 5px;
    margin: 0px 0px 10px 0px;
}
.comment-accordian-btn button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 40px;
    outline: none;
    border: none;
    font-family: var(--oswald-regular);
    font-size: 16px;
    color: var(--white);
    background-color: var(--lightBlue);
    transition: 0.5s all;
}
.comment-accordian-btn button:hover{
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
}
.article-first-wrap-comment-box {
    border-top: 1px solid #fff;
    padding: 20px 0px 20px 0px;
    margin: 20px 0px 20px 0px;
    border-bottom: 1px solid #fff;
}
.article-first-wrap-comment h6{
    font-size: 30px;
    font-family: var(--oswald-bold);
    color: var(--white);
    margin: 0px 0px 10px 0px;
}
.article-first-wrap-comment p{
    font-size: 16px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
}
.videodec-wrapper{
    padding: 100px 0px;
}
.videodec-wrap-videof{
    text-align: center;
}
.videodec-wrap-video-text h6 {
    font-family: var(--robotoCondensed-regular);
    font-size: 16px;
    color: #fff;
    margin: 10px 0px 5px 4px;
}
.videodec-wrap-video-text h5{
    font-family: var(--roboto-regular);
    font-size: 14px;
    color: #fff;
}
.videodec-wrap-video-text P{
    font-family: var(--roboto-light);
    font-size: 12px;
    color: #fff;
}
.videodec-wrap-videof img  {
    width: 100%;
    height: 120px;
    border-radius: 10px;
}
.videodec-wrap-video-text {
    margin: 0px 0px 0px 5px;
}
.videodec-wrap-video-title h6{
    font-family: var(--roboto-bold);
    font-size: 16px;
    color: #fff;
    margin: 0px 0px 10px 0px;
    border-bottom: 1px solid;
    padding: 0px 0px 10px 0px;
}
.videodec-wrap-video1 {
    margin: 0px 0px 15px 0px;
}
.videodec-wrap-video-title p{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
}
.videodec-wrap-video1 video{
    border-radius: 10px;
    overflow: hidden;
}
.videodec-wrap-video-commnt-username h4{
    font-family: var(--roboto-bold);
    font-size: 16px;
    color: #fff;
    margin: 0px 0px 5px 0px;
}
.videodec-wrap-video-commnt-username h3{
    font-family: var(--robotoCondensed-regular);
    font-size: 12px;
    color: #fff;
}
.videodec-wrap-video-commnt-input input{
    width: 100%;
    height: 50px;
    font-size: 13px;
    font-family: var(--robotoCondensed-regular);
    color: #fff;
    padding: 0px 20px 0px 20px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    margin: 0px 0px 20px 0px;
}
.videodec-wrap-video-commnt-input input::placeholder{
    color: #fff;
}
.videodec-wrap-video-commnt-btns{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    margin: 0px 0px 20px 0px;
}
.videodec-wrap-video-commnt-btns button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 40px;
    font-family: var(--oswald-regular);
    font-size: 16px;
    color: var(--white);
    background-color: var(--lightBlue);
    transition: 0.5s all;
    border: none;
}
.videodec-wrap-video-commnt-btns button:hover{
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
}
.videodec-wrap-video-commnt-btns button:first-child{
    background-color: transparent;

}
.videodec-wrap-video-commnt-btns button:first-child:hover{
    border: none;
}
.videodec-wrap-video-commnt-username {
    margin: 0px 0px 10px 0px;
}
.index-first-wrap-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    width: 100%;
    margin: 0px 0px 10px 0px;
    transition: 0.5s all;
    border-radius: 10px;
    overflow: hidden;
}
.index-first-wrap-box:hover {
    background-color: var(--lightBlue);
    transform: scale(1.1);
}
.index-third-wrap-news-text .nav-custom{
    gap: 0px;
}
.index-third-wrap-news-text .nav-custom .nav-link {
    font-size: 13px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 1px solid #F1F1F1;
    padding: 10px 10px 10px 10px;
    transition: 0.5s all;
    border-radius: 0px;
    width: 140px;
}
.nav-custom .nav-link.active, .nav-custom .show>.nav-link{
    background-color: var(--lightBlue);
}
.index-second-wrap-img-1 img{
    border-radius: 10px;
    margin: 0px 0px 10px 0px;
}
.index-second-text1 h3{
    font-family: var(--oswald-bold);
    font-size: 20px;
    color: var(--white);
    margin: 0px 0px 10px 0px;
}
.index-second-text1 p{
    font-family: var(--roboto-light);
    font-size: 13px;
    color: var(--white);
    margin: 0px 0px 10px 0px;
}
.index-second-text1 a{
    display: flex;
    width: 30%;
    height: 25px;
    font-family: var(--roboto-light);
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white);
    justify-content: center;
    align-items: center;
    transition: 0.3s all;
}
.index-second-text1 a:hover{
    background: var(--darkBlue);
    color: var(--black);
}
.dashboard-banner-box {
    padding: 30px 30px;
    background-color: #FFF;
    border-bottom: 3px solid #04a7ea;
    margin: 0px 0px 30px 0px;
    box-shadow: 1px 2px 7px 0px #04a7ea;
    position: relative;
    z-index: 99;
    overflow: hidden;
}
.blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--lightBlue);
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 5s infinite ease;
}
.dashboard-banner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dashboard-banner-wrapper{
    padding: 100px 0px 100px 0px;
}
.dashboard-banner-text h5{
    font-size: 32px;
    font-family: var(--oswald-regular);
    color: var(--black);
    margin: 0px 0px 5px 0px;
}
.dashboard-banner-text h6{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: #999999;
}
.dashboard-banner-text a{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: #04a7ea;
}
.dashboard-banner-flex a{
    font-size: 16px;
    font-family: var(--robotoCondensed-regular);
    color: #04a7ea;
    transition: 0.5s all;
}
.dashboard-banner-flex a:hover{
    color: var(--black);
    text-decoration: underline;
}
.index-first-wrap-tab-text .in-first-wbtn{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--lightBlue);
    color: var(--white);
    font-size: 16px;
    font-family: var(--oswald-medium);
    width: 55%;
    margin: 0px 0px 10px 0px;
    transition: 0.5s all;
}
.index-third-wrap-news-banner .in-third-wnews-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--lightBlue);
    color: var(--white);
    font-size: 16px;
    font-family: var(--oswald-medium);
    width: 30%;
    position: absolute;
    bottom: 0;
    transition: 0.5s all;
    border-radius: 0px 0px 0px 10px;
}
.index-first-wrap-box:hover .index-first-wrap-tab-text h2{
    color: #fff;
}
.index-first-wrap-box:hover .index-first-wrap-tab-text p{
    color: #fff;
}
.index-fifth-wrap-text span{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
}
.index-fifth-wrap-abtn{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: #999999;
}
.index-fifth-wrap-text p{
    font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    margin: 10px 0px 0px 0px;
}
.videodec-wrap-video-commnt span{
    font-family: var(--robotoCondensed-regular);
    font-size: 14px;
    color: #fff;
}
.videodec-wrap-video-commnt-us p{
    font-family: var(--robotoCondensed-regular);
    font-size: 14px;
    color: #b9b2b2;
    margin: 20px 0px 5px 0px;
    text-align: end;
}
.videodec-wrap-video-commnt .videodec-comnt-btn{
    font-family: var(--robotoCondensed-regular);
    font-size: 12px;
    color: #b9b2b2;
}
.videodec-wrap-video-commnt p{
    font-family: var(--robotoCondensed-regular);
    font-size: 14px;
    color: #fff;
    margin: 10px 0px 0px 0px;
}
.videodec-wrap-video-commnt {
    padding: 10px;
    background: #04a7ea42;
    border-radius: 10px;
    margin: 0px 0px 20px 0px;
}
.videodec-wrap-videot-text h6{
    font-size: 20px;
    font-family: var(--oswald-medium);
    color: var(--white);
}
.videodec-wrap-video1 .video-js{
    width: 100%;
}
.index-fifth-wrap-box-icon{
    position: absolute;
    bottom: 66%;
    left: 34%;
    border: 2px solid #ffffff;
    border-radius: 50px;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.index-fifth-wrap-box-icon1{
    position: absolute;
    bottom: 55%;
    left: 34%;
    border: 2px solid #ffffff;
    border-radius: 50px;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.index-fifth-wrap-box-icon1 i{
    color: #ffffff;
    font-size: 40px;
}
.index-fifth-wrap-box-icon1{
    transition: 0.5s all;
}
.index-fifth-wrap-box:hover .index-fifth-wrap-box-icon1 {
    z-index: 99;
    transform: rotatex(190deg);
}
.index-fifth-wrap-box-icon{
    transition: 0.5s all;
}
.index-fifth-wrap-box-icon i{
    color: #ffffff;
    font-size: 40px;
}
.index-fifth-wrap-box:hover .index-fifth-wrap-box-icon {
    z-index: 99;
    transform: rotatex(190deg);
}

.travel-detail-first-wrapper{
    padding: 100px 0px;
}
.travel-detail-first-wrap-text {
    margin: 20px 0px 0px 0px;
}
.text_box_1 {
    background: var(--lightBlue);
    padding: 30px 25px;
}
.text_box_1 h2 {
    font-family: var(--oswald-bold);
    font-size: 30px;
    color: var(--white);
    margin-bottom: 20px;;
}
.text_box_1 .desc {
    font-size: 16px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    margin: 10px 0px 0px 0px;
}
.see_more_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 150px;
    height: 50px;
    font-family: var(--oswald-regular);
    font-size: 17px;
    color: var(--lightBlue);
    background-color: var(--white);
    transition: 0.3s all;
    margin-top: 20px;
}
.see_more_btn:hover {
    color: var(--lightBlue);
}
@keyframes blob-bounce {
    0% {
      transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
  
    25% {
      transform: translate(-100%, -100%) translate3d(500%, 0, 0);
    }
  
    50% {
      transform: translate(-100%, -100%) translate3d(450%, 200%, 0);
    }
  
    75% {
      transform: translate(-100%, -100%) translate3d(0, 200%, 0);
    }
  
    100% {
      transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
  }


  .article-first-wrap-box-text h1 {
    font-size: 22px;
     font-family: var(--oswald-bold);
    color: var(--white);
    margin: 0px 0px 10px 0px;
    }
  .article-first-wrap-box-text h3 {
    font-size: 22px;
     font-family: var(--oswald-bold);
    color: var(--white);
    margin: 0px 0px 10px 0px;
    }
    .index-second-live-box {
        position: relative;
    }
    .index-second-live-box-icon a i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--white);
        font-size: 30px;
        outline: 1px solid var(--white);
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
    }
    .index-second-live-box-img{
        width: 100%;
        height: 300px;
        background-position: center !important;
        background-size: cover !important;
    }
    .index-second-live-box-text h4 {
        font-size: 24px;
        font-family: var(--roboto-bold);
        color: var(--white);
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .index-second-wrap-coming-text h6 {
        font-size: 40px;
        font-family: var(--oswald-bold);
        color: var(--white);
        text-align: center;
        margin: 50px 0px 0px 0px;
    }
    .index-fifth-wrap-heading p {
        font-size: 16px;
        font-family: var(--roboto-regular);
        color: var(--white);
    }
.pro-dec-first-wrapper{
    padding: 100px 0px;
}
.register-second-box{
    display: none;
}
.register-second-box-active{
    display: block;
}
.checkout-form .title {
    font-size: 30px;
    font-family: var(--roboto-light);
    color: var(--white);
    margin: 0px 0px 10px 0px;
}
.checkout-form .form-top-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.codLabel {
    font-size: 16px;
    font-weight: 600;
}
.form-check-input:checked {
    background-color: var(--lightBlue);
    border-color: var(--lightBlue);
}
.contact-wrapper-input1 input{
    width: 100%;
    height: 50px;
    border: none;
    border: 1px solid var(--white);
    font-size: 16px;
    font-family: var(--roboto-light);
    color: var(--white);
    padding: 0px 20px;
    transition: 0.5s all;
    border-radius: 5px;
	background: transparent;
}
.contact-wrapper-input1 select{
    width: 100%;
    height: 50px;
    border: none;
    border: 1px solid var(--white);
    font-size: 16px;
    font-family: var(--roboto-light);
    color: var(--white);
    padding: 0px 20px;
    transition: 0.5s all;
    border-radius: 5px;
	background: transparent;
}
.contact-wrapper-input1 select option{
    background-color: var(--lightBlue);
    color: var(--white);
}
.contact-wrapper-input1{
	margin: 0px 0px 10px 0px;
}
.contact-wrapper-input1 input:focus-visible{
    border: 1px solid var(--lightBlue);
}
.common-btn-2{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	position: relative;
	background-color: var(--darkBlue);
	font-size: 16px;
	font-family: var(--roboto-reglar);
	color: var(--white);
	transition: .5s all;
	z-index: 2;
	overflow: hidden;
	border: none;
}
.common-btn-2::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--white);
	z-index: -1;
	transform-origin: left;
	transform: scaleX(0);
	transition: .5s all;
}
.common-btn-2:hover{
	background-color: transparent;
	color: var(--darkBlue);
}
.common-btn-2:hover::before{
	transform: scaleX(1);
}
.order-summary-card {
    padding: 0 15px;
    border-radius: 15px;
    max-width: 100%;
    background: var(--lightBlue);
    margin-left: 35px;
}
.order-summary-card .summary-group {
    border-bottom: 1px solid var(--white);
    padding: 15px 0;
}
.order-summary-card .title {
	font-family: var(--oswald-semiBold);
    text-align: center;
    font-size: 24px;
    color: var(--white);
}
.order-summary-card .summary-group ul li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.order-summary-card span {
    text-align: center;
    font-size: 16px;
    color: var(--white);
	font-family: var(--roboto-light);
}
.order-summary-card .summary-group:last-of-type {
    border-bottom: none;
}
select#variants_dropdown option {
    background-color: var(--lightBlue);
    color: var(--white);
}
div#alert {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background-color: var(--lightBlue);
    border: none;
    border-radius: 0;
}
div#alert p{
    font-size: 20px;
    color: var(--white);
}
div#alert .btn-close{
    filter: brightness(0) invert(1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}
.privacy-first-warpper{
    padding: 100px 0px;
}
.privacy-first-wraptext h6{
    font-size: 40px;
    font-family: var(--oswald-regular);
    color: var(--white);
    margin: 0px 0px 20px 0px;
}
.privacy-first-wraptext p {
    font-size: 16px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    margin: 0px 0px 10px 0px;
}
.privacy-first-wraptext h5 {
    font-size: 40px;
    font-family: var(--oswald-regular);
    color: var(--darkBlue);
    margin: 0px 0px 20px 0px;
    border-bottom: 2px solid var(--darkBlue);
    padding: 0px 0px 5px 0px;
}
.privacy-first-wraptext h2{
    font-size: 25px;
    font-family: var(--oswald-regular);
    color: var(--darkBlue);
    margin: 0px 0px 10px 0px;
}
.privacy-first-wraptext ul{
    padding: 0px 0px 0px 40px;
}
.privacy-first-wraptext ul li {
    font-size: 16px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    margin: 0px 0px 10px 0px;
    list-style: disc;
}
.privacy-first-wraptext ul li span {
    font-family: var(--oswald-regular);
    color: var(--darkBlue);
}
.loginf-wrapper{
    padding: 100px 0px;
}
.loginf-wrapper h6{
    font-size: 32px;
    font-family: var(--oswald-regular);
    color: var(--white);
}




.avatar-upload-1 {
    position: relative;
    width: 40%;
    margin: 0 auto;
}
.avatar-upload-1 .avatar-edit-1 {
    position: absolute;
    left: 13%;
    z-index: 1;
    bottom: -10%;
}
.avatar-upload-1 .avatar-edit-1 input {
    display: none;
}
.avatar-upload-1 .avatar-edit-1 input + label::after {
    content: "\f030";
    font-family: 'FontAwesome';
    color: var(--white);
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    font-size: 15px;
    transition: 0.5s all;
}
.avatar-upload-1 .avatar-edit-1 input + label {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    border-radius: 100%;
    background: linear-gradient(180deg, #04a7ea 0%, #212639 100%);
    background-color: var(--main-color);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.common-first-wrap-box-profile-img {
    margin: 0px 0px 30px 0px;
}
.common-first-wrap-box-profile-img h5{
    font-size: 20px;
    font-family: var(--oswald-regular);
    color: var(--white);
    margin: 10px 0px 0px 0px;
}
.avatar-upload-1 .avatar-edit-1 input + label:hover::after {
    color: var(--black);
}
.avatar-upload-1 .avatar-edit-1 input + label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}
.avatar-upload-1 .avatar-preview-1 > div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.avatar-upload-1 .avatar-preview-1 {
    width: 110px;
    height: 110px;
    position: relative;
    border-radius: 100%;
}
.dashboard-banner-text img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
}
.dashboard-banner-textwrap-f {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header {
    border: 0px;
    background-color: #04a7ea;
}
.modal-dialog {
    z-index: 222222222222;
}
.alert strong {
    font-weight: bolder;
    font-size: 20px;
}
.alert a {
    font-weight: bolder;
    font-size: 20px;
}
.pass-change-wrap-input {
    position: relative;
}
.register-first-box1 {
    width: 50%;
    margin: 0 auto;
}
.cus_w1 {
    width: 100% !important;
}
.cus_w input{
    width: 100% !important;
}

.tag-main-wrapper {
    padding: 60px 0px 100px 0px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #292F47;
    min-height: 110vh;
}
.tag-box-main-wrapf{
	display: flex;
    height: 100vh;
    justify-content: space-between;
    position: sticky;
    top: 100px;
}
.tag-box-wrap-1 {
    width: 300px;
    padding: 0px 40px 0px 30px;
}
.tag-box-wrap-2 {
    width: 300px;
    padding: 0px 40px;
}
.tag-box-2 {
    width: calc( 100% - 600px);
    margin: 0 auto;
    position: relative;
    margin-top: -100vh;
}
.tag-box-2-img {
    margin: 0px 0px 30px 0px;
}
.tag-box-wrap-1-text h6{
	font-family: var(--oswald-regular);
	color: var(--white);
	font-size: 25px;
	margin: 0px 0px 10px 0px;
}
.tag-box-wrap-1-text h5{
	font-family: var(--oswald-regular);
	color: var(--white);
	font-size: 25px;
	margin: 0px 0px 10px 0px;
}
.tag-box-wrap-1-text1 h6{
	font-family: var(--oswald-regular);
	font-size: 25px;
	color: var(--white);
	margin: 0px 0px 10px 0px;
}
.tag-box-wrap-1-text button{
	font-size: 14px;
    font-family: var(--robotoCondensed-regular);
    color: var(--white);
    background-color: transparent;
    border: 1px solid #F1F1F1;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
    padding: 0px 10px;
}
.tag-box-wrap-1-text ul li a:hover{
	text-decoration: underline;
}
.tag-box-wrap-1-text1 ul li {
    border-bottom: 1px solid #ffffff5c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
    margin: 0px 0px 15px 0px;
    color: var(--white);
}
.tag-box-wrap-1-text1 ul li:hover{
	border-bottom: 1px solid #fcfcfc;
}
.tag-box-wrap-1-text ul li {
	border-bottom: 1px solid #ffffff5c;
	padding: 0px 0px 10px 0px;
	margin: 0px 0px 10px 0px;
}
.tag-box-wrap-1-text ul li:last-child{
    border-bottom: 0px;
}
.tag-box-wrap-1-text ul li a{
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: var(--white);
	font-size: 16px;
	color: var(--white);
}
.tag-box-wrap-1-text ul li a:hover{
	text-decoration: none;
}
.tag-box-wrap-1-text ul li:hover{
	border-color: #fcfcfc;
}
.tag-box-wrap-1-text1 ul li a {
    font-family: var(--white);
    font-size: 16px;
    color: var(--white);
}
.tag-box-wrap-1-text p{
	font-family: var(--oswald-medium);
	font-size: 16px;
	color: var(--white);
}
.tag-box-2-com-f {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: #fff;
}
.tag-box-2-com-f a i {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--black);
}
.tag-box-2-com-img {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    overflow: hidden;
}
.tag-box-2-com-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tag_box_banner_img_upload1 {
    position: absolute;
    bottom: 0px;
    right: 10px;
    z-index: 1;
}
.tag_box_banner_img_upload1 a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    border-radius: 100%;
    background-color: var(--main-color);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: none;
}
.tag_box_banner_img_upload1 a:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}
.tag_box_banner_img_upload1 a:hover::after{
    color: var(--black);
}
.tag_box_banner_img_upload1 a::after {
    content: "\f1f8";
    font-family: 'FontAwesome';
    color: var(--white);
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    font-size: 15px;
    transition: 0.5s all;
}
.tag_box_banner_img_upload {
    position: absolute;
    bottom: 0px;
    right: 10px;
    z-index: 1;
}
.tag_box_banner_img_upload button {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    border-radius: 100%;
    background-color: var(--main-color);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: none;
}
.tag_box_banner_img_upload button:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}
.tag_box_banner_img_upload button:hover::after{
    color: var(--black);
}
.tag_box_banner_img_upload button::after {
    content: "\f030";
    font-family: 'FontAwesome';
    color: var(--white);
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    font-size: 15px;
    transition: 0.5s all;
}
.tag_box_banner_img {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.tag_box_banner_wrap {
    margin: 0px 0px 10px 0px;
    background-color: #04a7ea;
}
.tag_box_banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tag_box_2_btn_wrap{
    background-color: #04a7ea;
    padding: 20px 10px;
    margin: 0px 0px 10px 0px;
}
.tag_box_2_btn_wrapf {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tag_box_2_btn_wrapf button{
	font-size: 14px;
	font-family: var(--robotoCondensed-regular);
	color: var(--white);
	background-color: transparent;
	border: 1px solid #F1F1F1;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s all;
	padding: 0px 10px;
}
.tag_box_2_btn_wrapf a{
	font-size: 14px;
	font-family: var(--robotoCondensed-regular);
	color: var(--white);
	background-color: transparent;
	border: 1px solid #F1F1F1;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s all;
	padding: 0px 10px;
}
.tag_box_2_btn_wrapf button:hover{
	background-color: var(--lightBlue);
	color: var(--white);
}
.tag_box_2_btn_wrapf1 {
    display: flex;
    align-items: center;
    gap: 20px;
}
.new_btn{
	font-size: 14px;
	font-family: var(--robotoCondensed-regular);
	color: var(--white);
	background-color: transparent;
	border: 1px solid #F1F1F1;
	width: 100px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s all;
	padding: 0px 10px;
}
.new_btn:hover{
	background-color: var(--lightBlue);
	color: var(--white);
}
.new_modals .modal-content {
    background-color: #04a7ea;
}
.new_modals .modal-title{
	font-family: var(--oswald-regular);
	color: var(--white);
	font-size: 25px;
}
.modal_inputs_wrap {
    margin: 0px 0px 10px 0px;
}
.modal_inputs_wrap input{
	width: 100%;
	height: 50px;
	padding: 10px 20px;
	background-color: var(--white);
	color: #868E96;
	font-size: 16px;
	font-family: var(--robotoCondensed-regular);
	border: none;
	border-radius: 0px 10px 0px 10px;
}
.modal_inputs_wrap select{
	width: 100%;
	height: 50px;
	padding: 10px 20px;
	background-color: var(--white);
	color: #868E96;
	font-size: 16px;
	font-family: var(--robotoCondensed-regular);
	border: none;
	border-radius: 0px 10px 0px 10px;
}
.modal_inputs_wrap textarea{
	width: 100%;
	height: 150px;
	padding: 10px 20px;
	background-color: var(--white);
	color: #868E96;
	font-size: 16px;
	font-family: var(--robotoCondensed-regular);
	border: none;
	border-radius: 0px 10px 0px 10px;
	resize: none;
}
.modal_inputs_wrap_btn .new_btn{
	background-color: var(--white);
	color: var(--black);
}
.modal_inputs_wrap_btn .new_btn:hover{
	background-color: transparent;
	color: var(--white);
}
.tag-box-2-img_wrap {
	width: 100%;
	height: 350px;
}
.tag-box-2-img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tag-box-2-img_wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.remove-user {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tag_box_2_stream_box_vid {
    height: 400px;
}
.tag_box_2_stream_box_vid video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tag_box_2_stream_box_comments_sec{
    width: 100%;
    background-color: #0f0f0f;
}
.tag_box_2_stream_box_comments_sec_comment{
    height: 400px;
    overflow-y: scroll;
    padding: 20px;
}
.tag_box_2_stream_box_comments_sec_comment::-webkit-scrollbar {
    width: 7px;
}
.tag_box_2_stream_box_comments_sec_comment::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.tag_box_2_stream_box_comments_sec_comment::-webkit-scrollbar-thumb {
    background-color: var(--black);
    transition: 0.5s all;
}
.tag_box_2_stream_box_comments_sec_comment ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0px 0px 20px 0px;
}
.tag_box_2_stream_box_comments_sec_comment_img{
    width: 45px;
    height: 45px;
    border-radius: 100%;
    overflow: hidden;
}
.tag_box_2_stream_box_comments_sec_comment ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tag_box_2_stream_box_comments_sec_comment_text{
    width: calc(100% - 50px);
}
.tag_box_2_stream_box_comments_sec_comment h6 {
    margin: 0px 10px 0px 0px;
    display: inline;
    font-size: 19px;
    font-family: var(--oswald-medium);
    color: rgba(255,255,255,0.7);
}
.sream_comment_box_sender h6 {
    color: var(--lightBlue);
}
.tag_box_2_stream_box_comments_sec_comment ul li span{
    font-size: 17px;
    font-family: var(--roboto-medium);
    color: var(--white);
}
.sender_comment{
    display: flex;
    justify-content: flex-end;
}
.tag_box_2_stream_box_comments_sec_form{
    position: relative;
}
.tag_box_2_stream_box_comments_sec_form input{
    width: 100%;
    height: 70px;
    padding: 0px 20px;
    border: 0;
    background-color: var(--lightBlue);
    font-size: 18px;
    font-family: var(--roboto-reglar);
    color: var(--white);
}
.tag_box_2_stream_box_comments_sec_form input::placeholder{
    color: #ffffff70;
}
.tag_box_2_stream_box_comments_sec_form button{
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 70px;
    border: 0;
    background-color: transparent;
    font-size: 20px;
    color: var(--white);
    cursor: pointer;
}
.scroll_box{
    max-height: 400px;
    overflow-y: scroll;
}
.scroll_box::-webkit-scrollbar {
    width: 4px;
}
.scroll_box::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.scroll_box::-webkit-scrollbar-thumb {
    background-color: var(--black);
    transition: 0.5s all;
}
.register-first-wrap-input.cus_w {
    width: 100%;
}