@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
    url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
    url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
    url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
    url('../fonts/Poppins-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
    url('../fonts/Inter-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000;
  --white: #fff;
  --yellow: #F1E32D;
  --text: #3A3A3A;
  --light-gray: #F7F7F7;
  --dark: #121212;
  --theme-color: #5c12b1;
  --navbar: #010532;
  --body: #FBFBFB;
}

main {
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: var(--light-gray);
  transition: all 0.4s;
}

a:hover {
  color: var(--yellow);
}

body {
  font-size: 14px;
  line-height: 25px;
  color: var(--text);
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  background-color: var(--body);
}

p {
  margin-bottom: 0;
}

.button {
  align-items: center;
  border-radius: 5px;
  box-sizing: border-box;
  display: inline-flex;
  font-family: 'Inter';
  font-size: 16px;
  justify-content: center;
  line-height: 1.25;
  padding: 0.4em 1.25em;
  position: relative;
  text-decoration: none;
  transition: background-color .25s, border-color .25s, color .25s, opacity .25s;
  vertical-align: middle;
  white-space: nowrap;
}

.button img {
  margin-right: 10px;
}

.btn-theme {
  color: var(--dark);
  background-color: var(--yellow);
}

.small-font {
  padding: 12px 2.25em;
  font-size: 14px;
  font-weight: 600;
}

.btn-theme:hover {
  background-color: var(--theme-color);
  color: var(--white) !important;
}

.btn-accent-outline {
  border-color: var(--black);
  color: var(--black);
  background-color: transparent;
}

.btn-accent-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white);
}

.button-box {
  text-align: center;
  padding: 45px 0;
}

.post-sec .button-box .button {
  min-width: 400px;
  min-height: 55px;
  font-size: 16px;
}

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
}

.overlay2 {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
}

.sec-head {
  margin-bottom: 35px;
}

.sec-head h3,
.sec-head-home h3 {
  font-weight: 600;
}

.sec-head-home {
  margin-bottom: 15px;
}

.button-box-home {
  margin-top: 22px;
}

.btn-whatsapp-pulse {
  background: #15af4e;
  color: white;
  position: fixed;
  bottom: 65px;
  right: 20px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 20px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  z-index: 9;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 209, 83, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* ----------------------------------------------------------------------
## Navbar
------------------------------------------------------------------------ */
.navbar {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  text-align: center;
  transition: all 0.5s;
}

.navbar-brand img {
  width: 150px;
  height: 85px;
  object-fit: cover;
}

.navbar ul li a {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: normal;
  font-style: normal;
  font-family: 'Inter';
  color: var(--white) !important;
  transition: all 0.4s;
  position: relative;
}

.navbar ul li a.active,
.navbar ul li a:hover {
  color: var(--yellow) !important;
}

.navbar ul li a.active::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 3px;
  background-color: var(--yellow);
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  background-color: var(--navbar);
}

/* ----------------------------------------------------------------------
## footer Section
------------------------------------------------------------------------ */
footer {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  position: relative;
  background-color: var(--navbar);
  color: var(--white);
  font-size: 13px;
  margin-top: 80px;
}

.foot-inner {
  padding: 35px 0;
}

.foot-about h4 {
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 400;
}

.foot-about p {
  max-width: 350px;
  font-weight: lighter;
}

.foot-nav ul {
  padding-left: 0;
}

.foot-nav ul li {
  list-style: none;
}

.foot-nav ul li a {
  font-weight: lighter;
}

.foot-nav ul li i {
  margin-right: 8px;
}

.foot-bottom {
  margin-top: 45px;
  border-top: 1px solid var(--white);
  text-align: center;
}

.copy-box,
.foot-social-box {
  padding-top: 25px;
}

.foot-social-box a {
  margin-left: 10px;
}

.foot-social-box a img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: none;
  background-color: var(--yellow);
  color: var(--black);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  z-index: 999;
}

.back-to-top:hover {
  background-color: var(--dark);
  color: var(--white);
}

/* ----------------------------------------------------------------------
## hero Section
------------------------------------------------------------------------ */
.hero-sec {
  background-color: var(--theme-color);
  width: 100%;
  min-height: 524px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ----------------------------------------------------------------------
## Home Page
------------------------------------------------------------------------ */
.hero-item {
  width: 100%;
  min-height: 560px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-item .hero-box {
  max-width: 100%;
}

.hero-item .hero-box p {
  max-width: 500px;
}

.owl-dots {
  text-align: center;
  padding-top: 0;
  top: -55px;
  position: relative;
}

.owl-dots button.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: var(--white);
  margin: 0 3px;
}

.owl-dots button.owl-dot.active {
  background-color: var(--yellow);
}

.owl-dots button.owl-dot:focus {
  outline: none;
}

.demo-class-sec,
.about-sec,
.home-courses-sec,
.home-syllabus-sec,
.home-feature-sec,
.home-book-sec,
.home-events-sec {
  margin: 80px 0 0;
}

.demo-class-img img {
  width: 100%;
  height: 327px;
  object-fit: cover;
}

.about-sec {
  background-color: var(--navbar);
  width: 100%;
  /* min-height: 450px; */
  padding: 60px 0;
  /* margin: 60px 0; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-sec-box {
  max-width: 650px;
  color: var(--white);
}

.about-sec-box p {
  color: var(--light-gray);
  margin-bottom: 12px;
}

.about-sec-box-text {
  padding: 10px 0;
}

.arrow-icon {
  padding: 9px 2.25em;
}

.arrow-icon span {
  padding-left: 8px;
  padding-top: 3px;
}

.arrow-icon span i {
  font-size: 18px;
}

.courses-slide-box-img {
  position: relative;
  overflow: hidden;
}

.courses-slide-box-img .overlay2 {
  top: 0;
}

.courses-slide-box-img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 8px;

}

.courses-slide-box-img-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--body);
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  /* align-items: center;   */
  line-height: 40px;

}

.courses-slide-box-img-icon a {
  color: var(--black);
  font-size: 16px;
}

.courses-slide-box-img-icon a:hover {
  color: var(--yellow);
}

.courses-slide-box-img-offer {
  position: absolute;
  top: 15px;
  left: -28px;
  transform: rotate(-35deg);
  background-color: #d80000;
  border: 2px solid #d80000;
  padding: 3px 50px;
  font-size: 16px;
  font-weight: 900;
  border-radius: 4px;
  letter-spacing: 1px;
  color: var(--white);
}

.courses-slide-box-text {
  padding: 15px 0;
}

.courses-slide-box-text h6 a {
  color: var(--dark);
}

.courses-slide-box-text h6 a:hover {
  color: var(--theme-color);
}

.courses-slide-box-text p {
  font-size: 14px;
}

p .off-price {
  text-decoration: line-through;
  text-decoration-color: #909090;
  color: #909090;
}

p .price {
  color: var(--dark);
  font-weight: 600;
}

#courses-slider {
  padding-top: 30px;
}

.home-courses-sec .owl-nav,
.home-syllabus-sec .owl-nav,
.home-events-sec .owl-nav,
.home-book-sec .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
}

.home-courses-sec .owl-nav button,
.home-syllabus-sec .owl-nav button,
.home-events-sec .owl-nav button,
.home-book-sec .owl-nav button {
  background: var(--white) !important;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  line-height: 31px !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.5);
}

.home-courses-sec .owl-nav button span,
.home-syllabus-sec .owl-nav button span,
.home-events-sec .owl-nav button span,
.home-book-sec .owl-nav button span {
  font-size: 45px;
  color: var(--black);
  transition: all 0.5s;
}

.home-courses-sec .owl-nav button span:hover,
.home-syllabus-sec .owl-nav button span:hover,
.home-events-sec .owl-nav button span:hover,
.home-book-sec .owl-nav button span:hover {
  color: var(--yellow);
}

.home-courses-sec .owl-nav .owl-next,
.home-syllabus-sec .owl-nav .owl-next,
.home-events-sec .owl-nav .owl-next,
.home-book-sec .owl-nav .owl-next {
  position: absolute;
  right: -18px;
}

.home-courses-sec .owl-nav .owl-prev,
.home-syllabus-sec .owl-nav .owl-prev,
.home-events-sec .owl-nav .owl-prev,
.home-book-sec .owl-nav .owl-prev {
  position: absolute;
  left: -18px;
}

.courses-slide-box-text .button-box-home {
  margin-top: 12px;
}

.courses-slide-box-text .arrow-icon {
  padding: 5px 1.5em;
  font-size: 12px;
  letter-spacing: 1px;
}

.syllabus-box-main {
  margin-top: 25px;
}

.syllabus-box-main .syllabus-box-img img {
  width: 100%;
  height: 324px;
  object-fit: cover;
}

.syllabus-box-main .syllabus-box-info {
  display: flex;
  padding-top: 10px;
  justify-content: space-between;
}

.syllabus-box-main .button-box-home {
  margin-top: 5px;
}

.syllabus-box-main .arrow-icon {
  padding: 5px 1.5em;
  font-size: 12px;
  letter-spacing: 1px;
}

.home-feature-sec .bg-white {
  padding: 40px;
}

.feature-box-main {
  border: 1px solid #EDEDED;
  border-radius: 8px;
  margin-top: 30px;
}

.feature-box-main .feature-box-head {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #EDEDED;
}

.feature-box-main .feature-box-head .feature-box-head-img {
  background-color: var(--yellow);
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  align-self: center;
}

.feature-box-main .feature-box-head .feature-box-head-text {
  padding-left: 12px;
  align-self: center;
}

.feature-box-main .feature-box-body {
  padding: 12px;
}

.feature-box-main .feature-box-body a {
  color: var(--black);
}

.feature-box-main .feature-box-body a:hover {
  color: var(--yellow);
}

.home-book-sec .bg-white {
  padding: 40px;
  margin-top: 40px;
}

.books-big-img-box {
  position: relative;
}

.books-big-img-box img {
  width: 100%;
  height: auto;
}

.books-big-img-box-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--body);
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  line-height: 40px;
}

.books-big-img-box-icon a {
  color: var(--black);
  font-size: 16px;
}

.books-big-img-box-icon a:hover {
  color: var(--yellow);
}

.books-img-box {
  display: flex;
  justify-content: space-evenly;
}

.books-img-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  padding: 0 10px 15px;
}

.book-text-box-head {
  display: flex;
  padding-top: 10px;
  color: var(--black);
}

.book-text-box-head span {
  background-color: var(--yellow);
  padding: 0 12px;
  line-height: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 10px;
  border-radius: 5px;
  letter-spacing: 1px;
}

.book-text-box-descrp {
  padding: 10px 0;
  color: #A1A1A1;
}


.counter-sec {
  min-height: 350px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px 0;
  background-attachment: fixed;
  margin: 50px 0;
}

.counter-sec::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.counter-sec .sec-head-home {
  position: relative;
  color: var(--white);
  padding-bottom: 45px;
}

.count-box {
  text-align: center;
  position: relative;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding-bottom: 25px;
}

.count-box span {
  color: var(--yellow);
  font-size: 55px;
}

.count-box span::after {
  content: " +";
  display: inline-block;
}











.event-home-main-box {
  background-color: var(--white);
  padding: 12px 8px;
  margin-top: 25px;
  border-radius: 10px;
  display: flex;
}

.event-home-main-box .event-home-main-box-img {
  min-width: 30%;
  border-radius: 5px;
}

.event-home-main-box .event-home-main-box-img img {
  border-radius: 5px;
}

.event-home-main-text-box {
  padding-left: 11px;
}

.event-home-main-text-box h6 {
  font-size: 14px;
}

.event-home-main-text-box p {
  font-size: 12px;
  line-height: 20px;
  margin-top: 8px;
}

.event-home-main-box .button-box-home {
  margin-top: 15px;
}

.event-home-main-box .arrow-icon {
  padding: 5px 20px;
  font-size: 12px;
}

.event-home-main-box-meta p {
  font-size: 10px;
}

.event-home-main-box-meta p img {
  width: 11px !important;
  height: 11px !important;
  display: unset !important;
}

/* ----------------------------------------------------------------------
## About Page
------------------------------------------------------------------------ */
.hero-box {
  max-width: 500px;
  text-align: center;
  position: relative;
  color: var(--white);
  font-size: 14px;
}

.hero-box h1 {
  margin-bottom: 20px;
}

.hero-box p {
  color: var(--light-gray);
  font-weight: 300;
  font-size: 13px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.sec-pad {
  padding: 40px 0 30px;
}

.about-img-box,
.about-desc-box {
  margin-bottom: 10px;
}

.about-desc-box h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

/* ----------------------------------------------------------------------
## Gallery Page
------------------------------------------------------------------------ */
.gal-box-main {
  margin-bottom: 20px;
}

.gal-box-main .gal-box-img img {
  width: 100%;
  height: 324px;
  object-fit: cover;
}

.gal-box-main .gal-box-info {
  padding: 8px 5px 0;
  display: flex;
  justify-content: space-between;
}

.gal-box-main .gal-box-info h6 {
  font-size: 16px;
}

.staff-box-main {
  margin-bottom: 20px;
}

.staff-box-main .staff-box-info {
  padding: 8px 5px 0;
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

/* ----------------------------------------------------------------------
## Certificate Page
------------------------------------------------------------------------ */
.hero-box-text .hero-box {
  text-align: left;
}

.hero-box-img {
  position: relative;
}

.hero-box-img .img-1 {
  float: right;
}

.hero-box-img .img-2 {
  position: absolute;
  top: 150px;
  left: 9px;
}

.thumb {
  margin-bottom: 25px;
  position: relative;
  border: 3px solid var(--yellow);

}

.thumb img.zoom {
  width: 100%;
  height: 200px;
  border-radius: 5px;
  object-fit: cover;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;

}

.thumb .thumb-hover {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s;
  color: var(--white);
}

.thumb:hover .thumb-hover {
  opacity: 1;
}

/* ----------------------------------------------------------------------
## Course Inner Page
------------------------------------------------------------------------ */
.single-course-img {
  padding: 8px 0;
}

.single-course-img img {
  border-radius: 8px;
}

.single-course-descrp {
  color: var(--dark);
}

.single-course-form {
  padding-top: 25px;
}

.course-listing-sec .courses-slide-box {
  margin-bottom: 25px;
}

/* ----------------------------------------------------------------------
## Books Inner Page
------------------------------------------------------------------------ */
.single-book-box-img {
  display: flex;
}

.single-book-box-img img {
  padding: 10px;
}

/* ----------------------------------------------------------------------
## Books Inner Page
------------------------------------------------------------------------ */
.cntact-sec {
  padding: 5rem 0;
}

.form-control {
  height: 36px;
  background: #fff;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  border-radius: 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.3) !important;
}

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.3) !important;
}

.form-control:-ms-input-placeholder {
  /* IE 0+ */
  color: rgba(0, 0, 0, 0.3) !important;
}

.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.3) !important;
}

.form-control:focus,
.form-control:active {
  border-color: var(--navbar) !important;
}

textarea.form-control {
  height: inherit !important;
}

.wrapper {
  width: 100%;
}

.contact-wrap {
  background: #fff;
}

@media (max-width: 767.98px) {
  .info-wrap {
    height: 400px;
  }
}

.dbox {
  width: 100%;
  margin-bottom: 25px;
}

@media (max-width: 767.98px) {
  .dbox {
    margin-bottom: 25px !important;
    padding: 0 20px;
  }
}

.dbox p {
  margin-bottom: 0;
}

.dbox p span {
  font-weight: 500;
  color: #000;
}

.dbox p a {
  color: var(--navbar);
}

.dbox p a:hover {
  color: var(--theme-color);
}

.dbox .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navbar);
  margin: 0 auto;
  margin-bottom: 20px;
}

.dbox .icon span {
  font-size: 20px;
  color: #fff;
}

.dbox .text {
  width: 100%;
}



.contactForm .label {
  color: #000;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.contactForm .form-control {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
}

#contactForm .error {
  color: red;
  font-size: 12px;
}

#contactForm .form-control {
  font-size: 16px;
}

#message {
  resize: vertical;
}

#form-message-warning,
#form-message-success {
  display: none;
}

#form-message-warning {
  color: red;
}

#form-message-success {
  color: #28a745;
  font-size: 18px;
  font-weight: 500;
}

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-size: 16px;
  font-weight: bold;
}




/* ===================== Testimonials =============================== */
.testimonial-sec {
  padding: 100px 0 10px;
  text-align: center;
}

.testimonial-sec .sec-head {
  max-width: 550px;
  margin: 0 auto;
}

/* #testimonial-slider{
  padding-top: 45px;
  overflow:visible !important;
} */
.testimonial-box {
  border-radius: 15px 0 15px;
  background: #ddfaf6;
  padding: 20px;
  font-size: 12px;
  color: var(--heading);
  line-height: 20.652px;
  position: relative;
  margin-top: 100px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;

}

.testimonial-box .testimonial-box-img {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, 100%);
}

.testimonial-box .testimonial-box-img img {
  width: 63px;
  height: 63px;
  border-radius: 100%;
  object-fit: cover;
}

.testimonial-box p {
  margin: 30px 0 20px;
}

.testimonial-box h6 {
  color: var(--orange);
  font-size: 14px;
}

.testimonial-sec .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

.testimonial-sec .owl-nav button {
  background: var(--white);
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  line-height: 31px !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.5);
  transition: all 0.4s;
}

.testimonial-sec .owl-nav button:hover span {
  color: var(--orange) !important;
}

.testimonial-sec .owl-nav button span {
  font-size: 45px;
  color: var(--black);
  transition: all 0.5s;
}

.testimonial-sec .owl-nav .owl-next {
  position: absolute;
  right: -18px;
}

.testimonial-sec .owl-nav .owl-prev {
  position: absolute;
  left: -18px;
}