:root{
	--primary-color			: #FFBC01;
	--secondery-color		: #F8F8F8;
	--text-color			: #FFFFFF;
	--accent-color			: #FFB401;
	--white-color			: #FFFFFF;
	--divider-color			: #EAF0EC;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Poppins", sans-serif;
}
* {
	box-sizing: border-box;
  }
  body{
    top: 0;
    overflow-x: hidden;
    margin: 0 auto;
	  background-color: #000;
    position: relative;
    max-width: 100%;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #767676;
}
.container{
    width: 100%;
    max-width: 1680px;
}
.container-fluid {
    width: 100%;
    padding: 0 120px;
}
a, a:hover, a:focus {
	text-decoration:none;
    outline:none;
    color: #000;
    transition: color 0.3s ease;
}
b, strong {
    font-weight: 700;
}

img {
	max-width:100%;
	height: auto;
}

ol, ul{
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
    margin: 0;
    padding: 0;
}
section {
  padding: 150px 0 160px;
}
h1{
    font-size: 80px;
    line-height: 88px;
    font-weight: 600;
    color:var(--text-color);
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 0;
}
h2{
    font-weight: 600;
    font-size: 64px;
    line-height:64px;
    color:#fff;
    margin-bottom: 24px;
    letter-spacing: 0;
}
h3{
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    color:var(--text-color);
    margin-bottom: 24px;
    letter-spacing: 0;
}
h4{
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
}
h5{
    font-size:19px;
    line-height: 26px;
    font-weight: 700;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
}
h6{
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
}
p{
    font-size: 18px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 32px;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

/* btns */
.common-btn,
.appointment-btn {
  text-transform: capitalize;
  position: relative;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  width: 180px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 24px;
  border: none;
  border-radius: 64px;
  overflow: hidden;
  transition: all 0.3s linear;
  color: #000000;
  background-color:var(--primary-color);
}
.common-btn:hover,
.common-btn:focus,
.appointment-btn:hover,
.appointment-btn:focus{
	color: #fff;
	transition: all 0.3s linear;
	background-color: var(--accent-color);
}
.image-anime {
	position: relative;
	overflow: hidden;
}
.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}
.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

/* btns */

/* header */
.wrapper {
  position: relative;
  overflow:hidden;
}
.main-header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(0, 0, 0, 0.62);
  border-bottom: 1px solid rgba(239, 240, 247, 0.33);
  backdrop-filter: blur(50px);
}
.main-header .common-btn {
  font-size: 16px;
  height: 50px;
}
.outer-menu {
    height: 134px;
    max-height: 134px;
    padding:32px 0;
}
.outer-menu ul li{
    margin:0 8px 0 0;
    position: relative;
}
.outer-menu ul li a{
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    position: relative;
    color:#fff;
    padding:10px;
}
.navbar .dropdown::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
.outer-menu ul li a:hover, .outer-menu ul li a.active{
    color: var(--accent-color)
}
.mobile-menu {
    display: none;
}
.outer-menu img.logo {
  max-height: 70px;
  width: auto;
  height: 70px;
  display: none;
}
.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}
.outer-menu ul li .submenu  {
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateY(10px);
  width: auto;
  min-width: 235px;
  box-shadow: 0 2px 6px 0 rgba(40,40,40,.1);
  padding: 25px 0 23px;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  margin: 0;
  border: none;
}
.outer-menu ul li.dropdown:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.outer-menu ul li .submenu li {
  padding: 0 40px;
  margin-right: 0;
}
.outer-menu ul li .submenu li a {
  font-size: 14px;
  color:var(--primary-color);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 36px !important;
  white-space: nowrap;
  position: relative;
} 
.outer-menu ul li .submenu li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 2px;
  opacity: 0;
  background-color: #5f3984;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.outer-menu ul li .submenu li a::before {
  display: none;
}  
.is-sticky {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  border-bottom: 0 !important;
  height: 80px !important;
  max-height: 80px !important;
  background-color:#000!important;
   -webkit-animation: translateHeader 0.8s;
  animation: translateHeader 0.8s;
   -webkit-box-shadow: 0 3px 4px rgba(0,0,0,.07);
  box-shadow: 0 3px 4px rgba(0,0,0,.07);

}
.contact-now-box .common-btn {
  margin-left: 14px;
}
.contact-now-box {
  align-items: center;
}
.is-sticky .outer-menu {
  height: 80px;
  padding: 12px 32px;
}
.navbar-brand  {
  /* max-width: 230px; */
  padding: 0;
}
.navbar-brand img {
  height: 70px;
  width: auto;
}
.menu-logo {
  display: none;
}
@keyframes translateHeader {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}
@keyframes headerAnimation {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}

  @media (min-width: 992px) {
    .close-mobile-menu {
      display: none;
    }
    }
/* header */

/* Hero */

.hero-section {
  position: relative;
  background: url(../images/hero-bg.jpg) no-repeat center top;
  background-size: cover;
  padding: 134px 0 0;
  min-height: 1086px;
}
.hero-bg {
  background: url(../images/hero-frame.svg) no-repeat right top;
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 96px 0;
  gap: 65px;
}
.hero-section h1 {
  margin-bottom: 24px;
}
.hero-section h1 span {
  color:var(--accent-color);
  display: block;
}
.hero-section p {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #DBDBDB;
  letter-spacing: 0;
  width: 510px;
}
.hero-content {
  max-width: 680px;
  padding: 260px 0 144px;
  position: relative;
  z-index: 5;
}
.hero-image {
   position: absolute;
   left: auto;
   right: 96px;
   bottom: 0;
}
/* .hero-bg::before {
  content: "";
  position: absolute;
  width: 950px;
  height: 950px;
  right: -650px;
  top: -31px;
  background: rgba(255, 180, 1, 0.44);
  filter: blur(200px);
} 
.hero-bg::after {
  content: "";
  position: absolute;
  width: 950px;
  height: 950px;
  left: -536px;
  top: 447px;
  background: rgba(255, 180, 1, 0.36);
  filter: blur(200px);
}  */
.hero-content .common-btn {
  margin-right: 8px;
   background: rgba(255, 255, 255, 1);
   color: #000;
}
.common-btn.bordered {
  background: rgba(255, 255, 255, 0.43);
  backdrop-filter: blur(7.5px);
  color: var(--text-color);
  color: #fff;
}
.common-btn.bordered:hover{
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.enrolled-students {
  display: flex;
  align-items: center;
  margin: 32px 0 48px;
}
.enrolled-students span strong {
  font-size: 22px;
  line-height: 16px;
  font-weight: 600;
  color: #fff;
  display: block;
}
.enrolled-students span {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: #E4E4E4;
  padding-left: 8px;
}

/* service-section */

.service-section {
  position: relative;
  background: url(../images/service-bg.png) no-repeat center top #000;
  text-align: center;
}
.section-title {
  text-align: center;
}
.section-title h2 {
  position: relative;
  margin-bottom: 32px;
  text-transform: capitalize;
}
.section-title p {
  color: #D9D9D9;
  font-size: 32px;
  line-height: 32px;
  font-weight: 500;
  max-width: 1100px;
  margin: 0 auto 56px;
}
.service-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding:0 56px;
}
.service-item {
  box-sizing: border-box;
  padding: 56px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(5px);
  border-radius: 32px;
  position: relative;
  margin-bottom: 8px;
  text-align: left;
  z-index: 1; 
  overflow: hidden;
}
.service-wrapper .service-item {
  width: calc(33.3% - 16px);
}
.service-wrapper .service-item:nth-child(4),
.service-wrapper .service-item:nth-child(5) {
  width: calc(50% - 16px);
  margin-bottom: 0;
}
.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1px; /* this defines the border thickness */
  background: radial-gradient(circle at center, #D7D7D7 0%, #717171 100%);
  border-radius: inherit;
  z-index: -1;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.service-item h4 {
  margin: 32px 0 24px;
}
.service-item ol,
.service-item ul {
  margin-left: 15px;
}
.service-item ol li,
.service-item ul li  {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #C3BFBF;
  list-style: decimal;
  padding-left: 5px;
  margin: 0 0 10px;
}
.service-item ul li {
  list-style: disc;
}
.service-item ol li ul li {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 6px;
}

/* trade  */

.trade {
  position: relative;
  background: url(../images/trade-bg.jpg) no-repeat center top;
  background-size: cover;
  text-align: center;
}
.trade-image img {
  margin: 0 auto;
}

/* why choose section  */

.why-choose-section {
  position: relative;
  padding: 120px 0;
  background: #000000;
  text-align: center;
}
.why-choose-item {
background: rgba(0, 0, 0, 0.22);
border: 1px solid #D7D7D7;
backdrop-filter: blur(14.5px);
border-radius: 32px;
padding: 56px;
height: 100%;
transition: all 0.3s ease;
}
.why-choose-icon {
  width: 80px;
  height: 80px;
  background:transparent;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.why-choose-item h4 {
  margin: 28px 0 20px;
}
.why-choose-item p {
color: #EBEBEB;
margin: 0 auto;
max-width: 250px;
font-weight: 500;
font-size: 18px;
line-height: 24px;
margin-bottom: 10px;
}
.why-choose-item:hover {
  background: #DE9C00;
  border: 1px solid #DE9C00;
  transition: all 0.3s ease;
}
.why-choose-item:hover h4,
.why-choose-item:hover p {
  color: #000;
}
.why-choose-item:hover .why-choose-icon {
  background: rgba(0, 0, 0, 0.16);
}
.why-choose-item:hover .why-choose-icon img {
  filter: brightness(0) saturate(100%);
}

/*  what we offer */

.what-offer {
  position: relative;
  padding: 120px 0;
  background: #131314;
}
.offer-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 56px;
}
.offer-image {
  border-radius: 32px;
  overflow: hidden;
}
.offer-plan {
  background: #131314;
  /* box-shadow: 0px 0 10px rgba(255, 188, 0, 0.15); */
  border-radius: 32px;
  padding: 32px;
  text-align: center;
  width: 421px;
  transition: all 0.3s ease;
  animation: highlightPulse 2s ease-in-out 1s infinite;
}
@keyframes highlightPulse {
  0% {
    box-shadow: 0px 0 3px rgba(255, 188, 0, 0.15);
  }
  50% {
    box-shadow: 0px 32px 19px rgba(255, 188, 0, 0.08), 0px 4px 8px rgba(255, 188, 0, 0.15);
  }
  100% {
    box-shadow: 0px 0 10px rgba(255, 188, 0, 0.15);
  }
}
.offer-plan h3 {
  margin: 30px auto 20px;
  background: linear-gradient(90deg, #F09819 0%, #EDDE5D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  text-transform: uppercase;
  max-width: 350px;
}
.offer-plan ul li {
  padding: 8px 0px 8px 32px;
  background: url(../images/star.svg) no-repeat left 7px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #EBEAEA;
  text-transform: capitalize;
  text-align: left;
  margin-bottom: 8px;
}
.plan-icon img {
  margin: 0 auto;
}
.offer-plan .common-btn {
  border: 1px solid #FFBC01;
  border-radius: 24px;
  background: transparent;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFB401;
  margin-top: 24px;
}
.offer-plan .common-btn:hover {
  background:#FFB401;
  color: #000;
}

/*ads */
.ads {
  background: #414141;
  padding: 120px 0;
  position: relative;
}
.ads-content-wrap {
  display: flex;
  justify-content: flex-start;
  align-items:flex-end;
  position: relative;
  width: 100%;
  padding: 60px 47px;
  /*background: linear-gradient(246.03deg, rgba(0, 0, 0, 0) 3.98%, #000000 99.11%), url(../images/ads-bg.jpg);*/
  filter: drop-shadow(0px 4px 40px rgba(0, 0, 0, 0.48));
  border-radius: 40px;
  min-height: 568px;
  background-position: center bottom !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.ads h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #F3F3F3;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.ads p {
  font-weight: 500;
  color: #F3F3F3;
  margin-bottom: 24px;
}
.ads-content {
  max-width: 650px;
}
.ads-content .common-btn {
  border-radius: 64px;
  width: auto;
  background: #FFFFFF;
  color: #000000;
}
.ads-content .common-btn svg {
  margin-left: 10px;
}
.service-ads .ads-content-wrap { 
  background: linear-gradient(246.03deg, rgba(0, 0, 0, 0) 3.98%, #000000 99.11%), url(../images/service-ads-bg.jpg);
}
.service-ads .ads-content {
  max-width: 900px;
}

/*  testimonials */
.testimonials {
  position: relative;
  padding:120px 0 180px;
  background: #131314;
}
.testimonials .section-title {
  margin-bottom: 56px;
  text-align: center;
}
/* Slick slide wrapper */
.testimonial-slider .slick-slide {
  display: flex !important;
  padding: 0 8px;
  box-sizing: border-box;
}
.testimonial-slider .slick-list {
  margin: 0 -12px; 
}
.testimonial-card {
  padding: 0 12px;
}
.testimonial-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-content {
  background: rgba(83, 83, 83, 0.48);
  border-radius: 48px;
  padding:24px 40px 20px 24px;
  display: flex;
  height: auto;
  overflow: hidden;
}
.testimonial-card img {
  border-radius: 24px;
  margin-bottom: 0;
}
.testimonial-text {
  background: url(../images/quote.svg) no-repeat 32px top;
  padding: 125px 0 0 0;
  width: 100%;
}
/* Text */
.testimonial-text p {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 18px !important;
  color: #BEBEBE;
  font-weight: 500;
}
.testimonial-author {
  text-align: right;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  font-weight: 600;
  font-style: italic;
}
.testimonial-author p {
  display: inline-block;
  vertical-align: top;
   font-size: 20px !important;
  line-height: 24px !important;
  color: #FFFFFF;
  font-weight: 600;
  font-style: italic;
  margin: 0 !important;
}
.slick-slider {
  position: relative;
}
.slick-prev, .slick-next {
  position: absolute !important;
  top: 10px;
  z-index: 10;
}
.slick-slider {
  position: relative;
}
.testimonial-slider .slick-prev, .testimonial-slider .slick-next {
  position: absolute !important;
  top:auto;
  bottom: -86px;
  z-index: 10;
  background-color: #DCDCDC;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  padding: 8px;
  text-align: center;
  font-size: 0;
  border: none;
}
.testimonial-slider .slick-prev::before,
.testimonial-slider .slick-next::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  background-image: url(../images/sider-arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(0%) sepia(83%) saturate(7432%) hue-rotate(8deg) brightness(113%) contrast(87%);
}
.testimonial-slider .slick-prev::before {
  transform: rotate(180deg);
}
.testimonial-slider .slick-prev {
  right: 52px;
  left: auto;
}
.testimonial-slider .slick-next {
  right: 0;
}
.rating-star ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.rating-star ul li {
  margin: 0;
  padding: 0;
}
.testimonial-slider  .slick-dots {
  text-align: center;
  bottom: -74px;
  position: absolute;
  width: 100%;
}
.testimonial-slider .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 0 1px;
}
.testimonial-slider .slick-dots li button {
  font-size: 0;
  background-color: #434343;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
}
.testimonial-slider .slick-dots li.slick-active button {
  background-color:#FFBC00;
}
.testimonial-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 0;
}
.testimonial-slider .slick-next {
  right: -21px;
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #DCDCDC;
}
.testimonial-slider .slick-prev {
  display: none !important;
}

/* Faq */

.our-faqs {
  position: relative;
  background-color: #131314;
  padding: 120px 0;
}
.faq-accordion .accordion-item {
  padding: 32px 24px;
  background: rgba(50, 50, 50, 0.46);
  border-radius: 24px;
  border: none;
  margin-bottom: 8px;
}
.faq-accordion .accordion-header .accordion-button {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
  color: #FFFFFF;
  padding-right: 35px;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
.faq-accordion .accordion-header .accordion-button span {
  margin-right: 7px;
}
.faq-accordion .accordion-button:not(.collapsed) {
  padding-bottom: 15px;
}
.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-align: right;
  top: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.faq-accordion .accordion-body {
  padding-right: 35px;
}
.faq-accordion .accordion-body p {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #AAAAAA;
}
/* Footer */
  .footer {
      background-color: #000000;
      color: #ffffff;
      padding: 96px 0 20px;
  }
  .footer-content {
      display: flex;
      justify-content: space-between;
  }
  .footer-section {
      display: flex;
      flex-direction: column;
  }
  .footer .social-icon  {
    padding-left: 28px;
  }
  .footer-logo img {
    height: 105px;
    width: auto;
  }
  .footer-title {
      font-size: 24px;
      font-weight: 700;
      line-height: 28px;
      text-transform: capitalize;
      color: #fff;
      margin-bottom: 15px;
  }
  .footer-section li {
    margin: 0;
    margin-bottom: 7px;
  }
  .footer-section li:last-child {
    margin-bottom: 0;
  }
  .footer-link,
    .footer-section li a {
      font-size: 22px;
      font-weight: 500;
      line-height: auto;
      color:#FFFAFA;
      text-decoration: none;
      margin-bottom: 10px;
      cursor: pointer;
      transition: color 0.3s ease;
      opacity: 0.5; 
  }
    .footer-link a {
      color:#FFFAFA;
    }
  .footer-link:hover,
  .footer-section li a:hover {
      opacity:1;
  }
    .footer-section p {
      font-size: 22px;
      font-weight: 500;
      line-height: auto;
      color:#FFFAFA;
      text-decoration: none;
      margin-bottom: 15px;
      transition: color 0.3s ease;
      opacity: 0.5; 
    }  
  .footer-copyright {
      font-size: 16px;
      font-weight: 400;
      line-height: 18px;
      color:#DFDFDF;
      border-top: 1px solid #919191;
      padding: 16px 0;
      margin-top: 48px;      
  }
  .footer-copyright-text {
      opacity: 0.73;
  }
  .designed {
     font-size: 16px;
     font-weight: 400;
     line-height: 18px;
     color:#DBDBDB;
     margin: 0;
     text-align: right;     
  }
  .designed span {
    opacity: 0.73;
  }
  .designed a  {
    display: inline-block;
    vertical-align: middle;
  }
  .designed a img {
     height: 20px;
     width: auto;
  }

  /* inner banner */
  
  .inner-hero-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 119px;
    min-height: 546px;
    position: relative;
  }
  .inner-hero-content {
    position: absolute;
    width: 100%;
    bottom: 119px;
    left: 0;
    padding: 0 128px;
    text-align: center;
  }
  .inner-hero-content h1 {
    font-weight: 700;
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -4%;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0;
  }
  .inner-hero-content p {
    font-weight: 500;
    font-size: 32px;
    line-height: 32px;
    color: #E5E4E4;
    margin:24px 0 0;
  }
  .inner-hero-section {
    padding: 0;
  }

  /* About page */

  .about-page-section {
    position: relative;
    padding: 120px 0 80px;
    background: #000;
  }  
  .about-page-section .section-title h2 {
    font-weight: 500;
    font-size: 56px;
    line-height: 56px;
    color: #FFFFFF;
    margin-bottom: 24px;
  }
  .about-page-section .section-title p {
    margin-bottom: 40px;
  }
  .about-page-section h3,
  .what-us h3 {
    font-weight: 600;
    font-size: 40px;
    line-height: 32px;
    color: #FFBC00;
    text-transform: capitalize;
    align-items: center;
    text-align: center;
  }
  .about-page-img {
    border-radius: 24px;
    overflow: hidden;
  }
  .our-mission {
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(5px);
    border-radius: 32px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 56px;
    gap: 24px;
    position: relative;
  }
  .our-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1px;
    background: radial-gradient(circle at center, #D7D7D7 0%, #717171 100%);
    border-radius: inherit;
    z-index: -1;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: add, add;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
  .our-mission p {
    font-size: 20px;
    line-height: 32px;
    color: #D0D0D0;
    margin: 0;
  }
  .mission-text {
    width: 88%;
  }

  .what-us {
    position: relative;
    padding: 80px 0;
    background: #222222;
  }
  .what-us-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding:40px 0 0px;
    gap: 56px;
  }
.what-us-list-image {
  border-radius: 32px;
  overflow: hidden;
  width: calc(50% - 28px);
  flex: 1;  
}
.what-us-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}
.what-us-list-left {
  width: calc(50% - 28px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  flex: 1;  
}
.what-us-list-item {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  padding: 56px;
  gap: 24px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(5px);
  border-radius: 32px;
  width: 100%;
  position: relative;
}
.what-us-list-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1px;
    background: radial-gradient(circle at center, #D7D7D7 0%, #717171 100%);
    border-radius: inherit;
    z-index: -1;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: add, add;
    -webkit-mask-composite: xor;
    mask-composite: exclude;    
}
.what-us-list-item h4 {
  margin-bottom: 2px;
}
.what-us-list-item p {
  color: #BFBFBF;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
}

/* service page */

.why-works {
  text-align: center;
  margin-top: 80px;
}
.counter-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 24px 16px;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1223px;
  margin: 0 auto;
}
.counter-item {
  text-align: left;
  width: calc(25% - 32px);
}
.counter-item h2 {
  font-weight: 700;
  font-size: 56px;
  line-height: 56px;
  background: linear-gradient(135.34deg, #856220 15.43%, #F4E683 34.91%, #BF923D 50.85%, #4E341B 68.56%, #F1EA82 86.26%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;  
}
.counter-item p {
  font-weight: 600;
font-size: 20px;
line-height: 24px;
color: #646464;
text-transform: capitalize;
margin: 0;
}

/* blog */

.blog-section h3 {
  color: #FFBC00;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: left;
}
.blog-section p {
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: #EFEFEF;
  text-align: left;
}
.blog-list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 32px;
  flex-wrap: wrap;
}
.blog-list-item {
background: rgba(48, 48, 48, 0.55);
border: 1px solid #888686;
border-radius: 48px;
overflow: hidden;
width: calc(33.33% - 32px);
}
.blog-list-item img {
  width: 100%;
  height: auto;
}
.blog-content {
  padding: 24px;
  text-align: left;
}
.category {
  height: 26px;
  background: #F0B9FB;
  border-radius: 4px;
  padding: 2px 12px;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  color: #A320AF;
  float: left;
}
.read-btn {
  font-weight: 600;
  font-size: 12px;
  color: #C3BFBF;
  text-transform: capitalize;
  display: table;
  margin-left: auto;
  padding: 4px 0;
}
.blog-content h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  color: #FFFFFF;
  margin: 20px 0 10px;
}
.blog-content p,
.blog-details-text ol li,
.blog-details-text ul li,
.blog-details-text p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #CACACA;
  margin-bottom: 24px;
}
.blog-details-text ol li {
  margin-bottom: 8px;
  list-style: decimal;
}
.blog-details-text {
  text-align: left;
}
.blog-details-text ul li {
  margin-bottom: 8px;
  list-style: disc;
}
.blog-content  .common-btn {
  width: 100%;
}
.cat-technical-strategy {
  color: #3F20AF;
  background: #C0B9FB;
}
.cat-mindset {
  color: #20AF4B;
  background: #B9FBE1;
}
.cat-macro-economics {
  color: #AF2033;
  background: #FBB9BA;
}
.cat-day-trading   {
  color: #AF7820;
  background: #FBEEB9;
}
.cat-trader-tools {
  color: #206FAF;
  background: #B9EDFB;
}
.blog-details-image {
  border-radius: 48px;
  overflow: hidden;
  margin: 30px 0;
  border: 1px solid #888686;
}
.blog-details-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 0.3;
  object-fit: cover;
}
.blog-details h4,
.blog-details p,
.blog-details h3 {
  margin-bottom: 10px;
}
.blog-details .category {
  float: none;
  display: table;
}
.blog-details-text p {
  margin-bottom: 24px;
}
.page-section {
  margin-top: 50px;
}

/* testimonials page */

.review-list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 32px;
  align-self: stretch;
  flex-wrap: wrap;
}
.review-list-item {
  padding: 125px 40px 24px 24px;
  border-radius: 48px;
  background: url(../images/quote.svg) no-repeat 32px 30px  rgba(83, 83, 83, 0.48);
  width: calc(33.3% - 32px);
  text-align: left;
  display: flex;
  align-self: stretch;
}
.review-content p {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 18px !important;
  color: #BEBEBE;
  font-weight: 500;
}
.review-image {
  width: 80px;
  height: 80px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 16px;
  display: none;
}
.testimonial-image {
  display: none;
}
.review-author {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 110px);
}
.review-image img {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  object-fit: cover;
}
.review-author .testimonial-author p {
  font-weight: 600;
  font-style: italic;
  margin: 0 !important;
}
.review-author .testimonial-author {
  text-align: left;
  margin-bottom: 8px;
}
.review-author .rating-star ul {
  justify-content: flex-start;
}
/* Contact page */

.contact-page-section {
  position: relative;
  background-color: #000000;
  padding-top: 160px;
}
.contact-page-section
.contact-page-section h2 {
  margin-bottom: 44px;
}
.contact-page-section .wpcf7-spinner {
  display: none;
}
.contact-info p {
  color: #383838;
  line-height: auto;
  opacity: 0.5;
  margin-bottom: 13px;
}
.contact-info p a {
  color: #383838;
}
.contact-social {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 !important;
}
.contact-social h4 {
  margin: 0;
}
.social-icon ul li {
  margin: 0;
  margin-right: 4px;
  display: inline-block;
  vertical-align: top;
}
.social-icon ul li a {
  width: 44px;
  height: 44px;
  background:rgba(255, 255, 255, 0.67);
  border-radius: 40px;
  font-size: 20px;
  color: #000000;
  display: block;
  text-align: center;
  line-height: 44px;
}
.social-icon {
  margin-top: 20px;
}
.social-icon p {
  margin-bottom: 15px;
}
.social-icon ul li a:hover {
   background:var(--accent-color);
   color: #fff;
}
.contact-info p {
  display: flex;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
}
.contact-info p span:first-child {
  width: 17%;
}
.contact-info p span:last-child {
  width: 83%;
  padding-left: 10px;
}
.contact-social.social-icon ul li {
  padding: 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0px 40px;
  text-align: left;
}
.contact-form .form-group {
  margin-bottom: 10px;
} 
.contact-form .wpcf7  {
  width: 100%;
}
.contact-form p {
  margin: 0;
}
.contact-form label 
{
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-transform: capitalize;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #CBCAD7;
  border-radius: 6px;
  padding: 19.5px 20px 17.5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #9E9E9E;
  text-transform: capitalize;
  width: 100%;
  background-color: transparent;
}
.contact-form select {
  background-color: transparent;
}
.contact-form textarea {
  height: 118px;
} 
  .phone-input {
      display: flex;
      align-items: center;
      border-radius: 8px;
      overflow: hidden;
       border: 1px solid #CBCAD7;
       font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #9E9E9E;
  }
   .phone-input input{
      flex: 1;
      border: none;
      background: transparent;
      padding-left: 8px;
  }
  .contact-form  input[type="submit"] 
  {
    background-color: #FCB516;
    color: #000000;
    border-radius: 12px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    height: 64px;
    margin-top: 23px;
    width: 100%;
    border: none;
    box-shadow: none;
    outline: none;
    text-decoration: none !important;
  }
  .contact-form  input[type="submit"]:hover {
    background-color: var(--accent-color);
    color:#000;
  }
  .contact-contact-info {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
  }
  .contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  padding: 32px;
  background: rgba(9, 9, 9, 0.55);
  border: 1px solid #E0E0E0;
  box-shadow: inset 0px 8px 47px rgba(255, 188, 0, 0.2);
  border-radius: 24px;
  text-align: left;
  gap: 16px;
 }
  .contact-info li {
    padding: 0 15px 0 56px;   
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 48px;
    max-width: 320px;
  }
  .contact-info li a {
    color: #FFFFFF;
  }
   .contact-info li.email-address {
    background: url(../images/sms.svg) no-repeat left 4px;
   }  
   .contact-info li.call {
    background: url(../images/call.svg) no-repeat left 4px;
   }
  .contact-info li h6 {
     font-weight: 700;
     font-size: 24px;
     color: #FFFFFF;
     text-transform: uppercase;
     margin-bottom: 3px;
  }
  .contact-map iframe{
    border-radius: 24px;
  } 

.mt-64 {
  margin-top: 100px;
}
.floatingdiv {
position: fixed;
bottom: 100px;
right: 0;
z-index: 9999;
width: 45px;
height: 100px;
}
.floatingwhatsapp {   
  width: 45px;
  height: 45px;  
  display: block;
  margin-bottom: 10px;
}
.floatingcall {    
  width: 45px;
  height: 45px;  
  display: block;
}
.jobPopup {
		z-index: 99999;
	}
	.jobPopup .modal-dialog .modal-content {
		border-radius: 10px;
		border: 0;
		position: relative;
		display: flex;
		flex-direction: column;
		width: 100%;
		pointer-events: auto;
		background-clip: padding-box;
		outline: 0;
	}
	.jobPopup .modal-dialog .modal-content .modal-header {
		padding: 24px 0 18px;
		margin: 0 40px;
	}
	.jobPopup .modal-dialog .modal-content .modal-header .modal-title {
		font-size: 20px;
		color: #000;
		font-weight: 500;
	}
  	.jobPopup .modal-dialog .modal-content .modal-body p {
      font-size: 16px;
      line-height: 22px;
      color: #000;
    }
	.jobPopup .modal-dialog .modal-content .modal-header .btn-close {
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		width: 18px;
		height: 18px;
		border-radius: 0;
		opacity: 1;
		margin-left: auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body {
		padding: 25px 40px 40px;
		position: relative;
		flex: 1 1 auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form>*:not(:last-of-type) {
		margin-bottom: 10px;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"],
  .jobPopup .modal-dialog .modal-content .modal-body form select,
  .jobPopup .modal-dialog .modal-content .modal-body form textarea {
		height: 50px;
		padding: 10px 20px;
		width: 100%;
		font-size: 15px;
		border: 1px solid #707070;
		outline: none;
		box-shadow: none;
		border-radius: 5px;
		background: #fff;
		transition: all .3s;
		color: #263948;
	}
  .jobPopup .modal-dialog .modal-content .modal-body form p {
    margin-bottom: 10px;
  }
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"]::placeholder,
  .jobPopup .modal-dialog .modal-content .modal-body form select::placeholder,
    .jobPopup .modal-dialog .modal-content .modal-body form textarea::placeholder{
		color: #263948;
		opacity: 1;
	}
	.jobPopup .common-btn {
		margin-top: 12px;
		height: 50px;
		font-size: 15px;
		width: 100%;
    text-decoration: none;
    background-color:var(--primary-color)!important;
    color: var(--white-color);
    border-radius: 8px !important;
    padding: 12px;
	}
	.jobPopup .common-btn:hover,
	.jobPopup .common-btn:focus {
		background-color:var(--accent-color);
		color: var(--white-color);
	}
  .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border: none;
    color: red;
    padding: 0;
  font-size: 14px;
  }
  .wpcf7-not-valid-tip {
    font-size: 14px;
  }
  .our-faq-page-content {
    text-align: left;
  }
  .page-details h1  {
    font-size: 30px;
    line-height: 34px;
    text-align: center;
  }
  .page-details h2  {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .page-details ul,
  .page-details ol {
    margin-bottom: 20px;
    margin-left: 15px;
  }

  /* media query */
  @media only screen and (max-width: 1850px){	
    .container-fluid {
      padding: 0 100px;
    }    
  }
  @media only screen and (max-width: 1800px){	
     .container-fluid {
      padding: 0 90px;
    }      
    .vission-mission-item {
      width: 49.4%;
    }
    .details-page-image-banner img {
      height: 700px;
    } 
  }
   @media only screen and (max-width: 1700px){	
    .container-fluid {
      padding: 0 80px;
    }   
    section,
    .ads,
    .what-offer,
    .why-choose-section,
    .our-faqs {
      padding: 100px 0;
    }
   .hero-bg {
    padding: 0 53px 0;
    min-height: 900px;
   }
   .hero-section {
    min-height: 1000px;
   }
   .hero-image {
    right: 53px;
    z-index: 10;
   }
   h3 {
    font-size: 23px;
    line-height: 27px;
   }   
    .footer-section p,
    .footer-link, .footer-section li a {
      font-size: 20px;
    }   
    .hero-content {
      max-width: 670px;
      padding: 160px 0 144px;
    }
    .details-page-image-banner img {
      height: 650px;
    } 
}
  @media only screen and (max-width: 1600px){	
    .container-fluid {
      padding: 0 70px;
    }
    h1 {
      font-size: 70px;
      line-height: 78px;
    }
    h2 {
      font-size: 58px;
      line-height: 58px;
    }
    h4 {
      font-size: 22px;
      line-height: 22px;
    }
    p {
      font-size: 17px;
      line-height: 30px;
    }
    .hero-section {
      min-height: 990px;
    }
     .hero-image {
      right: 15px;
    }
     .hero-bg {
    padding: 0 53px 0;
    min-height: 875px;
  }
    .hero-content {
      max-width: 600px;
      padding: 100px 0 144px;
    }
    section,
    .ads,
    .what-offer,
    .why-choose-section,
    .our-faqs {
      padding: 90px 0;
    }
    .service-section {
      padding-bottom: 60px;
    }
    .section-title p {
      font-size: 30px;
      line-height: 30px;
      margin-bottom: 45px;
    }
    .course-content {
      padding: 12px 15px 24px;
      min-height: 285px;
    }
    .course-item h4 {
      font-size: 20px;
      line-height: 24px;
    }
     h3 {
      font-size: 22px;
      line-height: 26px;
    }   
    .footer {
      padding: 80px 0 20px;
    }
    .footer-section p, .footer-link, .footer-section li a {
      font-size: 19px;
    }    
    .service-wrapper {
      padding: 0 40px;
    }
    .service-item,
    .why-choose-item {
      padding: 56px 40px;
    }
    .ads-content-wrap {
      min-height:500px;
    }
    .inner-hero-section {
      min-height: 500px;
    }
    .inner-hero-content {
      bottom: 90px;
    }
    .inner-hero-content h1 {
      font-size: 70px;
      line-height: 70px;
    }
    .inner-hero-content p {
      font-size: 28px;
      line-height: 28px;
    }
     .about-page-section .section-title h2 {
      font-size: 50px;
      line-height: 50px;
    }
  }
  @media only screen and (max-width: 1500px){	
    .container-fluid {
      padding: 0 50px;
    }
    .footer-section p, .footer-link, .footer-section li a {
      font-size: 18px;
    }
   .hero-section {
      min-height: 985px;
   }
     .hero-bg {
      padding: 0 33px 0;
      min-height: 885px;
    }
    .hero-image {
      max-width: 750px;
    }   
    .testimonial-text {
      padding: 80px 0 0 0;
      background-size: 80px;
    }    
  }
 @media only screen and (max-width: 1400px){	
    .container-fluid {
      padding: 0 30px;
    }   
    .outer-menu {
      padding: 20px 15px;
    }
    .is-sticky .outer-menu {
      padding: 12px 0;
    }
    h1 {
      font-size: 64px;
      line-height: 69px;
      margin-bottom: 25px;
    }
    h2 {
      font-size: 52px;
      line-height: 52px;
      margin-bottom: 25px;
    }
    .hero-content {
      max-width: 540px;
      padding: 10px 0 144px;
    } 
    .hero-image {
      max-width: 550px;
    }  
    .hero-bg {
      padding: 0 33px 0;
      min-height: 780px;
    }
    .hero-section h1 {
      margin-bottom: 20px;
    }
    section,
    .ads,
    .what-offer,
    .why-choose-section,
    .our-faqs {
      padding: 80px 0;
    }
    .section-title p {
      font-size: 26px;
      line-height: 30px;
      margin-bottom: 40px;
    }    
    .social-icon ul li a {
      width: 42px;
      height: 42px;
      line-height: 42px;
    }
    .footer-section p, .footer-link, .footer-section li a {
      font-size: 17px;
    }
    .testimonial-text p {
      font-size: 20px;
      line-height: 27px;
    }   
    .hero-section {
      min-height: 935px;
    }
    .service-wrapper {
      padding: 0;
    }
    .service-item,
    .why-choose-item {
      padding: 45px 30px;
    }
    .trade .section-title p {
      margin-bottom: 0;
    }
     .service-section {
      padding-bottom: 40px;
    }
    .ads-content-wrap {
      min-height: 450px;
    }
    .inner-hero-section {
      min-height: 450px;
    }
    .inner-hero-content {
      bottom: 70px;
    }
    .inner-hero-content h1 {
      font-size: 60px;
      line-height: 60px;
    }
    .inner-hero-content p {
      font-size: 24px;
      line-height: 28px;
    }
    .review-content p {
      font-size: 22px;
      line-height: 28px;
    }
    .testimonial-author,
    .review-content p {
      font-size: 18px !important;
      line-height: 22px !important;
    }    
    .contact-info li h6 {
      font-size: 22px;
    }
    .contact-info li {
      margin-bottom: 40px;
    }
    .contact-page-section .section-title h2 {
      margin-bottom: 15px;
    }
    .about-page-section .section-title h2 {
      font-size: 46px;
      line-height: 46px;
    }
    .about-page-section {
      padding: 100px 0 70px;
    }
    .what-us-list {
      padding-top: 20px;
    }
    .what-us {
      padding: 70px 0;
    }
    .what-us-list-item,
    .our-mission {
      padding: 50px;
    }
    .enrolled-students {
      margin: 25px 0 35px;
    }
  }
   @media only screen and (max-width: 1300px){	
    .container-fluid {
      padding: 0 15px;
    }
    .outer-menu ul li {
      margin-right: 8px;
    }
    .hero-content {
      max-width: 540px;
      padding: 100px 0 40px;
    }
   .hero-bg {
      padding: 0 33px 0;
      min-height: 625px;
    }
    .social-icon ul li a {
      width: 38px;
      height: 38px;
      line-height: 38px;
      font-size: 18px;
    }
    .hero-image {
      max-width: 500px;
    }
    .outer-menu {
      height: 100px;
      max-height: 100px;
    }
    .hero-section {
      min-height: 800px;
    }
    .hero-image {
      max-width: 541px;
    }
    .hero-content {
      max-width: 540px;
      padding: 0 0 40px;
    }
    .hero-section h1 {
      margin-bottom: 15px;
    }
   
  }
  @media only screen and (max-width: 1200px){	   
    .outer-menu {
      padding: 12px 0;
    }
    .outer-menu ul li a {
      font-size: 14px;
      line-height: 16px;
      padding: 10px 6px;
    }
    h1 {
      font-size: 60px;
      line-height: 60px;
      margin-bottom: 20px;
    }
    h2 {
      font-size: 48px;
      line-height: 48px;
      margin-bottom: 20px;
    }
     h4 {
    font-size: 20px;
    line-height: 20px;
  }
   .section-title p {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 30px;
  }
    p {
      font-size: 16px;
      line-height: 24px;
    }
    .hero-content {
      max-width: 515px;
    }
    .hero-section p {
      font-size: 22px;
      line-height: 30px;
    }
    .hero-section {
      min-height: 800px;
      padding: 95px 0 0;
    }
    .hero-bg {
      padding: 0 30px 0;
      min-height: 688px;
    }
    .hero-image {
      max-width: 510px;
    }
    .section-title h2 {
      margin-bottom: 20px;
    }
    section,
    .ads,
    .what-offer,
    .why-choose-section,
    .our-faqs {
      padding: 70px 0;
    }      
    .social-icon ul li {
      margin-right: 2px;
    }
    .social-icon ul li a {
      width: 36px;
      height: 36px;
      line-height: 36px;
      font-size: 18px;
    }
    .footer {
      padding: 60px 0 20px;
    }
    .footer-copyright {
      margin-top: 30px;
    }
    .service-item, .why-choose-item {
      padding: 30px 15px;
    }  
    .service-item h4 {
      margin: 25px 0 15px;
    }
    .service-item ol li, .service-item ul li {
      font-size: 14px;
      line-height: 18px;
    }
    .trade-image img {
      max-height: 700px;
    }
    .why-choose-item h4 {
      margin: 20px 0 10px;
    }
    .why-choose-item p {
      font-size: 16px;
      line-height: 22px;
    }
    .ads-content-wrap {
      min-height: 400px;
    }
    .faq-accordion .accordion-header .accordion-button {
      font-size: 22px;
      line-height: 32px;
    }
    .testimonials {
      padding: 90px 0 150px;
    }
     .inner-hero-section {
      min-height: 400px;
    }
    .inner-hero-content {
      bottom: 60px;
    }
    .inner-hero-content h1 {
      font-size: 54px;
      line-height: 54px;
    }
    .inner-hero-content p {
      font-size: 22px;
      line-height: 26px;
      margin-top: 15px;
    }
    .counter-item h2 {
      font-size: 50px;
      line-height: 50px;
      margin-bottom: 10px;
    }
    .counter-item p {
      font-size: 18px;
      line-height: 22px;
    }
    .blog-section h3 {
      margin-bottom: 20px;
    }
    .blog-content h4 {
      font-size: 20px;
      line-height: 20px;
    }
    .blog-content {
      padding: 20px 15px; 
    }
    .blog-list {
      gap: 20px;
    }
    .blog-list-item {
      width: calc(33.33% - 15px);
    }
    .review-content p {
      font-size: 20px;
      line-height: 26px;
    }
     .testimonial-author,
     .review-author .testimonial-author p{
      font-size: 16px !important;
      line-height: 20px !important;
    }
    .review-list-item {
      padding: 125px 24px 24px 24px;
    }
    .contact-info li {
      margin-bottom: 30px;
    }
    .contact-info {
      padding: 24px;
    }
    .contact-info li h6 {
      font-size: 20px;
    }
    .about-page-section .section-title h2 {
      font-size: 42px;
      line-height: 46px;
    }
    .about-page-section {
      padding: 70px 0 60px;
    }
    .what-us-list {
      padding-top: 0;
      gap: 40px;
    }
    .what-us {
      padding: 60px 0;
    }
    .what-us-list-item,
    .our-mission {
      padding: 40px;
    }
    .about-page-section h3, .what-us h3 {
      font-size: 32px;
      line-height: 32px;
    }
  }
  @media only screen and (max-width: 1100px){	
      .common-btn, .appointment-btn {
        width: 170px;
        padding: 18px 15px;
      }
       .hero-image {
        max-width: 465px;
      }
       .hero-section {
    min-height: 740px;
  }
  .enrolled-students {
  margin: 20px 0 35px;
}
      h1 {
      font-size: 56px;
      line-height: 60px;
    }
    .hero-content {
      max-width: 475px;
    }
    .hero-bg {
      min-height: 650px;
      padding: 0 20px 0;
    }
    .hero-bg::after {
      width: 150px;
      height: 150px;
      background-size: 150px auto;
    }
    .hero-bg::before {
      top: 70px;
      right: 197px;
    }    
    .testimonial-text {
      background-position: 22px top;
      padding: 60px 0 0 0;
      background-size: 60px auto;
    }
    .social-icon ul li a {
      width: 32px;
      height: 32px;
      line-height: 32px;
      font-size: 17px;
    }
    .footer-section p, .footer-link, .footer-section li a {
      font-size: 16px;
      line-height: 22px;
    }  
    .testimonial-text p {
    font-size: 16px;
    line-height: 21px;
  } 
  .testimonial-author, .testimonial-location,
  .testimonial-author p {
    font-size: 14px !important;
    line-height: 16px !important;
  }
  .contact-now-box .common-btn {
    width: 135px;
  }
  .navbar-brand img {
    height: 60px;
  width: auto;
  margin-left: -15px;
  }
   .outer-menu ul li a {
    font-size: 15px;
    line-height: 18px;
  }
   .ads-content-wrap {
    min-height: 364px;
  }
  .blog-section h3 {
      margin-bottom: 10px;
    }
    .blog-content p, .blog-details-text ol li, .blog-details-text ul li, .blog-details-text p {
      font-size: 15px;
      line-height: 22px;
      margin-bottom: 20px;
    }
    .blog-content h4 {
      font-size: 19px;
    }
    .blog-list-item {
      border-radius: 36px;
    }
    .blog-section p {
      font-size: 22px;
      line-height: 38px;
    }
    .inner-hero-content {
      padding: 0 60px;
    }
    .review-list {
      gap: 20px;
    }
    .review-list-item {
      width: calc(50% - 10px);
    }
    .contact-page-section {
      padding-top: 100px;
    }
    .contact-form {
      padding: 30px 0 0 0;
    }
     .what-us-list-item, .our-mission {
    padding: 30px 20px;
    gap: 15px;
  } 
  .what-us-list-item p {
    font-size: 16px;
    line-height: 22px;
  }
  }
  @media only screen and (max-width: 991px){   
    .is-sticky .outer-menu {
      padding: 12px 15px;
    }	
    .outer-menu .navbar-toggler{
	  border: none;
	  box-shadow: none;
	  position: absolute;
	  right: 0;
	  height: 13px;
	  border-radius: 0;
	  width: 23px;
	  padding: 0;
	  background-color: transparent;
	}
	.outer-menu .navbar-toggler .menu-lines {
	  display: inline-block;
	}
	.outer-menu .navbar-toggler .menu-lines::before, 
	.outer-menu .navbar-toggler .menu-lines::after {
	  content: '';
	  position: absolute;
	  left: 0;
	  width: 23px;
	  height: 2px;
	  display: inline-block;
	  background-color:var(--text-color);
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	}
	.outer-menu .navbar-toggler .menu-lines::before {
	  top: 0;
	}
	.outer-menu .navbar-toggler .menu-lines::after {
	  top: 12px;
	}
	.outer-menu .navbar-toggler .menu-lines span {
	  position: absolute;
	  top: 6px;
	  left: 0;
	  width: 18px;
	  height: 2px;
	  background-color:var(--text-color);
	}
	.outer-menu .collapse:not(.show) {
	  display: block;
	}
	.outer-menu .navbar-collapse {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  width: 100%;
	  height: 100%;
	  visibility: hidden;
	  opacity: 0;
	  background-color: rgba(0,0,0,.6);
	  z-index: 1000;
	  padding: 0;
	  transition: 0.4s ease;
	}  
	.outer-menu .navbar-collapse.menu-opened {
	  opacity: 1;
	  visibility: visible;
	}
	.outer-menu .navbar-collapse.menu-opened .navbar-nav {
	  opacity: 1;
	  transform: translateX(0);
	}
	.outer-menu .navbar-collapse .navbar-nav {
	  opacity: 0;
	  width: 240px;
	  height: 100%;
	  overflow-y: auto;
	  padding: 10px 0 20px;
	  background-color: #000;
	  transform: translateX(-100%);
	  transition: 0.3s ease;
	  transition-delay: 0s;
	  transition-delay: 0.4s;
	  margin: 0;
	}
	.outer-menu .navbar-collapse.menu-opened .close-mobile-menu {
	  opacity: 1;
	  transform: scale(1);
	  display: block;
	}
	.outer-menu .close-mobile-menu {
	  position: absolute;
	  top: 30px;
	  right: 30px;
	  z-index: 1100;
	  width: 35px;
	  height: 35px;
	  line-height: 33px;
	  text-align: center;
	  border-radius: 50%;
	  border: 1px solid #fff;
	  color: #fff;
	  cursor: pointer;
	  opacity: 0;
	  transform: scale(.8);
	  transition: all 0.4s ease;
	  transition-delay: 0s;
	  transition-delay: 0.5s;
	  background-color: transparent;
	  box-shadow: none;
    padding: 0;
	}
	.main-menu ul li a {
	  color:var(--text-color);
	  line-height: 25px !important;
	  padding-left: 15px;
	}
	.outer-menu ul li a.active::before, 
	.outer-menu ul li a:hover::before,
	.outer-menu ul li a::before {
	 display: none;
  }
  .main-header {
    backdrop-filter: none;
  }
  .mob-logo {
    padding-left: 15px;
  }
  .mob-logo,
  .outer-menu .mob-logo img.logo {
    display: block;
  }
  section,
    .ads,
    .what-offer,
    .why-choose-section,
    .our-faqs {
    padding: 50px 0;
  }
   h1{
    font-size: 40px;
    line-height: 42px;
    margin-bottom: 20px;
  }
   h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
  }  
  .hero-content {
    max-width: 100%;
    padding: 100px 0 0;
  }
  .hero-image {
    max-width: 400px;
  }  
  .footer {
    padding: 50px 0 0;
  }
  .menu-logo {
    display: block;
  }  
  .hero-bg {
    min-height: 535px;
    padding: 0 12px 0;
  }
  .hero-section {
    min-height: auto;
  }
   .outer-menu {
    height: 80px;
    max-height: 80px;
  }
   .hero-content {
    max-width: 400px;
    padding: 0;
  }
   .hero-section p {
    font-size: 18px;
    line-height: 26px;
    width: 100%;
  }
.service-wrapper .service-item,
.service-wrapper .service-item:nth-child(4) {
  width: calc(50% - 8px);
}
.service-wrapper .service-item:nth-child(5) {
  width: 100%;
  margin-bottom: 0;
}
  .trade-image img {
    max-height: 500px;
  }
  .why-choose-wrap .col-md-3 {
    width: 50%;
  }
  .why-choose-wrap .col-md-3:last-child,
  .why-choose-wrap .col-md-3:nth-last-child(2) {
   margin-top: 15px;
  }
   .ads-content-wrap {
    min-height: 325px;
    padding: 30px 15px;
  }
  .ads h2 {
  font-size: 30px;
  line-height: 38px;
  }
  .ads-content {
  max-width: 500px;
}
  .section-title p {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 25px;
  }
  .testimonials .section-title {
    margin-bottom: 30px;
  }
  .testimonials {
    padding: 60px 0 80px;
  }
  .faq-accordion .accordion-header .accordion-button {
    font-size: 20px;
    line-height: 28px;
  }
  .faq-accordion .accordion-body p {
    font-size: 18px;
    line-height: 26px;
  }
  .faq-accordion .accordion-item {
    padding: 20px; 
    border-radius: 20px;
  }
  footer .col-md-4 {
    width: 40%;
  }
 footer .col-md-4:nth-child(2),
 footer .col-md-4:nth-child(3)  {
    width: 30%;
   }   
   .footer-logo img {
      height: 80px;
      width: auto;
    }
    .hero-section {
      padding: 75px 0 0;
    }
    .inner-hero-section {
      min-height: 360px;
    }
    .inner-hero-content {
      bottom: 50px;
    }
    .inner-hero-content h1 {
      font-size: 50px;
      line-height: 50px;
    }
    .inner-hero-content p {
      font-size: 20px;
      line-height: 24px;
      margin-top: 15px;
    }
    .counter-item h2 {
      font-size: 46px;
      line-height: 46px;
      margin-bottom: 10px;
    }
    .counter-item p {
      font-size: 16px;
      line-height: 20px;
    }
      .why-works   {
    margin-top: 70px;
  }
  .inner-hero-content {
      padding: 0 40px;
    } 
    .blog-section p {
      font-size: 18px;
      line-height: 28px;
    }
    .blog-list-item {
      width: calc(50% - 15px);
    }
    .blog-image {
      height: 165px;
      overflow: hidden;
    }
    .review-list-item {
      background-size: 60px auto;
      padding: 90px 15px 20px 15px;
    }
    .review-image img {
      width: 70px;
      height: 70px;
      border-radius: 13px;
      object-fit: cover;
    }
    .review-image {
      width: 70px;
      height: 70px;
      margin-right: 10px;    
    }
    .contact-form input, .contact-form select, .contact-form textarea {
      padding: 15px 20px 13px;
    }
     .about-page-section .section-title h2 {
      font-size: 38px;
      line-height: 42px;
    }
    .about-page-section {
      padding: 50px 0 50px;
    }
    .what-us-list {
      padding-top: 0;
      gap: 30px;
    }
    .what-us {
      padding: 50px 0;
    }
    
    .about-page-section h3, .what-us h3 {
      font-size: 28px;
      line-height: 28px;
    }
    .our-mission p {
      font-size: 18px;
      line-height: 30px;
    }
    .contact-now-box {
      display: none !important;
    }
    .page-details h1  {
    font-size: 26px;
    line-height: 30px;
  }
  .page-details h2  {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  }
@media only screen and (max-width: 767px){
  .hero-bg {
    flex-wrap: wrap;
    gap: 0;
  }
  .hero-image {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
  }
   .hero-image {
    max-width: 300px;
   }
   .hero-content {
    padding: 30px 0 0 0;
   }
  p, .hero-section p {
    font-size: 16px;
    line-height: 24px;
  }
  h1 {
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 20px;
  }  
  .section-title p {
    font-size: 18px;
    line-height: 24px;
   }
   .footer-copyright {
    margin-top: 20px;
    text-align: center;
  }
  .designed {
    text-align: center;
    margin-top: 10px;
  }
  .footer-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }
 .service-wrapper .service-item, .service-wrapper .service-item:nth-child(4) {
    width: 100%;
  }
   .trade-image img {
    max-height: 400px;
  }
  .why-choose-section {
    padding-top: 0;
  }
  .offer-wrap {
    flex-wrap: wrap;
  }
  .offer-image {
    display: none;
  }
  .ads-content-wrap {
    min-height: 300px;
    padding: 30px 15px;
  }
   .faq-accordion .accordion-header .accordion-button {
    font-size: 16px;
    line-height: 24px;
  }
  .faq-accordion .accordion-body p {
    font-size: 14px;
    line-height: 20px;
  }
   .footer {
    padding: 30px 0 0;
  }
  footer .col-md-4 {
    width: 100%;
    text-align: center;
  }
  .footer .social-icon {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .footer-logo img {
    margin: 0 auto;
  }
   footer .col-md-4:nth-child(2), footer .col-md-4:nth-child(3) {
    width: 50%;
    text-align: left;
  }
  .hero-bg {
    min-height: 434px;
  }
  .inner-hero-content {
    bottom: 40px;
    padding: 0 20px;
  }
   .inner-hero-content h1 {
      font-size: 40px;
      line-height: 40px;
    }
    .inner-hero-content p {
      font-size: 18px;
      line-height: 22px;
      margin-top: 15px;
    }
    .counter-item h2 {
      font-size: 40px;
      line-height: 40px;
      margin-bottom: 10px;
    }
    .counter-item p {
      font-size: 14px;
      line-height: 18px;
    }
    .counter-wrap {
      gap: 25px;
      padding: 20px 0;
    }
    .why-works   {
      margin-top: 50px;
    }
    .blog-list-item {
      width: 100%;
    }
    .blog-image {
      height: auto;
      overflow: hidden;
    }
    .review-list-item,
    .mission-text,
    .about-logo {
    width: 100%;
  }
   .contact-page-section {
    padding-top: 80px;
  }
  .what-us-list-left,
  .what-us-list-image {
    width: 100%;
    flex: auto;
  }
  .what-us-list,
  .our-mission {
    flex-wrap: wrap;
  }
  .what-us-list-item, .our-mission {
    border-radius: 24px;
  }
   .about-page-section h3, .what-us h3 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 15px;
  }
   .what-us-list-item, .our-mission {
    padding: 20px 15px;
    gap: 0;
  }
   .our-mission p {
    font-size: 16px;
    line-height: 26px;
  }
  .what-us-list-item {
    gap: 15px;
  }
}
@media only screen and (max-width: 600px){ 
   h1 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 15px;
  } 
  .hero-section h1 {
    margin-bottom: 15px;
  }  
   .section-title p {
    font-size: 18px;
    line-height: 24px;
  }
  h3 {
    font-size: 21px;
    line-height: 26px;
  }
   .testimonials {
    padding: 50px 0 60px;
  }
  .testimonial-slider .slick-dots {
    bottom: -30px;
  }
  .ads h2 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .ads p {
    margin-bottom: 15px;    
  }
  .ads-content-wrap {
    min-height: 260px;
    padding: 15px 15px;
  }
  .trade {
    padding: 10px 0;
  }
   .counter-item h2 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .counter-wrap {
    gap: 20px;
    padding: 15px 0;
  }
  .counter-item {
  width: calc(25% - 20px);
}
 .counter-item p {
    font-size: 13px;
    line-height: 18px;
  }
  .why-works   {
    margin-top: 40px;
  }
  .ads-content-wrap {
    background-position: center bottom !important;
    background-size: cover !important;
  }
   .contact-info li h6 {
    font-size: 18px;
    line-height: 20px;
  }
  .contact-info li {
    font-size: 14px;
  }
  .contact-form input[type="submit"] {
    height: 50px;
    font-size: 18px;
  }
   .about-page-section .section-title h2 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 15px;
  }
  .about-page-section .section-title p {
    margin-bottom: 30px;
  }
  .about-inner-banner {
    min-height: 250px;
  }
}
@media only screen and (max-width: 500px){   
   h1{
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 15px;
   }
   h2 {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 15px;
   }
   p, .hero-section p {
    font-size: 14px;
    line-height: 22px;
  }
  .enrolled-students {
    margin: 20px 0 20px;
  }  
  .why-choose-wrap .col-md-3,
  .testimonial-image {
    width: 100%;
  }
  .ads h2 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
  }
  .common-btn, .appointment-btn {
    font-size: 14px;
  }
  .testimonial-content {
    flex-wrap: wrap;
  }
  .testimonial-image img {
    width: 100%;
    height: auto;
  }
  .testimonial-text {
    width: 100%;
    padding: 60px 0 0 0;
    background-size: 40px auto;
    background-position: 0 21px;
  }
 .faq-accordion .accordion-header .accordion-button {
    font-size: 14px;
    line-height: 22px;
  }
  .faq-accordion .accordion-body p {
    font-size: 12px;
    line-height: 18px;
  }
 .why-choose-wrap .col-md-3:nth-child(2) {
    margin-top: 15px;
  }
  .counter-item {
  text-align: left;
  width: calc(40% - 20px);
}
.inner-hero-content {
    bottom: 30px;
    padding: 0 12px;
  }
   .inner-hero-content h1 {
      font-size: 30px;
      line-height: 30px;
    }
    .inner-hero-content p {
      font-size: 14px;
      line-height: 18px;
      margin-top: 15px;
    }
      .inner-hero-section {
    min-height: 300px;
  }
   .blog-content h4 {
    font-size: 18px;
  }
   .blog-section p {
    font-size: 16px;
    line-height: 24px;
  }
   .blog-content p, .blog-details-text ol li, .blog-details-text ul li, .blog-details-text p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .blog-details-image {
    border-radius: 24px;
  }
   .review-list-item {
    background-size: 40px auto;
    padding: 65px 15px 20px 15px;
    background-position: 15px 25px;
  }
   .review-content p {
      font-size: 18px;
      line-height: 24px;
    }
     .testimonial-author,
.review-author .testimonial-author p{
      font-size: 14px !important;
      line-height: 18px !important;
    }
    .contact-form input, .contact-form select, .contact-form textarea {
    padding: 12px 15px 11px;
  }
   .contact-info li {
    margin-bottom: 25px;
    padding: 0 15px 0 40px;
  }
  .contact-info {
    padding: 15px;
  }
  .contact-social {
    display: block;
  }
  .contact-social h4 {
  margin: 0 0 15px 0;
}
 .about-page-section .section-title h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 15px;
  }
   .what-us-list-item p {
    font-size: 14px;
    line-height: 20px;
  }
  .what-us-list-icon img {
    width: 40px;
    height: auto;
  }  
  .about-inner-banner {
    min-height: 200px;
  }
}
@media only screen and (max-width: 400px){
.hero-content .common-btn {
  width: 135px;
}
 .hero-image {
    max-width: 250px;
  }
  .category {
    font-size: 12px;
    padding: 4px 10px;
  }
   .about-page-section .section-title h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 15px;
  }
    .about-page-section h3, .what-us h3 {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 15px;
  }
} 