@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Outfit:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/*  Basic Css  */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: var(--black-color);
}
a:focus{
  text-decoration: none;
}
p, h1, h2, h3, h4, h5, h6, .p, .h1, .h2, .h3, .h4, .h5, .h6{
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  top: 60px;
}
body{
  font-family: "Outfit", sans-serif;
  background: var(--white-color);
}
::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}
::-moz-selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

:root {
  --primary-color: #881377;
  --secondary-color: #EE7F1A;
  --third-color: #FE9738;
  --white-color: #FFFFFF;
  --title-text: #171717;
  --title-text1: #222222;
  --subtitle-text: #453F4E;
  --border-color: #2727271A;
  --border-color1: #BEBEBE;
  --black-color: #000000;
  --rating-color: #FF9C07;
}

/* scrollbar css settings*/
::-webkit-scrollbar {
  width: 6px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
  border-radius: 8px;
}
::-moz-scrollbar {
  width: 6px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
}
::-moz-scrollbar-track {
  border-radius: 8px;
}
::-moz-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}
::-moz-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* back to top progress  */
.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px #10abc44f;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  font-family: 'boxicons', sans-serif;
  content: "\eedc";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--white-color);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background: var(--primary-color);
  border-radius: 6px;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'boxicons', sans-serif;
	content: "\eedc";
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	background: var(--title-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: var(--primary-color);
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* font family use for html  */
.fw-normal{
  font-family: "Bubblegum Sans", sans-serif;
}
.fw-3{
  font-weight: 300;
}
.fw-4{
  font-weight: 400;
}
.fw-5{
  font-weight: 500;
}
.fw-6{
  font-weight: 600;
}
.fw-7{
  font-weight: 700;
}
.fw-8{
  font-weight: 800;
}
.fw-9{
  font-weight: 900;
}

/* Color And Background-Color Use for Html  */
.primary-color-q{
  color: var(--primary-color);
}
.primary-bgcolor-q{
  background: var(--primary-color);
}
.secondary-bgcolor-q{
  background: var(--secondary-color);
}
.secondary-color-q{
  color: var(--secondary-color);
}
.third-bgcolor-q{
  background: var(--third-color);
}
.third-color-q{
  color: var(--third-color);
}
.white-color-q{
  color: var(--white-color);
}
.white-bgcolor-q{
  background: var(--white-color);
}
.black-color-q{
  color: var(--black-color);
}
.black-bgcolor-q{
  background: var(--black-color);
}
.title-text-q{
  color: var(--title-text);
}
.title-bgtext-q{
  background: var(--title-text);
}
.title-text1-q{
  color: var(--title-text1);
}
.title-bgtext1-q{
  background: var(--title-text1);
}
.subtitle-text-q{
  color: var(--subtitle-text);
}
.subtitle-bgtext-q{
  background: var(--subtitle-text);
}
.rating-text-q{
  color: var(--rating-color);
}
.border-color-q{
  color: var(--border-color);
}
.border-color-q1{
  color: var(--border-color1);
}

/* font size use for html  */
.fts-78{
  font-size: 78px;
}
.fts-70{
  font-size: 70px;
}
.fts-62{
  font-size: 62px;
}
.fts-54{
  font-size: 54px;
}
.fts-50{
  font-size: 50px;
}
.fts-46{
  font-size: 46px;
}
.fts-42{
  font-size: 42px;
}
.fts-38{
  font-size: 38px;
}
.fts-36{
  font-size: 36px;
}
.fts-32{
  font-size: 32px;
}
.fts-30{
  font-size: 30px;
}
.fts-28{
  font-size: 28px;
}
.fts-26{
  font-size: 26px;
}
.fts-24{
  font-size: 24px;
}
.fts-22{
  font-size: 22px;
}
.fts-20{
  font-size: 20px;
}
.fts-18{
  font-size: 18px;
}
.fts-16{
  font-size: 16px;
}
.fts-15{
  font-size: 15px;
}
.fts-14{
  font-size: 14px;
  line-height: 22px;
}
.fts-13{
  font-size: 13px;
}
.fts-12{
  font-size: 12px;
}
.fts-10{
  font-size: 10px;
}

.letter-spacing-1{
  letter-spacing: 1px;
}
.letter-spacing-2{
  letter-spacing: 2px;
}
.letter-spacing-3{
  letter-spacing: 3px;
}
.break-word{
  word-wrap: break-word;
}
.cursor-pointer{
  cursor: pointer;
}

@media only screen and (max-device-width: 1400px){
  .fts-78 {
    font-size: 72px;
  }
  .fts-70 {
    font-size: 58px;
  }
  .fts-62 {
    font-size: 52px;
  }
  .fts-54 {
    font-size: 44px;
  }
  .fts-46 {
    font-size: 40px;
  }
  .fts-50 {
    font-size: 44px;
  }
  .fts-42 {
    font-size: 40px;
  }
  .fts-38 {
    font-size: 36px;
  }
  .fts-36 {
    font-size: 34px;
  }
  .fts-32 {
    font-size: 30px;
  }
  .fts-30 {
    font-size: 28px;
  }
  .fts-28 {
    font-size: 26px;
  }
  .fts-26 {
    font-size: 24px;
  }
  .fts-22 {
    font-size: 20px;
  }
  .fts-20 {
    font-size: 18px;
  }
}

@media only screen and (max-device-width: 768px){
  .fts-78 {
    font-size: 34px;
  }
  .fts-70 {
    font-size: 32px;
  }
  .fts-62 {
    font-size: 32px;
  }
  .fts-54 {
    font-size: 29px;
  }
  .fts-46 {
    font-size: 26px;
  }
  .fts-50 {
    font-size: 26px;
  }
  .fts-42 {
    font-size: 28px;
  }
  .fts-38 {
    font-size: 26px;
  }
  .fts-36 {
    font-size: 26px;
  }
  .fts-32 {
    font-size: 22px;
  }
  .fts-30 {
    font-size: 26px;
  }
  .fts-20 {
    font-size: 16px;
  }
  .fts-28 {
    font-size: 18px;
  }
  .fts-26 {
    font-size: 20px;
  }
  .fts-22 {
    font-size: 18px;
  }
  .fts-18 {
    font-size: 16px;
  }
  .fts-16 {
    font-size: 15px;
  }
  .fts-15 {
    font-size: 14px;
  }
  .fts-14 {
    font-size: 13px;
    line-height: 18px;
  }
  .fts-13 {
    font-size: 12px;
  }
}