@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;800;900&display=swap");
:root {
  --primary: #0d6efd;  
  --secondary: #F08507;
  --darkcolor: #240A4D;
  --bodytext: #362C53;
  --litetext: #97BBF1;
  --darkBlue: #041631;
  --black: #000000;
  --white: #ffffff;
  --font: 'rota', sans-serif;  
  --liteBg: #F4E8FF;
  scroll-behavior: auto;
}

@font-face {
  font-family: 'rota';
  src: url('fonts/rota-light.woff2') format('woff2'),
       url('fonts/rota-light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'rota';
  src: url('fonts/rota-regular.woff2') format('woff2'),
       url('fonts/rota-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'rota';
  src: url('fonts/rota-semibold.woff2') format('woff2'),
       url('fonts/rota-semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'rota';
  src: url('fonts/rota-bold.woff2') format('woff2'),
       url('fonts/rota-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;    
}
body {    
  margin: 0;
  font-size: 18px;    
  font-family: var(--font);
  color: var(--bodytext);
  line-height: 135%;    
}
a {
  text-decoration: none !important;
}
img {
  max-width: 100%;
  vertical-align: middle;
}
p {
  margin-bottom: 20px;
  line-height: 135%;
}
h1, .h1 {
  margin: 0;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;  
}
h2, .h2 {    
  font-size: 60px;
  font-weight: 700;  
}
h3, .h3 {    
  font-size: 45px;
  font-weight: 700;  
}
h4, .h4 {    
  font-size: 35px;
  font-weight: 700;
}
h5, .h5 {    
  font-size: 18px;
}
h6, .h6 {
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--darkcolor);  
  line-height: 1.1;
}

.text-white {
  color: var(--white) !important;
}
.text-black {
  color: var(--black) !important;
}
.text-dark {
  color: var(--darkcolor) !important;
}
.text-lite {
  color: var(--litetext) !important;
}

.section {
  padding: 100px 0;
}
.relative {
  position: relative;
}
.text-center {
  text-align: center !important;
}
.mb0 {
  margin-bottom: 0 !important;
}

/**||Prefix Class Name||**/
.justify-content-right,.justify-content-center,.justify-content-left,.align-center,.align-bottom,
.align-left,
.align-right,
.align-top,
.align-between,
.justify-space-between {
    display: flex !important;
} 
.align-right, .justify-content-right {
    justify-content: flex-end !important;
} 
.align-justify-center, .justify-content-center {
    justify-content: center !important;
} 
.align-left, .justify-content-left {
    justify-content: flex-start !important;
} 
.align-between, .justify-space-between {
    justify-content: space-between !important;
} 
.align-center {
    align-items: center !important;
} 
.align-bottom {
    align-items: flex-end !important;
} 
.align-top {
    align-items: flex-start !important;
}
.direction-column {
    flex-direction: column;
}
/**||Prefix Class Name End||**/

/* Header */
.header {  
  background: linear-gradient(108.04deg, #0B0F5F 0.32%, #5C067C 98.16%);
  padding: 10px 0;
}
.header .logo {
  max-height: 75px;
}

/* Banner */
.banner {
  background: url(../images/banner-image.jpg) no-repeat center center #4b0f81; 
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
}
.banner-bg2 {
  background: url(../images/banner-image-2.jpg) no-repeat center center #4b0f81; 
  background-size: cover;
}

.bannerBox .logo {
  margin-bottom: 60px;
}
.bannerBox h1 {
  max-width: inherit !important;
  margin-bottom: 25px;
  font-size: 80px;
  color: var(--white);
  line-height: 1;
}
.bannerBox h1 span {
  font-weight: 400;
  display: block;
}
.bannerBox p {
  font-size: 25px;
  font-weight: 300;
  color: var(--white);
  margin: 0;
}

.mainTitle {
  max-width: 900px;
  margin: auto;
  margin-bottom: 60px;
}
.mainTitle h2 {
  margin: 0;
}
.mainTitle h2 ~ p {
  margin: auto;
  margin-top: 25px;
  font-size: 20px;
  max-width: 750px;  
}


/* Know Section */
.knowSection {
  
}
.know-Block {
  max-width: 850px;
  margin: auto;
  margin-bottom: 50px;  
}
.act-friend-box {
  max-width: 525px;
  width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
}
.actOverlayBox {  
  background: linear-gradient(180deg, #A519EA 0%, #FF8B03 100%);
  width: 525px;
  height: 525px;
  border-radius: 50%;
  position: absolute;
  top: 60%;
  right: 0;
  left: 0;  
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 75px;
  margin: auto;
}
.actOverlayBox h4 {
  font-size: 45px;
  color: var(--white);
}

.gift-img {
  margin: 15px auto 40px;
  display: table;
}

.appViewList {
  list-style: none;
  margin: auto;
  padding: 0;
  max-width: 300px;
  display: flex;
  flex-wrap: wrap;  
}
.appViewList li {
  width: 50%; 
}
.appViewList li:nth-of-type(n) {
   border-right: 1px dashed rgba(132, 56, 255, 0.45);
   padding-bottom: 25px;
}
.appViewList li:nth-of-type(2n) {
  border-right: 1px dashed transparent;
  padding-bottom: 25px;
  padding-left: 30px;
}
.appViewList li:nth-of-type(3n) {
  border-top: 1px dashed rgba(132, 56, 255, 0.45);
  border-right: 1px dashed rgba(132, 56, 255, 0.45);
  padding-top: 25px;
  padding-bottom: 0;
}
.appViewList li:nth-of-type(4n) {
  border-top: 1px dashed rgba(132, 56, 255, 0.45);
  padding-top: 25px;
  padding-left: 30px;
  padding-bottom: 0;
}
.appViewList h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  /*background: linear-gradient(180deg, #A519EA 0%, #FF8B03 100%);*/
  background-image: linear-gradient(180deg, #A519EA 0%, #FF8B03 100%);
  color: transparent;
  background-clip: text;  
}
.appViewList p {
  font-size: 18px;
  margin: 0;
}

/* Find Section */
.findSection {
  background: var(--liteBg);
}
.findListing {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.cardCatBox {
  display: inline-flex;
  align-items: center;
  padding: 5px 20px 5px 15px;
  border-radius: 100px;
  background: var(--white);
  gap: 10px;
  height: 50px;
}
.cardCatBox img {  
  height: 40px;
  display: block;
}
.cardCatBox h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #242424;
}

/* Host Join Section */
.hostJoinLf {
  max-width: 700px;
}
.hostJoinSection h2 {
  font-size: 50px;
  margin-bottom: 20px;
}
.hostJoinSection h4 {
  margin-bottom: 15px;
} 

/* Meet Bg */
.meetBg {
  /*min-height: 750px;*/
  background: url("../images/meet-bg.jpg") no-repeat 0px 0px;
  background-size: cover;
  margin-top: 200px;
}
.btn-light-black {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),linear-gradient(360deg, rgba(61, 9, 95, 0) 0%, rgba(60, 10, 94, 0.9) 100%);
  font-size: 50px;
  border-radius: 15px;
  border: 0;
  padding: 18px 60px;
  line-height: 1;
  display: table;
  margin: 0 auto 75px;
}
.meetCardBg {
  position: relative;
  padding: 150px 0 70px;
  z-index: 1;
}
.meetCardBg::after {
  content: "";
  background: linear-gradient(180deg, rgba(61, 9, 95, 0) 0%, rgba(60, 10, 94, 0.9) 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.meetImageGroup {
  text-align: center;
}
.meetImageList {
  display: inline-flex;  
  gap: 30px;  
  margin: auto;
  margin-top: -60px;
}
.meetImageList img {
  border: 2px solid var(--black);
  border-radius: 20px;
  max-height: 265px;
}
.meetImageList img:nth-child(odd) {
  margin-top: -80px;
  height: auto;  
}

.meetSlide .cardCatBox {
  height: 40px;
  gap: 8px;
}
.meetSlide .cardCatBox img {
   height: auto;
   max-width: 20px;
   max-height: 19px;
}
.meetSlide .cardCatBox h5 {
   font-size: 14px;   
}

/* Footer */
.border-top {
  border-top: 1px solid #eee;
}
.footerBg {
  padding: 80px 0 50px;
}
.footerBg .mainTitle  {
  max-width: 1200px;
}
.footerBg .mainTitle p {
  max-width: 885px;
  margin: auto;
}
.footerLogo {
  position: relative;  
}
.footerLogo::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 1px);
  height: 1px;
  background-color: #ddd;
  display: block;
  z-index: -1;
}
.footerLogoIcon {
  background: var(--white);
  width: 115px;
  height: 115px;
  border: 1px solid #ddd;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footerCopyright {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px 20px;
}
.footerlinks {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footerlinks a {
  color: inherit;
  text-decoration: none;
}
.footerlinks a.active, .footerlinks a:hover {
  color: var(--primary);
}
.dot {
  width: 6px;
  height: 6px;
  background: var(--black);
  border-radius: 50%;
}

/* Page */
.cms {  
  padding: 60px 0;
}
.cms a {
  color: var(--primary);
}
.cms a:hover {
  color: var(--secondary);
}
.cms p {
  margin: 0;
}
.cms p ~ p {
  margin-top: 10px;
}
.cms h1, .cms h2, .cms h3, .cms h4, .cms h5, .cms h6 {
  margin-top: 25px;
  margin-bottom: 10px;  
}
.cms h1 {
  font-size: 35px;
}
.cms h2 {
  font-size: 25px;
}
.cms h3 {
  font-size: 20px;
}
.cms h4 {
  font-size: 18px;
}
/* .cms h1 ~ p, .cms h2 ~ p, .cms h3 ~ p  {
  margin-top: 15px;
} */ 
.cms p ~ ul {
  margin-top: 5px;
}
.cms ul {
  margin: 0 0 20px 0;  
}
.cms ul li {
  margin: 0;
  padding: 5px 0;
}
.cms ul li p {
  margin: 0;
}