:root {
  --red: #ff3838;
  --blue: #1494a9;
  --black: #000000;
  --white: #ffffff;
  --green: #11b76b;
  --gray-1: #fafcff;
  --gray-2: #f5f5f5;
  --gray-3: #ececec;
  --purple: #b12fad;
  --orange: #e86121;
  --yellow: #ffb100;
  --indigo: #6610f2;
  --body: #f8f7f6;
  --line: #E6E6E6;
  --border: #E3E2E1;
  --primary: #FA5E01;
  --secondary: #0C1028;
  --text-black: #41403F;
  --text-slate: #ECECEC;
  --primary-slate: #FFF9F5;
  --facebook: #3b5998;
  --linkedin: #0e76a8;
  --twitter: #00acee;
  --google: #E60023;
  --instagram: #F77737;
  --whatsapp: #25D366;
  --pinterest: #f0002a;
  --youtube: #FF0000;
}

* {
  margin: 0px;
  padding: 0px;
  outline: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
  display: inline-block;
}
a:hover {
  text-decoration: none;
}

ul,
ol {
  padding: 0px;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0px;
}

p,
ol,
ul,
li,
span,
label {
  margin-bottom: 0px;
}

svg,
span {
  display: inline-block;
}

html,
body {
  color: var(--secondary);
  background: var(--body);
  direction: ltr;
  scroll-behavior: smooth;
}

input,
select,
button,
textarea {
  border: none;
  outline: none;
}
input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

.text-50 {
  font-size: 50px;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.ml-auto {
  margin-left: auto;
}

.p-48 {
  padding: 48px;
}

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

.container {
  padding-inline: 16px;
}

body {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 575px) {
  body {
    font-size: 16px;
    line-height: 28px;
  }
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-size: 14px;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  font-size: 14px;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-size: 14px;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  font-size: 14px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 50px;
}
@media (max-width: 575px) {
  h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
}
@media (max-width: 575px) {
  h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
@media (max-width: 575px) {
  h4 {
    font-size: 20px;
    line-height: 28px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
@media (max-width: 575px) {
  h5 {
    font-size: 16px;
    line-height: 24px;
  }
}

.carousel-arrow .owl-nav {
  position: absolute;
  top: -115px;
  right: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.carousel-arrow .owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  border: 1px solid var(--border) !important;
  background-color: var(--white) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0px;
}
.carousel-arrow .owl-nav button:hover i {
  color: var(--primary);
}
.carousel-arrow .owl-nav button i {
  font-size: 20px;
  color: #929292;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

@-webkit-keyframes grow {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(250, 92, 1, 0.7), 0px 0px 0px 0px rgba(250, 92, 1, 0.7);
            box-shadow: 0px 0px 0px 0px rgba(250, 92, 1, 0.7), 0px 0px 0px 0px rgba(250, 92, 1, 0.7);
  }
  30% {
    -webkit-box-shadow: 0px 0px 0px 25px rgba(255, 127, 0, 0), 0px 0px 0px 0px rgba(250, 92, 1, 0.7);
            box-shadow: 0px 0px 0px 25px rgba(255, 127, 0, 0), 0px 0px 0px 0px rgba(250, 92, 1, 0.7);
  }
  60% {
    -webkit-box-shadow: 0px 0px 0px 25px rgba(255, 127, 0, 0), 0px 0px 0px 20px rgba(255, 127, 0, 0);
            box-shadow: 0px 0px 0px 25px rgba(255, 127, 0, 0), 0px 0px 0px 20px rgba(255, 127, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(255, 127, 0, 0), 0px 0px 0px 20px rgba(255, 127, 0, 0);
            box-shadow: 0px 0px 0px 0px rgba(255, 127, 0, 0), 0px 0px 0px 20px rgba(255, 127, 0, 0);
  }
}

@keyframes grow {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(250, 92, 1, 0.7), 0px 0px 0px 0px rgba(250, 92, 1, 0.7);
            box-shadow: 0px 0px 0px 0px rgba(250, 92, 1, 0.7), 0px 0px 0px 0px rgba(250, 92, 1, 0.7);
  }
  30% {
    -webkit-box-shadow: 0px 0px 0px 25px rgba(255, 127, 0, 0), 0px 0px 0px 0px rgba(250, 92, 1, 0.7);
            box-shadow: 0px 0px 0px 25px rgba(255, 127, 0, 0), 0px 0px 0px 0px rgba(250, 92, 1, 0.7);
  }
  60% {
    -webkit-box-shadow: 0px 0px 0px 25px rgba(255, 127, 0, 0), 0px 0px 0px 20px rgba(255, 127, 0, 0);
            box-shadow: 0px 0px 0px 25px rgba(255, 127, 0, 0), 0px 0px 0px 20px rgba(255, 127, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(255, 127, 0, 0), 0px 0px 0px 20px rgba(255, 127, 0, 0);
            box-shadow: 0px 0px 0px 0px rgba(255, 127, 0, 0), 0px 0px 0px 20px rgba(255, 127, 0, 0);
  }
}
.btn {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 36px 12px;
  border-radius: 4px;
  border-width: 1px;
  white-space: nowrap;
  border-style: solid;
  text-transform: capitalize;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
@media (max-width: 767px) {
  .btn {
    font-size: 16px;
    padding: 8px 30px 10px;
  }
}
.btn.btn-inline {
  color: var(--white);
  border-color: var(--primary);
  background-color: var(--primary);
}
.btn.btn-inline:hover {
  color: var(--primary);
  border-color: var(--primary);
  background-color: var(--white);
}
.btn.btn-outline {
  color: var(--primary);
  border-color: var(--primary);
  background-color: var(--white);
}
.btn.btn-outline:hover {
  color: var(--white);
  border-color: var(--primary);
  background-color: var(--primary);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-group .fa-chevron-down {
  position: absolute;
  top: 70px;
  right: 0px;
  font-size: 14px;
}

.form-label {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 12px;
  text-transform: capitalize;
  color: var(--black);
}
.form-label.required::after {
  content: "*";
  line-height: 0px;
  -webkit-margin-start: 4px;
          margin-inline-start: 4px;
  display: inline-block;
  color: var(--red);
}

.form-control {
  width: 100%;
  height: 48px;
  border-radius: 4px;
  border: 1px solid #C0BBB5;
}
.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: var(--primary);
}
.form-control.line {
  padding: 0px;
  border-top: none;
  border-left: none;
  border-right: none;
}

textarea.form-control {
  height: 160px;
}

.form-control[type=file] {
  opacity: 0;
}

.form-control[type=number] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control {
  cursor: pointer;
}

.form-file-group {
  width: 100%;
  height: 48px;
  border-radius: 4px;
  border: 1px solid #C0BBB5;
  background-color: #ffffff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-file {
  padding: 5px 8px;
  gap: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F0F0F0;
  position: absolute;
  bottom: 9px;
  left: 8px;
  opacity: 0;
}

.form-value {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  max-width: 100px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.form-close {
  font-size: 14px;
  cursor: pointer;
  color: var(--primary);
}

.form-upload {
  padding-inline: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
}
.form-upload svg {
  width: 30px;
}

.preloader {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  inset: 0;
  z-index: 999;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  background-color: rgba(250, 94, 1, 0.95);
}

.preloader.finish {
  visibility: hidden;
  opacity: 0;
}

.loader,
.loader:before,
.loader:after {
  background: #ffffff;
  -webkit-animation: load1 1s infinite ease-in-out;
          animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
  border-radius: 12px;
}

.loader {
  color: #ffffff;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
          animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: "";
}

.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
          animation-delay: -0.32s;
}

.loader:after {
  left: 1.5em;
}

@-webkit-keyframes load1 {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    height: 4em;
  }
  40% {
    -webkit-box-shadow: 0 -2em;
            box-shadow: 0 -2em;
    height: 5em;
  }
}

@keyframes load1 {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    height: 4em;
  }
  40% {
    -webkit-box-shadow: 0 -2em;
            box-shadow: 0 -2em;
    height: 5em;
  }
}
.feature-card {
  padding: 42px 30px;
  text-align: center;
  color: var(--white);
  background-color: var(--secondary);
}
@media (min-width: 1200px) {
  .feature-card:nth-child(even) {
    background-color: var(--primary);
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  .feature-card:nth-child(1), .feature-card:nth-child(4) {
    background-color: var(--primary);
  }
}
@media (max-width: 575px) {
  .feature-card:nth-child(2), .feature-card:nth-child(4) {
    background-color: var(--primary);
  }
}
.feature-card i {
  font-size: 45px;
  margin-bottom: 36px;
}
.feature-card p {
  width: 100%;
  margin-inline: auto;
  max-width: 280px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.teacher-card:hover .teacher-overlay {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.teacher-card:hover .teacher-avater {
  -webkit-transform: scale(1.1) rotate(0.8deg);
          transform: scale(1.1) rotate(0.8deg);
}

.teacher-media {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 4px;
}

.teacher-avater {
  width: 100%;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.teacher-overlay {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  top: 0px;
  left: 0px;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  padding: 28px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 94, 1, 0)), to(rgba(250, 94, 1, 0.6)));
  background: linear-gradient(180deg, rgba(250, 94, 1, 0) 0%, rgba(250, 94, 1, 0.6) 100%);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.teacher-overlay a {
  font-size: 28px;
  color: var(--white);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.teacher-overlay a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.teacher-meta h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 6px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .teacher-meta h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }
}
.teacher-meta p {
  font-size: 14px;
  line-height: 22px;
  color: var(--text-black);
}

.event-card {
  overflow: hidden;
  border-radius: 4px;
  background-color: var(--white);
}
.event-card:hover .event-media img {
  -webkit-transform: scale(1.1) rotate(0.8deg);
          transform: scale(1.1) rotate(0.8deg);
}
.event-card:hover .event-content h3 a {
  color: var(--primary);
}

.event-media {
  width: 100%;
  display: block;
  overflow: hidden;
}
.event-media img {
  width: 100%;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.event-content {
  padding: 20px 24px;
}
@media (max-width: 991px) {
  .event-content {
    padding: 16px 20px;
  }
}
.event-content h4 {
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .event-content h4 {
    margin-bottom: 5px;
  }
}
.event-content h4 a {
  color: var(--secondary);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.event-content h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 20px;
}
.event-content p {
  margin-bottom: 12px;
}
.event-content .view {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  text-transform: capitalize;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--primary);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.event-content .view:hover {
  gap: 15px;
}
.event-content .view i {
  font-weight: 700;
}

.event-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), black);
}
@media (max-width: 575px) {
  .event-overlay {
    padding: 25px;
  }
}
.event-overlay h5 {
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .event-overlay h5 {
    font-size: 24px;
    line-height: 32px;
  }
}
.event-overlay h5 a {
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inherit;
}
.event-overlay p {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px 30px;
}
@media (max-width: 575px) {
  .event-overlay p {
    font-size: 18px;
    line-height: 25px;
  }
}
.event-overlay p span {
  font-weight: 400;
}
.event-overlay button {
  padding: 4px 42px;
  font-size: 22px;
  font-weight: 600;
  line-height: 48px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: var(--white);
  background-color: var(--primary);
}
@media (max-width: 575px) {
  .event-overlay button {
    font-size: 18px;
    line-height: 30px;
    padding: 4px 25px 6px;
  }
}

.blog-card {
  overflow: hidden;
  border-radius: 4px;
  background-color: var(--white);
}
.blog-card:hover .blog-figure img {
  -webkit-transform: scale(1.1) rotate(1.1deg);
          transform: scale(1.1) rotate(1.1deg);
}
.blog-card:hover .blog-content h4 a {
  color: var(--primary);
}

.blog-figure {
  display: block;
  margin-bottom: 0px;
  overflow: hidden;
}
.blog-figure img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.blog-content {
  padding: 24px;
}
.blog-content small {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}
.blog-content h4 {
  margin-bottom: 22px;
}
.blog-content h4 a {
  color: var(--secondary);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.blog-content h4::after {
  content: "";
  width: 90px;
  height: 2px;
  display: block;
  margin-top: 12px;
  background-color: var(--primary);
}
.blog-content p {
  font-size: 18px;
  line-height: 30px;
}
.blog-content p span {
  margin-top: 20px;
}

.notice-card {
  padding: 24px;
  border-radius: 4px;
  background-color: var(--white);
}
.notice-card h4 {
  margin-bottom: 24px;
}
.notice-card h4 a {
  color: var(--secondary);
}
.notice-card h4::after {
  content: "";
  width: 90px;
  height: 2px;
  display: block;
  margin-top: 15px;
  background-color: var(--primary);
}
.notice-card p {
  margin-bottom: 18px;
}
.notice-card span {
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.header-part {
  position: relative;
  background-color: var(--white);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.header-part.active {
  position: fixed;
  z-index: 5;
  top: 0px;
  left: 0px;
  width: 100%;
  -webkit-box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.04);
}

.header-content {
  height: 74px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1199px) {
  .header-content {
    gap: 24px;
  }
}
@media (max-width: 1199px) {
  .header-content {
    gap: 36px;
  }
}
@media (max-width: 575px) {
  .header-content {
    gap: 24px;
    height: 60px;
  }
}

@media (max-width: 991px) {
  .header-logo {
    -webkit-margin-end: auto;
            margin-inline-end: auto;
  }
}
.header-logo img {
  width: 120px;
}
@media (max-width: 575px) {
  .header-logo img {
    width: 100px;
  }
}

.header-menu {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--primary);
  background-color: var(--white);
  border: 1px solid var(--primary);
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 6px;
  text-align: center;
}
@media (max-width: 991px) {
  .header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header-menu i {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
}
@media (max-width: 575px) {
  .header-nav {
    position: fixed;
    z-index: 5;
    top: 0px;
    left: 0px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    width: 100%;
    max-width: 270px;
    height: 100vh;
    padding: 20px;
    gap: 40px;
    overflow-y: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background-color: var(--white);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
  }
  .header-nav.active {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: 7px 0px 15px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 7px 0px 15px 0px rgba(0, 0, 0, 0.1);
  }
}

.header-nav-group {
  display: none;
}
@media (max-width: 575px) {
  .header-nav-group {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
  }
}

.header-nav-logo img {
  width: 100px;
}

.header-nav-close {
  font-size: 8px;
  font-weight: 900;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 6px;
  text-align: center;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.header-nav-close:hover {
  color: var(--white);
  background-color: var(--primary);
}

.header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px 40px;
}
@media (max-width: 1199px) {
  .header-nav-list {
    gap: 24px 30px;
  }
}
@media (max-width: 991px) {
  .header-nav-list {
    position: absolute;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    z-index: 5;
    top: 70px;
    left: 0px;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
    width: 100%;
    padding: 20px;
    background-color: var(--white);
    border-top: 1px solid var(--gray-2);
    -webkit-box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.04);
            box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.04);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
  }
  .header-nav-list.active {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@media (max-width: 575px) {
  .header-nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.header-nav-item {
  line-height: 0px;
}
.header-nav-item.active .header-nav-link {
  color: var(--primary);
}

.header-nav-link {
  font-size: 14px;
  font-weight: 600;
  line-height: 25px;
  position: relative;
  text-transform: capitalize;
  color: var(--secondary);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.header-nav-link:hover::before {
  width: 100%;
}
.header-nav-link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--primary);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.header-action-btn {
  width: 85px;
  padding-block: 70px 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: var(--primary);
  /* -webkit-mask-image: url("/images/badge.png");  */
 
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
  -webkit-mask-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 5;
}
@media (max-width: 575px) {
  .header-action-btn {
    width: 75px;
    padding-block: 60px 40px;
    gap: 2px;
  }
}
.header-action-btn img {
  height: 24px;
}
.header-action-btn span {
  font-size: 14px;
  font-weight: 600;
  display: block;
  white-space: nowrap;
  text-transform: capitalize;
  color: var(--white);
}
@media (max-width: 575px) {
  .header-action-btn span {
    font-size: 14px;
  }
}

.smb-100 {
  margin-bottom: 100px;
}

.smb-120 {
  margin-bottom: 120px;
}

.smb-200 {
  margin-bottom: 200px;
}

.smb-175 {
  margin-bottom: 175px;
}

.smt-115 {
  margin-top: 115px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .smb-200 {
    margin-bottom: 100px;
  }
  .smb-175 {
    margin-bottom: 75px;
  }
}
@media (max-width: 1199px) {
  .smt-115 {
    margin-top: 60px;
  }
}
.section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
  gap: 30px;
}
@media (max-width: 575px) {
  .section-head {
    gap: 20px;
    margin-bottom: 30px;
  }
}

.section-title {
  position: relative;
  padding-top: 15px;
}
@media (max-width: 575px) {
  .section-title {
    font-size: 28px;
    line-height: 36px;
  }
}
.section-title::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 90px;
  height: 3px;
  background-color: var(--primary);
}
@media (max-width: 575px) {
  .section-title::before {
    width: 60px;
  }
}

.section-footer {
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 575px) {
  .section-footer {
    margin-top: 30px;
  }
}

.section-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  text-transform: capitalize;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--primary);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
@media (max-width: 575px) {
  .section-btn.top {
    display: none;
  }
}
.section-btn.bottom {
  display: none;
}
@media (max-width: 575px) {
  .section-btn.bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
  }
}
.section-btn:hover {
  gap: 20px;
}
@media (max-width: 575px) {
  .section-btn {
    font-size: 18px;
    line-height: 28px;
  }
}
.section-btn.full {
  width: 100%;
  height: 60px;
  font-weight: 600;
  margin-top: 30px;
  letter-spacing: 0.1em;
  color: var(--white);
  background-color: var(--primary);
}
@media (max-width: 575px) {
  .section-btn.full {
    height: 50px;
    margin-top: 10px;
  }
}
.section-btn.full:hover {
  color: var(--white);
  background-color: var(--primary);
}

.section-page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  font-size: 42px;
  line-height: 50px;
  margin-bottom: 45px;
  gap: 30px;
}
@media (max-width: 991px) {
  .section-page-title {
    margin-bottom: 28px;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .section-page-title {
    font-size: 36px;
    line-height: 44px;
  }
}
.section-page-title::after {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 12px;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--line);
}

.section-text-slate {
  font-weight: 600;
  font-size: 130px;
  line-height: 177px;
  text-transform: capitalize;
  color: var(--text-slate);
}
@media (max-width: 575px) {
  .section-text-slate {
    font-size: 80px;
    line-height: 100px;
  }
}

.footer-part {
  padding: 70px 0px;
  background-color: var(--primary);
}
@media (max-width: 767px) {
  .footer-part {
    padding: 60px 0px;
  }
}

.footer-about {
  margin-right: 50px;
}
@media (max-width: 767px) {
  .footer-about {
    margin-right: 0px;
    margin-bottom: 50px;
  }
}
.footer-about p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 36px;
  color: var(--white);
}
.footer-about ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.footer-about ul li:first-child {
  margin-bottom: 24px;
}
.footer-about ul li svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 4px;
}
.footer-about ul li span {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--white);
}

.footer-navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (max-width: 575px) {
  .footer-navs {
    margin-bottom: 50px;
  }
}
.footer-navs a {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: capitalize;
  color: var(--white);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.footer-navs a:hover {
  text-decoration: underline;
}

.footer-social h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 24px;
  text-transform: capitalize;
  color: var(--white);
}
.footer-social nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .footer-social nav {
    gap: 20px;
  }
}
.footer-social nav a {
  font-size: 40px;
  color: var(--white);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
@media (max-width: 767px) {
  .footer-social nav a {
    font-size: 30px;
  }
}
.footer-social nav a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.footer-social p {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--white);
}

.text-red{
  color: var(--red);
}

