/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #3747FF;
  --theme-color2: #FED653;
  --theme-color3: #626FFF;
  --brand-colorred: #ee1c25;
  --brand-coloryellow: #fed653;
  --brand-colorblue: #3747ff;
  --brand-colororange: #f6931e;
  --brand-colorgreen: #35b777;
  --vs-secondary-color: #2F2552;
  --title-color: #0A282C;
  --body-color: #585B5B;
  --smoke-color: #F3F3F3;
  --black-color: #000000;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #e8e8e8;
  --title-font: "DM Sans", sans-serif;
  --body-font: "DM Sans", sans-serif;
  --icon-font: "FontAwesome";
  --main-container: 1290px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 70px;
  --ripple-ani-duration: 5s;
}

a{
  text-decoration: none !important;
}
/*------------------- 2.3. Input -------------------*/
select,
.form-control,
.form-select,
textarea,
input {
  height: 50px;
  padding: 0 30px 0 28px;
  padding-right: 45px;
  border: 1px solid #D2D2D2;
  color: #555555;
  background-color: var(--white-color);
  border-radius: 9999px;
  border-radius: 0;
  font-size: 14px;
  width: 100%;
}
select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  background-color: var(--white-color);
}
select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}
select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--body-color);
}
select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--body-color);
}
select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--body-color);
}

.form-select,
select {
  display: block;
  width: 100%;
  line-height: 1.5;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 26px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

textarea.form-control,
textarea {
  min-height: 210px;
  padding-top: 16px;
  padding-bottom: 17px;
  border-radius: 0;
}

input[type=checkbox] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}
input[type=checkbox]:checked ~ label:before {
  content: "\f00c";
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
input[type=checkbox] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
}
input[type=checkbox] ~ label:before {
  content: "";
  font-family: var(--icon-font);
  font-weight: 700;
  position: absolute;
  left: 0px;
  top: 3.5px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
}

input[type=radio] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}
input[type=radio] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
}
input[type=radio] ~ label::before {
  content: "\f111";
  position: absolute;
  font-family: var(--icon-font);
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  padding-left: 0.5px;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 100%;
  font-weight: 700;
  background: var(--white-color);
  color: transparent;
  transition: all 0.2s ease;
}
input[type=radio]:checked ~ label::before {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}

label {
  margin-bottom: 0.5em;
  margin-top: -0.3em;
  display: block;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 16px;
}

.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}
.form-group > i {
  position: absolute;
  right: calc(var(--bs-gutter-x) / 2 + 30px);
  top: 18px;
  font-size: 14px;
  color: #A0ABB4;
}
.form-group.has-label > i {
  top: 45px;
}

textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.was-validated input:invalid {
  border: 1px solid var(--error-color) !important;
  background-position: right calc(0.375em + 0.8875rem) center;
  background-image: none;
}
textarea.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus,
.was-validated input:invalid:focus {
  outline: 0;
  box-shadow: none;
}

textarea.is-invalid {
  background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem);
}

.row.no-gutters > .form-group {
  margin-bottom: 0;
}

.form-messages {
  display: none;
}
.form-messages.mb-0 * {
  margin-bottom: 0;
}
.form-messages.success {
  color: var(--success-color);
  display: block;
}
.form-messages.error {
  color: var(--error-color);
  display: block;
}
.form-messages pre {
  padding: 0;
  background-color: transparent;
  color: inherit;
}
/*------------------- 3.3. Titles -------------------*/
.sec-title {
  font-size: 60px;
  margin: -0.2em 0 0 0;
}

.sec-title2 {
  font-size: 70px;
  margin: -0.2em 0 5px 0;
}

.sec-subtitle {
  display: block;
  color: var(--title-color);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: -0.2em 0 15px 0;
  text-transform: uppercase;
}
.sec-subtitle.style1 {
  position: relative;
  display: inline-block;
  color: var(--theme-color);
  font-weight: 600;
}
.sec-subtitle.style1::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background-color: var(--theme-color);
  left: -34%;
  top: 50%;
  transform: translateY(-50%);
}
.sec-subtitle.style1::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background-color: var(--theme-color);
  right: -34%;
  top: 50%;
  transform: translateY(-50%);
}

.sec-subtitle2 {
  font-size: 24px;
  margin-bottom: 60px;
  display: block;
  color: var(--title-color);
  text-transform: capitalize;
}

.sec-subtitle4 {
  color: var(--theme-color);
}

.title-area {
  margin-bottom: calc(var(--section-title-space) - 20px);
}

.title-area2 {
  margin-bottom: var(--section-title-space);
}

.title-area3 {
  margin-bottom: calc(var(--section-title-space) - 20px);
}
.title-area3 .sec-title {
  text-transform: capitalize;
  font-size: 45px;
}
.title-area3 .about-title {
  text-transform: capitalize;
}
.title-area3 .about-title span {
  color: var(--theme-color);
}
.title-area3 .sec-subtitle {
  color: var(--theme-color);
  font-weight: 600;
  letter-spacing: normal;
}

.sec-icon {
  margin: -0.3em 0 25px 0;
}
.sec-icon .vs-circle {
  --circle-size: 45px;
  --circle-angle: -405deg;
  --circle-bg: var(--theme-color);
  display: inline-block;
}

.sec-btns {
  margin-bottom: var(--section-title-space);
}

.border-title {
  margin: 0 0 30px 0;
  text-decoration: underline;
  text-decoration-color: var(--theme-color2);
  text-underline-offset: 4px;
}

.border-title2 {
  padding: 0 0 5px 0;
  margin: 0 0 40px 0;
  position: relative;
}
.border-title2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 1px;
  background-color: var(--theme-color);
}

.sec-line2 {
  height: 100%;
  width: 1px;
  background-color: rgba(127, 127, 127, 0.3);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .sec-title2,
  .sec-title {
    font-size: 48px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .sec-title2,
  .sec-title {
    font-size: 42px;
  }
  .sec-subtitle {
    margin: -0.2em 0 15px 0;
  }
  .sec-icon {
    margin: -0.3em 0 15px 0;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .sec-title2,
  .sec-title {
    font-size: 36px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .sec-title2,
  .sec-title {
    font-size: 30px;
  }
  .sec-subtitle {
    letter-spacing: 0;
    font-size: 14px;
  }
  .border-title2 {
    margin: 0 0 30px 0;
  }
}
/*------------------- 3.2. Buttons -------------------*/
.vs-btn {
  border: none;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  font-family: var(--title-font);
  background-color: var(--theme-color);
  color: var(--white-color);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  padding: 21.5px 40px;
  border-radius: 9999px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.vs-btn:before, .vs-btn:after {
  content: "";
  position: absolute;
  top: var(--shape-gap, 3px);
  right: var(--shape-gap, 3px);
  bottom: var(--shape-gap, 3px);
  left: var(--shape-gap, 3px);
  background-color: var(--theme-color3);
  transform: scale(0);
  z-index: -1;
  border-radius: inherit;
  transform-origin: right bottom;
  transition: all ease 0.4s;
  opacity: 0;
  visibility: hidden;
}
.vs-btn:before {
  transform-origin: left top;
}
.vs-btn i {
  display: inline-block;
  vertical-align: middle;
  transition: all ease 0.4s;
}
.vs-btn:hover {
  color: var(--white-color);
}
.vs-btn:hover:before, .vs-btn:hover:after {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.vs-btn.style2 {
  background-color: var(--theme-color);
  color: var(--white-color);
  padding: 0 35px 0 0;
}
.vs-btn.style2 i {
  background-color: var(--theme-color3);
  color: var(--white-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 22px;
  margin: 0 15px 0 0;
  border-radius: 50%;
}
.vs-btn.style2:after {
  --shape-gap: 0;
  transform: scale(1);
  background-color: var(--theme-color);
  z-index: -2;
  border-radius: inherit;
  border: 2px solid var(--theme-color);
}
.vs-btn.style2:hover {
  color: var(--white-color);
}
.vs-btn.style2:hover:before {
  transform: scale(1);
}
.vs-btn.style2:hover i {
  background-color: var(--theme-color);
}
.vs-btn.style4 {
  background-color: transparent;
  border: 2px solid var(--theme-color);
  color: var(--title-color);
  padding: 19px 33px 16px 33px;
}
.vs-btn.style4 i {
  font-size: 24px;
  padding-right: 15px;
  margin-right: 10px;
  border-right: 1px solid #CACACA;
  line-height: 25px;
  color: var(--title-color);
}
.vs-btn.style4:hover {
  color: var(--white-color);
}
.vs-btn.style4:hover i {
  color: var(--white-color);
  border-color: var(--white-color);
}
.vs-btn.style3, .vs-btn.style5 {
  background-color: transparent;
  color: var(--white-color);
  padding: 0 35px 0 0;
  outline: 2px solid var(--theme-color);
  outline-offset: -2px;
  --shape-gap: 5px;
}
.vs-btn.style3 i, .vs-btn.style5 i {
  height: 60px;
  width: 60px;
  line-height: 60px;
  font-size: 22px;
  margin: 0 15px 0 0;
  color: var(--white-color);
  background-color: var(--theme-color3);
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.vs-btn.style3:hover, .vs-btn.style5:hover {
  color: var(--white-color);
}
.vs-btn.style3:hover i, .vs-btn.style5:hover i {
  background-color: var(--theme-color);
}
.vs-btn.style3 {
  color: var(--title-color);
}
.vs-btn.style6 {
  padding: 19px 33px;
  border: 2px solid var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white-color);
}
.vs-btn.style6 i {
  font-size: 24px;
  padding-right: 15px;
  margin-right: 15px;
  line-height: 18px;
  border-right: 1px solid #CACACA;
}
.vs-btn.style7 {
  background-color: var(--white-color);
  border: 1px solid var(--theme-color);
  border-radius: 20px;
  box-shadow: 8.55px 23.49px 24px rgba(35, 31, 32, 0.09);
  color: var(--theme-color);
}
.vs-btn.style7:hover {
  color: var(--white-color);
}
.vs-btn.style8 {
  padding: 5px 35px 5px 5px;
}
.vs-btn.style8 i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #2A36C1;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 22px;
}

.icon-btn {
  display: inline-block;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: var(--btn-size, 50px);
  font-size: var(--btn-font-size, 16px);
  background-color: var(--white-color);
  color: var(--title-color);
  border: 1px solid var(--border-color);
  text-align: center;
  border-radius: 50%;
  padding: 0;
  vertical-align: middle;
}
.icon-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.icon-btn.style2 {
  background-color: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  --btn-size: 62px;
  --btn-font-size: 22px;
  line-height: calc(var(--btn-size) - 1px);
}
.icon-btn.style3 {
  --btn-size: 60px;
  --btn-font-size: 20px;
  border: 2px solid var(--theme-color2);
  line-height: calc(var(--btn-size) - 2px);
}
.icon-btn.style2:hover, .icon-btn.style3:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
  border-color: transparent;
}
.icon-btn.style4 {
  --icon-size: 56px;
  --icon-font-size: 18px;
  background-color: #F7F7F7;
  color: var(--title-color);
  border: none;
}
.icon-btn.style4:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.play-btn {
  background-color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  z-index: 1;
}
.play-btn > i {
  display: inline-block;
  width: var(--icon-size, 90px);
  height: var(--icon-size, 90px);
  line-height: var(--icon-size, 90px);
  text-align: center;
  background-color: rgba(var(--white-color), 0.8);
  color: var(--title-color);
  font-size: var(--icon-font-size, 16px);
  border-radius: 50%;
  z-index: 1;
  transition: all ease 0.4s;
}
.play-btn:after, .play-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 50%;
  background-color: transparent;
  border: 4px solid var(--white-color);
  transition: all ease 0.4s;
}
.play-btn:after {
  animation-delay: 2s;
}
.play-btn:hover:after, .play-btn:hover::before,
.play-btn:hover i {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.play-btn2 {
  background-color: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  z-index: 1;
}
.play-btn2 > i {
  display: inline-block;
  width: var(--icon-size, 90px);
  height: var(--icon-size, 90px);
  line-height: var(--icon-size, 90px);
  text-align: center;
  background-color: rgba(var(--white-color), 0.8);
  color: var(--white-color);
  font-size: var(--icon-font-size, 16px);
  border-radius: 50%;
  z-index: 1;
  transition: all ease 0.4s;
}
.play-btn2:after, .play-btn2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 50%;
  background-color: transparent;
  border: 4px solid var(--theme-color);
  transition: all ease 0.4s;
}
.play-btn2:after {
  animation-delay: 2s;
}
.play-btn2:hover:after, .play-btn2:hover::before,
.play-btn2:hover i {
  background-color: var(--white-color);
  color: var(--title-color);
}

.link-btn {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  line-height: 0.8;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -2px;
  text-transform: capitalize;
  color: var(--title-color);
}
.link-btn i {
  margin-left: 7px;
  font-size: 0.9rem;
}
.link-btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #E1E1E1;
  transition: all ease 0.4s;
}
.link-btn:hover {
  color: var(--theme-color2);
}
.link-btn:hover::before {
  background-color: var(--theme-color2);
}

.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}
.scroll-btn i {
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-align: center;
  font-size: 16px;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: var(--btn-size, 50px);
  z-index: 2;
  border-radius: inherit;
  position: relative;
  transition: all ease 0.8s;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
}
.scroll-btn:before {
  content: "";
  position: absolute;
  left: var(--extra-shape, -6px);
  top: var(--extra-shape, -6px);
  right: var(--extra-shape, -6px);
  bottom: var(--extra-shape, -6px);
  background-color: transparent;
  border-radius: inherit;
  z-index: 1;
  border: 2px dashed var(--theme-color);
  transition: all ease 0.4s;
  animation: spin 13s infinite linear;
}
.scroll-btn:focus i, .scroll-btn:hover i {
  background-color: var(--theme-color2);
  color: var(--white-color);
}
.scroll-btn:focus:before, .scroll-btn:hover:before {
  border-color: var(--theme-color2);
}
.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .scroll-btn {
    --btn-size: 40px;
    --extra-shape: -4px;
    right: 15px;
    bottom: 50px;
  }
  .scroll-btn.show {
    bottom: 15px;
  }
}

.scrollToTop {
  position: fixed;
  right: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 96;
}
.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}

.bar-btn {
  border: none;
  display: inline-block;
  padding: 0;
  line-height: 1;
  font-size: 25px;
  vertical-align: middle;
  background-color: transparent;
  width: 25px;
  height: 23px;
  position: relative;
  overflow: hidden;
}
.bar-btn .bar:after, .bar-btn .bar:before {
  content: "";
  width: 100%;
  height: 3px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  transition: all ease 0.4s;
  background-color: var(--title-color);
}
.bar-btn .bar:after {
  left: -140%;
  right: auto;
  background-color: var(--theme-color2);
}
.bar-btn .bar:nth-child(2):before, .bar-btn .bar:nth-child(2):after {
  top: 50%;
  margin-top: -1.5px;
  width: 17px;
}
.bar-btn .bar:nth-child(2):after {
  left: auto;
  right: -120%;
}
.bar-btn .bar:nth-child(3):after, .bar-btn .bar:nth-child(3):before {
  top: auto;
  bottom: 0;
}
.bar-btn:hover {
  color: var(--theme-color2);
}
.bar-btn:hover .bar:before {
  right: -120%;
}
.bar-btn:hover .bar:after {
  left: 0;
}
.bar-btn:hover .bar:nth-child(2):before {
  right: 120%;
}
.bar-btn:hover .bar:nth-child(2):after {
  left: auto;
  right: 0;
}
.bar-btn.style2 .bar:before {
  background-color: var(--white-color);
}
.bar-btn.style2:hover .bar:before {
  background-color: var(--theme-color2);
}

.watch-btn .btn-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--white-color);
  color: var(--title-color);
  text-align: center;
  border-radius: 50%;
  transition: all ease 0.4s;
  vertical-align: middle;
  font-size: 16px;
}
.watch-btn .btn-icon:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
}
.watch-btn .btn-icon i {
  vertical-align: middle;
}
.watch-btn .btn-text {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  margin-left: 8px;
  transition: all ease 0.4s;
}
.watch-btn .btn-text:hover {
  color: var(--theme-color2);
}

.bottom-btn {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 30px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .icon-btn.style2 {
    --btn-size: 50px;
    --btn-font-size: 18px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .play-btn {
    --icon-size: 60px;
    --icon-font-size: 20px;
  }
  .scrollToTop {
    right: 20px;
  }
  .scrollToTop.show {
    bottom: 20px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .vs-btn.style5 {
    padding-right: 20px;
  }
  .vs-btn.style5 i {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

/*------------------- 2.5. Mobile Menu -------------------*/
.vs-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}
.vs-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  background-color: rgba(55, 71, 255, 0.1);
}
.vs-menu-wrapper .mobile-logo img,
.vs-menu-wrapper .mobile-logo svg {
  max-width: 190px;
}
.vs-menu-wrapper .vs-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 33px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
}
.vs-menu-wrapper .vs-menu-toggle i {
  line-height: inherit;
}
.vs-menu-wrapper .vs-menu-toggle:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}
.vs-menu-wrapper .vs-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  transition: all ease 1s;
  z-index: 1;
}
.vs-menu-wrapper.vs-body-visible {
  opacity: 1;
  visibility: visible;
}
.vs-menu-wrapper.vs-body-visible .vs-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.vs-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}
.vs-mobile-menu .new-label {
  margin-left: 5px;
  text-transform: capitalize;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.vs-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}
.vs-mobile-menu ul li {
  border-bottom: 1px solid #fdedf1;
  list-style-type: none;
}
.vs-mobile-menu ul li li:first-child {
  border-top: 1px solid #fdedf1;
}
.vs-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-color);
}
.vs-mobile-menu ul li a:before {
  content: "\f105";
  font-family: 'FontAwesome';
  position: relative;
  left: 0;
  top: 0;
  margin-right: 10px;
  display: inline-block;
}
.vs-mobile-menu ul li.vs-active > a {
  color: var(--theme-color);
}
.vs-mobile-menu ul li.vs-active > a:before {
  transform: rotate(90deg);
}
.vs-mobile-menu ul li ul li {
  padding-left: 20px;
}
.vs-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}
.vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--smoke-color);
  color: var(--title-color);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}
.vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand:before {
  content: "\f067";
  font-family: 'FontAwesome';
}
.vs-mobile-menu ul .vs-item-has-children.vs-active > a .vs-mean-expand:before {
  content: "\f068";
}
.vs-mobile-menu > ul {
  padding: 0 40px;
}
.vs-mobile-menu > ul > li:last-child {
  border-bottom: none;
}

.vs-menu-toggle {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 24px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 0;
  vertical-align: middle;
}
.vs-menu-toggle.style-text, .vs-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}
.vs-menu-toggle.style-text i, .vs-menu-toggle.style-text-white i {
  margin-right: 10px;
}
.vs-menu-toggle.style-text-white {
  color: var(--white-color);
}

@media (max-width: 400px) {
  .vs-menu-wrapper .vs-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .vs-mobile-menu > ul {
    padding: 0 20px;
  }
}

/*------------------- 4.2. Headers  -------------------*/
.vs-header {
  position: relative;
  z-index: 41;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}

@media (min-width: 1199px) {
  .header-layout3 .sticky-wrapper {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}

.header-links ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.header-links li {
  color: var(--body-color);
  display: inline-block;
  margin: 0 20px 0 0;
}
.header-links li:last-child {
  margin-right: 0;
}
.header-links a {
  color: inherit;
}
.header-links a:hover {
  color: var(--theme-color);
}
.header-links i {
  font-size: 17px;
  vertical-align: inherit;
  margin-right: 10px;
  color: var(--theme-color);
}
.header-links.style2 li {
  color: var(--white-color);
}
.header-links.style2 i {
  color: var(--theme-color3);
}
.header-links.style2 a:hover {
  color: var(--theme-color2);
}

.header-social a {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border: 1px solid #E8E8E8;
  color: #353535;
  margin-bottom: -1px;
  margin-right: 5px;
  z-index: 1;
}
.header-social a:last-child {
  margin-right: 0;
}
.header-social a:before {
  content: "";
  bottom: 0;
  height: 2px;
  left: 0;
  right: 0;
  background-color: var(--theme-color3);
  position: absolute;
  top: auto;
  transition: all ease 0.4s;
  z-index: -1;
}
.header-social a:hover {
  color: var(--white-color);
  border-color: transparent;
}
.header-social a:hover:before {
  height: 100%;
}
.header-social.style2 a {
  border-color: #3B3B3B;
  color: var(--white-color);
  margin-bottom: 0;
}

.header-btns a:not(.vs-btn),
.header-btns button:not(.vs-btn) {
  background-color: transparent;
  border: none;
  padding: 0;
  margin-right: 20px;
  color: var(--btn-color, var(--title-color));
  font-size: 20px;
  vertical-align: middle;
  transition: all ease 0.4s;
  display: inline-block;
}
.header-btns a:not(.vs-btn):last-child,
.header-btns button:not(.vs-btn):last-child {
  margin-right: 0;
}
.header-btns a:not(.vs-btn):hover,
.header-btns button:not(.vs-btn):hover {
  color: var(--btn-hover-color, var(--theme-color));
}
.header-btns.style2 {
  --btn-color: var(--white-color);
  --btn-hover-color: var(--theme-color2);
}

.vs-logo {
  position: relative;
}
.vs-logo img {
  max-width: 260px;
  padding: 0px 0;
  /* Small devices */
}
@media (max-width: 767px) {
  .vs-logo img {
    max-width: 180px;
  }
}
.vs-logo.style2 {
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 1;
  padding-right: 20px;
}
.vs-logo.style2::before {
  content: "";
  position: absolute;
  right: 5%;
  top: -0.5px;
  bottom: -1px;
  width: 99999px;
  z-index: -1;
  background-color: var(--white-color);
}

.will-sticky .sticky-active {
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  background-color: var(--white-color);
  transition: all ease 0.8s;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}
.will-sticky .sticky-active.active {
  top: 0;
}

.main-menu a {
  display: block;
  position: relative;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 18px;
  color: var(--title-color);
  /* Extra large devices */
}
@media (max-width: 1500px) {
  .main-menu a {
    font-size: 16px;
  }
}
.main-menu a:hover {
  color: var(--theme-color);
}
.main-menu > ul > li {
  margin: 0 13px;
  /* Extra large devices */
}
@media (max-width: 1500px) {
  .main-menu > ul > li {
    margin: 0 18px;
  }
}
.main-menu > ul > li > a .new-label {
  position: absolute;
  top: -15px;
  right: -16px;
  font-size: 11px;
  border-radius: 3px;
  background-color: var(--theme-color);
}
.main-menu > ul > li > a .has-new-lable {
  position: relative;
}
.main-menu ul {
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.main-menu ul li.menu-item-has-children > a:after {
  content: "\f107";
  position: relative;
  font-family: 'FontAwesome';
  margin-left: 5px;
  top: -0.8px;
  font-size: 0.8rem;
  font-family: 'FontAwesome';
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li:first-child {
  margin-left: 0;
}
.main-menu ul li:hover > ul.sub-menu,
.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  z-index: 9;
}
.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  visibility: hidden;
  min-width: 190px;
  width: max-content;
  padding: 7px;
  left: -14px;
  margin-top: 50px;
  opacity: 0;
  z-index: -1;
  border-bottom: 3px solid var(--theme-color);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
  transform-origin: top center;
  transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
}
.main-menu ul.sub-menu a,
.main-menu ul.mega-menu a {
  font-size: 16px;
  line-height: 30px;
}
.main-menu ul.sub-menu {
  padding: 18px 20px;
  left: -27px;
}
.main-menu ul.sub-menu:before {
  content: "";
  position: absolute;
  left: 34.5px;
  top: 30px;
  width: 1px;
  background-color: #ededed;
  height: calc(100% - 60px);
}
.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 3px 9px;
}
.main-menu ul.sub-menu li.menu-item-has-children > a:after {
  content: "\f105";
  float: right;
  top: 3px;
}
.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 21px;
}
.main-menu ul.sub-menu li a:before {
  content: "\f111";
  font-family: 'FontAwesome';
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 2.8em;
  left: 0;
  width: 11px;
  height: 11px;
  font-size: 0.2em;
  line-height: 11.5px;
  color: var(--theme-color);
  background-color: var(--white-color);
  font-weight: 700;
  border-radius: 50%;
  box-shadow: inset 0px 2px 4px 0px rgba(55, 71, 255, 0.4);
}
.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}
.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}
.main-menu .mega-menu-wrap {
  position: static;
}
.main-menu ul.mega-menu {
  display: flex;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  max-width: var(--main-container);
  padding: 20px 15px 23px 15px;
  left: 50%;
  transform: translateX(-50%);
}
.main-menu ul.mega-menu li {
  display: block;
  width: 100%;
  padding: 0 15px;
}
.main-menu ul.mega-menu li li {
  padding: 4px 0;
}
.main-menu ul.mega-menu li a {
  display: inline-block;
}
.main-menu ul.mega-menu > li > a {
  display: block;
  padding: 0;
  padding-bottom: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--theme-color);
}
.main-menu ul.mega-menu > li > a::after, .main-menu ul.mega-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}
.main-menu ul.mega-menu > li > a::after {
  width: calc(100% - 20px);
  left: 20px;
}
.main-menu ul.mega-menu > li > a:hover {
  padding-left: 0;
}

.menu-style1 > ul > li {
  padding: 47px 0;
}
.menu-style1 > ul > li > a {
  padding: 0;
}

.menu-style2 > ul > li {
  padding: 31.5px 0;
}
.menu-style2 > ul > li > a {
  padding: 0;
  color: var(--white-color);
}
.menu-style2 > ul > li > a:hover {
  color: var(--white-color);
}

.menu-style3 > ul > li > a {
  padding: 47px 0;
  color: var(--white-color);
}
.menu-style3 > ul > li > a:hover {
  color: var(--theme-color2);
}

.header-media {
  display: flex;
}
.header-media .media-icon {
  width: 70px;
  height: 70px;
  border: 1px solid var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
}
.header-media .media-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: block;
  color: var(--title-color);
  margin: 0 0 12px 0;
}
.header-media .media-info {
  color: var(--title-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1;
}
.header-media .media-info a {
  color: inherit;
}
.header-media .media-info a:hover {
  color: var(--theme-color2);
}
.header-media .media-body {
  align-self: center;
}

.header-infos-wrap {
  background-color: var(--theme-color);
}
.header-infos-wrap:not([data-sec-pos]) {
  margin-bottom: -54px;
}

.header-info {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.header-info:nth-child(even):before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.08);
  z-index: -1;
}
.header-info .vs-media {
  padding: 28px 20px;
}
.header-info a {
  color: inherit;
}
.header-info a:hover {
  color: var(--title-color);
}

.info-box .vs-media,
.header-info .vs-media {
  align-items: center;
  justify-content: center;
}
.info-box .media-icon,
.header-info .media-icon {
  display: inline-block;
  width: var(--icon-size, 50px);
  height: var(--icon-size, 50px);
  line-height: var(--icon-size, 50px);
  background-color: var(--white-color);
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--theme-color);
  margin-right: 15px;
}
.info-box .media-icon i,
.header-info .media-icon i {
  line-height: inherit;
}
.info-box .media-info,
.header-info .media-info {
  color: var(--white-color);
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  max-width: 250px;
}
/* Medium Large devices */
@media (max-width: 1399px) {
  .main-menu > ul > li {
    margin: 0 12px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .vs-logo.style2::before {
    right: 0;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .header-social.style2 a {
    width: auto;
    height: auto;
    border: none;
    line-height: 1;
    margin: 25px 8px;
  }
  .header-social.style2 a::before {
    display: none;
  }
  .header-social.style2 a:hover {
    color: var(--theme-color2);
  }
  .user-login i {
    margin-right: 5px;
  }
}

/*=================================
  05. Pages Style
==================================*/
.header-layout5 .header-top {
  background-color: var(--theme-color);
}
.header-layout5 .header-links ul li {
  color: var(--white-color);
}
.header-layout5 .header-links ul li:not(:last-child) {
  margin-right: 15px;
  padding-right: 15px;
  line-height: 100%;
  border-right: 2px solid #B9BDED;
}
.header-layout5 .header-links ul li i {
  color: var(--white-color);
}
.header-layout5 .header-links ul li a {
  color: var(--white-color);
}
.header-layout5 .header-links ul li a:hover {
  color: var(--theme-color2);
}
.header-layout5 .header-social {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.header-layout5 .header-social a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: none;
  color: var(--white-color);
  margin-bottom: 0;
  margin-right: 0;
  z-index: 1;
  border-right: 1px solid #6771E8;
}
.header-layout5 .header-social a:hover {
  color: var(--title-color);
  background-color: var(--theme-color2);
}
.header-layout5 .header-social a:first-child {
  border-left: 1px solid #6771E8;
}
.header-layout5 .header-social a::before {
  display: none;
}
.header-layout5 .user-login {
  color: var(--white-color);
}
.header-layout5 .user-login:hover {
  color: var(--theme-color2);
}
.header-layout5 .user-login i {
  color: var(--white-color);
}
.header-layout5 .header-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-layout5 .header-btns .vs-btn {
  color: var(--white-color);
  border: none;
  transition: all 0.5s ease;
}
.header-layout5 .header-btns .vs-btn i {
  color: var(--white-color);
  transition: all 0.5s ease;
}
.header-layout5 .header-btns .vs-btn::before {
  background-color: var(--theme-color);
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.header-layout5 .header-btns .vs-btn::after {
  display: none;
}
.header-layout5 .header-btns .vs-btn:hover {
  border-color: var(--theme-color2);
  color: var(--title-color);
}
.header-layout5 .header-btns .vs-btn:hover i {
  color: var(--title-color);
  border-color: var(--title-color);
}
.header-layout5 .header-btns .vs-btn:hover::before {
  background-color: var(--theme-color2);
}

/*------------------- 4.8. Hero Area  -------------------*/
.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--title-color);
  min-height: 770px;
  z-index: 1;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -1;
}

.hero-layout1 {
  max-height: 770px;
  position: relative;
}
.hero-layout1 .hero-content {
  max-width: 470px;
  position: relative;
  z-index: 3;
}
.hero-layout1 .hero-title {
  font-size: 70px;
  color: var(--white-color);
  font-family: var(--title-color);
  line-height: 1.2;
  margin-bottom: 8px;
  animation-delay: 0s;
  text-transform: uppercase;
}
.hero-layout1 .hero-title span {
  color: var(--theme-color2);
}
.hero-layout1 .hero-text {
  color: #EDECEC;
  font-size: 22px;
  font-weight: 400;
  font-family: var(--title-font);
  line-height: 34px;
  max-width: 474px;
  margin-bottom: 40px;
  animation-delay: 0.4s;
}
.hero-layout1 .hero-btns {
  animation-delay: 0.8s;
}
.hero-layout1 .vs-circle {
  position: absolute;
  left: 26%;
  top: 8%;
  animation-delay: 0.1s;
}
.hero-layout1 .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  z-index: 1;
  margin: 0 auto;
  text-align: left;
  max-width: var(--main-container);
}
.hero-layout1 .slick-dots button {
  border-color: var(--white-color);
}
.hero-layout1 .slick-dots button:hover,
.hero-layout1 .slick-dots .slick-active button {
  background-color: var(--theme-color2);
  border-color: var(--theme-color3);
}
.hero-layout1 .slick-current {
  --animation-name: slideinup;
}
.hero-layout1 .course-style3 {
  position: absolute;
  right: 15.5%;
  bottom: 60px;
}
.hero-layout1.style2 .hero-content {
  max-width: 560px;
}
.hero-layout1.style2 .hero-title {
  text-transform: capitalize;
}
.hero-layout1.style6 {
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--theme-color2);
}
.hero-layout1.style6 .hero-content {
  max-width: 650px;
}
.hero-layout1.style6 .sec-subtitle {
  color: var(--theme-color2);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: normal;
}
.hero-layout1.style6 .sec-subtitle i {
  margin-right: 10px;
}
.hero-layout1.style6 .hero-title {
  text-transform: capitalize;
  font-size: 80px;
  line-height: 1;
}
.hero-layout1.style6 .hero-title span {
  display: inline-block;
  color: var(--theme-color2);
}
.hero-layout1.style6 .hero-text {
  font-size: 18px;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.hero-layout1.style6 button.slick-prev.slick-arrow {
  top: 48%;
  transform: translateY(-50%);
  right: 17%;
}
.hero-layout1.style6 button.slick-next.slick-arrow {
  top: 58%;
  transform: translateY(-50%);
  right: 17%;
}
.hero-layout1.style6 .slick-arrow i {
  vertical-align: middle;
  font-weight: 600;
  font-size: 16px;
  font-family: 'FontAwesome';
}
.hero-layout1.style6 .slick-arrow:hover {
  background-color: transparent;
  color: var(--white-color);
  border-color: var(--theme-color2);
}
/* Large devices */
@media (max-width: 1199px) {
  .hero-layout1.style6 .hero-inner {
    min-height: 670px;
    padding-bottom: 0px;
    padding-top: 0px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .hero-layout1.style6 .hero-inner {
    min-height: auto;
    padding-bottom: 80px;
    padding-top: 80px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .hero-layout1.style6 .hero-title {
    font-size: 40px;
  }
  .blog-layout2 .blog-style1 .blog-content {
    padding-left: 0;
  }
}
/*------------------- 2.4. Slick Slider -------------------*/
.slick-track {
  min-width: 100%;
}
.slick-track > [class*=col] {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}
.slick-track .col-auto {
  width: auto;
}

.slick-slide img {
  display: inline-block;
}

.slick-dots {
  list-style-type: none;
  padding: 0 0;
  margin: 20px 0 30px 0;
  line-height: 0;
  text-align: center;
  height: max-content;
}
.slick-dots li {
  display: inline-block;
  margin-right: 10px;
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots button {
  background-color: transparent;
  border: 5px solid #999999;
  border-radius: 50%;
  display: inline-block;
  font-size: 0;
  height: 18px;
  line-height: 0;
  padding: 0;
  position: relative;
  width: 18px;
  transition: all ease 0.4s;
}
.slick-dots button:hover {
  border-color: var(--theme-color);
}
.slick-dots button:hover,
.slick-dots .slick-active button {
  background-color: var(--theme-color2);
  border-color: var(--theme-color);
}

.slick-arrow {
  background-color: transparent;
  border: 1px solid #F7F7F7;
  bottom: 38px;
  color: var(--white-color);
  display: inline-block;
  padding: 0;
  position: absolute;
  width: var(--icon-size, 60px);
  height: var(--icon-size, 60px);
  font-size: var(--icon-font-size, 22px);
  margin-top: calc(var(--icon-size, 60px) / -2);
  right: 390px;
  z-index: 2;
  border-radius: 50%;
}
.slick-arrow.default {
  position: relative;
  --pos-x: 0;
  margin-top: 0;
}
.slick-arrow.slick-next {
  right: var(--pos-x, 322px);
  left: auto;
}
.slick-arrow i {
  vertical-align: middle;
}
.slick-arrow:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
  border-color: transparent;
}

.arrow-margin .slick-arrow {
  top: calc(50% - 30px);
}

.arrow-wrap .slick-arrow {
  opacity: 0;
  visibility: hidden;
}
.arrow-wrap:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .slick-arrow {
    --arrow-horizontal: -20px;
  }
}
/* Medium Large devices */
@media (max-width: 1399px) {
  .slick-arrow {
    --arrow-horizontal: 40px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .slick-arrow {
    --icon-size: 40px;
    margin-right: 40px;
  }
  .slick-arrow.slick-next {
    margin-right: 0;
    margin-left: 40px;
  }
  .slick-dots {
    margin: 8px 0 38px 0;
  }
}

/* ABOUT LAYOUT */
.about-layout1{
  padding: 90px 0px !important;
}

.about-layout1 .media-inner {
  display: flex;
  align-items: center;
}
.about-layout1 .media-inner .media-body .media-info a {
  font-size: 22px;
}
.about-layout1 .media-inner .media-body .media-label {
  text-transform: capitalize;
  font-size: 14px;
  margin-bottom: 0;
}
.about-layout1 .media-inner .list-style1 {
  margin-bottom: 0;
}
.about-layout1 .media-inner .list-style1 li::before {
  color: var(--title-color);
}
.about-layout1 .media-inner .call-media {
  margin: 10px 20px 30px 0;
  max-width: 100%;
  width: 100%;
  background-color: #EBEDFC;
  border-radius: 0 10px 10px 0;
  max-width: 495px;
}
.about-layout1 .media-inner .call-media .media-icon {
  width: 54px;
  height: 54px;
  line-height: 35px;
  border-radius: 50%;
  border: 5px solid var(--white-color);
  text-align: center;
  background-color: var(--title-color);
  color: var(--white-color);
  box-shadow: -0.45px 4.49px 5px rgba(35, 31, 32, 0.38);
}
.about-layout1 .media-inner .call-media .media-icon i {
  font-size: 20px;
}
.about-layout1 .picture-box2 .vs-circle {
  transform: translate(-55%, -55%);
}
.about-layout1 .picture-box2 .picture-1 {
  margin-left: 20%;
}
.about-layout1 .picture-box2 .picture-3 {
  margin-right: 10px;
  margin-left: auto;
  margin-top: -170px;
}
.about-layout1 .vs-btn.style3 {
  color: var(--white-color);
  background-color: var(--theme-color);
  padding: 5px 35px 5px 5px;
}
.about-layout1 .vs-btn.style3 i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #2A36C1;
}
.about-layout1 .about-box2 {
  padding: 30px 30px 0px 30px;
}
.about-layout1 .title-area .sec-subtitle {
  color: var(--theme-color);
}
.about-layout1 .title-area .about-title span {
  display: inline-block;
  color: var(--theme-color);
}
.about-layout1 .media-list2 {
  margin-bottom: 30px;
}
.about-layout1 .media-list2 a {
  display: block;
  color: var(--title-color);
}
.about-layout1 .media-list2 a:not(:last-child) {
  margin-bottom: 10px;
}
.about-layout1 .media-list2 a i {
  color: var(--theme-color);
  margin-right: 10px;
}
.about-layout1 .about-img {
  position: relative;
}
.about-layout1 .about-img img {
  width: 100%;
}
.about-layout1 .media-box1 {
  display: flex;
  align-items: center;
  max-width: 245px;
  width: 100%;
  background-color: rgba(55, 71, 255, 0.8784313725);
  padding: 30px;
  border: 2px dashed var(--white-color);
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.about-layout1 .media-box1 .media-title {
  margin-bottom: 0;
  color: var(--white-color);
  font-size: 40px;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 5px solid var(--theme-color2);
}
.about-layout1 .media-box1 .media-text {
  margin-bottom: 0;
  text-align: left;
  font-size: 22px;
  color: var(--white-color);
  font-weight: 600;
  text-transform: capitalize;
  line-height: 120%;
}
.about-layout1 .vs-list li:before {
  content: "\f0a9";
  font-family: Font Awesome\ 5 Pro;
  font-weight: 900;
}
.about-layout1 .title-area3 {
  margin-bottom: 0;
}
.about-layout1 .list-style1 li {
  color: var(--title-color);
  font-size: 18px;
  line-height: 100%;
  font-weight: 600;
}

.about-layout1.style1 .list-style1 {
  margin-bottom: 30px;
  margin-top: 25px;
}
.about-layout1.style1 .list-style1 ul li {
  color: var(--body-color);
  font-weight: 500;
  font-size: 16px;
}

.call-media {
  display: flex;
  align-items: center;
  border-left: 3px solid var(--theme-color);
  box-shadow: 0 0 30px 3px rgba(0, 0, 0, 0.05);
  padding: 20px 20px 20px 30px;
  margin: 30px 0 30px 0;
  max-width: 350px;
  text-align: left;
}
.call-media .media-icon {
  font-size: 30px;
  color: var(--theme-color);
  margin-right: 20px;
}
.call-media .media-label {
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--title-font);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--body-color);
  display: block;
  margin: 0 0 5px 0;
}
.call-media .media-info {
  font-size: 30px;
  font-family: var(--body-font);
  margin: 0;
  line-height: 1;
  font-weight: 500;
  color: var(--title-color);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .about-layout1 .media-inner {
    display: block;
  }
  .about-layout1 .picture-box2 .picture-3 {
    margin-right: 200px;
    margin-left: auto;
    margin-top: -104px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .about-layout1 .about-box2 {
    padding: 0px 30px 0px 30px;
  }
  .testi-layout1 .testi-style1 .testi-rating {
    transform: unset;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .hero-layout1.style4 .course-instructor {
    bottom: 18%;
  }
  .hero-layout1.style4 .hero-inner {
    min-height: auto;
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .hero-layout1.style4 .hero-title {
    font-size: 42px;
  }
  .hero-layout1.style4 .hero-content {
    max-width: 430px;
  }
  .about-layout1 .about-box2 {
    padding: 30px 20px 0px 20px;
  }
  .course-layout1 .course-style2 .course-name {
    font-size: 20px;
  }
  .course-layout1 .course-style2 .course-content {
    padding: 25px 20px 0 20px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .about-box2{
    margin-bottom: 30px;
  }
  .process-layout1 .process-style1 {
    display: block;
  }
  .process-layout1 .process-style1 .process-icon {
    display: block;
    margin-bottom: 20px;
  }
  .hero-layout1.style4 .hero-title {
    font-size: 35px;
  }
  .hero-layout1.style4 .hero-inner {
    min-height: auto;
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .hero-layout1.style4 .course-instructor {
    display: none;
  }
  .hero-layout1.style4::after {
    height: 40px;
  }
  .about-layout1 .media-inner .media-body .media-info a {
    font-size: 14px;
  }
  .course-layout1 .course-style2 .course-name {
    font-size: 18px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .header-layout4 .header-social {
    padding: 15px 15px;
  }
  .header-layout4 .user-login.style2 {
    color: var(--white-color);
    font-size: 14px;
  }
  .about-layout1 .media-inner {
    display: block;
    margin-bottom: 20px;
  }
  .cta-layout1 .cart-subtitle {
    display: block;
  }
  .cta-layout1.style2 .cta-style2 .cta-content {
    padding: 0;
  }
}

/* OUR MISSION VISION */
.our-vision{
  position: relative;
  overflow: hidden;
  padding: 90px 0px !important;
  background-position: center;
  background-size: cover;
}

.our-vision .sec-subtitle,
.our-vision .about-title span{
  color: var(--brand-colorgreen);
}

/* CALICO FACILITIES */
.calico-facilities{
  position: relative;
  overflow: hidden;
  padding: 90px 0px !important;
  border-bottom: 5px solid var(--brand-colorgreen);
}

.calico-facilities-item {
  min-height: 624px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  margin-bottom: 30px;
  transition: all ease 0.4s;
}
.calico-facilities-item .blog-category {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
}
.calico-facilities-item .blog-meta {
  margin-bottom: 10px;
}
.calico-facilities-item .blog-meta span,
.calico-facilities-item .blog-meta a {
  font-size: 14px;
}
.calico-facilities-item .blog-img {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  margin: -1px -1px 0 -1px;
}
.calico-facilities-item .blog-img img {
  transition: all ease 0.4s;
  transform: scale(1.001);
}
.calico-facilities-item .blog-content {
  padding: 28px 40px 30px 30px;
}
.calico-facilities-item .blog-title {
  font-size: 26px;
  margin-bottom: 10px;
}
.calico-facilities-item .blog-author {
  display: flex;
  align-items: center;
}
.calico-facilities-item .author-avater {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 15px;
  border-radius: 50%;
}
.calico-facilities-item .author-avater img {
  width: 100%;
}
.calico-facilities-item .author-name {
  margin: 0;
  text-transform: capitalize;
}
.calico-facilities-item .author-degi {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--theme-color);
}
.calico-facilities-item:hover {
  border-color: var(--theme-color);
}
.calico-facilities-item:hover .blog-img img {
  transform: scale(1.15);
}

/* FAW LAYPUT */
.faq-layout1{
    padding: 90px 0px !important;
}

.faq-layout1 .title-area .sec-subtitle {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--theme-color);
  padding-left: 55px;
  letter-spacing: normal;
}
.faq-layout1 .title-area .sec-subtitle::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--theme-color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.faq-layout1 .title-area .sec-title {
  font-size: 45px;
  text-transform: capitalize;
}
.faq-layout1 .accordion-style1 .accordion-item {
  position: relative;
  overflow: hidden;
  background-color: #ECEFF1;
  outline: 2px dashed #D2D2D2;
  border-radius: 12px;
}

/* Contact form - Admission CTS */
.admission-cta{
 padding: 90px 0px !important;   
}

.admission-cta .sec-title{
  color: #ffffff;
}

.admission-cta .header-links ul li{
  color: #ffffff;
}
.admission-cta .header-links ul li i,
.admission-cta .header-links ul li a{
  color: #ffffff;
}

/*------------------- 4.18. Accordion  -------------------*/
.accordion-collapse {
  border: none;
}

.accordion-style1 .accordion-item {
  position: relative;
  overflow: hidden;
  background-color: var(--white-color);
  outline: 1px solid #D2D2D2;
  outline-offset: -1px;
  margin-bottom: 20px;
  border-radius: 20px;
  transition: all 0.4s ease 0s;
}
.accordion-style1 .accordion-item:last-child {
  margin-bottom: 30px;
}
.accordion-style1 .accordion-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--btn-size, 60px);
  background-color: var(--brand-colorgreen);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
}
.accordion-style1 .accordion-item.active:before {
  opacity: 1;
  visibility: visible;
}
.accordion-style1 .accordion-item:hover, .accordion-style1 .accordion-item.active {
  outline-color: var(--brand-colorgreen);
}
.accordion-style1 .accordion-body {
  padding: 0 35px 25px calc(var(--btn-size, 60px) + 20px);
  position: relative;
}
.accordion-style1 .accordion-body p {
  color: var(--title-color);
}
.accordion-style1 .accordion-button {
  color: var(--title-color);
  font-size: 20px;
  padding: 20px 27px 21px calc(var(--btn-size, 60px) + 20px);
  position: relative;
  outline: 0 !important;
  background: #eceff1;
}
.accordion-style1 .accordion-button:before {
  content: "\f068";
  font-family: var(--icon-font);
  position: absolute;
  left: 0;
  top: 0;
  width: var(--btn-size, 60px);
  height: 100%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  border-right: 1px solid transparent;
  color: var(--white-color);
  text-align: center;
  transition: all 0.4s ease 0s;
  outline: 0 !important;
}
.accordion-style1 .accordion-button.collapsed:before {
  content: "\f067";
  border-right-color: #D2D2D2;
  color: var(--title-color);
  transition: all ease 0.4s;
  outline: 0 !important;
}
.accordion-style1 .accordion-button:hover {
  color: var(--brand-colorgreen);
  outline: 0 !important;
}
.accordion-style1 .accordion-button:hover:before {
  border-right-color: var(--brand-colorgreen);
}

.course-accordion {
  position: relative;
  margin-bottom: 50px;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  outline: 0 !important;
}
.accordion-item p:last-child {
  margin-bottom: 0;
}

.accordion-button {
  padding: 0;
  border: none;
  text-align: left;
  font-family: var(--title-font);
  font-weight: 700;
  outline: 0 !important;
  box-shadow: none;
}
.accordion-button:after {
  display: none;
}
.accordion-button:focus {
  box-shadow: none;
  outline: 0 !important;
}
.accordion-button:not(.collapsed) {
  color: var(--title-color);
  background-color: transparent;
  box-shadow: none !important;
}

/* Medium devices */
@media (max-width: 991px) {
  .accordion-style3 .accordion-item {
    border-radius: 10px;
  }
  .accordion-style3 .accordion-button {
    font-size: 16px;
    padding: 15px 30px 15px 60px;
    line-height: 22px;
    border-radius: 5px;
  outline: 0 !important;
  }
  .accordion-style3 .accordion-button:before {
    left: 7px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    border-radius: 5px;
  outline: 0 !important;
  }
  .accordion-style3 .accordion-body {
    padding: 15px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .accordion-style1 {
    --btn-size: 50px;
  }
  .accordion-style2 .number {
    font-size: 18px;
    height: 40px;
    width: 40px;
    line-height: 40px;
  }
  .accordion-style2 .accordion-button {
    font-size: 16px;
    padding: 10px 27px 10px 60px;
  }
  .accordion-style2 .accordion-body {
    padding: 0 0 5px 60px;
  }
  .accordion-style3 .accordion-item {
    border-radius: 10px;
  }
  .accordion-style3 .accordion-button {
    font-size: 14px;
    padding: 15px 25px 15px 50px;
    line-height: 22px;
    border-radius: 5px;
  }
  .accordion-style3 .accordion-button:before {
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    border-radius: 5px;
  }
  .accordion-style4 .accordion-button {
    font-size: 18px;
    line-height: 26px;
    padding: 20px 27px 20px 95px;
  }
  .accordion-style4 .button-label {
    padding: 8px 18px;
    width: auto;
    height: auto;
    line-height: 1;
    font-size: 12px;
  }
}

/* MEDIA STYLE CURRICULUM */
.curriculum-sec-subtitle{
  color: var(--brand-colorgreen) !important;
}
.faq-layout1 .title-area .curriculum-sec-subtitle::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--brand-colorgreen);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.media-style5 {
  background-color: var(--brand-colorgreen);
  border-radius: 20px;
  padding: 40px 30px 40px 30px;
  margin-bottom: 30px;
}
.media-style5 .media-title {
  color: var(--white-color);
}
.media-style5 .icon {
  background-color: var(--theme-color2);
  border-radius: 50%;
  color: var(--title-color);
  font-size: 30px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  width: 70px;
  float: right;
}
.media-style5 .phone {
  display: block;
  margin: 20px 0 10px;
  text-decoration: underline;
}
.media-style5 a {
  color: var(--white-color);
  font-size: 18px;
}
.media-style5 a i {
  margin-right: 10px;
}
.media-style5 a:hover {
  color: var(--theme-color2);
}

/*------------------- 4.3. Footers -------------------*/
.widget-area {
  padding-top: 100px;
  padding-bottom: 40px;
}

.copyright-wrap {
  background-color: #150F2B;
  text-align: center;
  padding: 26px 0;
  position: relative;
  z-index: 2;
}

.copyright-text {
  color: var(--smoke-color);
  font-size: 16px;
  margin: 0;
}
.copyright-text a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}
.copyright-text a:hover {
  color: var(--theme-color2);
}

.footer-info {
  position: relative;
  margin: 0 0 13px 0;
  height: 40px;
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 0 0 50px;
  max-width: 300px;
  font-weight: 500;
}
.footer-info:last-child {
  margin-bottom: 0;
}
.footer-info i {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  position: absolute;
  left: 0;
  top: 48%;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all ease 0.4s;
}
.footer-info .text-inherit:hover {
  color: var(--theme-color2);
}
.footer-info:hover i {
  background-color: var(--theme-color3);
}

.footer-layout1 {
  background-color: var(--vs-secondary-color);
  --title-color: #fff;
  --body-color: #C7C7C7;
  overflow: hidden;
}

.footer-layout2 {
  --body-color: #fff;
  --title-color: #fff;
}
.footer-layout2 .copyright-wrap {
  background-color: #040011;
}

.footer-layout3 {
  overflow: hidden;
}
.footer-layout3 .vs-widget-about {
  padding-right: 65px;
}
.footer-layout3 .widget_title {
  margin: 0 0 25px 0;
}
.footer-layout3 .mailchimp-text {
  margin-bottom: 20px;
  padding-right: 20px;
}
.footer-layout3 .copyright-wrap {
  background-color: #F1F1F1;
}
.footer-layout3 .copyright-text {
  color: var(--title-color);
}
.footer-layout3 .footer-info a:hover,
.footer-layout3 .copyright-text a:hover {
  color: var(--theme-color);
}
.footer-layout3 .social-style1 i {
  color: var(--title-color);
  border-color: #777777;
  box-shadow: -23.34px 8px 24px rgba(35, 31, 32, 0.09);
}
.footer-layout3 .social-style1 a {
  color: var(--title-color);
}
.footer-layout3 .social-style1 a:hover {
  color: var(--theme-color);
}
.footer-layout3 .social-style1 a:hover i {
  color: var(--white-color);
}

.footer-shape1 {
  position: relative;
}
.footer-shape1 img {
  bottom: 0;
  position: absolute;
  left: -270px;
  z-index: 1;
}

.footer-campus {
  position: relative;
}
.footer-campus .campus-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 20px;
}
.footer-campus .campus-address {
  position: relative;
  padding: 0 0 0 25px;
  color: #E2E2E2;
  margin: 0;
}
.footer-campus .campus-address i {
  color: var(--white-color);
  font-size: 17px;
  margin-right: 10px;
  position: absolute;
  top: 5px;
  left: 0;
}

.footer-media {
  align-items: center;
  display: flex;
  position: relative;
}
.footer-media .media-icon {
  background-color: var(--theme-color);
  border-radius: 50%;
  color: var(--white-color);
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  margin-right: 15px;
  text-align: center;
  width: 50px;
}
.footer-media .media-title {
  color: var(--white-color);
  font-size: 18px;
  font-weight: bold;
  display: block;
}
.footer-media a {
  color: var(--white-color);
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
}
.footer-media a:hover {
  color: var(--theme-color2);
}

@media (max-width: 1550px) {
  .footer-shape1 img {
    display: none;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .footer-layout3 .vs-widget-about,
  .footer-layout3 .mailchimp-text {
    padding-right: 0;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .copyright-text {
    font-size: 14px;
  }
  .widget-area {
    padding-top: 80px;
    padding-bottom: 20px;
  }
}
.footer-layout2 {
  --body-color: #fff;
  --title-color: #fff;
}
.footer-layout2 .footer-widget {
  margin-bottom: 40px;
}
.footer-layout2 .footer-logo {
  margin-bottom: 15px;
}
.footer-layout2 .footer-widget .widget_title {
  margin-top: 0;
}
/* Large devices */
@media (max-width: 1199px) {
  .footer-widget {
    margin-bottom: 60px;
  }
  .footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.nav_menu a {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .footer-layout2 .footer-widget {
    padding-right: 0;
  }
}
/*------------------- 4.10. Contact  -------------------*/
.call-number1 {
  text-decoration: underline;
  text-decoration-color: var(--theme-color);
}
.call-number1:hover {
  color: var(--theme-color);
  text-decoration: underline;
}

.contact-style1 {
  padding: 40px 30px;
  background-color: var(--brand-colororange);
  border-radius: 20px;
}
.contact-style1 .contact-text {
  color: var(--white-color);
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-style1 .contact-number {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}
.contact-style1 .contact-number i {
  margin-right: 5px;
}
.contact-style1 .contact-number:last-child {
  margin-bottom: 0;
}

.contact-info {
  position: relative;
  margin: 0 0 7px 0;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 0 0 0 50px;
  max-width: 500px;
}
.contact-info:last-child {
  margin-bottom: 0;
}
.contact-info i {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  position: absolute;
  left: 0;
  top: 48%;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all ease 0.4s;
}
.contact-info:hover i {
  background-color: var(--theme-color2);
  color: var(--title-color);
}

.contact-title, .contact-number{
  color: #ffffff;
}

.contact-map {
  margin-top: 68px;
}

.footer-address {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.footer-logo {
  margin-bottom: 20px;
  max-width: 250px;
  background-color: #ffffff;
  border-radius: 3px;
}

.footer-logo img{
    width: 250px;
}

.footer-logo-cambridge {
  margin-bottom: 20px;
  max-width: 150px;
  background-color: #ffffff;
  border-radius: 3px;
}

.footer-logo-cambridge img{
    width: 150px;
}

.footer-text {
  color: var(--body-color);
  margin-bottom: 20px;
  text-transform: capitalize;
}

/* SPACING */
.space,
.space-top {
  padding-top: var(--section-space);
}

.space,
.space-bottom {
  padding-bottom: var(--section-space);
}

.space-extra,
.space-extra-top {
  padding-top: calc(var(--section-space) - 30px);
}

.space-extra,
.space-extra-bottom {
  padding-bottom: calc(var(--section-space) - 30px);
}

/* Medium devices */
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }
  .space,
  .space-bottom {
    padding-bottom: var(--section-space-mobile);
  }
  .space-extra,
  .space-extra-top {
    padding-top: calc(var(--section-space-mobile) - 30px);
  }
  .space-extra,
  .space-extra-bottom {
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }
  .space-top-md-none {
    padding-top: 0;
  }
}
/*------------------- 4.14. Form  -------------------*/
.form-style1 {
  margin-bottom: 35px;
  max-width: 700px;
}
.form-style1 .form-title {
  margin: -0.23em 0 24px 0;
}
.form-style1 .form-inner {
  position: relative;
}
.form-style1 input {
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 40px;
  height: 80px;
  padding-left: 45px;
  font-size: 16px;
}
.form-style1 input::-moz-placeholder {
  color: #474747;
}
.form-style1 input::-webkit-input-placeholder {
  color: #474747;
}
.form-style1 input:-ms-input-placeholder {
  color: #474747;
}
.form-style1 input::placeholder {
  color: #474747;
}
.form-style1 input[type=radio] ~ label {
  font-size: 18px;
}
.form-style1 input[type=radio] ~ label::before {
  border: 4px solid #C7C7C7;
}
.form-style1 input[type=radio]:hover ~ label, .form-style1 input[type=radio]:checked ~ label {
  color: var(--theme-color);
}
.form-style1 input[type=radio]:checked ~ label::before {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}
.form-style1 .icon-btn {
  --btn-size: 68px;
  --btn-font-size: 24px;
  position: absolute;
  right: 8px;
  top: 6px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
}
.form-style1 .icon-btn:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
}

.form-style2 {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.form-style2 .form-inner {
  background-color: var(--white-color);
  border-radius: 20px;
  border: 5px solid #EAEAEA;
  padding: 50px 50px 60px;
}
.form-style2 .vs-circle {
  position: absolute;
  right: -60px;
  bottom: -60px;
  max-width: initial;
  max-height: initial;
  z-index: -1;
}
.form-style2 .form-group {
  margin-bottom: 15px;
}
.form-style2 .form-title {
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 30px;
  max-width: 600px;
}
.form-style2 select,
.form-style2 input {
  border: none;
  border: 1px solid #D1D1D1;
  font-size: 16px;
  font-size: 14px;
  margin-bottom: 5px;
  width: 100%;
  height: 60px;
  border-radius: 9999px;
  padding: 20px 20px;
  --body-color: #333333;
  transition: all ease 0.4s;
}
.form-style2 select:focus,
.form-style2 input:focus {
  border-color: var(--theme-color);
}
.form-style2 .vs-btn {
  margin-bottom: 15px;
  margin-top: 5px;
  display: block;
  width: 100%;
}
.form-style2 .form-link {
  color: var(--title-color);
  font-weight: 700;
  text-decoration: underline;
}
.form-style2 .form-link:hover {
  color: var(--theme-color);
}

.form-style3 {
  --bs-gutter-x: 20px;
  padding: 40px 50px;
  border: 3px solid #EAEAEA;
  background-color: var(--white-color);
  border-radius: 20px;
}
.form-style3 select,
.form-style3 input {
  border-color: var(--border-color);
  height: 60px;
  transition: all ease 0.4s;
  border-radius: 999px;
}
.form-style3 select:focus,
.form-style3 input:focus {
  border-color: var(--theme-color);
}
.form-style3 .vs-btn {
  width: 100%;
}

.form-style4 {
  margin-bottom: 30px;
  padding: 70px 60px;
  border-radius: 20px;
}
.form-style4 .form-title {
  font-size: 40px;
  margin-bottom: 20px;
}
.form-style4 .form-group {
  margin-bottom: 20px;
}
.form-style4 input {
  border-radius: 14px;
  font-size: 16px;
  height: 60px;
  padding-right: 20px;
  padding-left: 30px;
}
.form-style4 a {
  color: #254389;
  text-decoration: underline;
  font-weight: 500;
}
.form-style4 input[type=checkbox] ~ label {
  margin: 0;
  font-weight: 500;
}
.form-style4 input[type=checkbox] ~ label::before {
  top: 2.5px;
}

.form-style5 {
  position: relative;
  background-color: #E8E8E7;
  border-radius: 20px;
  border: 2px dashed rgba(172, 176, 227, 0.6588235294);
  padding: 50px;
  margin-bottom: 30px;
}
.form-style5 .vs-circle {
  --circle-bg: var(--theme-color2);
  max-height: initial;
  max-width: initial;
  position: absolute;
  right: -50px;
  bottom: -50px;
  z-index: -1;
}
.form-style5 .form-title {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 20px;
  margin-top: -0.15em;
  text-transform: capitalize;
}
.form-style5 .form-text {
  color: var(--body-color);
  font-size: 18px;
  margin-bottom: 27px;
}
.form-style5 .form-group {
  margin-bottom: 20px;
}
.form-style5 .vs-btn {
  margin-bottom: 10px;
  margin-top: 5px;
}
.form-style5 .form-text2 {
  margin-bottom: 10px;
}
.form-style5 input,
.form-style5 select,
.form-style5 textarea {
  border-radius: 10px;
  height: 65px;
  padding-left: 30px;
  transition: all ease 0.4s;
  padding-right: 20px;
}
.form-style5 input:focus,
.form-style5 select:focus,
.form-style5 textarea:focus {
  border-color: var(--theme-color);
}
.form-style5 textarea {
  min-height: 150px;
  margin-bottom: 0;
}
.form-style5 input[type=radio] ~ label::before {
  border: 1px solid #C1C1C1;
}
.form-style5 input[type=radio]:checked ~ label::before {
  background-color: var(--white-color);
  border-color: var(--theme-color);
  border-width: 6px;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .form-style2 .vs-circle {
    right: -40px;
    bottom: -40px;
  }
}
/* Medium Large devices */
@media (max-width: 1399px) {
  .form-style2 .vs-circle {
    display: none;
  }
  .form-style2 .form-inner {
    padding: 40px 30px 40px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .form-style3 {
    padding: 30px 25px;
  }
  .form-style1 {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .form-style1 .row {
    justify-content: center;
  }
  .form-style4 {
    padding: 50px 30px;
  }
  .form-style4 .form-title {
    font-size: 36px;
  }
  .form-style5 {
    padding: 40px 30px;
  }
  .form-style5 .vs-circle {
    right: -20px;
    bottom: -20px;
    --circle-size: 500px;
  }
  .form-style5 .form-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .form-style5 .form-text {
    font-size: 16px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .form-style1 .form-group {
    padding-left: 15px;
  }
  .form-style1 .form-group:first-child {
    margin-bottom: 15px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .form-style2 .form-inner {
    padding: 25px 20px 40px;
  }
  .form-style2 .form-title {
    line-height: 30px;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .form-style3 {
    padding: 30px 15px;
  }
  .form-style1 .form-title {
    margin: -0.23em 0 18px 0;
    font-size: 28px;
  }
  .form-style1 .row .form-group {
    margin-bottom: 10px;
  }
  .form-style1 input {
    padding: 0 0 0 25px;
    font-size: 14px;
    height: 60px;
  }
  .form-style1 .form-inner {
    margin-top: 10px;
  }
  .form-style1 input[type=radio] ~ label {
    font-size: 16px;
  }
  .form-style1 .icon-btn {
    --btn-size: 48px;
    --btn-font-size: 18px;
  }
  .form-style5 {
    padding: 50px 20px;
  }
  .form-style5 .form-title {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .form-style4 {
    padding: 40px 15px;
  }
  .form-style4 .form-title {
    font-size: 30px;
  }
}