@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,800&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");
:root {
  --ex-bold: 800;
  --bold: 700;
  --semi-bold: 600;
  --medium: 500;
  --light: 300;
  --primary-color: #005e7e;
  --primary-hover: #03506b;
  --primary-font: "Poppins", sans-serif;
  --theme-color: #fff;
  --theme-color-secondary: #404f65;
  --theme-color-dark: #000;
  --theme-color-success: #3cb4e5;
  --theme-color-success-hover: #2687ad;
  --theme-text-color: #556987;
}

.text-primary {
  color: var(--primary-color) !important;
}

.fw-medium {
  font-weight: 500;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-grey {
  background-color: #f0f0f0;
}

.bg-secondary {
  background-color: var(--theme-color-success) !important;
}

.btn {
  font-size: 20px;
  padding: 16px 28px;
  border-radius: 6px;
}
.btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}

.btn-small {
  padding: 5px 10px;
  font-size: 14px;
}

.btn-medium {
  padding: 10px 20px;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}
.btn-primary:focus {
  background-color: var(--primary-hover);
}

.btn-success {
  background-color: var(--theme-color-success);
}
.btn-success:hover {
  background-color: var(--theme-color-success-hover);
}
.btn-success:focus {
  background-color: var(--theme-color-success-hover);
}

.btn-default {
  background: #FFFFFF;
  border: 1px solid #D5DAE1;
  box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
  border-radius: 6px;
}
.btn-default:hover {
  color: var(--theme-color-success);
  border-color: var(--theme-color-success);
}

.btn-semi-transperant {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  font-weight: var(--semi-bold);
  color: var(--theme-color);
  padding: 25px 30px;
  text-align: left;
  font-size: 20px;
}
.btn-semi-transperant:hover {
  background: rgba(0, 0, 0, 0.2);
  color: var(--theme-color);
}

.btn-light-blue {
  background-color: #3B82F6;
  color: var(--theme-color);
}
.btn-light-blue:hover {
  background-color: #235ebc;
  color: var(--theme-color);
}

.btn-download {
  font-size: 15px;
}
.btn-download i {
  font-size: 40px;
}

.text-success {
  color: var(--theme-color-success) !important;
}

.border-radius-5 {
  border-radius: 5px;
}

.border-radius-10 {
  border-radius: 10px;
}

.border-radius-15 {
  border-radius: 15px;
}

.border-radius-20 {
  border-radius: 20px;
}

.border-radius-25 {
  border-radius: 25px;
}

.border-radius-30 {
  border-radius: 30px;
}

.border-radius-40 {
  border-radius: 40px;
}

.border-radius-50 {
  border-radius: 50px;
}

.m-r-3 {
  margin-right: 30px;
}

body {
  font-family: var(--primary-font);
  font-size: 16px;
  overflow-x: hidden;
}

body.rtl {
  direction: rtl;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
}

.parag-noramal p {
  font-size: 16px;
}

h1 {
  font-size: 38px;
  font-weight: var(--bold);
  line-height: normal;
}

h2 {
  font-size: 26px;
  font-weight: var(--bold);
  line-height: normal;
}

h3 {
  font-size: 22px;
  font-weight: var(--bold);
  line-height: normal;
}

h4 {
  font-size: 20px;
  font-weight: var(--bold);
  line-height: normal;
}

h5 {
  font-size: 18px;
  font-weight: var(--semi-bold);
  line-height: normal;
}

h6 {
  font-size: 16px;
  font-weight: var(--semi-bold);
  line-height: normal;
}

img {
  max-width: 100%;
  height: auto !important;
}

a {
  text-decoration: none;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.forgt {
  font-size: 14px;
  color: var(--theme-color-success);
}

table {
  width: 100% !important;
  border: none !important;
  border-top: 1px solid #ddd !important;
  border-left: 1px solid #ddd !important;
}
table tr {
  border: none !important;
}
table tr td {
  border: none !important;
  border-bottom: 1px solid #ddd !important;
  border-right: 1px solid #ddd !important;
  padding: 5px !important;
}

.read-more {
  font-size: 18px;
  font-weight: var(--medium);
}
.read-more.color-white {
  color: var(--theme-color);
}
.read-more.color-white:hover {
  color: var(--theme-color-dark);
}
.read-more.color-blue {
  color: var(--primary-color);
}
.read-more.color-blue:hover {
  color: var(--primary-hover);
}

figcaption {
  background: #2A3342;
  box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
  border-radius: 36px;
  display: inline-block;
  color: var(--theme-color);
  font-size: 12px;
  padding: 2px 8px;
}

header .header-top {
  background-color: var(--primary-color);
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
}
header .header-top a {
  color: #fff;
  font-size: 13px;
}
header .header-top a :hover {
  color: var(--theme-color-success);
}
header .header-top .header-right {
  text-align: right;
}
header .header-top .header-right ul {
  list-style: none;
  margin-bottom: 0;
  margin-top: 5px;
}
header .header-top .header-right ul li {
  display: inline-block;
  border-left: 1px solid var(--theme-color-dark);
  padding-left: 20px;
  padding-right: 20px;
}
header .header-top .header-right ul li:first-child {
  border-left: none;
}
header .header-top .header-right ul li a:hover {
  color: var(--theme-color-dark);
}
header .header-top .search-wrap {
  position: relative;
}
header .navigation {
  padding-top: 5px;
  padding-bottom: 5px;
}
header .navigation .navbar-light .navbar-brand {
  max-width: 170px;
}
header .navigation .navbar-light .navbar-nav .nav-link {
  color: #4D5F7A;
}
header .navigation .navbar-light .navbar-nav .nav-link:hover, header .navigation .navbar-light .navbar-nav .nav-link.active {
  color: var(--theme-color-success);
}
header .navigation .dropdown-menu {
  background-color: var(--primary-color);
}
header .navigation .right-drop .dropdown-menu {
  right: 0;
  left: auto;
}
header .navigation .dropdown-item {
  color: var(--theme-color);
}
header .navigation .dropdown-item:hover {
  background-color: var(--theme-color);
  color: var(--theme-color-dark);
}
header .navigation .dropdown-item:focus {
  background-color: var(--theme-color);
  color: var(--theme-color-dark);
}
header .navigation .avatar svg path {
  fill: #4D5F7A;
}

.language-image {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 5px;
}
.language-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #76A8F9;
}

body.rtl header .navigation .right-drop .dropdown-menu {
  right: auto;
  left: 0;
}

.banner {
  background-image: url(../images/banner-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
.banner::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 94, 126, 0.7);
  left: 0;
  top: 0;
}
.banner .banner-caption {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 30px;
  bottom: 0;
}
.banner .banner-caption .banner-ttle {
  font-size: 36px;
  font-weight: bold;
}
.banner .banner-caption p {
  color: var(--theme-color);
  font-size: 16px;
}
.banner .carousel .carousel-inner {
  border-radius: 30px;
}
.banner .carousel .carousel-inner .carousel-item .banner-img img {
  max-width: 100%;
}
.banner .carousel .carousel-control-next,
.banner .carousel .carousel-control-prev {
  width: 64px;
  height: 64px;
  background: #2A3342;
  border-radius: 50%;
  top: 50%;
  margin-top: -32px;
  opacity: 1;
}
.banner .carousel .carousel-control-next:hover,
.banner .carousel .carousel-control-prev:hover {
  opacity: 0.5;
}
.banner .carousel .carousel-control-next .carousel-control-prev-icon,
.banner .carousel .carousel-control-prev .carousel-control-prev-icon {
  background-image: url(../images/banner-left-arrow.svg);
}
.banner .carousel .carousel-control-next .carousel-control-next-icon,
.banner .carousel .carousel-control-prev .carousel-control-next-icon {
  background-image: url(../images/banner-right-arrow.svg);
}
.banner .carousel .carousel-control-prev {
  left: -50px;
}
.banner .carousel .carousel-control-next {
  right: -50px;
}
.banner .carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.home-register-sec {
  position: relative;
  padding-top: 10px;
  padding-bottom: 30px;
  /* &::before {
      width: 100%;
      background-color: var(--theme-color);
      position: absolute;
      height: 30px;
      top: -30px;
      content: "";
      left: 0;
      border-radius: 20px 20px 0px 0px;
  }
  */
}

.hash-form-control {
  background: #EEF0F3;
  height: 61px;
  border: 1px solid #D5DAE1;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  color: #667085;
}

.home-about-sec {
  background-image: url(../images/banner-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0px 0px 20px 20px;
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
  color: var(--theme-color);
}
.home-about-sec::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, #fff 0%, #ccc 100%);
  left: 0;
  top: 0;
  opacity: 0.8;
  z-index: 0;
}
.home-about-sec div {
  z-index: 0;
}
.home-about-sec .hm-abr-right {
  text-align: right;
}
.home-about-sec .btn {
  position: relative;
  min-width: 325px;
  margin-bottom: 30px;
  display: inline-block;
  border-radius: 30px;
  font-weight: var(--semi-bold);
  color: var(--theme-color);
  padding: 25px 30px;
  text-align: left;
  font-size: 20px;
}
.home-about-sec .btn .btn-icon {
  margin-right: 20px;
}
.home-about-sec .btn i {
  position: absolute;
  right: 25px;
  top: 30px;
}

.cources-sec {
  background: #F7F8F9;
  padding-top: 50px;
  padding-bottom: 50px;
}
.cources-sec iframe {
  max-width: 100%;
}
.cources-sec a {
  color: var(--theme-color-dark);
}
.cources-sec a:hover {
  opacity: 0.5;
}
.cources-sec .cource-grid {
  width: 100%;
  display: block;
  padding: 15px;
  border-radius: 3px;
  text-align: center;
  min-height: 220px;
}
.cources-sec .cource-grid img {
  width: 50%;
  margin-bottom: 30px;
}
.cources-sec .cource-grid-list {
  width: 100%;
  display: block;
  padding: 15px;
  border-radius: 3px;
  text-align: center;
  min-height: 220px;
  background-size: 100%;
}
.cources-sec .cource-grid-list img {
  width: 100%;
  margin-bottom: 15px;
}
.cources-sec table {
  width: 100% !important;
  border: none !important;
  border-top: 1px solid #ddd !important;
  border-left: 1px solid #ddd !important;
}
.cources-sec table tr {
  border: none !important;
}
.cources-sec table tr td {
  border: none !important;
  border-bottom: 1px solid #ddd !important;
  border-right: 1px solid #ddd !important;
  padding: 5px !important;
}

.service-sec {
  background-color: var(--theme-color);
  padding-top: 50px;
  padding-bottom: 50px;
}
.service-sec .service-bx {
  margin-bottom: 30px;
}
.service-sec .service-bx a {
  color: inherit;
}
.service-sec .service-bx a .service-digit {
  background-color: var(--theme-color-success);
  color: var(--theme-color);
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  display: block;
  font-weight: var(--medium);
  padding-top: 10px;
}
.service-sec .service-bx a p {
  font-size: 16px;
  color: var(--theme-text-color);
}
.service-sec .service-bx a:hover .service-digit {
  background-color: var(--theme-color-secondary);
}

.video-img a {
  position: relative;
}
.video-img a span {
  position: absolute;
  width: 66px;
  height: 66px;
  top: 50%;
  margin-top: -33px;
  left: 50%;
  margin-left: -33px;
  z-index: 1;
  background-color: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  color: var(--theme-color-dark);
  padding-top: 14px;
}
.video-img a img {
  border-radius: 24px;
}
.video-img a:hover {
  opacity: 0.5;
}
.video-img a:hover span {
  opacity: 0.9 !important;
  background-color: var(--theme-color-success);
  color: var(--theme-color);
}

.news-sec {
  background: #F7F8F9;
  padding-top: 60px;
  padding-bottom: 60px;
}
.news-sec p {
  color: var(--theme-text-color);
}

.usr-name {
  font-weight: var(--medium);
  margin-right: 40px;
}

.home-servc-sec2 {
  background-color: var(--theme-color-success);
  padding-top: 40px;
  padding-bottom: 40px;
}
.home-servc-sec2 .home-serv-sec2-bx p {
  color: var(--primary-color);
}

.client-says-sec {
  padding-top: 50px;
  padding-bottom: 50px;
}
.client-says-sec .carousel-control-next,
.client-says-sec .carousel-control-prev {
  display: none;
}
.client-says-sec .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #BBC3CF !important;
}
.client-says-sec .carousel-indicators button.active {
  background-color: #76A8F9 !important;
}
.client-says-sec .carousel {
  padding-bottom: 50px;
}
.client-says-sec .carousel .media {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.client-says-sec .carousel .media img {
  width: 75px;
  height: 75px;
  display: block;
  border-radius: 50%;
}
.client-says-sec .carousel .overview {
  padding: 0px 0 0 15px;
}
.client-says-sec .carousel .overview .details {
  color: var(--theme-text-color);
  font-size: 18px;
}
.client-says-sec .carousel .overview .discription {
  color: var(--theme-text-color);
  font-size: 14px;
  font-weight: var(--light);
}
.client-says-sec .carousel .testi-outr {
  padding: 40px 30px;
  border-radius: 32px;
  margin-bottom: 30px;
}

.newsletter {
  padding: 60px 0;
  background-color: var(--theme-color-success);
}
.newsletter .newsltr-outr {
  background-color: var(--primary-color);
  padding: 60px;
  border-radius: 6px 6px 50px 50px;
}

.footer {
  background: #2A3342;
  padding-top: 60px;
}
.footer .footer-top {
  border-bottom: 1px solid #333F51;
  padding-bottom: 30px;
  margin-bottom: 45px;
}
.footer .footer-top .footer-menu {
  padding-left: 0;
}
.footer .footer-top .footer-menu li {
  list-style: none;
  display: inline-block;
  margin-left: 0px;
  margin-right: 10px;
}
.footer .footer-top .footer-menu li:first-child {
  margin-left: 0;
}
.footer .footer-top .footer-menu li a {
  color: #BBC3CF;
  font-size: 16px;
  font-weight: var(--medium);
}
.footer .footer-top .footer-menu li a:hover {
  color: var(--theme-color);
}
.footer .footer-box {
  font-weight: var(--medium);
}
.footer .footer-box p {
  color: var(--theme-text-color);
}
.footer .footer-box a {
  color: #BBC3CF;
}
.footer .footer-box a:hover {
  color: var(--theme-color);
}
.footer .footer-mid-menu {
  list-style: none;
  padding-left: 0;
}
.footer .footer-mid-menu li {
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
}
.footer .footer-mid-menu li::before {
  position: absolute;
  content: "|";
  left: 0;
}
.footer .footer-mid-menu li:first-child {
  padding-left: 0;
}
.footer .footer-mid-menu li:first-child::before {
  display: none;
}
.footer .footer-bottom {
  border-top: 1px solid #333F51;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #8896AB;
}
.footer .footer-bottom p {
  font-size: 14px;
}
.footer .footer-bottom .foter-bottom-right {
  text-align: right;
}
.footer .footer-bottom .foter-bottom-right span a svg path {
  fill: #8896AB;
}
.footer .footer-bottom .foter-bottom-right span a:hover {
  color: var(--theme-color);
}
.footer .footer-bottom .foter-bottom-right span a:hover svg path {
  fill: var(--theme-color);
}

.search {
  position: relative;
  box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
}
.search input {
  height: 60px;
  text-indent: 25px;
  border: 2px solid #d6d4d4;
}
.search i {
  position: absolute;
  top: 20px;
  left: 16px;
}
.search button {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 50px;
  width: 110px;
  padding: inherit;
}

.gtco-testimonials {
  position: relative;
  margin-top: 30px;
}
.gtco-testimonials h2 {
  font-size: 30px;
  text-align: center;
  color: #333333;
  margin-bottom: 50px;
}
.gtco-testimonials .owl-stage-outer {
  padding: 30px 0;
}
.gtco-testimonials .owl-nav {
  display: none;
}
.gtco-testimonials .owl-dots {
  text-align: center;
}
.gtco-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background: #fff;
  border: 2px solid var(--primary-color);
  margin: 0 5px;
}
.gtco-testimonials .owl-dots .active {
  box-shadow: none;
}
.gtco-testimonials .owl-dots .active span {
  background: var(--primary-color);
  box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
}
.gtco-testimonials .card {
  background: #fff;
  box-shadow: 0 8px 30px -7px #c9dff0;
  margin: 0 20px;
  padding: 0 10px;
  border-radius: 20px;
  border: 0;
}
.gtco-testimonials .card .card-img-top {
  max-width: 100px;
  border-radius: 50%;
  margin: 15px auto 0;
  box-shadow: 0 8px 20px -4px #95abbb;
  width: 100px;
  height: 100px;
}
.gtco-testimonials .card h5 {
  color: var(--primary-color);
  font-size: 21px;
  line-height: 1.3;
}
.gtco-testimonials .card h5 span {
  font-size: 18px;
  color: #666666;
}
.gtco-testimonials .card p {
  color: #555;
  padding-bottom: 15px;
}
.gtco-testimonials .active {
  opacity: 0.5;
  transition: all 0.3s;
}
.gtco-testimonials .center {
  opacity: 1;
}
.gtco-testimonials .center h5 {
  font-size: 24px;
}
.gtco-testimonials .center h5 span {
  font-size: 18px;
}
.gtco-testimonials .center .card-img-top {
  max-width: 100%;
  height: 120px;
  width: 120px;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  outline: 0;
}
.owl-carousel button.owl-dot {
  outline: 0;
}

.inner-banner {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #005e7e;
  background-image: url(../images/inner-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.inner-banner .breadcrumb-item a {
  color: #fff;
}
.inner-banner .breadcrumb-item.active {
  color: #ddd;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  background: #e9ecef;
  color: #000 !important;
  border: 1px solid #D5DAE1;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  height: 50px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-control[type=file] {
  padding-top: 12px;
}

.txt-area {
  height: 150px;
  resize: none;
}

.course-list p {
  font-size: 16px;
}
.course-list span {
  color: var(--theme-color-success);
}

.pagination .page-link {
  padding: 10px 15px;
  color: #BBC3CF;
  border: 1px solid #EEF0F3;
  box-shadow: 0px 1px 2px rgba(42, 51, 66, 0.06);
}
.pagination .page-item.active a {
  background-color: var(--theme-color);
  color: var(--primary-color);
  border: 1px solid #EEF0F3;
}

.course-main-imag img {
  width: 100%;
}

.img-w-170 {
  max-width: 170px;
}

.abt-img-borderd {
  border: 3px solid #ddd;
  padding: 15px;
  margin-bottom: 30px;
}

.form-group .iti {
  display: block;
}

.mission-box {
  background-color: var(--primary-color);
  color: var(--theme-color);
  border-radius: 15px;
  padding: 15px;
  border-left: 5px solid var(--theme-color-success);
}
.mission-box p {
  color: var(--theme-color);
}

.vision-box {
  background-color: var(--theme-color-success);
  color: var(--theme-color);
  border-radius: 15px;
  padding: 15px;
  border-right: 5px solid var(--primary-color);
}
.vision-box p {
  color: var(--theme-color);
}

.counter-wrap {
  background-color: var(--primary-color);
  padding-top: 60px;
  padding-bottom: 60px;
  color: var(--theme-color);
}
.counter-wrap .stastic h4 {
  font-size: 36px;
}
.counter-wrap .stastic .counter {
  position: relative;
}
.counter-wrap .stastic .counter::after {
  position: absolute;
  content: " ";
  right: -30px;
}
.counter-wrap .stastic .counter.count-plus::after {
  content: "+";
}
.counter-wrap .stastic .counter.count-percentage::after {
  content: "%";
}

.form-control .bs-searchbox input {
  /* margin-bottom: 0; */
  width: 100%;
  height: 40px;
  margin-top: 0;
  margin-bottom: 4px;
}
.form-control .btn-default {
  background-color: transparent;
  height: 50px;
  font-size: inherit;
  color: #667085;
  padding-left: 10px;
  padding-right: 26px;
  padding-top: 10px;
  font-family: inherit;
}
.form-control .btn-default:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.listing-style,
.tab-pane ul {
  margin-top: 0;
  margin-bottom: 15px;
}
.listing-style li,
.tab-pane ul li {
  position: relative;
  font-size: 16px;
}

.accordion-button {
  font-weight: 600;
}
.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

/* ============ Login , register, my account // ============ */
.landing-wrap {
  background-image: url(../images/banner-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 90px;
  padding-bottom: 90px;
}
.landing-wrap::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 94, 126, 0.7);
  left: 0;
  top: 0;
}
.landing-wrap .landing-outer {
  background-color: var(--theme-color);
  background-image: url(../images/landing-bg.jpg);
  position: relative;
  border-radius: 20px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 50px;
}

.login-box {
  text-align: center;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.12);
  border-radius: 15px;
}
.login-box .login-logo {
  margin-bottom: 30px;
}
.login-box p {
  color: #666;
}
.login-box .form-group {
  position: relative;
}
.login-box .form-control {
  border: none;
  background-color: #fff;
}
.login-box .icon-control {
  padding-left: 30px;
}

.password-view {
  position: absolute;
  right: 5px;
  top: 15px;
  border: none;
  background-color: inherit;
}

.field-icon {
  position: absolute;
  left: 3px;
  top: 11px;
  color: #ccc;
  font-size: 20px;
}

.landing-menu {
  position: relative;
  text-align: right;
  padding-right: 15px;
}
.landing-menu ul {
  list-style: none;
}
.landing-menu ul li {
  border-right: 1px solid var(--theme-color-success);
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
}
.landing-menu ul li a {
  color: var(--theme-color);
}
.landing-menu ul li a:hover {
  color: var(--theme-color-success);
}
.landing-menu ul li:last-child {
  border: none;
}

.account-left .card-body {
  background-color: var(--primary-color);
  color: #fff;
}
.account-left .card-body .rounded-circle {
  border: 3px solid var(--theme-color);
}

.vertical-tab {
  margin-top: 15px;
  background-color: #eee;
}
.vertical-tab .nav-link {
  border: 1px solid #ddd;
  border-radius: 0;
  text-align: left;
  padding: 20px;
  color: var(--theme-color-dark);
}
.vertical-tab .nav-link.active {
  background-color: #f8f9fa;
  color: var(--theme-color-secondary);
  border-right-color: transparent;
}

.profile-img .file {
  position: relative;
  overflow: hidden;
  margin-top: 130px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  background: #000;
  width: 30px;
  height: 30px;
  padding: 5px;
  left: 0;
  margin-left: -20%;
}
.profile-img .file input {
  position: absolute;
  opacity: 0;
  right: 0;
  top: 0;
  cursor: pointer;
}

.contact-icon {
  font-size: 100px;
  color: var(--primary-color);
}

.filtr-lists {
  display: inline-block;
  background-color: #eee;
  margin-right: 10px;
  padding-left: 1.8em;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 5px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  font-size: 14px;
}

/* ============ desktop view .end// ============ */
.v-tab .nav-tabs .nav-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  padding: 10px 30px;
}
.v-tab .tab-content .tab-pane {
  background-color: var(--theme-color);
  padding: 30px;
  border: 1px solid #dee2e6;
  border-top: none;
}

.tab-pane {
  background-color: var(--theme-color);
  padding: 30px;
  border: 1px solid #dee2e6;
}

.abt-left .vertical-tab .nav-link {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
}
.abt-left .vertical-tab .nav-link.active {
  background-color: #f8f9fa;
  color: var(--theme-color-secondary);
  border-right-color: transparent;
}

.gallery-tab .nav-link {
  font-weight: 600;
  font-size: 19px;
  color: var(--theme-color-success);
}
.gallery-tab .nav-link.active {
  background-color: var(--theme-color-success);
}

.test-details {
  position: relative;
  border-radius: 50px;
}
.test-details .test-qat {
  position: absolute;
  right: 13px;
  top: -15px;
  font-size: 80px;
  color: var(--theme-color-success);
  transform: rotate(180deg);
}
.test-details .testi-details-image img {
  border-radius: 50%;
  border: 5px solid #ddd;
  width: 100px;
}

.filter-sidebar .filter-btn {
  color: var(--theme-color);
  margin-bottom: 30px;
}

.abt-left .vertical-tab .nav-link {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
}

.partner-land-box {
  border: 1px solid #ddd;
}

.partner-first-bx {
  height: 117px;
  overflow-y: hidden;
  margin-bottom: 15px;
}

.partner-first-bx h5 {
  height: 30px;
  overflow-y: hidden;
  margin-bottom: 15px;
}

.partners-second-bx {
  height: 133px;
  overflow-y: hidden;
}

#testimonials .reviews {
  color: #e59819;
}
#testimonials .testimonial-heading-rew {
  margin: 30px 0px;
  padding: 10px 20px;
  margin-bottom: 0;
}
#testimonials .testimonial-heading-rew .rate-count {
  color: #666;
  margin-left: 20px;
}

.testimonial-box-container .post-slide {
  margin: 20px 20px 20px;
}
.testimonial-box-container .owl-carousel .owl-nav.disabled {
  display: block !important;
}
.testimonial-box-container .owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  margin-top: -30px;
}
.testimonial-box-container .owl-carousel .owl-nav button.owl-next {
  right: 0;
}
.testimonial-box-container .owl-carousel .owl-nav button span {
  font-size: 40px;
}
.testimonial-box-container .testimonial-box {
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 20px;
  margin: 15px auto;
  cursor: pointer;
}
.testimonial-box-container .testimonial-box:hover {
  transform: translateY(-10px);
  transition: all ease 0.3s;
}
.testimonial-box-container .testimonial-box .box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.testimonial-box-container .testimonial-box .box-top .profile {
  display: flex;
  align-items: center;
}
.testimonial-box-container .testimonial-box .box-top .profile .profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.testimonial-box-container .testimonial-box .box-top .profile .profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.testimonial-box-container .testimonial-box .box-top .profile .name-user {
  display: flex;
  flex-direction: column;
}
.testimonial-box-container .testimonial-box .box-top .profile .name-user strong {
  color: #3d3d3d;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.testimonial-box-container .testimonial-box .box-top .profile .name-user span {
  color: #979797;
  font-size: 0.8rem;
}

.star-rating {
  line-height: 42px;
  font-size: 28px;
}
.star-rating .bi {
  color: #e59819;
}

.faq-wrap {
  background: #fff;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
}
.faq-wrap .tab-control {
  padding: 15px;
  border-bottom: 1px solid #eee;
  background: #fff;
}
.faq-wrap .tab-control summary {
  padding: 5px;
  font-weight: 500;
}
.faq-wrap .faq-content {
  padding: 15px;
}

.cours-video iframe {
  width: 100% !important;
}

.wtsapclick {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 50px;
}
.wtsapclick a:hover {
  opacity: 0.5;
}

.lerng-mod-bx {
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 35px;
  border-radius: 25px;
  position: relative;
}
.lerng-mod-bx .lern-bx-content {
  min-height: 165px;
}
.lerng-mod-bx .lern-md-img {
  max-width: 200px;
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 30px;
  /* border: 2px solid #005e7e; */
  /* padding: 15px; */
}
.lerng-mod-bx .tag {
  position: absolute;
  left: -10px;
  top: 36px;
}
.lerng-mod-bx .tag .tag-content {
  padding: 5px 15px;
  font-size: 13px;
  position: relative;
}
.lerng-mod-bx .tag .tag-content::after {
  content: "";
  position: absolute;
  right: -27px;
  top: 0;
  width: 28px;
  height: 28px;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
.lerng-mod-bx .tag .tag-content::before {
  width: 0;
  height: 0;
  border-top: 6px solid #011f29;
  border-left: 10px solid transparent;
  content: "";
  left: 0;
  position: absolute;
  bottom: -6px;
}
.lerng-mod-bx .tag .tag-content.bg-primary::after {
  background-color: var(--primary-color);
}
.lerng-mod-bx .tag .tag-content.bg-secondary::after {
  background-color: var(--theme-color-success);
}

.subsidiaries {
  max-width: 200px;
}

/* second phase */
.secnd-cours {
  margin-bottom: 30px;
}
.secnd-cours p {
  color: #fff;
}
.secnd-cours img {
  height: 100% !important;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 62% center;
     object-position: 62% center;
}
.secnd-cours.individual p {
  font-size: 15px;
}

.fi-image {
  height: 100%;
}

.secnd-sours-left {
  background-color: var(--primary-color);
}

.secnd-sours-right {
  position: relative;
  outline: 2px solid #000;
  outline-offset: -9px;
}
.secnd-sours-right::before {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1450980392);
}
.secnd-sours-right a {
  display: block;
  padding: 10px 50px;
  color: #fff;
  z-index: 1;
  position: absolute;
  background-color: var(--primary-color);
  text-align: center;
  margin-top: 10px;
  outline: 2px solid #fff;
  outline-offset: -8px;
  border-radius: 20px;
  top: 50px;
  right: 30px;
}
.secnd-sours-right a h4 {
  margin-bottom: 0;
}

.secnd-abt-bx {
  display: block;
  min-height: 305px;
}
.secnd-abt-bx img {
  max-width: 100px;
  display: inline-block;
  margin-bottom: 20px;
}

.secnd-progrm-box {
  border-bottom: 2px solid var(--primary-color);
  min-height: 228px;
}
.secnd-progrm-box img {
  max-width: 60px;
  margin-bottom: 15px;
}

.second-st-online .secnd-progrm-box {
  border-bottom: none;
}
.second-st-online .secnd-progrm-box img {
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 15px;
}

.abt-left-ctm-image {
  float: left;
  height: 100%;
  margin-right: 20px;
  margin-bottom: 10px;
  max-width: 420px;
}

.infografic-bg {
  position: relative;
}
.infografic-bg .abslt-border {
  position: absolute;
  width: 92%;
  border-bottom: 2px dashed #ddd;
  top: 60px;
  height: 3px;
  left: 50%;
  margin-left: -46%;
}
.infografic-bg .info-grapgic-box {
  margin-top: 75px;
  position: relative;
  border-radius: 50px;
  text-align: center;
  padding: 50px;
  padding-top: 100px;
  margin-bottom: 30px;
  background-color: #f2f2f2;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.infografic-bg .info-grapgic-box .info-step-outer {
  position: absolute;
  top: -75px;
  left: 50%;
  margin-left: -65px;
  background-color: #f2f2f2;
  display: inline-block;
  border-radius: 50%;
  padding: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}
.infografic-bg .info-grapgic-box .info-step-outer .info-g-step {
  background-color: var(--primary-color);
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  color: #fff;
  padding-top: 20px;
}
.infografic-bg .info-grapgic-box .info-step-outer .info-g-step.hash-bg {
  background-color: var(--theme-color-secondary);
}
.infografic-bg .info-grapgic-box .info-step-outer .info-g-step.light-blue-bg {
  background-color: var(--theme-color-success);
}
.infografic-bg .info-grapgic-box .info-step-outer .info-g-step .info-g-text {
  display: block;
  font-size: 20px;
  line-height: 20px;
}
.infografic-bg .info-grapgic-box .info-step-outer .info-g-step .info-numr {
  font-size: 36px;
  font-weight: 600;
}
.infografic-bg .info-grapgic-box .info-g-image {
  max-width: 50px;
  display: inline-block;
  margin-bottom: 15px;
}

.consltncy-scnd-bx {
  width: 100%;
  display: block;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  min-height: 220px;
  background-color: #fff;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.consltncy-scnd-bx img {
  max-width: 150px;
}

.scnd-partnr-sec {
  background-color: var(--primary-color);
  color: #fff;
}
.scnd-partnr-sec .second-partnr-bx {
  text-align: center;
  margin-bottom: 30px;
}
.scnd-partnr-sec .second-partnr-bx img {
  max-width: 80px;
  margin-bottom: 15px;
}

.second-expert-bx {
  text-align: center;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  min-height: 274px;
  margin-bottom: 30px;
}
.second-expert-bx img {
  max-width: 80px;
  margin-bottom: 15px;
}

.second-list-outr {
  background-color: #fff;
  padding: 15px;
  border: 5px solid #eee;
  margin-bottom: 15px;
}
.second-list-outr .course-rating ul {
  list-style: none;
  padding-left: 0;
  color: #e48b29;
}
.second-list-outr .course-rating ul li {
  display: inline-block;
}
.second-list-outr .course-rating ul li span {
  color: #999;
  margin-left: 5px;
}
.second-list-outr .secnd-tags span {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 5px 15px;
  margin-right: 13px;
  display: inline-block;
  margin-bottom: 5px;
  font-size: 12px;
}

.secnd-in-banner {
  position: relative;
}
.secnd-in-banner:before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.53);
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
}
.secnd-in-banner .scon-cors-banr {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  background-position: center;
  height: 100% !important;
  width: 100%;
  top: 0;
  left: 0;
}
.secnd-in-banner .container {
  position: relative;
  z-index: 2;
}

/* second phase end */
@media screen and (min-width: 1200px) {
  .h-sticky {
    padding-right: 15px;
  }
  .main {
    float: left;
    width: 100%;
    position: relative;
  }
  .flex-div {
    display: flex;
  }
  .sticky-div {
    max-width: 432px;
  }
  .sticky-div.fixed {
    position: fixed;
  }
  .sticky-div.footstick {
    position: absolute;
    bottom: 0;
    top: inherit !important;
  }
}
@media screen and (min-width: 992px) {
  .fixed-top {
    background-color: #fff;
    z-index: 999;
  }
  .fixed-top.navigation {
    padding-top: 0;
    padding-bottom: 0;
  }
  .fixed-top.navigation .navbar-light .navbar-brand {
    max-width: 60px;
    overflow-x: hidden;
  }
  .fixed-top.navigation .navbar-light .navbar-brand img {
    max-width: none;
    width: 137px;
  }
  .dropdown-menu li {
    position: relative;
    border-bottom: 1px solid var(--theme-color-success-hover);
  }
  .dropdown-menu li.for-arrow {
    position: relative;
  }
  .dropdown-menu li.for-arrow::after {
    position: absolute;
    content: "\f285";
    width: 20px;
    height: 20px;
    font-family: bootstrap-icons !important;
    right: 0;
    top: 17px;
    color: var(--theme-color) !important;
    font-size: 8px;
  }
  .dropdown-menu li.for-arrow:hover::after {
    color: #000 !important;
  }
  .dropdown-menu li:hover .submenu {
    display: block;
  }
  .dropdown-menu li a {
    font-size: 14px;
    padding: 10px 10px;
  }
  .dropdown-menu .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
  }
  .dropdown-menu .submenu-left {
    right: 100%;
    left: auto;
  }
  .filter-sidebar .filter-btn {
    display: none;
    margin-bottom: 15px;
  }
  .filter-sidebar .collapse {
    display: block;
  }
  .course-details {
    padding-left: 10%;
    padding-right: 10%;
  }
  .badg-img {
    max-width: 90px;
  }
  .login-logo {
    max-width: 320px;
  }
  .cstm-tp-menu {
    display: none;
  }
  .lgn-mob {
    display: none;
  }
  .sign-sprltv {
    position: relative;
  }
  .sign-sprltv .btn {
    position: absolute;
    top: -1px;
    right: 11px;
  }
  header .navigation .navbar-light .container {
    position: relative;
  }
  header .navigation .navbar-light .navbar-nav .nav-item.dropdown:first-child {
    position: static;
  }
  header .navigation .navbar-light .navbar-nav .nav-item.dropdown:first-child .dropdown-menu {
    width: 100%;
  }
  header .navigation .navbar-light .navbar-nav .nav-item.dropdown:first-child .dropdown-menu li {
    width: 25%;
    float: left;
    border-right: 1px solid var(--theme-color-success-hover);
  }
  header .navigation .navbar-light .navbar-nav .nav-item.dropdown:first-child .dropdown-menu li:nth-child(4n+0) {
    border-right: none;
  }
  header .navigation .navbar-light .navbar-nav .nav-item.dropdown:first-child .dropdown-menu li:last-child {
    float: right;
    border: none;
    text-align: center;
  }
  header .navigation .navbar-light .navbar-nav .nav-item.dropdown:first-child .dropdown-menu li:last-child a {
    background-color: var(--theme-color-success);
    border-radius: 5px;
    margin-top: 8px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    width: 90%;
  }
}
@media screen and (max-width: 1319px) {
  .infografic-bg .abslt-border {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
  .fixed-top {
    position: static;
  }
  .header-right {
    display: none;
  }
  .language-select {
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 0px;
    z-index: 99999;
  }
  .language-select .language-text {
    display: none;
  }
  .navbar-toggler {
    position: absolute;
    right: 15px;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-collapse {
    position: absolute;
    right: 0;
    width: 100%;
    background: white;
    z-index: 99999;
    padding: 10px 30px;
    top: 82px;
    border-top: 2px solid var(--primary-color);
  }
  .avtar-drop {
    display: none;
  }
  .lgn-mob {
    text-align: right;
    position: absolute;
    top: 25px;
    right: 86px;
    z-index: 9;
  }
  .lgn-mob .mbl-lg-otr {
    background: var(--theme-color-success-hover);
    padding: 5px 10px;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.82);
    text-align: left;
    border-radius: 5px;
    width: 180px;
  }
  .lgn-mob .mbl-lg-otr ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
  }
  .lgn-mob .mbl-lg-otr ul li {
    border-bottom: 1px solid #116180;
  }
  .lgn-mob .mbl-lg-otr ul li:last-child {
    border-bottom: none;
  }
  .lgn-mob .mbl-lg-otr ul li a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .banner .banner-caption {
    padding: 15px;
  }
  .banner .banner-caption p {
    display: none;
  }
  .banner .banner-caption .banner-ttle {
    font-size: 22px;
  }
  .banner .banner-caption .btn {
    padding: 5px 10px;
    font-size: 16px;
  }
  .reg-col {
    width: 100%;
    flex: auto;
    margin-bottom: 15px;
  }
  .reg-col .btn {
    width: 100%;
  }
  .footer .footer-top .footer-menu {
    padding-left: 0;
  }
  .footer .footer-top .footer-menu li {
    margin: 15px !important;
    margin-left: 0 !important;
  }
  .landing-wrap .landing-outer {
    padding: 15px;
  }
  .home-about-sec .btn {
    min-width: 266px;
    padding: 9px 13px;
    font-size: 16px;
  }
  .home-about-sec .btn i {
    top: 17px;
  }
  .secnd-abt-bx h5 {
    font-size: 16px;
  }
  .infografic-bg .abslt-border {
    display: none;
  }
  .contact-image img {
    display: none;
  }
}
@media (max-width: 991px) {
  .dropdown-menu .dropdown-menu {
    margin-left: 0.7rem;
    margin-right: 0.7rem;
    margin-bottom: 0.5rem;
  }
  .second-list-outr .scnd-ist-img {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
  }
  p {
    font-size: 14px;
  }
  header .header-top {
    padding-top: 15px;
  }
  .banner .carousel .carousel-inner {
    border-radius: 0;
    padding-bottom: 60px;
    padding-top: 60px;
  }
  .banner .carousel .carousel-control-prev {
    left: -10px;
    width: 30px;
    height: 30px;
  }
  .banner .carousel .carousel-control-prev span {
    background-size: 20px;
  }
  .banner .carousel .carousel-control-next {
    right: -10px;
    width: 30px;
    height: 30px;
  }
  .banner .carousel .carousel-control-next span {
    background-size: 20px;
  }
  .banner .banner-caption {
    position: static;
  }
  .banner .banner-caption p {
    display: none;
  }
  .banner .banner-caption .banner-ttle {
    font-size: 12px;
    font-weight: 400;
    overflow-y: hidden;
    display: block;
  }
  .home-about-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .home-about-sec .btn-semi-transperant {
    width: 100%;
    min-width: auto;
  }
  .home-about-sec .hm-abr-right {
    text-align: center;
  }
  .home-about-sec .btn {
    font-size: 16px;
    min-width: 290px;
    padding: 10px;
  }
  .home-about-sec .btn i {
    top: 18px;
  }
  .cources-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .cources-sec .coures-col {
    width: 100%;
    flex: auto;
    margin-bottom: 15px;
  }
  .service-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .news-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .home-serv-sec2-bx {
    margin-bottom: 30px;
  }
  .client-says-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .newsletter {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .newsletter .newsltr-outr {
    padding: 30px;
  }
  .newsletter .newsltr-outr .btn {
    width: 100%;
  }
  .footer {
    padding-top: 60px;
  }
  .footer .footer-bottom {
    text-align: center;
  }
  .footer .footer-bottom .foter-bottom-right {
    text-align: center;
  }
  .gtco-testimonials {
    margin-top: 0;
  }
  .for-mobile-order {
    order: 2;
  }
  .inner-banner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .dropdown-menu li a {
    font-size: 14px;
    padding: 10px 10px;
  }
  .course-main-imag {
    position: relative;
    height: 200px;
  }
  .course-main-imag img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    height: 200px !important;
    width: 100%;
    left: 0;
  }
  .secnd-abt-bx {
    display: block;
    min-height: auto;
  }
}
a.news-link-cstm {
  color: var(--primary-color);
}

@media screen and (max-width: 460px) {
  .cstm-d-block {
    display: block !important;
  }
  .txt-full {
    margin-bottom: 17px;
    display: block;
    font-size: 14px !important;
  }
  .login-box {
    padding: 5px;
  }
}/*# sourceMappingURL=style.css.map */