@font-face {
  font-family: "AmaticSC-Bold";
  src: url("../fonts/AmaticSC-Bold.eot");
  src: url("../fonts/AmaticSC-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/AmaticSC-Bold.svg#AmaticSC-Bold") format("svg"),
    url("../fonts/AmaticSC-Bold.ttf") format("truetype"),
    url("../fonts/AmaticSC-Bold.woff") format("woff"),
    url("../fonts/AmaticSC-Bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "AmaticSC-Regular";
  src: url("../fonts/AmaticSC-Regular.eot");
  src: url("../fonts/AmaticSC-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/AmaticSC-Regular.svg#AmaticSC-Regular") format("svg"),
    url("../fonts/AmaticSC-Regular.ttf") format("truetype"),
    url("../fonts/AmaticSC-Regular.woff") format("woff"),
    url("../fonts/AmaticSC-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}
/* .scroll-element::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: red;
  transform: translateY(var(--scroll-y, 0px));
  transition: transform 0.05s linear;
  z-index: 1000;
  pointer-events: none;
} */
.scroll-element .sb-cloud {
  content: "";
  position: fixed;
  top: -130px;
  left: -1570px;
  width: 1000%;
  background-image: url(../images/single-clouds.webp);
  background-size: 1430px;
  background-repeat: repeat-x;
  height: 600px;
  transform: translateX(var(--scroll-x, 0px));
  transition: transform 0.05s linear;
  z-index: 1;
  pointer-events: none;
}
.scroll-element .sun {
  content: "";
  position: fixed;
  opacity: 0;
  top: 0;
  left: 46%;
  width: 110px;
  height: 247%;
  object-fit: contain;
  object-position: top;
  transform: rotate(-190deg);
  transform: rotate(var(--scroll-x, 12deg));
  transition: transform 0.05s linear;
  z-index: 1;
  pointer-events: none;
}
.scroll-element.active .sun {
  opacity: 1;
}
.scroll-element .sb-cloud2 {
  position: fixed;
  max-width: 400px;
  bottom: 190px;
  left: -260px;
  transform: translateX(var(--scroll-x, 0px));
  transition: transform 0.05s linear;
}
.sb-grass {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 9;
}
.scroll-element .sb-ballon,
.scroll-element .sb-ballon2,
.scroll-element .sb-ballon3 {
  position: fixed;
  width: 90px;
  height: auto;
  opacity: 0;
  animation: circle-move 10s linear infinite; /* Apply the animation */
}
.scroll-element.active .sb-ballon,
.scroll-element.active .sb-ballon2,
.scroll-element.active .sb-ballon3 {
  opacity: 1;
  transition: 0.4s;
}
.scroll-element .sb-ballon {
  right: 130px;
  left: auto;
  top: 160px;
  bottom: auto;
  z-index: 5;
}
.scroll-element .sb-ballon2 {
  right: 32%;
  left: auto;
  top: 15%;
  bottom: auto;
  animation-delay: 1.5s;
}

.scroll-element .sb-ballon3 {
  bottom: 130px;
  left: 60px;
  animation-delay: 3s;
}
@keyframes circle-move {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(30deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.sb-content {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}
.sb-content:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(136, 213, 237, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.content-wrapper {
  position: relative;
  z-index: 99;
  overflow: hidden;
}
.sb-row {
  width: 90%;
  margin: auto;
}
.sb-container {
  width: 100%;
}
.sb-flex {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
.sb-row .column-50 {
  width: 49%;
}
.sb-row .column-25 {
  width: 24%;
}
.sb-row .column-65 {
  width: 64%;
}
.sb-row .column-35 {
  width: 34%;
}
.sb-row .column-100 {
  width: 100%;
}
.sb-d-none-lg {
  display: none !important;
}
.sb-w-100 {
  width: 100%;
  max-width: -webkit-fill-available;
}
.sb-j-center {
  justify-content: center;
}
.sb-j-end {
  justify-content: end;
}
.sb-j-between {
  justify-content: space-between;
}
.sb-align-content-center {
  align-content: center;
}
.sb-m-block-0 {
  margin-block: 0;
}
.sb-content a {
  text-decoration: none;
}
.heading {
  font-family: "AmaticSC-Bold";
  font-weight: 500;
  font-size: 67px;
  margin: 0;
  color: #000;
}
.sub-text {
  font-family: "Roboto", sans-serif;
}
.sb-section {
  padding: 80px 0;
}
.btn {
  background-color: #009b4f;
  padding: 20px 15px;
  color: white;
  font-size: 20px;
  border-radius: 50px;
  transition: 0.3s;
  font-family: BerlinFont;
}
.btn:hover {
  background-color: #fff;
  color: #009b4f;
}
/* header */
.top-header {
  padding: 10px 0px;
}
.sb-menu {
  background-color: #009b4f;
  padding: 10px 0;
}
.sb-menu ul {
  list-style: none;
  padding: 0;
}
.sb-menu ul li a {
  color: #000;
  background-color: #aee1f2;
  padding: 5px 30px;
  display: block;
  text-transform: capitalize;
  font-weight: 600;
  min-width: 54px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 2px 2px #ffffff;
  font-size: 18px;
}
.sb-main-header .phone {
  background-color: #009b4f;
  padding: 20px 15px;
  color: white;
  border-radius: 50px;
  display: grid;
  gap: 10px;
  grid-template-columns: 0.2fr 1fr;
  align-items: center;
  width: fit-content;
  float: right;
}
.sb-main-header .phone p {
  font-weight: 600;
  font-size: 20px;
  font-family: BerlinFont;
}
.sb-main-header .main-logos,
.sb-main-header .anniversary {
  height: 70px;
  object-fit: contain;
}
.sb-main-header .anniversary {
  width: auto;
  margin: 0 0 0 auto;
  float: right;
}
#menuToggle input {
  display: none;
}
/* header end */

/* Banner */
.sb-banner {
  padding: 0 0 80px;
}
.sb-banner .form-blk .input-field,
.sb-banner .form-blk .input-field {
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
}
.sb-banner .form-column {
  align-content: center;
}
.sb-banner .form-column .sub-heading {
  color: #01964a !important;
}
.enquiry-form-wrap {
  position: relative;
}
.enquiry-form-wrap .mascot {
  position: absolute;
  height: 130px;
  object-fit: contain;
  bottom: -23px;
  z-index: 44;
  right: -32px;
  width: auto;
  animation: mascot 6s infinite linear;
}
@keyframes mascot {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(10px) rotate(10deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-10deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
.enquiry-form-wrap .sb-ballon {
  position: absolute;
  top: -40px;
  right: -40px;
  width: auto;
  height: 200px;
  z-index: -1;
}
.enquiry-form-wrap .sb-ballon2 {
  position: absolute;
  top: 40%;
  right: -20px;
  width: auto;
  height: 200px;
  z-index: -1;
  transform: rotate(45deg);
}
.enquiry-form-wrap:before {
  content: "";
  background-image: url(../images/form-kid.webp);
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  position: absolute;
  left: -160px;
  top: -10px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.enquiry-form-wrap:after {
  content: "";
  background-image: url(../images/form-kid-hand.webp);
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  position: absolute;
  left: -101px;
  top: 45px;
  width: 32%;
  height: 69%;
  z-index: 2;
  animation: formhand 6s infinite linear;
}
@keyframes formhand {
  0% {
    transform: rotate(0deg) translateX(0px);
  }
  25% {
    transform: rotate(-10deg) translateX(3px) translateY(-3px);
  }
  50% {
    transform: rotate(0deg) translateX(0px);
  }
  75% {
    transform: rotate(10deg) translateX(-3px) translateY(7px);
  }
  100% {
    transform: rotate(0deg) translateX(0px);
  }
}
.sb-banner .heading-column h2.heading {
  padding-bottom: 70px;
  padding-top: 30px;
}
.sb-banner .heading-column .kids {
  max-width: 750px;
  margin-right: 0;
  margin-left: auto;
  display: flex;
}
span.kid-image {
  position: relative;
}
span.kid-image:before {
  content: "";
  position: absolute;
  left: 48px;
  bottom: 60px;
  width: 34%;
  height: 353px;
  background-image: url(../images/ballon-blue.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
span.kid-image:after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -99px;
  width: 34%;
  height: 353px;
  background-image: url(../images/elements-circle.webp);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
/* Banner end */

/* About  */
.sb-section.about .heading-column {
  padding-bottom: 50px;
}
.sb-section.about .about-image-display .column {
  width: 29%;
  position: relative;
}
.sb-section.about .about-image-display .column.mid {
  width: 39%;
  position: relative;
}
.sb-section.about .about-image-display .cloud-cnt {
  max-width: 230px;
  filter: drop-shadow(5px 6px 12px #00000057);
  position: absolute;
  animation: cloudwave 6s infinite;
  animation-delay: calc(0.3s * var(--i));
}

@keyframes cloudwave {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.sb-section.about .about-image-display .column.first .cloud-cnt:nth-child(1) {
  bottom: 50px;
  left: 90px;
  max-width: 290px;
}
.sb-section.about .about-image-display .column.first .cloud-cnt:nth-child(2) {
  top: 0;
  right: -90px;
  max-width: 290px;
}
.sb-section.about .about-image-display .column.third .cloud-cnt:nth-child(1) {
  left: -80px;
}
.sb-section.about .about-image-display .column.third .cloud-cnt:nth-child(2) {
  bottom: 30px;
  right: 16%;
  max-width: 290px;
}
.sb-section.about .about-image-display .column.third .cloud-cnt:nth-child(3) {
  right: 0;
}
.sb-section.about .heading-column .sub-text {
  font-size: 20px;
  font-weight: 400;
  width: 80%;
}
.cambridge .box .sub-text {
  font-size: 20px;
  font-weight: 400;
}
/* About end */

/* Age criteria */
.age-criteria .heading-column {
  padding: 0px 0px 120px;
}
.age-criteria .heading-column .sub-text {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
}

.sb-table table {
  border-spacing: 0;
  border-collapse: separate;
  border-radius: 23px;
  border: 3px solid #009b4f;
  width: 100%;
  text-align: center;
}

.sb-table table th:not(:last-child),
.sb-table table td:not(:last-child) {
  border-right: 3px solid #009b4f;
}

.sb-table table > thead > tr:not(:last-child) > th,
.sb-table table > thead > tr:not(:last-child) > td,
.sb-table table > tbody > tr:not(:last-child) > th,
.sb-table table > tbody > tr:not(:last-child) > td,
.sb-table table > tfoot > tr:not(:last-child) > th,
.sb-table table > tfoot > tr:not(:last-child) > td,
.sb-table table > tr:not(:last-child) > td,
.sb-table table > tr:not(:last-child) > th,
.sb-table table > thead:not(:last-child),
.sb-table table > tbody:not(:last-child),
.sb-table table > tfoot:not(:last-child) {
  border-bottom: 3px solid #009b4f;
}

.age-criteria .sb-table {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgba(214, 236, 249, 1) 35%
  );
  padding: 30px;
  border-radius: 23px;
  width: 60%;
  margin: auto;
  position: relative;
  box-shadow: 0px 43px 26px -43px black;
}

.sb-table table > tbody > tr:not(:last-child) > th {
  width: 40%;
}
.sb-table table tbody tr th.first {
  width: 20%;
}
.sb-table table th {
  font-size: 20px;
  padding: 8px 18px;
}
.sb-table table tr td {
  font-size: 20px;
  padding: 17px;
  font-weight: 400;
}
.sb-table::before {
  content: "";
  width: 46px;
  height: 49px;
  position: absolute;
  left: -12px;
  top: -12px;
  background: url(../images/form-flower.webp);
  z-index: 3;
  background-size: contain;
  background-repeat: no-repeat;
  animation: flower 20s infinite linear;
}
@keyframes flower {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.sb-table table > tbody > tr > td {
  position: relative;
}
.sb-table table > tbody > tr:nth-child(even) > td:nth-child(2):after {
  content: "";
  width: 100%;
  height: 65px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/bee-peeping.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(68px, 4px);
}
.sb-table table > tbody > tr:nth-child(odd) > td:nth-child(2):before {
  content: "";
  width: 100%;
  height: 65px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/bee-peeping.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-68px, 4px) scaleX(-1);
}
.sb-bee {
  position: absolute;
  right: -140px;
  top: -180px;
}
.sb-bee img {
  max-width: 290px;
  z-index: -1;
  position: relative;
}
.sb-bee:after {
  content: "";
  background: url(../images/sb-bee-hands.webp);
  position: absolute;
  right: 130px;
  top: 162px;
  width: 70px;
  height: 30%;
  background-size: contain;
  background-repeat: no-repeat;
}
/* Age Criteria end */

/* learning process */

.l-process .box {
  height: 100%;
  padding-top: 20px;
  border-radius: 30px;
  object-fit: cover;
  min-height: 455px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.l-process .heading-column {
  padding-bottom: 40px;
}
.l-process .box .number {
  text-align: end;
  padding: 0 20px;
  font-family: "AmaticSC-Bold";
  font-size: 24px;
  line-height: 24px;
  width: 100%;
}
.l-process .box .number:before {
  content: ".";
}
.l-process .box .heading {
  font-size: 48px;
  line-height: 48px;
  padding: 0 20px 10px 20px;
}
.l-process .sub-text {
  font-size: 36px;
  font-family: "AmaticSC-Bold";
}
.l-process .box .content {
  padding: 0 20px;
}
.l-process .box:nth-child(1) {
  background: #02fff6;
}
.l-process .box:nth-child(2) {
  background: #32ff7a;
}
.l-process .box:nth-child(3) {
  background: #d4e2ff;
}
.l-process .box:nth-child(4) {
  background: #ffeaa9;
}
.l-process .btn-col {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}
/* learning process end */

/* Awards */
.awards .row-1,
.awards .row-2 {
  width: 60%;
}
.awards .row-1 .award-image {
  border: 15px solid #f1da56;
  width: -webkit-fill-available;
}
.awards .row-1 .text {
  font-size: 28px;
  max-width: 260px;
  text-align: center;
  margin: 0 auto;
}
.awards .row-1 .text .color {
  color: #32903c;
}
.awards .row-1 .award-icon {
  max-width: 100px;
  padding-left: 50px;
  display: flex;
  margin: auto;
}
.awards .row-2 {
  width: 60%;
  margin-top: -85px;
  align-items: center;
}
.award-image-1 {
  border: 15px solid #8dcd9a;
  height: 320px;
  object-fit: cover;
}
.awards .row-2 .element-col {
  position: relative;
}
.awards .row-2 .element-col:after {
  content: "";
  position: absolute;
  width: 70%;
  height: 100%;
  right: -45px;
  bottom: -45px;
  background: url(../images/image-element.webp);
  background-size: contain;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: bottom;
}
.awards .row-2 .education {
  filter: drop-shadow(6px 8px 7px #00000038);
}
/* Awards end */

/* Life  */

.sb-section.life .waviy {
  position: relative;
  display: flex;
}
.waviy .img-heading {
  max-width: 300px;
}
.sb-section.life .waviy span img {
  max-height: 77px;
  height: auto;
  -webkit-max-height: 77px;
  overflow: hidden;
}
.sb-section.life .waviy span {
  position: relative;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  animation: waviy 1s infinite;
  animation-delay: calc(0.1s * var(--i));
}
@keyframes waviy {
  0%,
  40%,
  100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
}
.sb-section.life .waviy span:nth-child(3) {
  bottom: 10px;
}
.sb-section.life .waviy span:nth-child(4) {
  bottom: 33px;
}
.sb-section.life .waviy span:nth-child(5) {
  bottom: 23px;
  padding-left: 29px;
}
.sb-section.life .waviy span:nth-child(6) {
  bottom: 31px;
  left: -20px;
}
.sb-section.life .sb-row.imag-col {
  padding: 66px 0 0;
}
.sb-section.life .sb-row.imag-col .dspl-img {
  max-height: 490px;
  object-fit: contain;
}

/* Life end */

/* Cambridge */
.cambridge .box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding-top: 20px;
}
.cambridge .box .img-logo {
  background-color: white;
  padding: 9px;
  border-radius: 10px;
  border: 1px solid #000;
  max-width: 280px;
  height: 130px;
  object-fit: contain;
  width: auto;
}
/* Cambridge end */
/* Learning */

.learning-row {
  padding-top: 100px;
  column-gap: 45px;
  row-gap: 10px;
  position: relative;
  justify-content: space-between;
}
.learning-row .box {
  background-color: #fff;
  box-shadow: 2px 4px 17px #00000052;
  border-radius: 33px;
  width: 22%;
  height: fit-content;
}
.learning-row .box .title-box {
  background-color: #e06a35;
  border-radius: 32px;
  position: relative;
}
.learning-row .box .title-box img {
  scale: 0.95;
  height: auto;
  object-fit: contain;
}
.learning-row .box .title {
  background: #c93c18;
  padding: 10px 20px;
  border-radius: 13px;
  text-align: center;
  color: white;
  font-size: 23px;
  width: 69%;
  margin: 0;
  position: absolute;
  left: 8%;
  bottom: -14px;
}
.learning-row .box .text {
  margin: 0;
  padding: 30px 15px 20px;
}
.learning-row .box:nth-child(2),
.learning-row .box:nth-child(3) {
  margin-top: -60px;
}
.learning-row .box:nth-child(2) .title-box img {
  scale: 1.03;
  transform: translateX(12px);
}
.learning-row .box:nth-child(2) .title-box {
  background-color: #954dac;
}
.learning-row .box:nth-child(2) .title {
  background: #7f1d90;
}
.learning-row .box:nth-child(3) .title-box {
  background-color: #f47937;
}
.learning-row .box:nth-child(3) .title {
  background: #f04823;
}
.learning-row .box:nth-child(4) .title-box {
  background-color: #db3aa5;
}
.learning-row .box:nth-child(4) .title {
  background: #ec0577;
}
.learning-row .box:nth-child(3) .title-box img {
  scale: 1.33;
  transform: translateX(10px) translateY(-5px);
  padding-top: 26px;
  padding-bottom: 26px;
}
.learning-row .alert {
  position: absolute;
  transform: rotate(270deg);
  bottom: 70px;
  right: -80px;
  z-index: 9;
}
/* Learning end */

/* Testimonials */
.testimonials .item {
  background-color: #fff;
  border-radius: 31px;
  padding: 16px;
  margin-top: 30px;
  margin-left: 9px;
  box-shadow: 3px 3px 13px #0000004d;
  min-height: 200px;
}
.testimonials .item:after {
  content: "";
  background-color: #ffffff;
  width: 120px;
  height: 120px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  transform: rotate(79deg);
  bottom: -40px;
  border-radius: 16px;
  clip-path: polygon(75% 0, 58% 89%, 103% 100%);
  z-index: 2;
  left: 50px;
}
.testimonials .item .check svg {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 30px;
  fill: #f9b30d;
  position: absolute;
  top: 0px;
  left: 0;
}
.testimonials .item .check {
  transform: translate(-26px, -40px);
}
.testimonials .item.margin {
  transform: translateY(60px);
}
.testimonials .item .star {
  text-align: center;
}
.testimonials .item .star svg {
  width: 26px;
  height: 26px;
}
.testimonials .item .text {
  font-size: 14px;
  color: #353535;
}
.testimonials .item.active:nth-child(1) {
  margin-top: 80px;
}
.testimonials .item .author {
  font-size: 18px;
  margin: 0;
  text-align: end;
  padding: 8px 0px;
  color: #f9b30d;
}
.testimonials .item .grade {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  text-align: end;
}
.testimonials .owl-stage {
  padding-bottom: 80px;
}
.testimonials .item.yellow .star svg path,
.testimonials .item.yellow .check svg,
.testimonials .item.yellow .author {
  fill: #f9b30d;
  color: #f9b30d;
}
.testimonials .item.orange .star svg path,
.testimonials .item.orange .check svg,
.testimonials .item.orange .author {
  fill: #f47215;
  color: #f47215;
}
.testimonials .item.blue .star svg path,
.testimonials .item.blue .check svg,
.testimonials .item.blue .author {
  fill: #5dc5f0;
  color: #5dc5f0;
}
.testimonials .item.pink .star svg path,
.testimonials .item.pink .check svg,
.testimonials .item.pink .author {
  fill: #ec0874;
  color: #ec0874;
}
#sb-content .testimonials-sec .testimonials .owl-prev,
#sb-content .testimonials-sec .testimonials .owl-next {
  background-color: white;
  padding: 9px !important;
  border-radius: 6px;
}
.testimonials-sec .testimonials .owl-prev span,
.testimonials-sec .testimonials .owl-next span {
  font-size: 30px;
  line-height: 0;
}
/* Testimonials end */

/* footer */
.sb-footer {
  padding-bottom: 50px;
}
.sb-footer-menu ul {
  list-style: none;
  background-color: #fff;
  border-radius: 20px;
  justify-content: center;
  padding: 0;
  border: 1px solid #00a651;
  white-space: nowrap;
}
.sb-footer-menu ul li {
  padding: 10px 14px;
  border-right: 1px solid #00a651;
  text-align: center;
}
.sb-footer-menu ul li:nth-last-child(1) {
  border-right: 0px solid #00a651;
}
.sb-footer-menu ul li a {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}
.sb-footer .heading-column {
  padding-bottom: 30px;
  text-align: center;
}
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #009b4f00;
  color: #fff;
  border: none;
  opacity: 0;
  border-radius: 50%;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  transition: opacity 0.3s ease;
  width: 100px;
  height: 130px;
  animation: 2s ease-in-out infinite alternate swing;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
#backToTop img {
  width: 100%;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
}
#backToTop .scrolltop-text {
  color: #ffffff;
}

/* Footer end */
