/*==============================================*/
/*============================================
/*  01. Theme Default CSS
==============================================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&amp;family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&amp;display=swap");
:root {
  --tg-body-font-family: 'Inter', sans-serif;
  --tg-heading-font-family: 'Poppins', sans-serif;
  --tg-icon-font-family: "Font Awesome 5 Free";
  --tg-body-font-size: 16px;
  --tg-body-line-height: 1.75;
  --tg-heading-line-height: 1.3;
  --tg-body-color: #6D6C80;
  --tg-heading-color: #161439;
  --tg-theme-primary: #BE1521;
  --tg-theme-secondary: #BE1521;
  --tg-common-color-blue: #050071;
  --tg-common-color-blue-2: #282568;
  --tg-common-color-indigo: #9B51E0;
  --tg-common-color-purple: #8121FB;
  --tg-common-color-pink: #FF429D;
  --tg-common-color-red: #E11B24;
  --tg-common-color-orange: #fd7e14;
  --tg-common-color-yellow: #F8BC24;
  --tg-common-color-yellow-2: #FBE67B;
  --tg-common-color-yellow-3: #FCB428;
  --tg-common-color-green: #12BB6A;
  --tg-common-color-teal: #219653;
  --tg-common-color-cyan: #00AEE5;
  --tg-common-color-white: #fff;
  --tg-common-color-gray: #F7F7F9;
  --tg-common-color-gray-2: #EFEEFE;
  --tg-common-color-gray-3: #7F7E97;
  --tg-common-color-gray-4: #ACAACC;
  --tg-common-color-gray-5: #B2BBCC;
  --tg-common-color-gray-6: #d7d7df;
  --tg-common-color-gray-7: #f6f6f6;
  --tg-common-color-gray-8: #F5F5F4;
  --tg-common-color-gray-9: #F9F9F9;
  --tg-common-color-gray-10: #F8F8F8;
  --tg-common-color-gray-11: #F8F8FC;
  --tg-common-color-dark: #1C1A4A;
  --tg-common-color-black: #BE1521;
  --tg-common-color-black-2: #BE1521;
  --tg-common-color-black-3: #BE1521;
  --tg-border-1: #C9C9DD;
  --tg-border-2: #D0DAE9;
  --tg-border-3: #E2E2E2;
  --tg-border-4: #D7DCE3;
  --tg-border-5: #2F466A;
  --tg-border-6: #dfdfdf;
  --tg-border-7: #E7E7E7;
  --tg-fw-extra-bold: 800;
  --tg-fw-bold: 700;
  --tg-fw-semi-bold: 600;
  --tg-fw-medium: 500;
  --tg-fw-regular: 400;
  --tg-fw-light: 300;
}

/*=============================
	Typography css start
===============================*/
body {
  font-family: var(--tg-body-font-family);
  font-size: var(--tg-body-font-size);
  font-weight: var(--tg-fw-regular);
  color: var(--tg-body-color);
  line-height: var(--tg-body-line-height);
}

img,
.img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
button {
  color: var(--tg-theme-primary);
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus,
.button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

a:hover,
button:hover {
  color: var(--tg-theme-secondary);
  text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tg-heading-font-family);
  color: var(--tg-heading-color);
  margin-top: 0px;
  font-weight: var(--tg-fw-semi-bold);
  line-height: var(--tg-heading-line-height);
  text-transform: unset;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.list-wrap {
  margin: 0px;
  padding: 0px;
}
.list-wrap li {
  list-style: none;
}

p {
  font-family: var(--tg-body-font-family);
  font-size: var(--tg-body-font-size);
  line-height: var(--tg-body-line-height);
  font-weight: var(--tg-fw-regular);
  color: var(--tg-body-color);
  margin-bottom: 15px;
}

hr {
  border-bottom: 1px solid var(--tg-common-color-gray);
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  color: var(--tg-heading-color);
  cursor: pointer;
  font-size: var(--tg-body-font-size);
  font-weight: var(--tg-fw-regular);
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  text-shadow: none;
}

::selection {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  text-shadow: none;
}

/*=============================
    - Input Placeholder
===============================*/
input,
textarea {
  color: var(--tg-body-color);
}

*::-moz-placeholder {
  color: var(--tg-body-color);
  font-size: var(--tg-body-font-size);
  opacity: 1;
}

*::placeholder {
  color: var(--tg-body-color);
  font-size: var(--tg-body-font-size);
  opacity: 1;
}

/*=============================
    - Common Classes
===============================*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

/*=============================
    - Bootstrap Custom
=============================*/
.container {
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gx-0 {
  --bs-gutter-x: 0;
}

.gutter-20 {
  --bs-gutter-x: 20px;
}

.container {
  max-width: 1440px;
}
@media (max-width: 1500px) {
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}

.custom-container {
  max-width: 1680px;
}
@media (max-width: 1800px) {
  .custom-container {
    max-width: 1680px;
  }
}
@media (max-width: 1500px) {
  .custom-container {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container {
    max-width: 540px;
  }
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*=============================
	1. Button style
===============================*/
.tg-button-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.btn {
  user-select: none;
  -moz-user-select: none;
  background: var(--tg-theme-primary) none repeat scroll 0 0;
  border: medium none;
  color: var(--tg-common-color-white);
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: var(--tg-fw-semi-bold);
  font-family: var(--tg-heading-font-family);
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 0;
  padding: 16px 30px;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 4px 6px 0px 0px var(--tg-common-color-blue);
  overflow: hidden;
}
.btn:hover, .btn:focus-visible {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
  box-shadow: 0 0 0 0 var(--tg-common-color-blue);
}
.btn .text {
  display: block;
}
.btn.tg-svg {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn .svg-icon {
  width: 14px;
  display: block;
  margin-top: -3px;
}
.btn.btn-border {
  background: var(--tg-common-color-white);
  border: 1px solid var(--tg-theme-primary);
  color: var(--tg-theme-primary);
  padding: 19px 23px 16px 23px;
}
.btn.btn-border svg path {
  stroke: var(--tg-theme-primary);
}
.btn.btn-border:focus-visible, .btn.btn-border:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}
.btn.btn-border:focus-visible svg path, .btn.btn-border:hover svg path {
  stroke: var(--tg-common-color-white);
}
.btn.white-btn {
  background: var(--tg-common-color-white);
  color: var(--tg-theme-secondary);
}
.btn.white-btn svg path {
  stroke: var(--tg-theme-secondary);
}
.btn-two {
  background: var(--tg-theme-secondary);
  border: 2px solid var(--tg-common-color-black-3);
  -webkit-box-shadow: 4px 4px 0px 0px #3D3D3D;
  -moz-box-shadow: 4px 4px 0px 0px #3D3D3D;
  -ms-box-shadow: 4px 4px 0px 0px #3D3D3D;
  -o-box-shadow: 4px 4px 0px 0px #3D3D3D;
  box-shadow: 4px 4px 0px 0px #3D3D3D;
  color: var(--tg-common-color-black-3);
}
.btn-two svg {
  color: var(--tg-common-color-black-3) !important;
}
.btn-two:hover, .btn-two:focus-visible {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  box-shadow: 0 0 0 0 var(--tg-common-color-blue);
  border-color: var(--tg-theme-primary);
}
.btn-two:hover svg, .btn-two:focus-visible svg {
  color: var(--tg-common-color-white) !important;
}
.btn-three {
  background: var(--tg-theme-secondary);
  box-shadow: none;
  color: var(--tg-common-color-black-3) !important;
}
.btn-three svg {
  color: var(--tg-common-color-black-3) !important;
}
.btn-four {
  box-shadow: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}

.arrow-btn {
  --arrow-hover-move-x: -110%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s linear;
}
.arrow-btn svg {
  color: var(--tg-common-color-white);
  width: 15px;
  transition: all 0.3s ease-out 0s;
  transform: translateY(-1px);
}
.arrow-btn svg path {
  transition: transform 0.38s cubic-bezier(0.37, 0.08, 0.02, 0.93), opacity 0.18s ease-out;
}
.arrow-btn svg path:nth-of-type(1) {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}
.arrow-btn svg path:nth-of-type(2) {
  transform: translateX(calc(1 * var(--arrow-hover-move-x)));
  opacity: 0.5;
  transition-delay: 0s, 0s;
}
.arrow-btn:focus-visible svg, .arrow-btn:hover svg {
  color: var(--tg-heading-color);
}
.arrow-btn:focus-visible svg path:nth-of-type(1), .arrow-btn:hover svg path:nth-of-type(1) {
  transform: translateX(calc(-1 * var(--arrow-hover-move-x)));
  opacity: 0;
  transition-delay: 0s, 0s;
}
.arrow-btn:focus-visible svg path:nth-of-type(2), .arrow-btn:hover svg path:nth-of-type(2) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}

/*=============================
    00. Preloader
===============================*/
#preloader {
  background-color: var(--tg-common-color-white);
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 9999;
}
#preloader .loader .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 3px solid var(--tg-common-color-gray);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#preloader .loader .loader-container::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--tg-theme-primary);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  animation: loaderspin 1.8s infinite ease-in-out;
  -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}
#preloader .loader .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80px;
  text-align: center;
}
#preloader .loader .loader-icon img {
  animation: loaderpulse alternate 900ms infinite;
  width: 40px;
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
/*=============================
    - Background color
===============================*/
.grey-bg {
  background: var(--tg-common-color-gray);
}

.grey-bg-two {
  background: var(--tg-common-color-gray-9);
}

.white-bg {
  background: var(--tg-common-color-white);
}

.black-bg {
  background: var(--tg-common-color-black);
}

/*=============================
	04. OffCanvas
===============================*/
.offCanvas__info {
  background: var(--tg-common-color-white) none repeat scroll 0 0;
  height: 100%;
  padding: 30px;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 340px;
  z-index: 999;
  overflow-y: scroll;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.offCanvas__info.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.offCanvas__info::-webkit-scrollbar {
  width: 0px;
}
.offCanvas__close-icon {
  margin-top: -16px;
  text-align: right;
}
.offCanvas__close-icon button {
  background: transparent;
  border: 0 none;
  color: var(--tg-theme-primary);
  cursor: pointer;
  font-size: 20px;
  padding: 0;
}
.offCanvas__logo img {
  max-height: 34px;
}
.offCanvas__side-info {
  border-top: 1px solid var(--tg-theme-primary);
  padding-top: 25px;
}
.offCanvas__side-info .contact-list h4 {
  color: var(--tg-heading-color);
  font-weight: 700;
  font-size: 18px;
}
.offCanvas__side-info .contact-list p {
  color: var(--tg-body-color);
  margin: 0;
  margin-bottom: 2px;
  line-height: 26px;
}
.offCanvas__social-icon a {
  color: var(--tg-theme-primary);
  display: inline-block;
  margin-right: 20px;
  text-align: center;
}
.offCanvas__social-icon a:hover {
  color: var(--tg-theme-secondary);
}
.offCanvas__overly {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.offCanvas__overly.active {
  opacity: 0.7;
  visibility: visible;
}

/*=========================
04. Breadcrumb
===========================*/
.breadcrumb__bg {
  background-size: cover;
  background-position: center;
  padding: 107px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1500px) {
  .breadcrumb__bg {
    padding: 100px 0;
  }
}
.breadcrumb__bg-two {
  padding: 61px 0;
}
.breadcrumb__bg-two .breadcrumb__shape-wrap img:nth-child(3) {
  display: none;
}
.breadcrumb__bg-three {
  min-height: 300px;
}
.breadcrumb__content .title {
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 1.2;
}
@media (max-width: 1199.98px) {
  .breadcrumb__content .title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb__content .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__content .title {
    font-size: 36px;
  }
}
.breadcrumb__content .breadcrumb {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 10px;
}
.breadcrumb__content .breadcrumb > * {
  font-size: 16px;
  color: var(--tg-theme-primary);
}
.breadcrumb__content .breadcrumb > * a {
  color: var(--tg-common-color-dark);
}
.breadcrumb__content .breadcrumb .breadcrumb-separator {
  line-height: 1;
  font-size: 16px;
  margin-top: 1px;
  font-weight: 700;
  margin-top: 2px;
  opacity: 0.5;
  color: var(--tg-common-color-gray-3);
}
.breadcrumb__shape-wrap img {
  position: absolute;
  z-index: -1;
}
.breadcrumb__shape-wrap img:nth-child(1) {
  left: 100px;
  top: 62px;
}
@media (max-width: 1500px) {
  .breadcrumb__shape-wrap img:nth-child(1) {
    left: 69px;
    top: 52px;
  }
}
.breadcrumb__shape-wrap img:nth-child(2) {
  right: 32%;
  top: 21%;
}
@media (max-width: 1500px) {
  .breadcrumb__shape-wrap img:nth-child(2) {
    right: 38%;
  }
}
@media (max-width: 991.98px) {
  .breadcrumb__shape-wrap img:nth-child(2) {
    right: 31%;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb__shape-wrap img:nth-child(2) {
    display: none;
  }
}
.breadcrumb__shape-wrap img:nth-child(3) {
  right: 20%;
  bottom: 15%;
}
@media (max-width: 1500px) {
  .breadcrumb__shape-wrap img:nth-child(3) {
    right: 23%;
    bottom: 13%;
  }
}
.breadcrumb__shape-wrap img:nth-child(4) {
  right: 8%;
  top: 8%;
}
@media (max-width: 991.98px) {
  .breadcrumb__shape-wrap img:nth-child(4) {
    right: 11%;
    top: 16%;
  }
}
.breadcrumb__shape-wrap img:nth-child(5) {
  right: 0;
  top: 0;
}
@media (max-width: 1199.98px) {
  .breadcrumb__shape-wrap img:nth-child(5) {
    right: -30px;
    width: 400px;
    height: 285px;
  }
}
@media (max-width: 991.98px) {
  .breadcrumb__shape-wrap img:nth-child(5) {
    display: none;
  }
}

/*=============================
    00. Select2 CSS
===============================*/
.tgmenu__search-form .select2-container {
  margin-left: -29px;
}
.tgmenu__search-form .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 37px;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%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-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  font-size: 14px;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-heading-color);
  font-weight: 500;
}
.tgmenu__search-form .select2-container .select2-selection--single {
  height: auto;
}

.course-category-dropdown {
  background: var(--tg-common-color-white);
  border: 1px solid var(--tg-border-2);
  margin: 0 0;
}
.course-category-dropdown .select2-results__options {
  margin-top: 7px;
}
.course-category-dropdown .select2-results__option {
  padding: 1px 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.course-category-dropdown .select2-results__option--selectable:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

/*=============================
    00. Scroll Top
===============================*/
.scroll__top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  border-radius: 50px;
  z-index: 99;
  color: var(--tg-common-color-white);
  text-align: center;
  cursor: pointer;
  background: var(--tg-theme-primary);
  transition: 1s ease;
  border: none;
}
@media (max-width: 1199.98px) {
  .scroll__top {
    right: 25px;
  }
}
@media (max-width: 991.98px) {
  .scroll__top {
    right: 30px;
  }
}
@media (max-width: 767.98px) {
  .scroll__top {
    right: 15px;
    width: 30px;
    height: 30px;
  }
}
.scroll__top.open {
  bottom: 30px;
}
@media (max-width: 1199.98px) {
  .scroll__top.open {
    bottom: 25px;
  }
}
@media (max-width: 767.98px) {
  .scroll__top.open {
    bottom: 15px;
  }
}
.scroll__top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll__top:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
}

/*=============================
	00. Section Title
===============================*/
.section__title .sub-title {
  display: inline-block;
  line-height: 1.62;
  background: var(--tg-common-color-gray-2);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  padding: 3px 16px;
  font-weight: var(--tg-fw-medium);
  color: var(--tg-theme-primary);
  margin: 0 0 14px;
}
.section__title .title {
  font-size: 36px;
  line-height: 1.33;
  margin: 0 0;
  letter-spacing: -0.75px;
  text-transform: capitalize;
}
@media (max-width: 767.98px) {
  .section__title .title {
    font-size: 29px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section__title .title {
    font-size: 36px;
  }
}
.section__title .title span:not(.svg-icon) {
  color: var(--tg-theme-primary);
  position: relative;
  color: var(--tg-common-color-white);
  padding: 0 13px 0 20px;
  font-weight: var(--tg-fw-bold);
  display: inline-block;
  z-index: 1;
}
.section__title .title span:not(.svg-icon) > svg {
  position: absolute;
  left: 0;
  top: -5px;
  width: 100%;
  height: 59px;
  z-index: -1;
  color: var(--tg-theme-secondary);
}
@media (max-width: 767.98px) {
  .section__title .title span:not(.svg-icon) > svg {
    height: 45px;
    top: -2px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section__title .title span:not(.svg-icon) > svg {
    top: 0;
  }
}
.section__title .title.bold {
  font-weight: 700;
}
.section__title .title .svg-icon {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 61px;
  height: 68px;
}
.section__title .title .svg-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.section__title .title .svg-icon path {
  stroke: var(--tg-heading-color);
}
.section__title p {
  margin-bottom: 0;
  margin-top: 15px;
}
@media (max-width: 767.98px) {
  .section__title p br {
    display: none;
  }
}
.section__title.white-title .sub-title {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}
.section__title.white-title .title {
  color: var(--tg-common-color-white);
}
.section__title.white-title .title span:not(.svg-icon) {
  color: var(--tg-common-color-white);
}
.section__title.white-title p {
  color: #ACAACC;
}
.section__title .desc {
  margin: 10px 0 0;
}

/*=============================
	Header
===============================*/
.tg-header__area {
  padding: 5px 0;
}
@media (max-width: 1500px) {
  .tg-header__area {
    padding: 10px 0;
  }
}
@media (max-width: 1199.98px) {
  .tg-header__area {
    padding: 20px 0;
  }
}
.tg-header__area .mobile-nav-toggler {
  position: relative;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  color: var(--tg-theme-primary);
  display: none;
}
@media (max-width: 1199.98px) {
  .tg-header__area .mobile-nav-toggler {
    display: block;
  }
}
.tg-header__area.sticky-menu {
  padding: 0 0;
}
@media (max-width: 1199.98px) {
  .tg-header__area.sticky-menu {
    padding: 20px 0;
  }
}
.tg-header__style-two .tgmenu__search-form {
  width: 460px;
}
@media (max-width: 1500px) {
  .tg-header__style-two .tgmenu__search-form {
    width: 330px;
  }
}
@media (max-width: 1199.98px) {
  .tg-header__style-two .tgmenu__search-form {
    width: 400px;
  }
}
@media (max-width: 991.98px) {
  .tg-header__style-two .tgmenu__search-form {
    width: auto;
  }
}
.tg-header__style-two .tgmenu__navbar-wrap ul {
  margin: 0 auto 0 50px;
}
@media (max-width: 1500px) {
  .tg-header__style-two .tgmenu__navbar-wrap ul {
    margin: 0 auto 0 25px;
  }
}
.tg-header__style-two .tgmenu__navbar-wrap ul li .mega-menu {
  left: -192px;
}
@media (max-width: 1500px) {
  .tg-header__style-two .tgmenu__navbar-wrap ul li .mega-menu {
    left: -100px;
  }
}
.logo-prep {
    text-align: center;
    padding: 10px 0; 
}
.logo-prep img {
    width: 100px;
    transition: width 0.3s ease; /* animação suave */
}
.tg-header__area.sticky-menu .logo-prep img {
    width: 50px; /* tamanho reduzido */
    padding: 0; 
}

/*=============================
    Banner
===============================*/
.banner-bg-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background-size: cover;
  background-position: bottom;
  z-index: 1;
}
@media (max-width: 1500px) {
  .banner-bg-two {
    padding: 60px 0 60px;
  }
}
@media (max-width: 991.98px) {
  .banner-bg-two {
    padding: 60px 0 25px;
  }
}
.banner-bg-two .line-shape-two {
  position: absolute;
  left: 0;
  top: 20%;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .banner-bg-two .line-shape-two {
    display: none;
  }
}
.banner__content-two {
  margin: 120px 0 60px;
}
@media (max-width: 1500px) {
  .banner__content-two {
    margin: 80px 0 60px;
  }
}
@media (max-width: 991.98px) {
  .banner__content-two {
    margin: 0 0 60px;
    text-align: center;
  }
}
.banner__content-two .title {
  margin-bottom: 25px;
  font-size: 44px;
  font-weight: 700;
}
@media (max-width: 1199.98px) {
  .banner__content-two .title {
    font-size: 38px;
  }
}
@media (max-width: 767.98px) {
  .banner__content-two .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__content-two .title {
    font-size: 40px;
  }
}
.banner__content-two .title span {
  position: relative;
  color: var(--tg-common-color-white);
  padding: 0 13px 0 20px;
  font-weight: var(--tg-fw-bold);
  z-index: 1;
}
@media (max-width: 767.98px) {
  .banner__content-two .title span {
    padding: 0 10px 0 10px;
  }
}
.banner__content-two .title span svg {
  position: absolute;
  left: 0;
  top: 3px;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: var(--tg-theme-secondary);
}
.banner__btn-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .banner__btn-two {
    justify-content: center;
  }
}
.banner__btn-two .play-btn {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--tg-heading-font-family);
  line-height: 1.3;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--tg-heading-color);
}
.banner__btn-two .play-btn i {
  width: 54px;
  height: 54px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: var(--tg-theme-secondary);
  border: 1px solid var(--tg-heading-color);
  color: var(--tg-heading-color);
  font-size: 16px;
  -webkit-box-shadow: 4px 4px 0px 0px #3D3D3D;
  -moz-box-shadow: 4px 4px 0px 0px #3D3D3D;
  -ms-box-shadow: 4px 4px 0px 0px #3D3D3D;
  -o-box-shadow: 4px 4px 0px 0px #3D3D3D;
  box-shadow: 4px 4px 0px 0px #3D3D3D;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.banner__btn-two .play-btn:hover {
  color: var(--tg-theme-secondary);
}
.banner__btn-two .play-btn:hover i {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.banner__images {
  position: relative;
  text-align: center;
  margin-right: 60px;
}
@media (max-width: 1199.98px) {
  .banner__images {
    margin-right: 0;
  }
}
@media (max-width: 1500px) {
  .banner__images img {
    width: 400px;
  }
}
@media (max-width: 1199.98px) {
  .banner__images img {
    width: 350px;
  }
}
.banner__images .big-shape {
  position: absolute;
  z-index: -1;
  left: 8%;
  top: 2%;
  color: #FFC738;
}
@media (max-width: 1500px) {
  .banner__images .big-shape {
    top: 5%;
  }
}
@media (max-width: 1199.98px) {
  .banner__images .big-shape {
    left: 0;
    width: 400px;
    top: 2%;
  }
  .banner__images .big-shape svg {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767.98px) {
  .banner__images .big-shape {
    width: 100%;
    max-width: 400px;
  }
}
.banner__images .svg-icon {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 35%;
  top: -5%;
}
@media (max-width: 991.98px) {
  .banner__images .svg-icon {
    left: 30%;
    top: -8%;
  }
}
.banner__images .svg-icon svg {
  width: 100%;
  height: 100%;
  color: #031333;
  display: block;
}
.banner__images .about__enrolled {
  left: 0;
  top: 41%;
  bottom: auto;
}
@media (max-width: 1199.98px) {
  .banner__images .about__enrolled {
    display: none;
  }
}
.banner__student {
  position: absolute;
  right: 18%;
  top: 16%;
  background: var(--tg-common-color-white);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #B2BBCC;
  box-shadow: -8px 8px 0px 0px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 12px 20px;
}
@media (max-width: 1199.98px) {
  .banner__student {
    right: 0;
    top: 40%;
  }
}
.banner__student img {
  max-width: 155px;
}
.banner__student .title {
  font-size: 16px;
  font-weight: var(--tg-fw-medium);
  color: var(--tg-theme-primary);
  margin: 0 0 2px;
}
.sticky-menu {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  z-index: 99;
  background: var(--tg-common-color-white);
  -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  border-radius: 0;
}
.sticky-menu ul li .sub-menu {
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  -o-border-radius: 0 0 6px 6px;
  -ms-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}


/*=============================
    Universities
===============================*/
.university-area {
  background: var(--tg-common-color-black);
  padding: 20px 0;
}
.university-area .container-fluid {
  padding: 0 0;
}
.university-area-two {
  transform: rotate(-3.5deg);
  position: relative;
  z-index: 2;
  margin-top: -60px;
}
@media (max-width: 767.98px) {
  .university-area-two {
    transform: rotate(0);
  }
}
.marquee_mode {
  overflow: hidden;
  position: relative;
}
.marquee_mode .js-marquee {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 0 35px;
}
.university__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 0 35px;
}
.university__item a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.university__item a:hover img {
  opacity: 0.7;
}
.university__item-two {
  min-height: 46px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.university__item-two img {
  cursor: pointer;
}

/*=============================
    approved
===============================*/
.approved__bg {
  background-size: cover;
  background-position: center;
  padding: 265px 0 120px;
  margin-top: -145px;
  position: relative;
  z-index: 1;
}
.approved-active {
  overflow: hidden;
}
.approved-nav .swiper-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767.98px) {
  .approved-nav .swiper-wrapper {
    gap: 15px;
  }
}
.approved-nav .swiper-wrapper button {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  width: 100px;
  height: 100px;
  background: #D9D9D9;
  border: 2px solid #ABABAB;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  filter: grayscale(1);
  line-height: 1;
}
@media (max-width: 767.98px) {
  .approved-nav .swiper-wrapper button {
    width: 80px;
    height: 80px;
    align-items: flex-end;
  }
  .approved-nav .swiper-wrapper button img {
    max-width: 80%;
  }
}
.approved-nav .swiper-wrapper .swiper-slide {
  width: auto !important;
}
.approved-nav .swiper-slide-thumb-active button {
  filter: grayscale(0);
  background: var(--tg-common-color-white);
  border-color: var(--tg-theme-primary);
}
.approved__item-three {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .approved__item-three {
    flex-wrap: wrap;
  }
}
.approved__thumb-three {
  width: 50%;
  flex: 0 0 auto;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 453px;
}
@media (max-width: 767.98px) {
  .approved__thumb-three {
    width: 100%;
  }
}
.approved__thumb-three .shape-one {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
  color: var(--tg-theme-secondary);
}
@media (max-width: 991.98px) {
  .approved__thumb-three .shape-one {
    width: 100%;
  }
  .approved__thumb-three .shape-one svg {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .approved__thumb-three .shape-one {
    width: 400px;
  }
}
.approved__item-two:hover .approved__thumb-two .shape-one {
  color: var(--tg-theme-primary);
}
.approved__thumb-two .shape-one {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  color: var(--tg-theme-secondary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.approved__content-three {
  margin-left: 40px;
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .approved__content-three {
    margin-left: 0;
  }
}
.approved__content-three .ratting {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  color: var(--tg-common-color-yellow);
  gap: 3px;
  line-height: 1;
  font-size: 15px;
}
.approved__content-three .ratting-wrap {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--tg-common-color-gray-3);
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -o-border-radius: 35px;
  -ms-border-radius: 35px;
  border-radius: 35px;
  background: var(--tg-common-color-white);
  padding: 7px 10px;
  gap: 8px;
  margin-bottom: 20px;
}
.approved__content-three .ratting-wrap span {
  font-size: 14px;
  color: var(--tg-common-color-gray-3);
  line-height: 1;
}
.approved__content-three .title {
  margin-bottom: 10px;
  font-size: 24px;
}
.approved__content .designation {
  display: block;
  color: var(--tg-theme-primary);
  font-family: var(--tg-heading-font-family);
  line-height: 1.2;
  margin-bottom: 12px;
}
.approved__details-content .designation {
  display: block;
  font-size: 16px;
  color: var(--tg-common-color-white);
  font-family: var(--tg-heading-font-family);
  line-height: 1;
  margin-bottom: 22px;
}
.approved__content-three .designation {
  display: block;
  line-height: 1;
  font-size: 18px;
  font-weight: 400;
  color: var(--tg-theme-primary);
  font-family: var(--tg-heading-font-family);
  margin-bottom: 15px;
}
.approved__content-three p {
  margin-bottom: 22px;
  width: 80%;
}
@media (max-width: 991.98px) {
  .approved__content-three p {
    width: 100%;
  }
}
.approved-nav .swiper-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
.approved__shape img {
  position: absolute;
  right: 24%;
  top: 40%;
  z-index: -1;
}
@media (max-width: 1500px) {
  .approved__shape img {
    right: 17%;
  }
}
@media (max-width: 1199.98px) {
  .approved__shape img {
    right: 10%;
  }
}
@media (max-width: 991.98px) {
  .approved__shape img {
    right: 4%;
    width: 100px;
    top: 32%;
  }
}
.approved__shape-two img {
  position: absolute;
  z-index: -1;
}
.approved__shape-two img:nth-child(1) {
  top: 4%;
  left: 5%;
  max-width: 65px;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
}
@media (max-width: 991.98px) {
  .approved__shape-two img:nth-child(1) {
    top: 1%;
    left: 3%;
    max-width: 55px;
  }
}
@media (max-width: 767.98px) {
  .approved__shape-two img:nth-child(1) {
    top: 0%;
    max-width: 45px;
  }
}
.approved__shape-two img:nth-child(2) {
  right: 3%;
  bottom: 27%;
  max-width: 104px;
}
@media (max-width: 1800px) {
  .approved__shape-two img:nth-child(2) {
    bottom: 10%;
  }
}
@media (max-width: 991.98px) {
  .approved__shape-two img:nth-child(2) {
    bottom: 5%;
    max-width: 85px;
  }
}
@media (max-width: 767.98px) {
  .approved__shape-two img:nth-child(2) {
    bottom: 3%;
    max-width: 70px;
  }
}


.swiper-container {
  overflow: hidden;
}


/*=============================
    journey
===============================*/

.journey__item-wrap .row [class*=col-]:nth-child(2) .journey__item-two {
  border: 1px solid #C8C1ED;
  background: #EDEAFF;
  box-shadow: 8px 8px 0px 0px #D9D5F1;
}
.journey__item-wrap .row [class*=col-]:nth-child(2) .journey__item-two .journey__icon-two {
  background: #5751E1;
}
.journey__item-wrap .row [class*=col-]:nth-child(2) .journey__item-two:hover .journey__item-shape {
  color: #5751E1;
}
.journey__item-wrap .row [class*=col-]:nth-child(3) .journey__item-two {
  border: 1px solid #EBE0C4;
  background: #FFF7E2;
  box-shadow: 8px 8px 0px 0px #E5DECB;
}
.journey__item-wrap .row [class*=col-]:nth-child(3) .journey__item-two .journey__icon-two {
  background: #FFC224;
}
.journey__item-wrap .row [class*=col-]:nth-child(3) .journey__item-two:hover .journey__item-shape {
  color: #FFC224;
}
.journey__item-wrap-two .row [class*=col-]:nth-child(2) .journey__icon-three {
  color: var(--tg-theme-primary);
}
.journey__item-wrap-two .row [class*=col-]:nth-child(3) .journey__icon-three {
  color: var(--tg-common-color-pink);
}
.journey__item-wrap-two .row [class*=col-]:nth-child(4) .journey__icon-three {
  color: var(--tg-common-color-cyan);
}
.journey__item-wrap-three .row [class*=col-]:nth-child(2) .journey__item-five-shape .shape-one svg path:nth-child(1) {
  color: #DA9D00;
}
.journey__item-wrap-three .row [class*=col-]:nth-child(2) .journey__item-five-shape .shape-one svg path:nth-child(2) {
  color: #F3B107;
}
.journey__item-wrap-three .row [class*=col-]:nth-child(3) .journey__item-five-shape .shape-one svg path:nth-child(1) {
  color: #BE76B5;
}
.journey__item-wrap-three .row [class*=col-]:nth-child(3) .journey__item-five-shape .shape-one svg path:nth-child(2) {
  color: #D78BCD;
}
.journey__item-wrap-three .row [class*=col-]:nth-child(4) .journey__item-five-shape .shape-one svg path:nth-child(1) {
  color: #5EAC1F;
}
.journey__item-wrap-three .row [class*=col-]:nth-child(4) .journey__item-five-shape .shape-one svg path:nth-child(2) {
  color: #75C137;
}
.journey__item-wrap-four {
  border: 1px solid #e3e3ef;
  background: var(--tg-common-color-white);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -o-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  padding: 70px 70px 40px 70px;
  margin-top: -100px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199.98px) {
  .journey__item-wrap-four {
    padding: 70px 40px 40px 40px;
  }
}
@media (max-width: 767.98px) {
  .journey__item-wrap-four {
    padding: 40px 40px 10px 40px;
  }
}
.journey__item-two {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  border: 1px solid #C9E4E9;
  background: #F1FDFF;
  box-shadow: 8px 8px 0px 0px #C9E4E9;
  padding: 40px 40px 40px 50px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 1199.98px) {
  .journey__item-two {
    padding: 30px 25px 30px 25px;
  }
}
.journey__item-two:hover {
  box-shadow: none !important;
}
.journey__item-two:hover .journey__item-shape {
  color: #1BCBE3;
}
.journey__content-two .content-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}
.journey__content-two .title {
  margin-bottom: 0;
  font-size: 22px;
}
.journey__content-two p {
  margin-bottom: 0;
  color: var(--tg-common-color-dark);
  text-transform: capitalize;
}
.journey__icon-two {
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  color: var(--tg-common-color-white);
  background: #1BCBE3;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey__item-shape {
  position: absolute;
  right: 28px;
  top: 21px;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: rgba(39, 39, 47, 0.2);
}


/*=============================
    supplies
===============================*/


.supplies-area {
  position: relative;
  background-position: center;
  background-size: cover;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .supplies-area {
    padding: 100px 0;
  }
}
.supplies-area .section__title-wrap {
  margin: 0 0 50px;
}
@media (max-width: 767.98px) {
  .supplies-area .section__title-wrap {
    margin: 0 0 40px;
  }
}
@media (max-width: 1199.98px) {
  .supplies-area .section__title-wrap {
    margin: 0 0 30px;
  }
}
.supplies-area-six {
  padding: 140px 0 225px;
}
@media (max-width: 767.98px) {
  .supplies-area-six {
    padding: 100px 0 185px;
  }
}
.supplies-area-seven {
  position: relative;
}
.supplies__item {
  margin: 0 0 30px;
  background: var(--tg-common-color-white);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 25px 25px 32px;
  border: 1px solid #B5B5C3;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
@media (max-width: 1199.98px) {
  .supplies__item {
    padding: 25px 20px 32px;
  }
}
.supplies__item:hover {
  filter: drop-shadow(10px 10px 0px #CAC9D6);
}
.supplies__item-two {
  padding: 0;
}
.supplies__item-three {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 30px;
  padding: 25px 30px 25px 25px;
}
@media (max-width: 1199.98px) {
  .supplies__item-three {
    gap: 20px;
    padding: 20px 20px 20px 20px;
  }
}
@media (max-width: 767.98px) {
  .supplies__item-three {
    flex-direction: column;
  }
}
.supplies__item-three .supplies__item-thumb {
  margin: 0;
  flex: 0 0 auto;
}
.supplies__item-three .supplies__item-thumb a {
  height: 100%;
}
.supplies__item-three .supplies__item-thumb img {
  width: 280px;
  object-fit: cover;
  height: 100%;
  min-height: 210px;
}
@media (max-width: 767.98px) {
  .supplies__item-three .supplies__item-thumb img {
    width: 100%;
  }
}
.supplies__item-three .supplies__item-content {
  flex-grow: 1;
}
.supplies__item-three .supplies__item-content .info {
  margin-bottom: 0;
  margin-top: 8px;
}
.supplies__item-three .supplies__item-tag {
  gap: 15px;
}
.supplies__item-three .supplies__item-meta {
  margin: 0 0 8px;
}
.supplies__item-three .supplies__item-meta .price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 20px;
  font-weight: 700;
  color: var(--tg-theme-primary);
  gap: 8px;
}
.supplies__item-three .supplies__item-meta .price del {
  font-size: 14px;
  font-weight: 500;
  color: #B2BBCC;
}
.supplies__item-four {
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  background: var(--tg-common-color-white);
  margin-bottom: 30px;
  padding: 25px 25px 35px;
}
.supplies__item-five {
  border: 1px solid #dfdfdf;
  background: var(--tg-common-color-white);
  padding: 30px 30px 30px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  margin-bottom: 30px;
}
@media (max-width: 1500px) {
  .supplies__item-five {
    padding: 25px 22px 25px;
  }
}
@media (max-width: 991.98px) {
  .supplies__item-five {
    padding: 25px 25px 25px;
  }
}
.supplies__item-six {
  border: 1px solid var(--tg-border-6);
  border-radius: 20px;
  background: var(--tg-common-color-white);
  margin-bottom: 30px;
  padding: 25px 30px 25px;
}
@media (max-width: 1500px) {
  .supplies__item-six {
    padding: 25px 25px 25px;
  }
}
.supplies__item-seven {
  margin-bottom: 30px;
  background: var(--tg-common-color-white);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.supplies__item-eight {
  border: 1px solid #e7e7e7;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--tg-common-color-white);
  margin-bottom: 30px;
}
.supplies__item-nine {
  border: 1px solid #e7e7e7;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--tg-common-color-white);
  margin-bottom: 30px;
}
.supplies__item-thumb {
  position: relative;
  margin: 0 0 20px;
}
.supplies__item-thumb-two {
  padding: 25px 25px 0 25px;
}
@media (max-width: 1500px) {
  .supplies__item-thumb-two {
    padding: 20px 20px 0 20px;
  }
}
.supplies__item-thumb img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 6px;
}
@media (max-width: 767.98px) {
  .supplies__item-thumb img {
    height: auto;
  }
}
.supplies__item-thumb-three {
  position: relative;
  margin-bottom: 20px;
}
.supplies__item-thumb-three img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .supplies__item-thumb-three img {
    height: 270px;
  }
}
.supplies__item-thumb-four {
  margin-bottom: 24px;
}
.supplies__item-thumb-four img {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  width: 100%;
  height: 248px;
  object-fit: cover;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .supplies__item-thumb-four img {
    height: 320px;
  }
}
.supplies__item-thumb-five {
  position: relative;
  margin-bottom: 20px;
}
.supplies__item-thumb-five img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  height: 200px;
}
@media (max-width: 767.98px) {
  .supplies__item-thumb-five img {
    height: auto;
  }
}
.supplies__item-thumb-five .supplies__wishlist-two {
  width: 36px;
  height: 36px;
  color: var(--tg-heading-color);
}
.supplies__item-thumb-six {
  position: relative;
}
.supplies__item-thumb-six::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.31);
  pointer-events: none;
}
.supplies__item-thumb-six img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .supplies__item-thumb-six img {
    height: auto;
  }
}
.supplies__item-thumb-six .supplies__wishlist-two {
  z-index: 1;
  width: 36px;
  height: 36px;
  font-size: 20px;
  color: var(--tg-heading-color);
  right: 24px;
  top: 24px;
}
.supplies__item-thumb-six .supplies__review {
  position: absolute;
  left: 30px;
  bottom: 25px;
  margin-bottom: 0;
  z-index: 2;
  line-height: 1;
}
.supplies__item-thumb-six .supplies__review span {
  color: var(--tg-common-color-white);
}
.supplies__item-thumb-six .supplies__review .rating {
  color: var(--tg-common-color-yellow);
}
.supplies__item-thumb-seven {
  position: relative;
}
.supplies__item-thumb-seven::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.31);
  opacity: 0.2;
  pointer-events: none;
}
.supplies__item-thumb-seven img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .supplies__item-thumb-seven img {
    height: auto;
  }
}
.supplies__item-thumb-eight {
  position: relative;
}
.supplies__item-thumb-eight::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.31);
  opacity: 0.2;
  pointer-events: none;
}
.supplies__item-thumb-eight img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .supplies__item-thumb-eight img {
    height: auto;
  }
}
.supplies__item-thumb-eight .supplies__wishlist {
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 25px;
  top: 25px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: var(--tg-common-color-white);
  z-index: 1;
}
.supplies__item-thumb-eight .supplies__wishlist svg {
  width: 20px;
  height: auto;
}
.supplies__item-thumb-eight .supplies__wishlist:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}
.supplies__item-thumb-eight .supplies__item-tag-three {
  background: var(--tg-theme-secondary);
}
.supplies__item-content .title {
  font-size: 18px;
  font-weight: var(--tg-fw-semi-bold);
  line-height: 1.4;
  margin: 0 0 15px;
}
.supplies__item-content .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.supplies__item-content .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}
.supplies__item-content-two {
  padding: 0 25px 20px;
}
@media (max-width: 1500px) {
  .supplies__item-content-two {
    padding: 0 20px 20px;
  }
}
.supplies__item-content-two .price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--tg-theme-primary);
}
.supplies__item-content-two .price del {
  font-size: 14px;
  font-weight: 400;
  color: var(--tg-common-color-gray-3);
}
.supplies__item-content-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.supplies__item-content-bottom > .author-two a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--tg-body-color);
}
.supplies__item-content-bottom > .author-two a img {
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
.supplies__item-content-bottom > .author-two a:hover {
  color: var(--tg-theme-secondary);
}
.supplies__item-content-bottom-two .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px 48px;
}
@media (max-width: 1500px) {
  .supplies__item-content-bottom-two .list-wrap {
    gap: 20px 30px;
  }
}
.supplies__item-content-bottom-two .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 9px;
  position: relative;
}
.supplies__item-content-bottom-two .list-wrap li::before {
  content: "";
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 30px;
  background: #CCCCCC;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
@media (max-width: 1500px) {
  .supplies__item-content-bottom-two .list-wrap li::before {
    right: -16px;
  }
}
.supplies__item-content-bottom-two .list-wrap li:last-child::before {
  display: none;
}
.supplies__item-content-bottom-two .list-wrap li .icon {
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #f3f3f4;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  color: var(--tg-body-color);
}
.supplies__item-content-bottom-two .list-wrap li p {
  font-size: 14px;
  line-height: 1.28;
  margin-bottom: 0;
}
.supplies__item-content-bottom-two .list-wrap li p span {
  display: block;
  font-weight: 500;
  color: var(--tg-heading-color);
}
.supplies__item-content-three .title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}
.supplies__item-content-three .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.supplies__item-content-three .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}
.supplies__item-content-four .avg-rating {
  color: #7F7E97;
  font-size: 14px;
  line-height: 1;
}
.supplies__item-content-four .avg-rating i {
  color: var(--tg-common-color-yellow);
  letter-spacing: 0;
  margin-right: 5px;
}
.supplies__item-content-four .title {
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
}
.supplies__item-content-four .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.supplies__item-content-four .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}
.supplies__item-content-five .supplies__item-meta .price {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-theme-primary);
}
.supplies__item-content-five .title {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
}
.supplies__item-content-five .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.supplies__item-content-five .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}
.supplies__item-content-five > p {
  margin-bottom: 22px;
}
.supplies__item-content-six {
  padding: 25px 22px 20px;
}
.supplies__item-content-six-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 5px;
}
.supplies__item-content-six-top .title {
  margin-bottom: 0;
  font-size: 22px;
  text-transform: capitalize;
}
.supplies__item-content-six-top .title a:hover {
  color: var(--tg-theme-primary);
}
.supplies__item-content-six-top .price {
  margin-bottom: 0;
  color: var(--tg-theme-primary);
  font-size: 22px;
  font-weight: 700;
}
.supplies__item-content-six > span {
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 400;
  display: block;
  color: var(--tg-body-color);
  line-height: 1.4;
  margin-bottom: 15px;
}
.supplies__item-content-six > p {
  margin-bottom: 0;
  line-height: 1.5;
}
.supplies__item-content-seven {
  padding: 20px 30px 25px;
}
@media (max-width: 1500px) {
  .supplies__item-content-seven {
    padding: 20px 20px 25px;
  }
}
.supplies__item-content-seven .price {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-theme-primary);
  line-height: 1;
}
.supplies__item-content-seven .supplies__wishlist a {
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EBEBF0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--tg-body-color);
}
.supplies__item-content-seven .supplies__wishlist a svg {
  width: 18px;
  height: auto;
}
.supplies__item-content-seven .supplies__wishlist a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}
.supplies__item-content-seven .title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}
.supplies__item-content-seven .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.supplies__item-content-seven .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}
.supplies__item-content-seven .supplies__review {
  margin-bottom: 0;
}
.supplies__item-content-eight {
  padding: 25px 30px 25px;
}
@media (max-width: 1500px) {
  .supplies__item-content-eight {
    padding: 25px 20px 25px;
  }
}
.supplies__item-content-eight .title {
  margin-bottom: 20px;
  font-size: 20px;
  text-transform: capitalize;
}
.supplies__item-content-eight .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.supplies__item-content-eight .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}
.supplies__item-content-eight .price {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 22px;
  color: var(--tg-theme-primary);
  line-height: 1;
}
.supplies__item-meta {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  margin: 0 0 15px;
  flex-wrap: wrap;
}
.supplies__item-meta li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.supplies__item-meta li i {
  margin-right: 7px;
}
.supplies__item-meta-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 14px;
}
.supplies__item-meta-two li {
  color: var(--tg-heading-color);
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 8px;
}
.supplies__item-meta-two li svg {
  transform: translateY(-3px);
}
.supplies__item-meta-two li svg path {
  color: var(--tg-theme-secondary);
}
.supplies__item-meta-two li svg path:nth-child(5) {
  color: #B9B8C0;
}
.supplies__item-meta-two li:nth-child(2) svg path:nth-child(4), .supplies__item-meta-two li:nth-child(2) svg path:nth-child(5) {
  color: #B9B8C0;
}
.supplies__item-tag a {
  font-size: 13px;
  font-weight: var(--tg-fw-medium);
  color: var(--tg-heading-color);
  background: #EFEFF2;
  display: block;
  line-height: 1;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  padding: 7px 13px;
}
.supplies__item-tag a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}
.supplies__item-tag-two a {
  background: #f1f0ff;
  color: var(--tg-theme-primary);
}
.supplies__item-tag-three {
  font-weight: 500;
  font-size: 14px;
  position: absolute;
  left: 30px;
  top: 27px;
  padding: 8px 12px;
  color: var(--tg-heading-color);
  background: var(--tg-common-color-white);
  z-index: 1;
  border-radius: 4px;
  line-height: 1;
}
.supplies__item-tag-three:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}
.supplies__item .avg-rating {
  color: #7F7E97;
  font-size: 14px;
  line-height: 1;
}
.supplies__item .avg-rating i {
  color: var(--tg-common-color-yellow);
  letter-spacing: 0;
  margin-right: 5px;
}
.supplies__item .avg-rating-two .rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.supplies__item .author {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 15px;
  margin: 0 0;
  line-height: 1;
  gap: 5px;
}
.supplies__item .author a {
  flex: 0 0 auto;
  color: var(--tg-heading-color);
}
.supplies__item .author a:hover {
  color: var(--tg-theme-primary);
}
.supplies__item-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 23px 0 0;
}
.supplies__item-bottom .button a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 10px 19px;
  align-items: center;
  gap: 6px;
  border-radius: 50px;
  border: 1px solid #000;
  background: var(--tg-theme-secondary);
  box-shadow: 4px 4px 0px 0px #3D3D3D;
  font-family: var(--tg-heading-font-family);
  font-size: 14px;
  line-height: 18px;
  font-weight: var(--tg-fw-semi-bold);
  color: var(--tg-heading-color);
}
.supplies__item-bottom .button a:hover {
  box-shadow: none;
}
.supplies__item-bottom .price {
  font-size: 20px;
  line-height: 1;
  color: var(--tg-theme-primary);
  font-weight: var(--tg-fw-bold);
  margin: 0 0;
}
@media (max-width: 991.98px) {
  .supplies__item-bottom .price {
    font-size: 18px;
  }
}
.supplies__item-bottom .price del {
  font-size: 16px;
  color: #8D9DB5;
  margin-right: 4px;
}
.supplies__item-bottom-two {
  border-top: 1px solid #B5B5C3;
  padding: 13px 25px;
}
@media (max-width: 1500px) {
  .supplies__item-bottom-two {
    padding: 13px 20px;
  }
}
.supplies__item-bottom-two .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 30px;
}
@media (max-width: 1199.98px) {
  .supplies__item-bottom-two .list-wrap {
    gap: 10px 20px;
  }
}
.supplies__item-bottom-two .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: var(--tg-common-color-dark);
  gap: 7px;
}
.supplies__item-bottom-two .list-wrap li i {
  color: var(--tg-common-color-gray-3);
  font-size: 20px;
  line-height: 0;
}
.supplies__item-bottom-two .list-wrap li::before {
  content: "";
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #8C9AB4;
}
@media (max-width: 1199.98px) {
  .supplies__item-bottom-two .list-wrap li::before {
    right: -12px;
  }
}
.supplies__item-bottom-two .list-wrap li:last-child::before {
  display: none;
}
.supplies__item-bottom-three .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
}
.supplies__item-bottom-three .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1;
}
.supplies__item-bottom-three .list-wrap li i {
  font-size: 20px;
  line-height: 0;
}
.supplies__item-bottom-four {
  border-top: 1px solid #e7e7e7;
  padding: 18px 22px 19px;
}
.supplies__item-bottom-four .list-wrap li {
  color: var(--tg-heading-color);
  font-size: 15px;
}
.supplies__item-bottom-four .list-wrap li i {
  color: var(--tg-body-color);
}
.supplies__item-bottom-five {
  border-top: 1px solid #e7e7e7;
  padding: 17px 30px;
}
@media (max-width: 1500px) {
  .supplies__item-bottom-five {
    padding: 17px 20px;
  }
}
.supplies__item-bottom-six {
  border-top: 1px solid #e7e7e7;
  padding: 17px 30px;
}
@media (max-width: 1500px) {
  .supplies__item-bottom-six {
    padding: 17px 20px;
  }
}
.supplies__item-bottom-six .list-wrap {
  justify-content: space-between;
}

/*=============================
    teacher
===============================*/
.teacher__info-list-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 0 0 15px;
}
.teacher__info-list-item:last-child {
  margin: 0 0;
}
.teacher__info-list-item i {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  background: var(--tg-theme-secondary);
  border: 1px solid #282568;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  box-shadow: 4px 3px 0px 0px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: var(--tg-heading-color);
}
.teacher__info-list-item p {
  font-family: var(--tg-heading-font-family);
  color: var(--tg-heading-color);
  font-size: 18px;
  font-weight: var(--tg-fw-semi-bold);
  margin: 0 0;
}
.teacher__info-list-item:hover i {
  box-shadow: none;
}
.teacher__img {
  position: relative;
  z-index: 1;
  width: 450px;
  height: 562px;
  border-radius: 1000px;
  background: var(--tg-common-color-white);
  box-shadow: 9px 8px 0px #171717;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .teacher__img {
    width: 400px;
    height: 550px;
  }
}
@media (max-width: 767.98px) {
  .teacher__img {
    width: 100%;
    height: 500px;
    max-width: 400px;
  }
}
.teacher__img img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.teacher__img .shape-one {
  position: absolute;
  left: 27%;
  top: 11%;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .teacher__img .shape-one {
    left: 25%;
    top: 9%;
  }
}
@media (max-width: 767.98px) {
  .teacher__img .shape-one {
    left: 16%;
    top: 11%;
  }
}
.teacher__img .shape-one svg {
  color: var(--tg-common-color-yellow-2);
}
.teacher__img .shape-two {
  width: 61px;
  height: 46px;
  position: absolute;
  right: 25%;
  top: 10%;
}
@media (max-width: 1199.98px) {
  .teacher__img .shape-two {
    right: 18%;
  }
}
.teacher__img .shape-two .svg-icon {
  width: 100%;
  height: 100%;
  display: block;
}
.teacher__img .shape-two .svg-icon path {
  stroke: var(--tg-common-color-black);
}
.teacher__img-two {
  background: #F3F3F3;
  box-shadow: 9px 8px 0px #B8B8B8;
}
.teacher__img-three {
  position: relative;
  margin-bottom: 50px;
}
.teacher__img-three .shape {
  position: absolute;
  z-index: -1;
}
.teacher__img-three .shape-one {
  right: 2%;
  top: -10%;
  max-width: 113px;
}
@media (max-width: 1199.98px) {
  .teacher__img-three .shape-one {
    max-width: 80px;
  }
}
.teacher__img-three .shape-two {
  right: 0;
  bottom: 0;
  max-width: 96px;
}
@media (max-width: 1199.98px) {
  .teacher__img-three .shape-two {
    max-width: 65px;
  }
}
.teacher__img-three:hover .teacher__img-shape svg .animation-dashed {
  animation-play-state: running;
}
.teacher__img-four {
  position: relative;
}
@media (max-width: 991.98px) {
  .teacher__img-four {
    margin-bottom: 50px;
  }
}
.teacher__img-four .main-img {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1199.98px) {
  .teacher__img-four .main-img {
    gap: 20px;
  }
}
@media (max-width: 991.98px) {
  .teacher__img-four .main-img {
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .teacher__img-four .main-img {
    flex-direction: column;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .teacher__img-four .main-img {
    flex-direction: row;
  }
}
.teacher__img-four .main-img img {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
@media (max-width: 1199.98px) {
  .teacher__img-four .main-img img {
    max-width: 250px;
  }
}
@media (max-width: 991.98px) {
  .teacher__img-four .main-img img {
    max-width: 260px;
  }
}
@media (max-width: 767.98px) {
  .teacher__img-four .main-img img {
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .teacher__img-four .main-img img {
    max-width: 240px;
    width: auto;
  }
}
.teacher__img-four .main-img img:nth-child(2) {
  margin-top: 185px;
}
@media (max-width: 767.98px) {
  .teacher__img-four .main-img img:nth-child(2) {
    margin-top: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .teacher__img-four .main-img img:nth-child(2) {
    margin-top: 50px;
  }
}
.teacher__img-four .shape img {
  position: absolute;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .teacher__img-four .shape img {
    display: none;
  }
}
.teacher__img-four .shape img:nth-child(1) {
  left: 12%;
  bottom: 0;
  max-width: 142px;
}
@media (max-width: 1500px) {
  .teacher__img-four .shape img:nth-child(1) {
    left: 5%;
  }
}
.teacher__img-four .shape img:nth-child(2) {
  right: 24%;
  top: 5%;
  max-width: 106px;
}
.teacher__img-four .shape img:nth-child(3) {
  right: 20%;
  top: 4%;
  max-width: 306px;
}
@media (max-width: 1199.98px) {
  .teacher__img-four .shape img:nth-child(3) {
    right: 18%;
    top: 7%;
    max-width: 260px;
  }
}
.teacher__img-wrap {
  position: relative;
  margin-top: 45px;
}
@media (max-width: 991.98px) {
  .teacher__img-wrap {
    margin-bottom: 50px;
  }
}
@media (max-width: 991.98px) {
  .teacher__img-wrap {
    margin-top: 0;
  }
}
.teacher__img-shape {
  position: absolute;
  left: -12px;
  top: -9px;
  right: -12px;
  bottom: -9px;
  z-index: -1;
}
.teacher__img-shape svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
  position: absolute;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.teacher__img-shape svg .animation-dashed {
  animation: animation__shape-two 0.8s infinite linear;
  animation-play-state: paused;
}

.curved-circle {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tg-common-color-dark);
  right: 50%;
  transform: translateX(-50%);
  top: -8%;
  letter-spacing: 5px;
}
@media (max-width: 1199.98px) {
  .curved-circle {
    font-size: 15px;
    top: -6%;
    letter-spacing: 3px;
  }
}
@media (max-width: 767.98px) {
  .curved-circle {
    display: none;
  }
}


/*=============================
    19. testimony
===============================*/
.courses-area {
  position: relative;
  background-position: center;
  background-size: cover;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .courses-area {
    padding: 100px 0;
  }
}
.courses-area .section__title-wrap {
  margin: 0 0 50px;
}
@media (max-width: 767.98px) {
  .courses-area .section__title-wrap {
    margin: 0 0 40px;
  }
}
@media (max-width: 1199.98px) {
  .courses-area .section__title-wrap {
    margin: 0 0 30px;
  }
}
.courses-area-six {
  padding: 140px 0 225px;
}
@media (max-width: 767.98px) {
  .courses-area-six {
    padding: 100px 0 185px;
  }
}
.courses-area-seven {
  position: relative;
}



