﻿@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&amp;family=Roboto:wght@100;300;400;500;700;900&amp;display=swap";
:root {
  --body-font: "Roboto", sans-serif;
  --heading-font: "Inter", sans-serif;
  --theme-color: #a12d33;
  --theme-bg-light: #f8f8f8;
  --body-text-color: #757f95;
  --color-white: #e6c1c1;
  --color-dark: #212e54;
  --color-blue2green: #0058ac;
  --color-blue: #00bfff;
  --color-secondary: #ff8581;
  --hero-overlay-color: #212e54;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all 0.5s ease-in-out;
  --transition2: all 0.3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #212e54;
  --footer-bg2: #4d5876;
  --footer-text-color: #f5faff;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
}

a {
  color: var(--color-dark);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:hover {
  color: #a12d33;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-dark);
  margin: 0;
  font-weight: 600;
  font-family: var(--heading-font);
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0;
}

.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;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

/*.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.loader-ripple div {
  position: absolute;
  border: 4px solid var(--theme-color);
  opacity: 1;
  border-radius: 50%;
  animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
*/
@keyframes loader-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

.ovrflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
  z-index: 1;
}

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background: var(--theme-bg-light);
}

.pb-140 {
  padding-bottom: 140px;
}

.pd-50 {
  padding: 50px 0;
}

.py-120 {
  padding: 120px 0;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-0 {
  padding-top: 0;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-0 {
  margin-top: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}

.theme-btn {
  font-size: 14px;
  color: var(--color-white);
  padding: 14px 20px;
  transition: all 0.5s;
  text-transform: uppercase;
  position: relative;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--theme-color);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--color-dark);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover {
  color: var(--color-white);
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.theme-btn2 {
  background: var(--color-white);
  color: var(--color-dark);
}

.theme-btn2::before {
  background: var(--theme-color);
}

.theme-btn2:hover {
  color: var(--color-white);
}

.theme-btn2::after {
  border-color: var(--theme-color);
}

.theme-btn2:hover::after {
  border-color: var(--color-white);
}

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1200px;
  }
}

#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--color-white);
  background-color: var(--theme-color);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--box-shadow2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

#scroll-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top.active {
    bottom: 100px;
  }
}

.header {
  background: var(--color-dark);
}

.header-top {
  padding: 14px 0 16px;
  position: relative;
  z-index: 1;
}

.header-top-wrapper {
  align-items: center;
  justify-content: space-between;
}

@media all and (max-width: 992px) {
  .header-top {
    display: none;
  }
}

.navbar {
  background: #e6c1c1;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
}

.custom-nav {
  background: #e6c1c1;
  position: relative;
}

.custom-nav::before {
  content: "";
  position: absolute;
  background: var(--color-white);
  width: 30px;
  height: 46px;
  left: -29px;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 92% 100%);
}

.custom-nav::after {
  content: "";
  position: absolute;
  background: var(--color-white);
  width: 30px;
  height: 46px;
  right: -30px;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0, 7% 100%, 0% 100%);
}

.navbar.fixed-top {
  background: var(--color-white);
  box-shadow: var(--box-shadow2);
  animation: slide-down 0.7s;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-mobile-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 200px;
}

.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: "font awesome 6 pro";
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}

@media all and (max-width: 1199px) {
  .nav-right {
    margin-left: 25px !important;
  }
  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }
  .navbar .nav-right-btn {
    display: none;
  }
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 22px;
    padding: 30px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: capitalize;
  }
  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }
  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    margin-top: 0;
    border: none;
    left: -15px;
    border-radius: 0;
    background: white;
    width: 250px;
    box-shadow: var(--box-shadow);
  }
  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid var(--border-info-color);
  }
  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 8px 25px;
    font-weight: 500;
    color: var(--color-dark);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
  }
  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: 0 0;
    color: var(--theme-color);
    padding-left: 32px;
  }
  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "//";
    position: absolute;
    left: 15px;
    top: 8px;
    color: var(--theme-color);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: -1;
  }
  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
    visibility: visible;
  }
  .navbar .nav-item .nav-link {
    position: relative;
  }
  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: var(--theme-color);
  }
  .navbar .nav-item:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }
  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }
  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }
  .navbar #main_nav {
    justify-content: flex-end;
  }
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: 45px;
  }
  .nav-right-link {
    position: relative;
    font-size: 20px;
    color: var(--color-dark);
    transition: var(--transition);
  }
  .nav-right-link:hover {
    color: var(--theme-color) !important;
  }
  .nav-right .sidebar-btn .nav-right-link,
  .nav-right .search-btn .nav-right-link {
    border: none;
    background: 0 0;
    color: var(--color-dark);
    font-size: 28px;
    padding-right: 0;
  }
  .nav-right .search-btn .nav-right-link {
    font-size: 20px;
    padding: 0;
  }
  .nav-right .cart-btn .nav-right-link {
    position: relative;
    font-size: 20px;
    padding: 0;
    margin-right: 15px;
  }
  .nav-right .cart-btn span {
    position: absolute;
    right: -9px;
    top: -2px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    background: var(--theme-color);
    color: var(--color-white);
  }
}

.mobile-menu-right {
  display: none;
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
  }
  .navbar-brand {
    padding-left: 10px;
  }
  .navbar-brand img {
    width: 130px;
  }
  .navbar-collapse {
    max-height: 220px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background-color: var(--color-white);
  }
  .dropdown-toggle::after {
    float: right;
  }
  .navbar .nav-item .nav-link {
    color: var(--color-dark);
    font-weight: 700;
    transition: var(--transition);
  }
  .navbar .nav-item .nav-link:hover {
    color: var(--theme-color) !important;
  }
  .navbar-toggler {
    padding: 0;
    border: none;
  }
  .mobile-menu-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .mobile-menu-right .nav-right-link {
    background: 0 0;
    border: none;
    font-size: 20px;
    color: var(--color-dark);
  }
  .mobile-menu-right .nav-right-link:hover {
    color: var(--theme-color);
  }
  .search-area.open {
    top: 50px !important;
  }
  .navbar-toggler-mobile-icon {
    font-size: 25px;
    color: var(--color-dark);
    font-weight: 500;
  }
  .navbar .dropdown-menu {
    border-radius: 0;
  }
  .nav-right {
    display: none;
  }
}

.navbar .nav-item .dropdown-submenu {
  position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
  display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 10px;
  font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
  background: 0 0;
  color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
  top: 120%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: unset;
    visibility: unset;
  }
  .navbar .nav-item .dropdown-submenu a::after {
    top: 4px;
  }
  .navbar .nav-item .dropdown-submenu a:hover {
    color: var(--theme-color);
  }
}

.main {
  margin-top: -2.8rem;
}

@media (max-width: 575.98px) {
  .main {
    margin-top: 3.8rem;
  }
}

@media (max-width: 767.98px) {
  .main {
    margin-top: 3.8rem;
  }
}

@media (max-width: 991.98px) {
  .main {
    margin-top: 3.8rem;
  }
}

/* @media (max-width: 992px) {
    .main {
        margin-top: 0
    }
} */

.hero-section {
  position: relative;
}

.hero-slider.owl-theme .owl-nav {
  margin-top: 0;
}

.hero-slider.owl-theme .owl-nav [class*="owl-"] {
  color: var(--color-white);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: var(--slider-arrow-bg);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  line-height: 55px;
  border-radius: 50px;
  text-align: center;
  transition: var(--transition);
}

.hero-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--color-white);
  color: var(--theme-color);
}

.hero-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

@media all and (max-width: 1199px) {
  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }
  .hero-slider.owl-theme .owl-nav .owl-prev,
  .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 30px !important;
  }
  .hero-slider.owl-theme .owl-nav .owl-prev {
    /* left: unset;
        right: 120px */
    left: 40px;
    right: unset;
  }
  .hero-slider.owl-theme .owl-nav .owl-next {
    left: 120px;
  }
}

@media all and (max-width: 991px) {
  .hero-single .hero-content .hero-title {
    font-size: 50px;
  }
  .hero-single .hero-img {
    position: relative;
    width: 100%;
    right: unset;
    bottom: unset;
    margin-top: 50px;
  }
  .hero-single .hero-img::before {
    width: 250px;
    height: 250px;
  }
}

@media all and (max-width: 767px) {
  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }
  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }
}

.footer-area {
  background: #a12d33;
  position: relative;
  z-index: 1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 220px;
  margin-bottom: 15px;
}

.copyright {
  position: relative;
  padding: 20px 0;
  background: #000;
  z-index: 1;
  font-weight: bold;
}

.copyright::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background: #000;
  width: 50%;
  height: 100%;
  z-index: -1;
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: var(--footer-text-color);
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: var(--theme-color);
}

.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: var(--theme-color);
  font-weight: 500;
}

.footer-widget-title {
  color: var(--color-white);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 21px;
  z-index: 1;
}

.footer-widget-title::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 90px;
  height: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right-color: transparent;
  bottom: 0;
  left: 0;
}

/*.footer-widget-title::after {
    position: absolute;
    content: '';
    z-index: -1;
    width: 30px;
    height: 2px;
    background-color: var(--theme-color);
    bottom: 0;
    left: 18px
} */

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-list li a {
  color: var(--color-white);
  transition: var(--transition);
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.footer-list li a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.footer-widget-box p {
  color: var(--color-white);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  background: var(--color-white);
  color: var(--theme-color);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-contact li a {
  color: var(--footer-text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 10px;
  background: var(--theme-color);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-white);
}

/* .subscribe-form .form-control {
    padding: 16px 20px;
    border-radius: 0;
    box-shadow: none;
    border: none
}

.subscribe-form .theme-btn {
    margin-top: 20px;
    width: 100%;
    padding: 14px
}

.subscribe-form .theme-btn:hover {
    color: var(--theme-color)
}

.subscribe-form .theme-btn::before {
    background: var(--color-white)
}

.subscribe-form .theme-btn:hover::after {
    border-color: var(--theme-color)
} */

@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0;
  }
  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }
  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0;
  }
  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }
  .copyright::before {
    width: 40%;
  }
  .copyright .copyright-text a {
    color: var(--theme-color);
  }
}
.home-2 .header {
  background: 0 0;
}

.home-2 .header-top {
  padding: 10px 0;
  background: #fff;
  border-bottom: 5px solid var(--color-dark);
  max-height: 100px;
}

.home-2 .header-top-contact a i {
  color: var(--color-white);
}

.home-2 .header-top::before {
  clip-path: none;
  background: var(--color-dark);
  border-radius: 0 100px 0 0;
}

.home-2 .header-top::after {
  clip-path: none;
  background: var(--color-dark);
  border-radius: 100px 0 0 0;
}

.home-2 .hero-single::before {
  background: linear-gradient(
    to top left,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  opacity: 1;
}

.home-2 .hero-single .hero-title span {
  -webkit-text-stroke: 2px var(--theme-color);
  -webkit-text-fill-color: transparent;
}

/* About Section */
.about-secion {
  padding-left: 100px;
  padding-right: 70px;
}

@media (max-width: 991px) {
  .about-secion {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.about-image {
  position: relative;
  text-align: left;
  z-index: 1;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .about-image {
    margin-left: 20px;
    margin-top: 80px;
  }
}

.about-image::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  background-color: var(--primary-one-light);
  width: 50px;
  height: 100%;
  z-index: -1;
}

.section-title-four {
  margin-top: -6px;
}

.section-title-four h2 {
  margin-bottom: 0;
  line-height: 1.3;
}

.achivement-title {
  position: relative;
  font-size: 24px;
  margin-bottom: 30px;
}

.achievement-single {
  text-align: center;
}

.achievement-single img {
  /* min-height: 100px; */
  margin-bottom: 8px;
  /* max-width: 110px; */
}

.achievement-single h6 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

/*Latest News Section */
.swiper-container-4 {
  width: 100%;
  height: 368px;
  margin-bottom: 90px;
  overflow: hidden;
}
.sold__right__content .sec-title {
  padding-bottom: 79px;
}
.sold__right__content {
  background: #ffffff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0px 30px 30px 0px;
  padding: 60px 75px;
}
.sold__section {
  position: relative;
}
.sold__section .anim-icon .icon.layer-bg {
  width: 50%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.sold__section .container {
  padding-bottom: 40px;
}
.sold__left__img {
  width: 100%;
  height: 100%;
  border-radius: 30px 0px 0px 30px;
}

.sold__section .swiper__btn {
  display: inline-block;
}
.sold__section .arrows {
  position: absolute;
  bottom: 60px;
  left: 75px;
  z-index: 1000000;
  display: flex;
}
.sold__section .swiper__btn {
  display: flex;
  width: 40px;
  justify-content: center;
  height: 40px;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
  margin-right: 7px;
  transition: all 500ms ease;
}
.sold__section .swiper__btn:hover {
  background: #f0e9e9;
}
.sold__section .swiper__btn:hover a span {
  color: #ffffff;
}
.sold__section .arrowbtn {
  font-size: 16px;
  transition: all 500ms ease;
}
.sold__right__content .content__block h3 {
  font-weight: 800;
  padding: 6px 0px;
  color: #ff8c35;
}
.sold__right__content .swiper-slide:after {
  content: "";
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  /* top: 57%; */
}
@media only screen and (max-width: 1215px) {
  .sold__right__content {
    padding: 40px 40px;
  }
  .sold__section .arrows {
    left: 40px;
  }
  .sold__right__content {
    border-radius: 0px 0px 0px 0px;
  }
}
@media only screen and (max-width: 1200px) {
  .sold__right__content {
    padding: 60px 60px;
    margin-top: 100px;
  }
  .sold__section .arrows {
    left: 75px;
  }
  .sold__left__feature__image img {
    width: 100%;
  }
  .sold__section .container {
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 599px) {
  .sold__right__content {
    padding: 20px 20px;
  }
  .sold__section .arrows {
    left: 35px;
    bottom: 25px;
  }
}
@media only screen and (max-width: 499px) {
  .sold__right__content .swiper-slide:after {
    display: none;
  }
}

/* who-can-apply section */
@media (min-width: 992px) {
  .container.who-can-apply {
    max-width: 100% !important;
  }

  .who-can-apply-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .who-can-apply-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .who-can-apply-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*================================
         <--Start Dreamhub Service Area Css-->
        ==================================*/
.service-area {
  background: #a12d33;
  padding: 27px 0 20px;
}
.service-area .section-title {
  margin-bottom: 43px;
}
.service-area .section-description p {
  width: 62%;
}
/*service button*/
.service-button {
  text-align: right;
}
.service-button a {
  font-size: 16px;
  color: #ffffff;
  display: inline-block;
  background: #db1d00;
  padding: 12px 30px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 44;
}
.service-button a::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 0%;
  top: 0px;
  left: -29px;
  background: #e05639;
  transform: skew(50deg);
  border-radius: 5px;
  transition: 0.5s;
  z-index: -1;
}
.service-button a i {
  display: inline-block;
  font-size: 12px;
  margin-left: 10px;
}
.single-service-box {
  background: #fff;
  padding: 45px 11px 36px 29px;
  margin-bottom: 30px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}

.single-service-box::before {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 5px;
  background: #db1d00;
  content: "";
  z-index: -1;
  opacity: 0;
  transition: 0.5s;
  border-radius: 0 0 5px 5px;
}

.single-service-box1 {
  background: #fff;
  padding: 45px 11px 36px 29px;
  margin-bottom: 30px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.single-service-box1::before {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 5px;
  background: #db1d00;
  content: "";
  z-index: -1;
  opacity: 0;
  transition: 0.5s;
  border-radius: 0 0 5px 5px;
}
/*service-box-icon*/
.service-box-icon {
  margin-bottom: 15px;
}
.service-box-icon:hover {
  transform: scale(1, 1);
}
.service-box-icon img {
  display: inline-block;
}
.service-box-title {
  display: inline-block;
}
.service-box-title h5 {
  /* font-size: 22px; */
  color: #050129;
  font-weight: 600;
  margin-left: 22px;
}
/*service-box-bt*/
.service-box-btn a {
  font-size: 16px;
  color: #db1d00;
  font-weight: 500;
  display: inline-block;
  margin-left: 30px;
  position: relative;
}
.service-box-btn a::after {
  position: absolute;
  left: -36px;
  top: 10px;
  height: 2px;
  width: 26px;
  background: #db1d00;
  content: "";
}
/*all hover*/
.single-service-box:hover {
  box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
}
.service-button a:hover:before {
  width: 138%;
}
.single-service-box:hover::before {
  width: 100%;
  opacity: 1;
  right: 50%;
}

/*all hover*/
.single-service-box1:hover {
  box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
}
.service-button a:hover:before {
  width: 138%;
}
.single-service-box1:hover::before {
  width: 100%;
  opacity: 1;
  right: 50%;
}

/*** Service ***/
.service .nav .nav-link {
  background: var(--light);
  transition: 0.5s;
  color: var(--theme-color);
}

.service .nav .nav-link.active {
  background: var(--theme-color);
  color: var(--color-white);
}

.service .nav .nav-link.active h4 {
  color: #ffffff !important;
}

/* Testmonials Section */
.bg-testimonial {
  background: url(../img/backgrounds/carousel-2.jpg) center center no-repeat;
  background-size: cover;
}

.testimonial-carousel {
  background: #fff;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: calc(100% + 46px);
  height: 46px;
  top: calc(50% - 23px);
  left: -23px;
  display: flex;
  justify-content: space-between;
  z-index: 9991;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background-color: #000 !important;
  border-radius: 2px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--color-dark) !important;
}

.testimonial-carousel .owl-item img {
  width: auto;
  height: auto;
}
/* breadcumb */
.wpo-page-title {
  /*background: url(../img/p.jpg) no-repeat center top/cover;*/
  min-height: 350px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 1;
}

@media (max-width: 767px) {
  .wpo-page-title {
    min-height: 250px;
  }
}

.wpo-page-title:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: #d0d1d3; */
  content: "";
  z-index: -1;
  opacity: 0.5;
}

.wpo-page-title .wpo-breadcumb-wrap {
  text-align: center;
}

.wpo-page-title .wpo-breadcumb-wrap h2 {
  font-size: 60px;
  color: #fff;
  line-height: 60px;
  margin-bottom: 20px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 10px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap ol {
  padding-left: 0;
  margin-bottom: 0;
}

.wpo-page-title .wpo-breadcumb-wrap ol li {
  display: inline-block;
  padding: 0px 5px;
  padding-right: 20px;
  color: #fff;
  position: relative;
  font-size: 20px;
  font-family: "Nunito Sans", sans-serif;
}

.wpo-page-title .wpo-breadcumb-wrap ol li:last-child {
  padding-right: 0;
}

@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap ol li {
    font-size: 18px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap ol li:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.wpo-page-title .wpo-breadcumb-wrap ol li:last-child span {
  color: #000;
}

.wpo-page-title .wpo-breadcumb-wrap ol li:last-child:after {
  display: none;
}

.wpo-page-title .wpo-breadcumb-wrap ol li a {
  color: #ffff;
  font-size: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.wpo-page-title .wpo-breadcumb-wrap ol li a:hover {
  color: #ec180c;
}

/* About page styles */
.about-ir p,
h2 {
  color: #000;
}
/*** About ***/
.about-ir .about-img img {
  position: relative;
  z-index: 2;
}

.about-ir .about-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  transform: skew(20deg);
  z-index: 1;
}

/* Oobectives List items */
.lower-text {
  position: relative;
}

.lower-text ul li {
  position: relative;
  padding-left: 40px;
  line-height: 1.7em;
  font-weight: 400;
  margin-bottom: 10px;
}

.lower-text ul li:last-child {
  margin-bottom: 0;
}

.lower-text ul li:before {
  content: "\f178";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 28px;
  text-align: center;
  color: var(--theme-color);
}

.main a:active,
a:link {
  color: #a12d33;
}

/* .main a:link {
    background-color: yellow;
  }
  
.main a:visited {
    background-color: cyan;
  }
  
.main a:hover {
    background-color: lightgreen;
  }
  
.main  a:active {
    background-color: hotpink;
  }  */

.latestnews .filters_menu {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
  margin: 45px 0 20px 0;
}

.latestnews .filters_menu li {
  padding: 7px 25px;
  cursor: pointer;
  border-radius: 25px;
}

.latestnews .filters_menu li.active {
  background-color: #222831;
  color: #ffffff;
}

.latestnews .box {
  position: relative;
  margin-top: 25px;

  background-color: #ffffff;
  border-radius: 10px;
  color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(to bottom, #f1f2f3 25px, #222831 25px);
}

.latestnews .box .img-box {
  background: #fcfcfc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 215px;
  border-radius: 0 0 0 45px;
  margin: -1px;
  padding: 25px;
  border: #000 10px;
}

.latestnews .box .img-box img {
  max-width: 100%;
  max-height: 145px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.latestnews .box .detail-box {
  padding: 25px;
}

.latestnews .box .detail-box h5 {
  font-weight: 600;
}

.latestnews .box .detail-box p {
  font-size: 15px;
}

.latestnews .box .detail-box h6 {
  margin-top: 10px;
}

.latestnews .box .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.latestnews .box .options a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.latestnews .box .options a svg {
  width: 18px;
  height: auto;
  fill: #ffffff;
}

.latestnews .box:hover .img-box img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.latestnews .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.latestnews .btn-box a {
  display: inline-block;
  padding: 10px 55px;
  background-color: #ffbe33;
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.latestnews .btn-box a:hover {
  background-color: #e69c00;
}

.industry-connect {
  width: 100% !important;
  height: auto !important;
  /* background-color: #EEF9FF !important; */
  background-color: #f7f7f7 !important;
  padding: 10px 0 !important;
}
.industry-connect img {
  width: 100% !important;
  height: auto !important;
}
.industry-connect h1 {
  text-align: center !important;
  font-size: 45px !important;
  margin: 20px 0 !important;
  position: relative !important;
  font-family: "Lora", serif !important;
  font-weight: 800 !important;
}
.industry-connect h1::before {
  content: "";
  /* background-color: #84131e !important; */
  background: linear-gradient(to right, #642222, #fc5c7d);

  width: 150px;
  height: 3px !important;
  position: absolute;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  bottom: 0 !important;
}

.industry-connect span {
  color: #ac0000 !important;
}

.wow,
.animated {
  animation-duration: 2s !important;
}

/*** Categories & Courses ***/
.category img,
.course-item img {
  transition: 0.5s;
}

.category a:hover img,
.course-item:hover img {
  transform: scale(1.1);
}

/*** Team ***/
.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.gwu-son-fact-container {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.row.gwu-son-factrow h3.promo-title {
  font-family: "Gibson-Book", Helvetica, Arial, sans-serif;
  font-size: 4rem;
  color: #000080;
  line-height: 1;
}

.row.gwu-son-factrow h3.promo-title a {
  font-family: "Gibson-Book", Helvetica, Arial, sans-serif;
  text-decoration: none;
  border-bottom: 1px solid #1f0fb4;
}

.row.gwu-son-factrow h3.promo-title a:hover {
  border-bottom: 1px solid #a75523;
}

.row .fact-row-text {
  font-size: 1rem;
  font-family: "Gibson-Book", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  padding: 0 0.3rem;
}

.gwu-son-factrow.fr-5-across.row h3.promo-title {
  font-size: 3.5rem;
}

@media (min-width: 1024px) {
  .factrow-animation .gwu-son-fact-container {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  .factrow-animation .gwu-son-fact-container:nth-child(1) {
    animation-delay: 0s;
  }

  .factrow-animation .gwu-son-fact-container:nth-child(2) {
    animation-delay: 0.4s;
  }

  .factrow-animation .gwu-son-fact-container:nth-child(3) {
    animation-delay: 0.8s;
  }

  .factrow-animation .gwu-son-fact-container:nth-child(4) {
    animation-delay: 1.2s;
  }

  .factrow-animation .gwu-son-fact-container:nth-child(5) {
    animation-delay: 1.6s;
  }
}

.fr-5-across.factrow-animation .gwu-son-fact-container .fact-row-text::after,
.fr-4-across.factrow-animation .gwu-son-fact-container .fact-row-text::after {
  border-left: none;
}

@media (min-width: 768px) {
  .factrow-animation .fact-row-text::after {
    content: "";
    border-left: 1px solid #d9d0bb;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    padding-left: 0;
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  .factrow-animation .gwu-son-fact-container:last-child .fact-row-text::after {
    content: none;
  }
}

@media (min-width: 992px) {
  .fr-5-across .col-lg-5-across {
    padding: 0 1.5rem;
    flex: 0 0 19.666667%;
    max-width: 19.6666666667%;
  }

  .fr-5-across.factrow-animation .gwu-son-fact-container .fact-row-text::after,
  .fr-4-across.factrow-animation .gwu-son-fact-container .fact-row-text::after {
    content: "";
    border-left: 1px solid #d9d0bb;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    padding-left: 0.2rem;
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  .fr-5-across.factrow-animation
    .gwu-son-fact-container:last-child
    .fact-row-text::after,
  .fr-4-across.factrow-animation
    .gwu-son-fact-container:last-child
    .fact-row-text::after {
    border-left: none;
  }
}

/*--- Global Students --- */
#global-students {
  background: url(../imgs/world-map-bg.jpg) no-repeat;
  background-size: cover;
}
#global-students h6 {
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 30px;
  border-bottom: 4px solid #00c1a1;
  text-align: center;
}
#global-students h2 {
  font-size: 28px;
  text-align: center;
  line-height: 39px;
  margin-bottom: 40px;
}

/*--- Global Students --- */
.global-map {
  text-align: center;
  position: relative;
}
.global-map .round {
  display: inline-block;
  background: #ff9c00;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
}
.global-map .round:after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background-color: #ff9c00;
  opacity: 0;
  z-index: 10;
  display: none;
  pointer-events: none;
  animation: round 2s linear infinite;
}
.global-map .round:hover:after {
  display: block;
}
@keyframes round {
  from {
    opacity: 0.4;
  }
  to {
    transform: scale(3);
    opacity: 0;
  }
}

/*--- Global Map --- */

/*--- Tooltip --- */
.tooltip {
  font-size: 13px;
  line-height: 22px;
  font-weight: 500;
  color: #000;
}
.tooltip.in {
  filter: alpha(opacity=100);
  opacity: 1;
}
.tooltip-inner {
  background: #ff9c00;
  padding: 6px 18px;
  color: #000;
}
.tooltip.top .tooltip-arrow {
  border-top-color: #ff9c00;
}
.tooltip.top-left .tooltip-arrow {
  border-top-color: #ff9c00;
}
.tooltip.top-right .tooltip-arrow {
  border-top-color: #ff9c00;
}
.tooltip.right .tooltip-arrow {
  border-right-color: #ff9c00;
}
.tooltip.left .tooltip-arrow {
  border-left-color: #ff9c00;
}
.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #ff9c00;
}
.tooltip.bottom-left .tooltip-arrow {
  border-bottom-color: #ff9c00;
}
.tooltip.bottom-right .tooltip-arrow {
  border-bottom-color: #ff9c00;
}

.tooltip.top {
  margin-top: 0;
}
.tooltip.top .tooltip-arrow {
  margin-left: -8px;
  border-width: 8px 8px 0;
  bottom: 0px;
}
.tooltip.right .tooltip-arrow {
  margin-top: -8px;
  border-width: 8px 8px 8px 0;
  left: -3px;
}

/* .global-map .round.bgd {
  left: 540px;
  top: 270px;
}
.global-map .round.abw {
  left: 200px;
  top: 290px;
}
.global-map .round.afg {
  left: 484px;
  top: 250px;
}
.global-map .round.ago {
  left: 378px;
  top: 354px;
}
.global-map .round.and {
  left: 334px;
  top: 224px;
}
.global-map .round.are {
  left: 451px;
  top: 275px;
}
.global-map .round.arg {
  left: 209px;
  top: 392px;
}
.global-map .round.aus {
  left: 617px;
  top: 371px;
}
.global-map .round.bdi {
  left: 402px;
  top: 310px;
}
.global-map .round.ben {
  left: 332px;
  top: 273px;
}
.global-map .round.bfa {
  left: 332px;
  top: 290px;
}
.global-map .round.bhr {
  left: 443px;
  top: 261px;
}
.global-map .round.btnn {
  left: 540px;
  top: 252px;
}
.global-map .round.bwa {
  left: 396px;
  top: 372px;
}
.global-map .round.caf {
  left: 377px;
  top: 297px;
}
.global-map .round.can {
  left: 89px;
  top: 119px;
}
.global-map .round.chn {
  left: 556px;
  top: 246px;
}
.global-map .round.civ {
  left: 332px;
  top: 307px;
}
.global-map .round.cmr {
  left: 364px;
  top: 310px;
}
.global-map .round.cod {
  left: 398px;
  top: 346px;
}
.global-map .round.com {
  left: 437px;
  top: 346px;
}
.global-map .round.dza {
  left: 191px;
  top: 317px;
}
.global-map .round.ecu {
  left: 182px;
  top: 325px;
}
.global-map .round.esp {
  left: 334px;
  top: 234px;
}
.global-map .round.eth {
  left: 426px;
  top: 294px;
}
.global-map .round.fra {
  left: 349px;
  top: 217px;
}
.global-map .round.gab {
  left: 369px;
  top: 321px;
}
.global-map .round.gha {
  left: 341px;
  top: 300px;
}
.global-map .round.gin {
  left: 319px;
  top: 290px;
}
.global-map .round.gmb {
  left: 302px;
  top: 290px;
}
.global-map .round.gnb {
  left: 312px;
  top: 273px;
}
.global-map .round.grc {
  left: 382px;
  top: 225px;
}
.global-map .round.idn {
  left: 596px;
  top: 317px;
}
.global-map .round.ind {
  left: 507px;
  top: 272px;
}
.global-map .round.irl {
  left: 307px;
  top: 140px;
}
.global-map .round.irn {
  left: 460px;
  top: 252px;
}
.global-map .round.irq {
  left: 424px;
  top: 233px;
}
.global-map .round.ita {
  left: 362px;
  top: 201px;
}
.global-map .round.jor {
  left: 418px;
  top: 253px;
}
.global-map .round.kaz {
  left: 424px;
  top: 180px;
}
.global-map .round.ken {
  left: 429px;
  top: 329px;
}
.global-map .round.kor {
  left: 697px;
  top: 164px;
}
.global-map .round.kwt {
  left: 445px;
  top: 242px;
}
.global-map .round.lbr {
  left: 322px;
  top: 302px;
}
.global-map .round.lka {
  left: 514px;
  top: 303px;
}
.global-map .round.lso {
  left: 413px;
  top: 376px;
}
.global-map .round.lva {
  left: 391px;
  top: 170px;
}
.global-map .round.mdv {
  left: 480px;
  top: 317px;
}
.global-map .round.mex {
  left: 135px;
  top: 270px;
}
.global-map .round.mli {
  left: 323px;
  top: 279px;
}
.global-map .round.mmr {
  left: 550px;
  top: 270px;
}
.global-map .round.mng {
  left: 605px;
  top: 162px;
}
.global-map .round.moz {
  left: 413px;
  top: 367px;
}
.global-map .round.mys {
  left: 623px;
  top: 323px;
}
.global-map .round.nga {
  left: 356px;
  top: 307px;
}
.global-map .round.npl {
  left: 526px;
  top: 256px;
}
.global-map .round.nzl {
  left: 698px;
  top: 417px;
}
.global-map .round.omn {
  left: 466px;
  top: 272px;
}
.global-map .round.pak {
  left: 490px;
  top: 264px;
}
.global-map .round.pol {
  left: 385px;
  top: 209px;
}
.global-map .round.pse {
  left: 356px;
  top: 279px;
}
.global-map .round.qat {
  left: 440px;
  top: 277px;
}
.global-map .round.rus {
  left: 574px;
  top: 106px;
}
.global-map .round.sau {
  left: 435px;
  top: 270px;
}
.global-map .round.sdn {
  left: 408px;
  top: 277px;
}
.global-map .round.som {
  left: 443px;
  top: 303px;
}
.global-map .round.swz {
  left: 413px;
  top: 365px;
}
.global-map .round.syr {
  left: 424px;
  top: 244px;
}
.global-map .round.tha {
  left: 559px;
  top: 292px;
}
.global-map .round.tib {
  left: 526px;
  top: 246px;
}
.global-map .round.tur {
  left: 390px;
  top: 212px;
}
.global-map .round.uga {
  left: 408px;
  top: 326px;
}
.global-map .round.usa {
  left: 135px;
  top: 213px;
}
.global-map .round.vnm {
  left: 573px;
  top: 292px;
}
.global-map .round.yem {
  left: 447px;
  top: 294px;
}
.global-map .round.zaf {
  left: 396px;
  top: 391px;
}
.global-map .round.zwe {
  left: 395px;
  top: 360px;
} */

*--- Featured Section --- */ #featured-section {
  background: #f1f6fe;
}
#featured-section.for-department {
  background-color: #ffffff;
}
#featured-section.for-school.featured-section2 {
  background: linear-gradient(180deg, #7594ff 0%, #61aef4 100%);
  padding-top: 50px;
}
#featured-section.for-school.featured-section2 .slides {
  margin-bottom: 0px;
}
#featured-section.featured-section2 h4 {
  color: #fff;
}
#featured-section #top-faculties .caroufredsel_wrapper {
  min-height: 312px !important;
}
#featured-section.for-school {
  padding-top: 98px;
}
#featured-section .tabs1 .nav-tabs {
  border-bottom: 0;
  margin-bottom: 40px;
  text-align: center;
}
#featured-section .tabs1 .nav-tabs li {
  float: none;
  display: inline-block;
}
#featured-section .slides {
  margin-bottom: 40px;
  min-height: 300px;
}
#featured-section .button3 {
  min-width: 180px;
  cursor: pointer;
}
#featured-section.featured-section2 .button2 {
  min-width: 180px;
  cursor: pointer;
}
#featured-section .tab-content > .tab-pane {
  display: block;
  visibility: hidden;
}
#featured-section .tab-content > .tab-pane.active {
  visibility: visible;
}
#featured-section .tab-content {
  position: relative;
}
#featured-section .tab-pane:not(:first-child) {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*--- Higher Edu Eligibility --- */
#higher-edu-eligibility .news-box .banner {
  height: 250px;
  background-position: center center;
}

/*--- Progress Incubation --- */
#progress-incubation {
  background: #f2f7ff;
}
#progress-incubation .doc-list li a,
#progress-incubation .doc-list li:before {
  color: #000;
}
#progress-incubation .box-default3 {
  max-height: 475px;
  overflow: auto;
}

/*--- Event Yt Banner --- */
.event-yt-banner iframe {
  width: 100%;
  height: 350px;
}
.event-yt-banner,
.event-banner {
  margin-bottom: 20px;
}
.event-banner .video {
  width: 100%;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
  width: 6px;
}

::-webkit-scrollbar:horizontal {
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  border: 1px solid #ffffff;
}

::-webkit-scrollbar-track {
  border-radius: 6x;
  background-color: #ffffff;
}

/*---  Latest News --- */
#latest-news {
  background: linear-gradient(180deg, #7594ff 0%, #61aef4 100%);
  padding-bottom: 0px;
}
#latest-news .row {
  margin-bottom: 55px;
}
#latest-news h3 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 35px;
}
#latest-news .button2 {
  min-width: 180px;
  margin-bottom: 39px;
}

/*--- Help List --- */
.help-list {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  padding-top: 52px;
}
.help-list li {
  padding: 15px;
  border: 1px solid #dadada;
  margin-bottom: 15px;
  border-radius: 5px;
  background: #fff;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
  -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
  -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
  -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}
.help-list li a {
  display: block;
  text-decoration: none;
}
.help-list li:last-child {
  margin-bottom: 0px;
}
.help-list .round-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  float: left;
  text-align: center;
}
.help-list .round-icon .icons {
  font-size: 38px;
  color: #fff;
  line-height: 75px;
}
.help-list .inner {
  margin-left: 103px;
  display: table;
  height: 75px;
}
.help-list .inner p {
  margin-left: 92px;
  display: table-cell;
  vertical-align: middle;
  margin: 0px;
  font-size: 18px;
  height: 75px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
  -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
  -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
  -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}
.help-list li:nth-child(1):hover {
  border-color: #fc654c;
}
.help-list li:nth-child(1):hover .inner p {
  color: #fc654c;
}
.help-list li:nth-child(2):hover {
  border-color: #00c1a1;
}
.help-list li:nth-child(2):hover .inner p {
  color: #00c1a1;
}
.help-list li:nth-child(3):hover {
  border-color: #3498db;
}
.help-list li:nth-child(3):hover .inner p {
  color: #3498db;
}
.help-list li:nth-child(4):hover {
  border-color: #ff9c00;
}
.help-list li:nth-child(4):hover .inner p {
  color: #ff9c00;
}
.help-list li:nth-child(5):hover {
  border-color: #ed027b;
}
.help-list li:nth-child(5):hover .inner p {
  color: #ed027b;
}

/*** Noitce Slider ***/
.notice-div {
  height: auto;
}
.notice1 {
  background-color: #a12d33;
}
.notice1 marquee {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .onmobile {
    height: 15px;
  }
}
.notice1 marquee ul {
  padding: 0;
  margin: 0;
}
.notice1 marquee ul li {
  line-height: 2;
  margin-right: 15px;
}
.notice1 marquee ul li:before {
  content: "\f111";
  font-family: "FontAwesome";
  display: inline-block;
  color: #fdb10f;
  margin-right: 6px;
  font-size: 10px;
}

.flash-box123 {
  width: 200px;
  height: 42px;
  position: relative;
  background: #fdb10f;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 2.6;
}
.flash-box123 p {
  line-height: 40px !important;
  color: #fff;
  font-weight: bold;
}

.flash-box123:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 20px solid #a12d33;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.flash-box123:before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 20px solid #fdb10f;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
marquee {
  position: relative;
  top: 4px;
}
#notification-area a:link,
a:visited,
a:active {
  color: #fff;
}

/* subscribe form */
.widget.sb-widget-subscribe {
  padding: 0;
}

.subscribe-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 35px 30px;
  background: #fff;
  -webkit-box-shadow: 0 2px 5px 0 rgba(28, 28, 28, 0.1);
  box-shadow: 0 2px 5px 0 rgba(28, 28, 28, 0.1);
  color: #888;
  text-align: left;
  text-shadow: none;
}

.mc4wp-form-fields {
  position: relative;
  display: block;
  overflow: hidden;
}

.subscribe-wrap .mc4wp-form-fields > *:not(span) {
  display: block;
  float: left;
  width: 100%;
}

.mc4wp-form-fields label,
.mc4wp-form-fields span {
  display: none;
}

.subscribe-icon-mail i {
  position: absolute;
  top: -23px;
  right: -20px;
  color: #55acee;
  font-size: 73px;
  -webkit-transform: rotate(22deg);
  -ms-transform: rotate(22deg);
  transform: rotate(22deg);
}

.subscribe-title-wrap h3,
.subscribe-title-wrap span {
  margin-top: 0;
  margin-bottom: 15px;
  color: #282828;
  text-transform: capitalize;
  letter-spacing: -0.03em;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}

.subscribe-text-wrap {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.45;
}

.subscribe-wrap.is-light-text .subscribe-text-wrap,
.subscribe-wrap.is-light-text .subscribe-title-wrap h3,
.subscribe-wrap.is-light-text .newsletter-privacy {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.subscribe-wrap.is-light-text, .subscribe-wrap.is-light-text .subscribe-form-wrap input[type=email] {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.subscribe-form-wrap input[type=email] {
  margin: 0;
  padding-right: 10px;
  padding-left: 30px;
  width: 73%;
  height: 40px;
  border-color: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  background: none;
  font-size: 14px;
}

.subscribe-form-wrap .mc4wp-form-fields input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  width: 27%;
  height: 40px;
  border: 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  background-color: #55acee;
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.subscribe-form-wrap .mc4wp-form-fields .ruby-icon-mail {
  position: absolute;
  top: 50%;
  left: 8px;
  display: block;
  margin-top: -8px;
  line-height: 1;
  opacity: 0.5;
}

.subscribe-form-wrap input[type=submit]:hover, .subscribe-form-wrap input[type=submit]:focus {
  background-color: #282828;
}

.is-light-text .subscribe-form-wrap input[type=submit]:hover, .is-light-text .subscribe-form-wrap input[type=submit]:focus {
  background-color: #fff;
  color: #282828;
}

.mc4wp-alert p {
  display: block;
  margin-top: 15px;
  color: #f33b3b !important;
  font-size: 14px;
  line-height: 17px;
}

.subscribe-wrap .mc4wp-form-fields p {
  margin-top: 0;
}

.mc4wp-form-fields p {
  margin-top: 20px;
}

.mc4wp-form-fields input[type=submit] {
  width: 100%;
}

.subscribe-wrap .newsletter-privacy {
  margin-top: 10px;
  color: #999;
  text-align: left;
  font-style: italic;
  font-size: 13px;
  line-height: 1;
}

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 45px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}

/*** Service ***/
.service-item {
  position: relative;
  text-align: center;
}

.service-item .service-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.service-item .service-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  transform: scale(1.2);
  transition: 0.3s;
  z-index: -1;
}

.service-item:hover .service-img img {
  transform: scale(1);
}

.service-item .service-text {
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.service-item:hover .service-text {
  background: #a12d33;
}

.service-item .service-text h4,
.service-item .service-text p {
  transition: 0.3;
}

.service-item:hover .service-text h4 {
  color: #ffffff;
}

.service-item:hover .service-text p {
  color: #ffff;
}

.service-item:hover .service-text li {
  color: #ffff;
}

.service-item .service-text .btn-square {
  width: 100px;
  height: 100px;
  background: transparent;
  transition: 0.5s;
}

.service-item:hover .service-text .btn-square {
  background: var(--light);
}

.service-item .service-text .btn {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  background: var(--light);
  white-space: nowrap;
  overflow: hidden;
  transition: 0.3s;
}

.service-item:hover .service-text .btn {
  width: 112px;
}

section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-header {
  text-align: center;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #db1d00;
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header h3 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h3:before,
.section-header h3:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #db1d00;
  display: inline-block;
}

.section-header h3:before {
  margin: 0 15px 10px 0;
}

.section-header h3:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}

.line {
  text-align: center;
  width: 100%;
  height: 2px;
  background: #a11803;
  display: inline-block;
}
