/*

    CSS INDEX
    ===================

    01. Theme default CSS
    02. Header CSS
    2.1. Header Top CSS
    2.2 Offcanvas Menu CSS
    03. Hero CSS
    04. Service CSS
    05. About CSS
    06. Skill CSS
    07. Counter CSS
    08. Case Study CSS
    09. Features CSS
    10. Team CSS
    11. Testimonial CSS
    12. Choose Us CSS
    13. Brand CSS
    14. CTA CSS
    15. Video CSS
    16. Blog CSS
    17. Pricing CSS
    18. Blog Standard CSS
    19. Blog Details CSS
    20. Contact CSS
    21. Page Banner CSS
    22. Subscribe CSS
    23. Login Register CSS
    24. Footer CSS
    24.1. Footer Widget CSS

*/

/* Color Code

Red - #d8281f
Orange - #e17619
Beige - #fad3a5
Yellow - #fbea00
Blue - #0f7ebc

*/

/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
/*-- Google Font --*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700|Roboto:300,400,500,700");
/*-- Common Style --*/
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #d8281f;
  --primary-color-2: #e17619;
  --secondary-color: #0f7ebc;
  --secondary-color-2: #fad3a5;
  --optional-color: #fbea00;
  --text-color: #8a8a8a;

  /* Normal Font Size */

  --heading-font-size: 2.25rem; /* 36pixels */
  --section-heading-font-size: 2rem; /* 32pixels */
  --subheading-font-size: 1.75rem; /* 28pixels */
  --minor-heading-font-size: 1.5rem; /* 24pixels */
  --small-heading-font-size: 1.25rem; /* 20pixels */
  --body-text-font-size: 1.125rem; /* 18pixels */
  --content-font-size: 1rem; /* 16pixels */

  /* Mobile Device Font Size */

  --mob-heading-font-size: 2rem; /* 32pixels */
  --mob-section-heading-font-size: 1.75rem; /* 28pixels */
  --mob-subheading-font-size: 1.5rem; /* 24pixels */
  --mob-minor-heading-font-size: 1.25rem; /* 20pixels */
  --mob-small-heading-font-size: 1.125rem; /* 18pixels */
  --mob-body-text-font-size: 11.125rem; /* 18pixels */
}

body {
  width: 100vw;
  font-size: var(--content-font-size);
  line-height: 28px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: var(--text-color);
  outline: none;
  visibility: visible;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body[dir="rtl"] {
  text-align: right;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  color: var(--secondary-color);
  font-weight: 700;
  margin-top: 0;
  line-height: 1.2;
  margin-bottom: 0;
}

h1 {
  font-size: 36px;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 30px;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  margin-bottom: 0;
}

a,
button {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

a,
button,
img,
input {
  transition: all 0.3s linear;
  outline: 0;
}
a:focus,
button:focus,
img:focus,
input:focus {
  outline: 0;
}

a:focus {
  color: none;
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--optional-color);
}

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

button,
input[type="submit"] {
  cursor: pointer;
}

img {
  max-width: 100%;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

.fix {
  overflow: hidden;
}

/*--Tab Content & Pane Fix--*/
.tab-content {
  width: 100%;
}
.tab-content .tab-pane {
  display: block;
  height: 0;
  max-width: 100%;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
}
.tab-content .tab-pane.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  overflow: visible;
}

/*-- Common Classes --*/
.section,
.main-wrapper {
  float: left;
  width: 100%;
}

@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1230px;
  }
}
/*--Section Spacing--*/
.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 1199px) {
  .section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section-padding-02 {
  padding-top: 120px;
}
@media only screen and (max-width: 1199px) {
  .section-padding-02 {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .section-padding-02 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-padding-02 {
    padding-top: 60px;
  }
}

.section-padding-03 {
  padding-top: 140px;
}
@media only screen and (max-width: 1199px) {
  .section-padding-03 {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .section-padding-03 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-padding-03 {
    padding-top: 60px;
  }
}

/*--Section Title--*/
.section-title .title {
  font-size: 48px;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .section-title .title {
    font-size: 30px;
    line-height: 24px;
  }
}
.section-title .title.white {
  color: #ffffff;
}
.section-title .sub-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 12px;
}
.section-title .sub-title::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 2px;
  background-color: var(--primary-color-2);
  bottom: 0;
  left: 0;
}
.section-title .sub-title.white {
  color: #ffffff;
}
.section-title .sub-title.white::before {
  background-color: #ffffff;
}
.section-title .sub-title.color-2::before {
  background-color: #0071dc;
}

/*--Section Title Two--*/
.section-title2 .title {
  font-size: 36px;
  line-height: 48px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--secondary-color);
}
@media only screen and (max-width: 767px) {
  .section-title2 .title {
    font-size: 30px;
    line-height: 36px;
  }
}
.section-title2 .title span {
  color: #ff773d;
}
.section-title2 .title.white {
  color: #ffffff;
}
.section-title2 .title.color-2 span {
  color: #2babe4;
}
.section-title2 .title.color-3 span {
  color: #0071dc;
}
.section-title2 .title.color-4 span {
  color: #3bbc9b;
}

.div-partition {
  padding: 100px 0px !important;
  margin-top: 25px;
}

@media only screen and (max-width: 768px) {
  .div-partition {
    padding: 50px 0px !important;
    margin: 0px;
  }
}

@media only screen and (200px <= width <= 425px) {
  .svg-shape {
    display: none;
  }

  .div-partition {
    padding: 50px 0px !important;
    margin: 0 !important;
  }
}

/*--Section Title Three--*/
.section-title3 .title {
  font-size: 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 5px 0px;
}
@media only screen and (max-width: 1199px) {
  .section-title3 .title {
    font-size: 48px;
    line-height: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title3 .title {
    font-size: 30px;
    line-height: 36px;
  }
}
.section-title3 .title.white {
  color: #ffffff;
}
.section-title3 .sub-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 12px;
}
.section-title3 .sub-title.white {
  color: #ffffff;
}

/*--Swiper Pagination--*/
.swiper-pagination .swiper-pagination-bullet {
  border-radius: 50%;
  background-color: #e8e8e8;
  width: 10px;
  height: 10px;
  transition: all 0.3s linear;
  position: relative;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffc600;
}
.swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  transform: scale(1);
}

/*--  Preloader Styles  --*/
#loading {
  background-color: #ffc600;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 9999;
  margin-top: 0px;
  top: 0px;
}
#loading #loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}
#loading #loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 200px;
  width: 200px;
  margin-top: -100px;
  margin-left: -100px;
  transform: rotate(-135deg);
}
#loading #object_one {
  left: 75px;
  top: 75px;
  width: 50px;
  height: 50px;
}
#loading #object_two {
  left: 65px;
  top: 65px;
  width: 70px;
  height: 70px;
  animation-delay: 0.2s;
}
#loading #object_three {
  left: 55px;
  top: 55px;
  width: 90px;
  height: 90px;
  animation-delay: 0.4s;
}
#loading #object_four {
  left: 45px;
  top: 45px;
  width: 110px;
  height: 110px;
  animation-delay: 0.6s;
}
#loading .object {
  border-radius: 50% 50% 50% 50%;
  position: absolute;
  border-top: 5px solid #ffffff;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #ffffff;
  border-right: 5px solid transparent;
  animation: animate 2s infinite;
}

/*===== Preloader Style =====*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
}
.preloader .color-1 {
  background-color: #ffc600 !important;
}
.preloader .rubix-cube {
  border: 1px solid #fff;
  width: 48px;
  height: 48px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.preloader .rubix-cube .layer {
  width: 14px;
  height: 14px;
  background-color: var(--secondary-color);
  border: 1px solid #fff;
  position: absolute;
}
.preloader .rubix-cube .layer-1 {
  left: 0px;
  top: 0px;
  animation: rubixcube4 2s infinite linear;
}
.preloader .rubix-cube .layer-2 {
  left: 16px;
  top: 0px;
  animation: rubixcube3 2s infinite linear;
}
.preloader .rubix-cube .layer-3 {
  left: 32px;
  top: 0px;
}
.preloader .rubix-cube .layer-4 {
  left: 0px;
  top: 16px;
  animation: rubixcube5 2s infinite linear;
}
.preloader .rubix-cube .layer-5 {
  left: 16px;
  top: 16px;
  animation: rubixcube2 2s infinite linear;
}
.preloader .rubix-cube .layer-6 {
  left: 32px;
  top: 16px;
  animation: rubixcube1 2s infinite linear;
}
.preloader .rubix-cube .layer-7 {
  left: 0px;
  top: 32px;
  animation: rubixcube6 2s infinite linear;
}
.preloader .rubix-cube .layer-8 {
  left: 16px;
  top: 32px;
  animation: rubixcube7 2s infinite linear;
}

@keyframes rubixcube1 {
  20% {
    top: 16px;
    left: 32px;
  }
  30% {
    top: 32px;
    left: 32px;
  }
  40% {
    top: 32px;
    left: 32px;
  }
  50% {
    top: 32px;
    left: 32px;
  }
  60% {
    top: 32px;
    left: 32px;
  }
  70% {
    top: 32px;
    left: 32px;
  }
  80% {
    top: 32px;
    left: 32px;
  }
  90% {
    top: 32px;
    left: 32px;
  }
  100% {
    top: 32px;
    left: 16px;
  }
}
@keyframes rubixcube2 {
  30% {
    left: 16px;
  }
  40% {
    left: 32px;
  }
  50% {
    left: 32px;
  }
  60% {
    left: 32px;
  }
  70% {
    left: 32px;
  }
  80% {
    left: 32px;
  }
  90% {
    left: 32px;
  }
  100% {
    left: 32px;
  }
}
@keyframes rubixcube3 {
  30% {
    top: 0px;
  }
  40% {
    top: 0px;
  }
  50% {
    top: 16px;
  }
  60% {
    top: 16px;
  }
  70% {
    top: 16px;
  }
  80% {
    top: 16px;
  }
  90% {
    top: 16px;
  }
  100% {
    top: 16px;
  }
}
@keyframes rubixcube4 {
  50% {
    left: 0px;
  }
  60% {
    left: 16px;
  }
  70% {
    left: 16px;
  }
  80% {
    left: 16px;
  }
  90% {
    left: 16px;
  }
  100% {
    left: 16px;
  }
}
@keyframes rubixcube5 {
  60% {
    top: 16px;
  }
  70% {
    top: 0px;
  }
  80% {
    top: 0px;
  }
  90% {
    top: 0px;
  }
  100% {
    top: 0px;
  }
}
@keyframes rubixcube6 {
  70% {
    top: 32px;
  }
  80% {
    top: 16px;
  }
  90% {
    top: 16px;
  }
  100% {
    top: 16px;
  }
}
@keyframes rubixcube7 {
  80% {
    left: 16px;
  }
  90% {
    left: 0px;
  }
  100% {
    left: 0px;
  }
}
/*----------------------------------------*/
/*  02. Elements CSS
/*----------------------------------------*/
/*--
/*  2.4 - Form CSS
/*----------------------------------------*/
label {
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: capitalize;
}

/*Input Field & Select*/
input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
textarea {
  border: 1px solid #ebebeb;
  box-shadow: none;
  color: #415674;
  border-radius: 4px;
  background-color: #ffffff;
  margin-bottom: 0;
  padding: 10px 25px;
  max-width: 100%;
  width: 100%;
  font-size: 13px;
  line-height: 30px;
  font-weight: 600;
  transition: all 0.3s linear;
}
input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
textarea:focus {
  outline: none;
  border-color: #ffc600;
}
input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #898c94;
  font-weight: 600;
}
input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #898c94;
  font-weight: 600;
}
input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #898c94;
  font-weight: 600;
}
input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #898c94;
  font-weight: 600;
}

/*--
/*  2.3 - Button CSS
/*----------------------------------------*/
.btn-margin {
  margin-top: 40px;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}
.btn-wrap .btn {
  margin: 5px;
}

.btn {
  display: inline-block;
  overflow: hidden;
  transform: perspective(0) translateZ(0);
  background: #ffc600;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  border-color: transparent;
  color: var(--secondary-color);
  border-radius: 5px;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  height: 55px;
  line-height: 55px;
  padding: 0px 35px;
  border: 0;
  border-style: solid;
  box-shadow: none;
  transition: all 0.5s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.btn:focus,
.btn:focus:active {
  box-shadow: none;
}
.btn:hover {
  background: var(--secondary-color);
  color: #ffffff;
}

.btn-2 {
  background: var(--secondary-color);
  color: #ffffff;
}
.btn-2:hover {
  background: #ffc600;
  color: var(--secondary-color);
}

.btn-3 {
  background: #0071dc;
  color: #ffffff;
}
.btn-3:hover {
  background: 210000000000000000000000000000000000000000;
  color: #ffffff;
}

.btn-4 {
  height: 50px;
  line-height: 48px;
  font-size: 18px;
  padding: 0 45px;
  background: #ffc600;
  box-shadow: 11px 10px 38px 0 rgba(46, 63, 99, 0.15);
  color: #ffffff;
}
.btn-4:hover {
  background: #ffffff;
  color: #ffc600;
}

.btn-round {
  border-radius: 100px;
}

.btn-square {
  border-radius: 0;
}

[class*="btn-icon-"] i {
  position: absolute;
  top: 0;
  width: 60px;
  height: 60px;
  line-height: 28px;
  text-align: center;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.1);
}

.btn-icon-left {
  padding-left: 69px;
}
.btn-icon-left i {
  left: 0;
  right: auto;
}

.btn-icon-right {
  padding-right: 69px;
}
.btn-icon-right i {
  left: auto;
  right: 0;
}

.btn-primary {
  background-color: #ffc600;
  border-color: #ffc600;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #ffc600;
  border-color: #ffc600;
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #ffffff;
}
.btn-secondary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-white {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #002e5b;
  box-shadow: 11px 10px 38px 0 rgba(46, 63, 99, 0.15);
}
.btn-white::after {
  background: #ffc600;
}
.btn-white::before {
  background: #ffc600;
}

/*----------------------------------------*/
/*  02. Header CSS
/*----------------------------------------*/
/*--
/*  2.1 - Header Top CSS
/*----------------------------------------*/
.header-section {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
.header-section.sticky {
  background: #ffffff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  top: 0;
}
.header-section.sticky .header-wrap {
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .header-wrap {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.header-wrap.border-round {
  border-radius: 0;
}

.main-menu ul li {
  display: inline-block;
  margin-right: 20px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .main-menu ul li {
    margin-right: 12px;
  }
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li.has-dropdown > a {
  padding-right: 14px;
}
.main-menu ul li.has-dropdown > a::after {
  position: absolute;
  content: "\f16c";
  right: -4px;
  top: 40px;
  font-size: 10px;
  color: var(--secondary-color);
  font-family: "flaticon";
}
.main-menu ul li a {
  color: var(--secondary-color);
  font-size: 14px;
  line-height: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  padding: 40px 0;
  display: inline-block;
  transition: 0.3s;
}
.main-menu ul li.active-menu > a {
  color: #ffc600;
}
.main-menu ul li.active-menu > a::after {
  color: #ffc600;
}
.main-menu ul li:hover > a {
  color: #ffc600;
}
.main-menu ul li:hover > a::after {
  color: #ffc600;
}
.main-menu ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 110%;
  min-width: 240px;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 20px 0px 15px;
  transition: 0.3s;
  border-top: 4px solid #ffc600;
}

.sub-menu li:nth-child(3) {
  width: 256px !important;
}

.main-menu ul li .sub-menu li {
  margin: 0;
  padding: 0;
  display: inline;
  position: relative;
  width: 100%;
  display: block;
}
.main-menu ul li .sub-menu li a {
  font-size: 14px;
  font-weight: 600;
  display: block;
  padding: 7px 25px;
  transition: 0.3s;
  color: #121212;
  text-transform: capitalize;
}
.main-menu ul li .sub-menu li.active > a {
  color: #ffc600;
}
.main-menu ul li .sub-menu li:hover > a {
  color: #ffc600;
}
.main-menu ul li .sub-menu li > .sub-menu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.main-menu ul li .sub-menu li:hover > .sub-menu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}

.header-meta {
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
  padding-left: 35px;
  margin-left: 50px;
}
.header-meta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f3f3f3;
  width: 2px;
  height: 40px;
}
@media only screen and (max-width: 991px) {
  .header-meta::before {
    display: none;
  }
}

.header-top-section {
  background: #021d3a;
}

.header-top-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-top-wrap .header-top-info ul li {
  display: inline-block;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 18px;
  color: #ffffff;
  position: relative;
}
.header-top-wrap .header-top-info ul li + li {
  margin-left: 25px;
  padding-left: 25px;
}
.header-top-wrap .header-top-info ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.5);
  width: 1px;
  height: 20px;
}
.header-top-wrap .header-top-info ul li:first-child::before {
  display: none;
}
.header-top-wrap .header-top-info ul li i {
  font-size: 15px;
  color: #ffffff;
  position: relative;
  top: 1px;
  margin-right: 5px;
}
.header-top-wrap .header-social-wrap {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .header-top-wrap .header-social-wrap {
    justify-content: center;
    margin-top: 10px;
  }
}
.header-top-wrap .header-social {
  display: flex;
  align-items: center;
}
.header-top-wrap .header-social::before {
  display: none;
}
.header-top-wrap .header-social span {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-right: 15px;
}
.header-top-wrap .header-social ul li {
  display: inline-block;
}
.header-top-wrap .header-social ul li + li {
  margin-left: 10px;
}
.header-top-wrap .header-social ul li a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}
.header-top-wrap .header-social ul li a:hover {
  color: var(--secondary-color-2);
}
.header-top-wrap .login-register {
  position: relative;
  padding-left: 25px;
  margin-left: 25px;
}
.header-top-wrap .login-register::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.5);
  width: 1px;
  height: 20px;
}
.header-top-wrap .login-register ul li {
  display: inline-block;
  position: relative;
}
.header-top-wrap .login-register ul li + li {
  margin-left: 5px;
  padding-left: 5px;
}
.header-top-wrap .login-register ul li::before {
  position: absolute;
  content: "/";
  color: #ffffff;
  font-size: 14px;
  top: 0;
  left: -5px;
}
.header-top-wrap .login-register ul li:first-child::before {
  display: none;
}
.header-top-wrap .login-register ul li a {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}
.header-top-wrap .login-register ul li a:hover {
  color: #ffc600;
}

.header-search {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .header-search {
    display: none;
  }
}
.header-search .search-btn {
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  transition: all 0.3s linear;
}
.header-search .search-btn:hover {
  color: #ffc600;
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 121;
  background: rgba(0, 0, 0, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-inner .search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s linear;
}
.search-wrap .search-inner .search-close:hover {
  transform: rotate(90deg);
  color: #ffc600;
}
.search-wrap .search-inner .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-inner .search-cell .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .search-wrap .search-inner .search-cell .search-field-holder {
    width: 60%;
  }
}
@media only screen and (max-width: 575px) {
  .search-wrap .search-inner .search-cell .search-field-holder {
    width: 80%;
  }
}
.search-wrap
  .search-inner
  .search-cell
  .search-field-holder
  .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: uppercase;
  background: transparent;
  font-size: 25px;
  font-weight: 400;
  color: #ffffff;
  border-bottom: 2px solid #898989;
  text-align: center;
  letter-spacing: 2px;
}
@media only screen and (max-width: 1199px) {
  .search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input {
    padding: 0 35px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input {
    font-size: 16px;
    padding: 0 15px;
  }
}
.search-wrap
  .search-inner
  .search-cell
  .search-field-holder
  .main-search-input::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 25px;
  color: #ffffff;
  font-weight: 400;
}
@media only screen and (max-width: 1199px) {
  .search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input::-webkit-input-placeholder {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input::-webkit-input-placeholder {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input::-webkit-input-placeholder {
    font-size: 14px;
  }
}
.search-wrap
  .search-inner
  .search-cell
  .search-field-holder
  .main-search-input:-moz-placeholder {
  opacity: 0.95;
  font-size: 25px;
  color: #ffffff;
  font-weight: 400;
}
@media only screen and (max-width: 1199px) {
  .search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input:-moz-placeholder {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input:-moz-placeholder {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input:-moz-placeholder {
    font-size: 14px;
  }
}
.search-wrap
  .search-inner
  .search-cell
  .search-field-holder
  .main-search-input::-moz-placeholder {
  opacity: 0.95;
  font-size: 25px;
  color: #ffffff;
  font-weight: 400;
}
@media only screen and (max-width: 1199px) {
  .search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input::-moz-placeholder {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input::-moz-placeholder {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input::-moz-placeholder {
    font-size: 14px;
  }
}
.search-wrap
  .search-inner
  .search-cell
  .search-field-holder
  .main-search-input:-ms-input-placeholder {
  opacity: 0.95;
  font-size: 25px;
  color: #ffffff;
  font-weight: 400;
}
@media only screen and (max-width: 1199px) {
  .search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input:-ms-input-placeholder {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input:-ms-input-placeholder {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input:-ms-input-placeholder {
    font-size: 14px;
  }
}

.header-right {
  display: flex;
  align-items: center;
}

.header-bottom-section {
  background: #ffffff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
}

.header-cart {
  position: relative;
  margin-left: 25px;
}
@media only screen and (max-width: 767px) {
  .header-cart {
    display: none;
  }
}
.header-cart .cart-btn {
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  background: none;
  color: rgb(51, 51, 51);
  border: 0;
  position: relative;
  transition: all 0.3s linear;
}
.header-cart .cart-btn:hover {
  color: #ffc600;
}
.header-cart .cart-btn .count {
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  background: #ffc600;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 400;
  display: inline-block;
  color: #000000;
  position: absolute;
  top: -4px;
  right: -12px;
}

.dropdown-cart {
  max-width: 370px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 11px 10px 38px 0 rgba(46, 63, 99, 0.15);
  border: 0;
  transform: translateX(-50%) !important;
  left: 50% !important;
  top: 49px !important;
}
@media only screen and (max-width: 1399px) {
  .dropdown-cart {
    left: 0 !important;
    transform: translateX(-85%) !important;
  }
}
@media only screen and (max-width: 991px) {
  .dropdown-cart {
    top: 56px !important;
  }
}
@media only screen and (max-width: 449px) {
  .dropdown-cart {
    left: 0 !important;
    transform: translateX(-72%) !important;
  }
}
.dropdown-cart .cart-items {
  height: 280px;
  overflow-y: auto;
}
.dropdown-cart .cart-items .single-cart-item {
  display: flex;
  align-items: center;
  position: relative;
}
.dropdown-cart .cart-items .single-cart-item + .single-cart-item {
  margin-top: 30px;
}
.dropdown-cart .cart-items .single-cart-item .item-image img {
  border-radius: 50%;
}
.dropdown-cart .cart-items .single-cart-item .item-content {
  flex: 1;
  padding-right: 25px;
  padding-left: 20px;
}
.dropdown-cart .cart-items .single-cart-item .item-content .title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}
.dropdown-cart .cart-items .single-cart-item .item-content .quantity {
  font-size: 14px;
  color: #ffc600;
  line-height: 1.75;
  display: block;
}
.dropdown-cart .cart-items .single-cart-item .btn-close {
  position: absolute;
  width: 5px;
  height: 5px;
  top: 0;
  right: 5px;
}
.dropdown-cart .cart-total {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.dropdown-cart .cart-total .label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  display: block;
  color: #000000;
}
.dropdown-cart .cart-total .value {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  display: block;
  color: #ffc600;
}
.dropdown-cart .cart-btns {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}
.dropdown-cart .cart-btns .btn {
  height: 50px;
  line-height: 46px;
  box-shadow: 11px 10px 38px 0 rgba(46, 63, 99, 0.15);
  font-size: 16px;
  padding: 0 35px;
  width: 48%;
}

.header-section-02 .header-bottom-section {
  background: transparent;
  box-shadow: none;
}
.header-section-02 .header-bottom-section.sticky {
  background: #ffffff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
}
.header-section-02 .header-bottom-section .main-menu ul li a {
  color: var(--secondary-color);
}
.header-section-02 .header-bottom-section .main-menu ul li.active-menu > a {
  color: #ff773d;
}
.header-section-02
  .header-bottom-section
  .main-menu
  ul
  li.active-menu
  > a::after {
  color: #ff773d;
}
.header-section-02 .header-bottom-section .main-menu ul li:hover > a {
  color: #ff773d;
}
.header-section-02 .header-bottom-section .main-menu ul li:hover > a::after {
  color: #ff773d;
}
.header-section-02 .header-bottom-section .main-menu ul li .sub-menu {
  border-top: 4px solid #ff773d;
}
.header-section-02
  .header-bottom-section
  .main-menu
  ul
  li
  .sub-menu
  li.active
  > a {
  color: #ff773d;
}
.header-section-02
  .header-bottom-section
  .main-menu
  ul
  li
  .sub-menu
  li:hover
  > a {
  color: #ff773d;
}
.header-section-02 .header-bottom-section .header-search .search-btn:hover {
  color: #ff773d;
}
.header-section-02 .header-bottom-section .header-cart .cart-btn:hover {
  color: #ff773d;
}
.header-section-02 .header-bottom-section .header-cart .cart-btn .count {
  background: #ff773d;
}
.header-section-02 .header-bottom-section .header-meta::before {
  display: none;
}

.header-section-3 .header-top-section {
  background: #2babe4;
}
.header-section-3 .header-bottom-section {
  background: transparent;
  box-shadow: none;
}
.header-section-3 .header-bottom-section.sticky {
  background: #ffffff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
}
.header-section-3 .header-bottom-section .main-menu ul li a {
  color: var(--secondary-color);
}
.header-section-3 .header-bottom-section .main-menu ul li.active-menu > a {
  color: #2babe4;
}
.header-section-3
  .header-bottom-section
  .main-menu
  ul
  li.active-menu
  > a::after {
  color: #2babe4;
}
.header-section-3 .header-bottom-section .main-menu ul li:hover > a {
  color: #2babe4;
}
.header-section-3 .header-bottom-section .main-menu ul li:hover > a::after {
  color: #2babe4;
}
.header-section-3 .header-bottom-section .main-menu ul li .sub-menu {
  border-top: 4px solid #2babe4;
}
.header-section-3
  .header-bottom-section
  .main-menu
  ul
  li
  .sub-menu
  li.active
  > a {
  color: #2babe4;
}
.header-section-3
  .header-bottom-section
  .main-menu
  ul
  li
  .sub-menu
  li:hover
  > a {
  color: #2babe4;
}
.header-section-3 .header-bottom-section .header-search .search-btn:hover {
  color: #2babe4;
}
.header-section-3 .header-bottom-section .header-cart .cart-btn:hover {
  color: #2babe4;
}
.header-section-3 .header-bottom-section .header-cart .cart-btn .count {
  background: #2babe4;
}
.header-section-3 .header-bottom-section .header-meta::before {
  display: none;
}

.header-section-4 .header-top-section {
  background: #0071dc;
}
.header-section-4 .header-bottom-section.sticky {
  background: #ffffff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
}
.header-section-4 .header-bottom-section .main-menu ul li a {
  color: var(--secondary-color);
}
.header-section-4 .header-bottom-section .main-menu ul li.active-menu > a {
  color: #0071dc;
}
.header-section-4
  .header-bottom-section
  .main-menu
  ul
  li.active-menu
  > a::after {
  color: #0071dc;
}
.header-section-4 .header-bottom-section .main-menu ul li:hover > a {
  color: #0071dc;
}
.header-section-4 .header-bottom-section .main-menu ul li:hover > a::after {
  color: #0071dc;
}
.header-section-4 .header-bottom-section .main-menu ul li .sub-menu {
  border-top: 4px solid #0071dc;
}
.header-section-4
  .header-bottom-section
  .main-menu
  ul
  li
  .sub-menu
  li.active
  > a {
  color: #0071dc;
}
.header-section-4
  .header-bottom-section
  .main-menu
  ul
  li
  .sub-menu
  li:hover
  > a {
  color: #0071dc;
}
.header-section-4 .header-bottom-section .header-search .search-btn:hover {
  color: #0071dc;
}
.header-section-4 .header-bottom-section .header-cart .cart-btn:hover {
  color: #0071dc;
}
.header-section-4 .header-bottom-section .header-cart .cart-btn .count {
  background: #0071dc;
}
.header-section-4 .header-bottom-section .header-meta::before {
  display: none;
}

.header-section-5 .header-bottom-section.sticky {
  background: #ffffff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
}

.header-section-5 .header-bottom-section.sticky .header-logo .logo-black {
  display: block;
}
.header-section-5 .header-bottom-section.sticky .header-logo .logo-white {
  display: none;
}
.header-section-5 .header-bottom-section.sticky .main-menu ul li > a {
  color: #121212;
}
.header-section-5
  .header-bottom-section.sticky
  .main-menu
  ul
  li.has-dropdown
  > a::after {
  color: #121212;
}
.header-section-5
  .header-bottom-section.sticky
  .main-menu
  ul
  li.active-menu
  > a {
  color: #3bbc9b;
}
.header-section-5
  .header-bottom-section.sticky
  .main-menu
  ul
  li.active-menu
  > a::after {
  color: #3bbc9b;
}
.header-section-5 .header-bottom-section.sticky .main-menu ul li:hover > a {
  color: #3bbc9b;
}
.header-section-5
  .header-bottom-section.sticky
  .main-menu
  ul
  li:hover
  > a::after {
  color: #3bbc9b;
}
.header-section-5 .header-bottom-section.sticky .header-search .search-btn {
  color: #000000;
}
.header-section-5
  .header-bottom-section.sticky
  .header-search
  .search-btn:hover {
  color: #3bbc9b;
}
.header-section-5 .header-bottom-section.sticky .header-cart .cart-btn {
  color: rgb(51, 51, 51);
}
.header-section-5 .header-bottom-section.sticky .header-cart .cart-btn:hover {
  color: #3bbc9b;
}
.header-section-5 .header-bottom-section.sticky .header-cart .cart-btn .count {
  background: #3bbc9b;
}
.header-section-5 .header-bottom-section .header-logo .logo-black {
  display: none;
}
.header-section-5 .header-bottom-section .main-menu ul li > a {
  color: #ffffff;
}
.header-section-5
  .header-bottom-section
  .main-menu
  ul
  li.has-dropdown
  > a::after {
  color: #ffffff;
}
.header-section-5 .header-bottom-section .main-menu ul li.active-menu > a {
  color: #3bbc9b;
}
.header-section-5
  .header-bottom-section
  .main-menu
  ul
  li.active-menu
  > a::after {
  color: #3bbc9b;
}
.header-section-5 .header-bottom-section .main-menu ul li:hover > a {
  color: #3bbc9b;
}
.header-section-5 .header-bottom-section .main-menu ul li:hover > a::after {
  color: #3bbc9b;
}
.header-section-5 .header-bottom-section .main-menu ul li .sub-menu {
  border-top: 4px solid #3bbc9b;
}
.header-section-5 .header-bottom-section .main-menu ul li .sub-menu li a {
  color: #121212;
}
.header-section-5
  .header-bottom-section
  .main-menu
  ul
  li
  .sub-menu
  li.active
  > a {
  color: #3bbc9b;
}
.header-section-5
  .header-bottom-section
  .main-menu
  ul
  li
  .sub-menu
  li:hover
  > a {
  color: #3bbc9b;
}
.header-section-5 .header-bottom-section .header-search .search-btn {
  color: #ffffff;
}
.header-section-5 .header-bottom-section .header-search .search-btn:hover {
  color: #3bbc9b;
}
.header-section-5 .header-bottom-section .header-cart .cart-btn {
  color: #ffffff;
}
.header-section-5 .header-bottom-section .header-cart .cart-btn:hover {
  color: #3bbc9b;
}
.header-section-5 .header-bottom-section .header-cart .cart-btn .count {
  background: #ffffff;
}
.header-section-5 .header-bottom-section .header-meta::before {
  display: none;
}

.header-section-6 .header-top-section {
  background: var(--primary-color);
}
.header-section-6 .header-bottom-section.sticky {
  background: #ffffff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
}
.header-section-6 .header-bottom-section .main-menu ul li a {
  color: var(--secondary-color);
}
.header-section-6 .header-bottom-section .main-menu ul li.active-menu > a {
  color: var(--primary-color);
}
.header-section-6
  .header-bottom-section
  .main-menu
  ul
  li.active-menu
  > a::after {
  color: var(--primary-color);
}
.header-section-6 .header-bottom-section .main-menu ul li:hover > a {
  color: var(--primary-color);
}
.header-section-6 .header-bottom-section .main-menu ul li:hover > a::after {
  color: var(--primary-color);
}
.header-section-6 .header-bottom-section .main-menu ul li .sub-menu {
  border-top: 4px solid var(--primary-color);
}
.header-section-6
  .header-bottom-section
  .main-menu
  ul
  li
  .sub-menu
  li.active
  > a {
  color: var(--primary-color);
}
.header-section-6
  .header-bottom-section
  .main-menu
  ul
  li
  .sub-menu
  li:hover
  > a {
  color: var(--primary-color);
}
.header-section-6 .header-bottom-section .header-search .search-btn:hover {
  color: var(--primary-color);
}
.header-section-6 .header-bottom-section .header-cart .cart-btn:hover {
  color: var(--primary-color);
}
.header-section-6 .header-bottom-section .header-cart .cart-btn .count {
  background: var(--primary-color);
}
.header-section-6 .header-bottom-section .header-meta::before {
  display: none;
}

.header-section-7 .header-top-section {
  background: #3bbc9b;
}
.header-section-7 .header-bottom-section.sticky .main-menu ul li > a {
  color: #121212;
}
.header-section-7
  .header-bottom-section.sticky
  .main-menu
  ul
  li.has-dropdown
  > a::after {
  color: #121212;
}
.header-section-7
  .header-bottom-section.sticky
  .main-menu
  ul
  li.active-menu
  > a {
  color: #3bbc9b;
}
.header-section-7
  .header-bottom-section.sticky
  .main-menu
  ul
  li.active-menu
  > a::after {
  color: #3bbc9b;
}
.header-section-7 .header-bottom-section.sticky .main-menu ul li:hover > a {
  color: #3bbc9b;
}
.header-section-7
  .header-bottom-section.sticky
  .main-menu
  ul
  li:hover
  > a::after {
  color: #3bbc9b;
}
.header-section-7 .header-bottom-section.sticky .header-search .search-btn {
  color: #000000;
}
.header-section-7
  .header-bottom-section.sticky
  .header-search
  .search-btn:hover {
  color: #3bbc9b;
}
.header-section-7 .header-bottom-section.sticky .header-cart .cart-btn {
  color: rgb(51, 51, 51);
}
.header-section-7 .header-bottom-section.sticky .header-cart .cart-btn:hover {
  color: #3bbc9b;
}
.header-section-7 .header-bottom-section.sticky .header-cart .cart-btn .count {
  background: #3bbc9b;
}
.header-section-7 .header-bottom-section .main-menu ul li > a {
  color: #121212;
}
.header-section-7
  .header-bottom-section
  .main-menu
  ul
  li.has-dropdown
  > a::after {
  color: #121212;
}
.header-section-7 .header-bottom-section .main-menu ul li.active-menu > a {
  color: #3bbc9b;
}
.header-section-7
  .header-bottom-section
  .main-menu
  ul
  li.active-menu
  > a::after {
  color: #3bbc9b;
}
.header-section-7 .header-bottom-section .main-menu ul li:hover > a {
  color: #3bbc9b;
}
.header-section-7 .header-bottom-section .main-menu ul li:hover > a::after {
  color: #3bbc9b;
}
.header-section-7 .header-bottom-section .main-menu ul li .sub-menu {
  border-top: 4px solid #3bbc9b;
}
.header-section-7 .header-bottom-section .main-menu ul li .sub-menu li a {
  color: #121212;
}
.header-section-7
  .header-bottom-section
  .main-menu
  ul
  li
  .sub-menu
  li.active
  > a {
  color: #3bbc9b;
}
.header-section-7
  .header-bottom-section
  .main-menu
  ul
  li
  .sub-menu
  li:hover
  > a {
  color: #3bbc9b;
}
.header-section-7 .header-bottom-section .header-search .search-btn {
  color: var(--secondary-color);
}
.header-section-7 .header-bottom-section .header-search .search-btn:hover {
  color: #3bbc9b;
}
.header-section-7 .header-bottom-section .header-cart .cart-btn {
  color: var(--secondary-color);
}
.header-section-7 .header-bottom-section .header-cart .cart-btn:hover {
  color: #3bbc9b;
}
.header-section-7 .header-bottom-section .header-cart .cart-btn .count {
  background: #3bbc9b;
}

.sticky {
  width: 100%;
  position: fixed;
  top: 0;
  background: #ffffff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  animation: sticky 1s;
}

@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
/*----------------------------------------*/
/*  03. MEAN MENU CSS START
/*----------------------------------------*/
/* mean menu customize */
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: #1a1a1a;
  border-top: 1px solid #ebebeb;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}
.mean-container .mean-nav ul li a:hover {
  color: #ffc600;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid #ebebeb !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: #1a1a1a;
  line-height: 30px;
  top: 0;
  font-weight: 400;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--tp-theme-1);
  color: #ffc600;
  border-color: #ebebeb;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--tp-common-white);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  color: var(--tp-heading-primary);
}

/*----------------------------------------*/
/*  00. Sidebar CSS START
/*----------------------------------------*/
.sidebar__area {
  position: fixed;
  right: -485px;
  top: 0;
  width: 465px;
  height: 100%;
  background: #ffffff none repeat scroll 0 0;
  overflow-y: scroll;
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 9999;
}
@media only screen and (max-width: 575px) {
  .sidebar__area {
    width: 360px;
  }
}
@media only screen and (max-width: 449px) {
  .sidebar__area {
    width: 290px;
  }
}
.sidebar__area.sidebar-opened {
  right: 0px;
}
.sidebar__wrapper {
  position: relative;
  padding: 45px;
}
@media only screen and (max-width: 449px) {
  .sidebar__wrapper {
    padding: 20px;
  }
}
.sidebar__close {
  position: absolute;
  top: 35px;
  right: 45px;
}
@media only screen and (max-width: 449px) {
  .sidebar__close {
    top: 22px;
    right: 20px;
  }
}
.sidebar__close-btn {
  display: inline-block;
  font-size: 16px;
  height: 45px;
  width: 45px;
  line-height: 49px;
  background: #000;
  color: #fff;
  outline: none;
  border: none;
  border-radius: 50%;
}
.sidebar__close-btn:hover {
  background: #ffc600;
}
.sidebar__logo {
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ebebeb;
}
.sidebar__search {
  position: relative;
  margin-bottom: 25px;
}
.sidebar__search
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-right: 20px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #ebebeb;
  font-size: 16px;
  font-weight: 500;
  color: #415674;
}
.sidebar__search
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-moz-placeholder {
  color: #415674;
  font-weight: 500;
}
.sidebar__search
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::placeholder {
  color: #415674;
  font-weight: 500;
}
.sidebar__search
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus {
  border-color: #ffc600;
}
.sidebar__search button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 14px;
  color: #aeaeae;
  outline: none;
  border: none;
  background: transparent;
  transition: 0.3s;
}
.sidebar__search button:hover {
  color: #ffc600;
}
.sidebar__text p {
  margin-bottom: 25px;
  font-size: 16px;
}
.sidebar__contact {
  margin-top: 30px;
  margin-bottom: 20px;
}
.sidebar__contact h4 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #000000;
}
.sidebar__contact ul li:not(:last-child) {
  margin-bottom: 20px;
}
.sidebar__contact ul li:hover i {
  background: #ffc600;
  color: #ffffff;
  border-color: #ebebeb;
}
.sidebar__contact ul li:hover a {
  color: #ffc600;
}
.sidebar__contact-icon {
  margin-right: 15px;
}
.sidebar__contact-icon i {
  display: inline-block;
  color: #343a40;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ebebeb;
  border-radius: 7px;
}
.sidebar__contact-text a {
  font-size: 18px;
  font-weight: 400;
  color: #343a40;
}
.sidebar__img {
  margin-bottom: 20px;
}
.sidebar__single-img {
  margin-bottom: 10px;
}
.sidebar__map iframe {
  width: 100%;
  height: 200px;
  border: none;
}
.sidebar__social ul li {
  display: inline-block;
}
.sidebar__social ul li:not(:last-child) {
  margin-right: 5px;
}
.sidebar__social ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  background: #f1f1f1;
  color: #343a40;
  border-radius: 5px;
}
.sidebar__social ul li a:hover {
  background: #ffc600;
  color: #ffffff;
}

.side-menu-icon {
  margin-left: 30px;
}

.side-menu-icon {
  width: 52px;
  height: 52px;
  line-height: 70px;
  background: #ffc600;
  text-align: center;
  border-radius: 50%;
}
.side-menu-icon span {
  width: 20px;
  height: 2px;
  background: #1a1a1a;
  margin: 6px 0;
  display: block;
  transition: all 0.3s linear;
}
.side-menu-icon:hover span:first-child {
  width: 20px;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.body-overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------*/
/*  4.1. Pages CSS (All Page Styles)
/*----------------------------------------*/
/*--
/*  03 - Hero CSS
/*----------------------------------------*/
.slider-item {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.slider-item .slider-content {
  padding-top: 215px;
}
.slider-item .slider-content .title {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}
.slider-item .slider-content p {
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  padding-right: 65px;
  margin-top: 30px;
}
.slider-item .slider-content .hero-btn {
  padding-top: 25px;
}
.slider-item .slider-content .hero-btn ul li {
  display: inline-block;
  margin-right: 15px;
  margin-top: 15px;
}
.slider-item .slider-content .hero-btn ul li:last-child {
  margin-right: 0;
}
.slider-item .slider-content .hero-btn ul li .btn {
  color: var(--secondary-color);
}
.slider-item .slider-content .hero-btn ul li .btn:hover {
  color: #ffffff;
}
.slider-item .slider-content .hero-btn ul li .btn-white {
  background: #ffffff;
}
.slider-item .slider-content .hero-btn ul li .btn-white:hover {
  background: var(--secondary-color);
}

.slider-active .slider-arrow {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  transform: translateY(50%);
  border: 1px solid #ffffff;
  box-shadow: 0px 5px 57px 0px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

@media only screen and (200px <= width <= 424.99px) {
  .slider-active .slider-arrow {
    transform: translateY(5%);
  }
}

@media only screen and (425px <= width <= 767.99px) {
  .slider-active .slider-arrow {
    transform: translateY(15%);
  }
}

.slider-active .slider-arrow.swiper-button-prev {
  left: 0;
}
.slider-active .slider-arrow.swiper-button-prev::after {
  content: "\f16d";
  font-family: flaticon !important;
  font-size: 16px;
}
.slider-active .slider-arrow.swiper-button-next {
  right: 0;
}
.slider-active .slider-arrow.swiper-button-next::after {
  content: "\f16e";
  font-family: flaticon !important;
  font-size: 16px;
}
.slider-active .slider-arrow:hover {
  color: var(--secondary-color);
  background: #ffc600;
  border-color: #ffc600;
}
.slider-active:hover .slider-arrow {
  opacity: 1;
  visibility: visible;
}
.slider-active:hover .slider-arrow.swiper-button-prev {
  left: 50px;
}
@media only screen and (max-width: 449px) {
  .slider-active:hover .slider-arrow.swiper-button-prev {
    left: 20px;
  }
}
.slider-active:hover .slider-arrow.swiper-button-next {
  right: 50px;
}
@media only screen and (max-width: 449px) {
  .slider-active:hover .slider-arrow.swiper-button-next {
    right: 20px;
  }
}

.slider-active .swiper-slide-active .slider-content p,
.slider-active .swiper-slide-active .slider-content .title,
.slider-active .swiper-slide-active .slider-content .hero-btn {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
.slider-active .swiper-slide-active .slider-content .title {
  animation-delay: 0.6s;
  animation-duration: 0.6s;
}
.slider-active .swiper-slide-active .slider-content p {
  animation-delay: 0.8s;
  animation-duration: 0.8s;
}
.slider-active .swiper-slide-active .slider-content .hero-btn {
  animation-delay: 0.9s;
  animation-duration: 0.9s;
}

@media only screen and (max-width: 991px) {
  .slider-item {
    height: 100%;
  }
  .slider-item .slider-content {
    padding-top: 80px;
  }
  .slider-item .slider-content .title {
    font-size: 52px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-item {
    height: 100%;
  }
  .slider-item .slider-content .title {
    font-size: 36px;
  }
  .slider-item .slider-content p {
    padding-right: 0;
  }
}
@media only screen and (max-width: 449px) {
  .slider-item .slider-content {
    padding-top: 50px;
  }
  .slider-item .slider-content .title {
    font-size: 30px;
  }
}

.edubin-slider-section-02 .slider-item {
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .edubin-slider-section-02 .slider-item {
    height: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .edubin-slider-section-02 .slider-item {
    height: 100%;
  }
}

.edubin-slider-section-03 {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 350px;
  padding-bottom: 120px;
  z-index: 1;
}
.edubin-slider-section-03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: -1;
}
.edubin-slider-section-03 .slider-cont {
  position: relative;
  z-index: 5;
  background-color: rgba(7, 41, 77, 0.8);
  padding: 70px 100px 80px;
}
.edubin-slider-section-03 .slider-cont .title {
  font-size: 48px;
  color: #ffffff;
  padding-bottom: 8px;
}
.edubin-slider-section-03 .slider-cont span {
  font-size: 24px;
  color: #ffffff;
}
.edubin-slider-section-03 .slider-search {
  position: relative;
  margin-top: 55px;
}
.edubin-slider-section-03
  .slider-search
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  width: 100%;
  height: 50px;
  font-size: 15px;
  font-weight: 500;
  color: #999999;
  padding: 0 30px;
  padding-right: 195px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 50px;
}
.edubin-slider-section-03
  .slider-search
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-webkit-input-placeholder {
  font-size: 15px;
  color: #999999;
  font-weight: 500;
}
.edubin-slider-section-03
  .slider-search
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-moz-placeholder {
  font-size: 15px;
  color: #999999;
  font-weight: 500;
}
.edubin-slider-section-03
  .slider-search
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-moz-placeholder {
  font-size: 15px;
  color: #999999;
  font-weight: 500;
}
.edubin-slider-section-03
  .slider-search
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-ms-input-placeholder {
  font-size: 15px;
  color: #999999;
  font-weight: 500;
}
.edubin-slider-section-03
  .slider-search
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus {
  outline: none;
  border-color: #ffc600;
}
@media only screen and (max-width: 575px) {
  .edubin-slider-section-03
    .slider-search
    input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
    height: 50px;
    padding: 0 25px;
    font-size: 16px;
  }
}
.edubin-slider-section-03 .slider-search .btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  line-height: 50px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  font-size: 16px;
  min-width: 80px;
}

@media only screen and (max-width: 1199px) {
  .edubin-slider-section-03 .slider-cont {
    padding: 70px 60px 80px;
  }
  .edubin-slider-section-03 .slider-cont .title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .edubin-slider-section-03 {
    padding-top: 200px;
  }
  .edubin-slider-section-03 .slider-cont {
    padding: 70px 55px 80px;
  }
  .edubin-slider-section-03 .slider-cont .title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .edubin-slider-section-03 {
    padding-top: 180px;
  }
  .edubin-slider-section-03 .slider-cont {
    padding: 60px 45px 70px;
  }
  .edubin-slider-section-03 .slider-cont .title {
    font-size: 35px;
  }
  .edubin-slider-section-03 .slider-cont span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .edubin-slider-section-03 {
    padding-top: 180px;
  }
  .edubin-slider-section-03 .slider-cont {
    padding: 50px 30px 60px;
  }
  .edubin-slider-section-03 .slider-cont .title {
    font-size: 28px;
  }
}

.slider-feature {
  padding: 0 100px;
  padding-top: 50px;
}
@media only screen and (max-width: 1199px) {
  .slider-feature {
    padding: 0 75px;
    padding-top: 50px;
  }
}

.single-slider-feature {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
}
.single-slider-feature .icon img {
  max-width: 75px;
}
.single-slider-feature .cont {
  flex: 1;
  margin-left: 25px;
}
.single-slider-feature .cont .title {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
}
.single-slider-feature .cont span {
  font-size: 15px;
  color: #ffffff;
}

.edubin-slider-section-04 .slider-item {
  height: 100%;
}
.edubin-slider-section-04 .slider-item::before {
  display: none;
}
.edubin-slider-section-04 .slider-item .slider-content {
  max-width: 750px;
  margin: 0 auto;
  padding-top: 215px;
}
.edubin-slider-section-04 .slider-item .slider-content .title {
  color: var(--secondary-color);
}
.edubin-slider-section-04 .slider-item .slider-content p {
  color: var(--secondary-color);
}

@media only screen and (max-width: 1199px) {
  .edubin-slider-section-04 .slider-item {
    height: 100%;
  }
  .edubin-slider-section-04 .slider-item .slider-content {
    padding-top: 190px;
  }
}
@media only screen and (max-width: 991px) {
  .edubin-slider-section-04 .slider-item {
    height: 100%;
  }
  .edubin-slider-section-04 .slider-item .slider-content {
    padding-top: 95px;
  }
}
@media only screen and (max-width: 767px) {
  .edubin-slider-section-04 .slider-item {
    height: 100%;
  }
  .edubin-slider-section-04 .slider-item .slider-content {
    padding-top: 80px;
  }
}

.edubin-slider-section-05 {
  position: relative;
  height: 920px;
  background: #f9eee1;
  z-index: 1;
}
.edubin-slider-section-05 .svg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
.edubin-slider-section-05 .svg-shape svg {
  height: 40px;
  fill: #ffffff;
  display: block;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  width: calc(100% + 1.3px);
}

.svg-shape svg {
  border-top-left-radius: 12px;
}

.edubin-slider-section-05 .shape-3 {
  position: absolute;
  top: 21%;
  left: 8%;
  z-index: -1;
}
.edubin-slider-section-05 .shape-4 {
  position: absolute;
  bottom: 22%;
  left: 4%;
  z-index: -1;
  animation: round-01 5s linear infinite;
}
.edubin-slider-section-05 .shape-5 {
  position: absolute;
  right: 7%;
  top: 15%;
  z-index: -1;
}
.edubin-slider-section-05 .hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  padding-left: 20px;
  padding-right: 30px;
  justify-content: center;
  z-index: 1;
}
.edubin-slider-section-05 .hero-image .shape-1 {
  position: absolute;
  right: 35%;
  top: 21%;
  z-index: -1;
}
.edubin-slider-section-05 .hero-image .shape-2 {
  position: absolute;
  left: 32%;
  bottom: 21%;
  z-index: -1;
}
.edubin-slider-section-05 .hero-image .image {
  padding-top: 220px;
  display: flex;
}
.edubin-slider-section-05 .hero-image .image .image-1 {
  padding-right: 20px;
}
.edubin-slider-section-05 .hero-image .image .image-1 img {
  border-radius: 100px 100px 0 100px;
}
.edubin-slider-section-05 .hero-image .image .image-2 {
  padding-top: 120px;
  padding-left: 20px;
}
.edubin-slider-section-05 .hero-image .image .image-2 img {
  border-radius: 100px 0 100px 100px;
}
.edubin-slider-section-05 .hero-content {
  padding-top: 225px;
}
.edubin-slider-section-05 .hero-content .title {
  font-size: 56px;
}
.edubin-slider-section-05 .hero-content .title span {
  color: #ff773d;
}
.edubin-slider-section-05 .hero-content p {
  color: #383b46;
  margin-top: 30px;
  margin-bottom: 25px;
}
.edubin-slider-section-05 .hero-content .hero-btn .btn {
  background: #ff773d;
  color: #ffffff;
  margin-top: 40px;
}
.edubin-slider-section-05 .hero-content .hero-btn .btn:hover {
  background: var(--secondary-color);
}

@media only screen and (max-width: 1199px) {
  .edubin-slider-section-05 .hero-content .title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .edubin-slider-section-05 {
    height: auto;
  }
  .edubin-slider-section-05 .hero-content {
    padding-top: 130px;
  }
  .edubin-slider-section-05 .hero-image {
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .edubin-slider-section-05 .hero-image .shape-1 {
    position: absolute;
    right: 35%;
    top: 21%;
    z-index: -1;
  }
  .edubin-slider-section-05 .hero-image .shape-2 {
    position: absolute;
    left: 32%;
    bottom: 21%;
    z-index: -1;
  }
  .edubin-slider-section-05 .hero-image .image {
    padding-top: 60px;
    padding-bottom: 180px;
  }
}
@media only screen and (max-width: 575px) {
  .edubin-slider-section-05 .hero-content .title {
    font-size: 36px;
  }
  .edubin-slider-section-05 .hero-image .shape-1 {
    width: 90px;
    right: 23%;
    top: 12%;
  }
  .edubin-slider-section-05 .hero-image .shape-2 {
    width: 90px;
    left: 29%;
    bottom: 30%;
  }
}
@media only screen and (max-width: 449px) {
  .edubin-slider-section-05 .hero-content .title {
    font-size: 30px;
  }
}

.edubin-hero-section-06 {
  padding-top: 140px;
}
.edubin-hero-section-06 .hero-content {
  padding-top: 105px;
  position: relative;
  z-index: 1;
}
.edubin-hero-section-06 .hero-content .shape-3 {
  position: absolute;
  left: -12%;
  top: 20%;
  z-index: -1;
}
.edubin-hero-section-06 .hero-content .shape-4 {
  position: absolute;
  right: 8%;
  top: 48%;
  z-index: -1;
}
.edubin-hero-section-06 .hero-content .title {
  font-size: 60px;
}
.edubin-hero-section-06 .hero-content .title span {
  color: #2babe4;
}
.edubin-hero-section-06 .hero-content p {
  color: #383b46;
  margin-top: 30px;
  margin-bottom: 25px;
}
.edubin-hero-section-06 .hero-content .hero-btn .btn {
  background: #2babe4;
  color: #ffffff;
  margin-top: 40px;
}
.edubin-hero-section-06 .hero-content .hero-btn .btn:hover {
  background: var(--secondary-color);
}
.edubin-hero-section-06 .hero-images {
  position: relative;
  text-align: center;
  z-index: 1;
}
.edubin-hero-section-06 .hero-images .shape-1 {
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
}
.edubin-hero-section-06 .hero-images .shape-2 {
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
}
.edubin-hero-section-06 .hero-images .image-content {
  display: flex;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 24px 59px 0px rgba(0, 0, 0, 0.13);
  border-radius: 10px;
  position: absolute;
  left: -8%;
  top: 57.5%;
  padding: 20px;
  padding-right: 40px;
}
.edubin-hero-section-06 .hero-images .image-content .icon-img img {
  width: 30px;
}
.edubin-hero-section-06 .hero-images .image-content .image-text {
  flex: 1;
  text-align: left;
  margin-left: 15px;
}
.edubin-hero-section-06 .hero-images .image-content .image-text .title {
  font-size: 15px;
  color: #000000;
}
.edubin-hero-section-06 .hero-images .image-content .image-text p {
  font-size: 14px;
  font-weight: 400;
  color: #999898;
}

@media only screen and (max-width: 1199px) {
  .edubin-hero-section-06 .hero-content .title {
    font-size: 48px;
  }
}
@media only screen and (max-width: 991px) {
  .edubin-hero-section-06 .hero-content .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .edubin-hero-section-06 {
    padding-top: 120px;
  }
  .edubin-hero-section-06 .hero-content {
    padding-top: 0;
  }
  .edubin-hero-section-06 .hero-images {
    padding-top: 60px;
  }
  .edubin-hero-section-06 .hero-images .shape-1 {
    left: 35px;
    top: 95px;
  }
  .edubin-hero-section-06 .hero-images .shape-1 img {
    width: 420px;
  }
  .edubin-hero-section-06 .hero-images .shape-2 {
    top: 90px;
  }
  .edubin-hero-section-06 .hero-images .shape-2 img {
    width: 550px;
  }
  .edubin-hero-section-06 .hero-images .image-content {
    left: 0;
  }
  .edubin-hero-section-06 .hero-images .image-content .icon-img img {
    width: 30px;
  }
  .edubin-hero-section-06 .hero-images .image-content .image-text {
    flex: 1;
    text-align: left;
    margin-left: 15px;
  }
  .edubin-hero-section-06 .hero-images .image-content .image-text .title {
    font-size: 15px;
    color: #000000;
  }
  .edubin-hero-section-06 .hero-images .image-content .image-text p {
    font-size: 14px;
    font-weight: 400;
    color: #999898;
  }
}
@media only screen and (max-width: 575px) {
  .edubin-hero-section-06 .hero-content .title {
    font-size: 30px;
  }
}

.edubin-hero-section-07 {
  position: relative;
  overflow: hidden;
}
.edubin-hero-section-07 .hero-shape-3 {
  width: 1100px;
  height: 1100px;
  background: none;
  border: 1px solid #efedfc;
  border-radius: 50%;
  position: absolute;
  left: -32%;
  top: -47%;
}
.edubin-hero-section-07 .hero-shape-3::before {
  content: "";
  width: 1100px;
  height: 1100px;
  background: none;
  border: 1px solid #efedfc;
  border-radius: 50%;
  transform: scale(0.75);
  position: absolute;
  left: 0;
  top: 0;
}
.edubin-hero-section-07 .hero-content {
  max-width: 550px;
}
.edubin-hero-section-07 .hero-content .sub-title {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0071dc;
}
.edubin-hero-section-07 .hero-content .title {
  font-size: 52px;
  line-height: 72px;
  margin-top: 25px;
  color: var(--secondary-color);
}
.edubin-hero-section-07 .hero-content .title span {
  color: #0071dc;
}
.edubin-hero-section-07 .hero-content .hero-btn .btn {
  background: #0071dc;
  color: #ffffff;
  margin-top: 40px;
}
.edubin-hero-section-07 .hero-content .hero-btn .btn:hover {
  background: var(--secondary-color);
}
.edubin-hero-section-07 .hero-content .link-text {
  font-size: 18px;
  line-height: 30px;
  color: var(--text-color);
  margin-top: 15px;
}
.edubin-hero-section-07 .hero-content .link-text a {
  font-weight: 700;
  color: #0071dc;
  text-decoration: underline;
  text-decoration-color: #0071dc;
}
.edubin-hero-section-07 .hero-images-02 {
  padding-top: 260px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
.edubin-hero-section-07 .hero-images-02 .shape-1 {
  position: absolute;
  left: -105px;
  bottom: 170px;
  z-index: -1;
}
.edubin-hero-section-07 .hero-images-02 .shape-2 {
  position: absolute;
  top: 360px;
  left: 235px;
  z-index: -1;
}
.edubin-hero-section-07 .hero-images-02 .image {
  position: relative;
  z-index: 1;
}
.edubin-hero-section-07 .hero-images-02 .image .image-content {
  position: absolute;
  left: 180px;
  bottom: 60px;
  text-align: left;
  padding-left: 35px;
  padding-right: 28px;
  padding-top: 30px;
  padding-bottom: 25px;
  width: 315px;
  background-color: #ffffff;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.edubin-hero-section-07 .hero-images-02 .image .image-content .image-icon {
  position: absolute;
  left: 25px;
  top: -45px;
}
.edubin-hero-section-07 .hero-images-02 .image .image-content .image-ext p {
  font-size: 16px;
  line-height: 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #002e5b;
}
.edubin-hero-section-07
  .hero-images-02
  .image
  .image-content
  .image-ext
  p
  span {
  font-weight: 700;
  color: #0071dc;
}

@media only screen and (max-width: 1199px) {
  .edubin-hero-section-07 .hero-shape-3 {
    width: 920px;
    height: 920px;
  }
  .edubin-hero-section-07 .hero-shape-3::before {
    width: 920px;
    height: 920px;
  }
  .edubin-hero-section-07 .hero-content .title {
    font-size: 48px;
    line-height: 66px;
  }
  .edubin-hero-section-07 .hero-images-02 .image .image-content {
    left: 20px;
    bottom: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .edubin-hero-section-07 {
    padding-top: 150px;
  }
  .edubin-hero-section-07 .hero-images-02 {
    padding-top: 60px;
    text-align: center;
  }
  .edubin-hero-section-07 .hero-images-02 .shape-1 {
    left: -15px;
  }
  .edubin-hero-section-07 .hero-images-02 .shape-2 {
    top: 170px;
    left: 270px;
  }
  .edubin-hero-section-07 .hero-images-02 .image .image-content {
    left: 110px;
    bottom: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .edubin-hero-section-07 .hero-content .title {
    font-size: 36px;
    line-height: 52px;
  }
  .edubin-hero-section-07 .hero-images-02 .shape-1 {
    width: 160px;
  }
  .edubin-hero-section-07 .hero-images-02 .shape-2 {
    left: 180px;
  }
  .edubin-hero-section-07 .hero-images-02 .image .image-content {
    left: 45px;
    bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .edubin-hero-section-07 .hero-content .title {
    font-size: 30px;
    line-height: 44px;
  }
  .edubin-hero-section-07 .hero-images-02 .shape-1 {
    left: -5px;
  }
  .edubin-hero-section-07 .hero-images-02 .shape-2 {
    left: 110px;
    top: 120px;
    width: 120px;
  }
  .edubin-hero-section-07 .hero-images-02 .image .image-content {
    left: 0;
    bottom: 25px;
  }
}

.edubin-slider-section-08 {
  position: relative;
  height: 920px;
  background: #f9eee1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}
.edubin-slider-section-08::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(360deg, #030b14 50%, #02070e 100%);
  opacity: 0.6;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.edubin-slider-section-08 .shape-1 {
  position: absolute;
  width: 100%;
  height: 130px;
  right: 0;
  left: 0px;
  bottom: -130px;
  background: #ffffff;
  transform: skewY(-3deg);
  transform-origin: 0;
  z-index: 2;
}
.edubin-slider-section-08 .hero-content {
  padding-top: 225px;
}
.edubin-slider-section-08 .hero-content .sub-title {
  font-size: 13px;
  color: #3bbc9b;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.edubin-slider-section-08 .hero-content .main-title {
  font-size: 52px;
  line-height: 70px;
  color: #ffffff;
}
.edubin-slider-section-08 .hero-content .text {
  color: #ffffff;
  margin-top: 30px;
}
.edubin-slider-section-08 .hero-content .hero-btn-wrap {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.edubin-slider-section-08 .hero-content .hero-btn-wrap .hero-btn .btn {
  border-radius: 50px;
  background: #3bbc9b;
  color: #ffffff;
  margin-right: 25px;
}
.edubin-slider-section-08 .hero-content .hero-btn-wrap .hero-btn .btn i {
  margin-left: 5px;
}
.edubin-slider-section-08 .hero-content .hero-btn-wrap .hero-btn .btn:hover {
  background: var(--secondary-color);
}
.edubin-slider-section-08 .hero-content .hero-btn-wrap .info-call p {
  font-size: 18px;
  color: #ffffff;
}
.edubin-slider-section-08 .hero-content .hero-btn-wrap .info-call p i {
  margin-right: 5px;
}
.edubin-slider-section-08 .hero-content .st-img-wrap {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.edubin-slider-section-08 .hero-content .st-img-wrap .img img {
  border-radius: 150px;
}
.edubin-slider-section-08 .hero-content .st-img-wrap .con {
  flex: 1;
  margin-left: 30px;
}
.edubin-slider-section-08 .hero-content .st-img-wrap .con .title {
  font-size: 20px;
  color: #ffffff;
}
.edubin-slider-section-08 .hero-content .st-img-wrap .con p {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #3bbc9b;
}

@media only screen and (max-width: 1199px) {
  .edubin-slider-section-08 .shape-1 {
    bottom: -70px;
  }
  .edubin-slider-section-08 .hero-content {
    padding-top: 200px;
  }
  .edubin-slider-section-08 .hero-content .main-title {
    font-size: 42px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .edubin-slider-section-08 {
    height: 850px;
  }
  .edubin-slider-section-08 .shape-1 {
    bottom: -42px;
    height: 110px;
  }
  .edubin-slider-section-08 .hero-content {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .edubin-slider-section-08 .hero-content .main-title {
    font-size: 36px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .edubin-slider-section-08 .hero-content .main-title {
    font-size: 30px;
    line-height: 42px;
  }
}

.edubin-slider-section-09 {
  padding-top: 150px;
}

@media only screen and (200px <= width <= 424.99px) {
  .edubin-slider-section-09 {
    padding-top: 90px;
  }
}

@media only screen and (425px <= width <= 767.99px) {
  .edubin-slider-section-09 {
    padding-top: 90px;
  }
}

.edubin-slider-section-09 .slider-item {
  height: 100%;
}
.edubin-slider-section-09 .slider-item::before {
  background: var(--secondary-color) none repeat scroll 0 0;
  content: "";
  height: 100%;
  opacity: 0.4;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.edubin-slider-section-09 .slider-item .slider-content {
  padding-top: 215px;
}
.edubin-slider-section-09 .slider-item .slider-content .title {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}
@media only screen and (max-width: 1199px) {
  .edubin-slider-section-09 .slider-item .slider-content .title {
    font-size: 52px;
  }
}
@media only screen and (max-width: 767px) {
  .edubin-slider-section-09 .slider-item .slider-content .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .edubin-slider-section-09 .slider-item .slider-content .title {
    font-size: 30px;
  }
}
.edubin-slider-section-09 .slider-item .slider-content .title span {
  color: var(--primary-color);
}
.edubin-slider-section-09 .slider-item .slider-content p {
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  padding-right: 65px;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .edubin-slider-section-09 .slider-item .slider-content p {
    padding-right: 0;
  }
}
.edubin-slider-section-09 .slider-item .slider-content .hero-btn {
  padding-top: 25px;
}
.edubin-slider-section-09 .slider-item .slider-content .hero-btn ul li {
  display: inline-block;
  margin-right: 15px;
  margin-top: 15px;
}
.edubin-slider-section-09
  .slider-item
  .slider-content
  .hero-btn
  ul
  li:last-child {
  margin-right: 0;
}
.edubin-slider-section-09 .slider-item .slider-content .hero-btn ul li .btn {
  background: var(--primary-color);
  color: #ffffff;
}
.edubin-slider-section-09
  .slider-item
  .slider-content
  .hero-btn
  ul
  li
  .btn:hover {
  color: #ffffff;
  background: #ff3e4b;
}
.edubin-slider-section-09
  .slider-item
  .slider-content
  .hero-btn
  ul
  li
  .btn-white {
  border: 2px solid #ffffff;
  line-height: 48px;
  background: transparent;
  color: #ffffff;
}
.edubin-slider-section-09
  .slider-item
  .slider-content
  .hero-btn
  ul
  li
  .btn-white:hover {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.edubin-slider-section-09 .slider-category {
  padding-top: 110px;
}
.edubin-slider-section-09 .category-item-03 {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  border-radius: 5px;
  padding: 30px 40px 35px;
  margin-top: 30px;
}
@media only screen and (max-width: 575px) {
  .edubin-slider-section-09 .category-item-03 {
    padding: 30px 30px 35px;
  }
}
.edubin-slider-section-09 .category-item-03 .icon img {
  width: 60px;
}
.edubin-slider-section-09 .category-item-03 .cont {
  flex: 1;
  margin-left: 35px;
}
.edubin-slider-section-09 .category-item-03 .cont .title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}
.edubin-slider-section-09 .category-item-03 .cont .view-more {
  font-size: 15px;
  color: #ffffff;
  margin-top: 10px;
  transition: all 0.3s linear;
}
.edubin-slider-section-09 .category-item-03 .cont .view-more i {
  margin-left: 3px;
}
.edubin-slider-section-09 .category-item-03 .cont .view-more:hover {
  margin-left: 5px;
}
.edubin-slider-section-09 .slider-active .slider-arrow:hover {
  color: var(--secondary-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

@media only screen and (max-width: 991px) {
  .edubin-slider-section-09 .slider-item {
    height: auto;
  }
  .edubin-slider-section-09 .slider-item .slider-content {
    padding-top: 60px;
  }
  .edubin-slider-section-09 .slider-category {
    padding-top: 70px;
    padding-bottom: 100px;
  }
}

.edubin-hero-section-10 {
  background: #edf9f5;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  padding-top: 140px;
  z-index: 1;
}
.edubin-hero-section-10 .svg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
.edubin-hero-section-10 .svg-shape svg {
  height: 40px;
  fill: #ffffff;
  display: block;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  width: calc(100% + 1.3px);
}
.edubin-hero-section-10 .shape-3 {
  position: absolute;
  left: 9%;
  top: 38%;
  z-index: -1;
}
.edubin-hero-section-10 .hero-content {
  position: relative;
  z-index: 1;
}
.edubin-hero-section-10 .hero-content .title {
  font-size: 56px;
  line-height: 70px;
}
.edubin-hero-section-10 .hero-content .title span {
  color: #2babe4;
}
.edubin-hero-section-10 .hero-content p {
  color: var(--text-color);
  margin-top: 30px;
}
.edubin-hero-section-10 .hero-content .hero-btn .btn {
  background: #3bbc9b;
  color: #ffffff;
  margin-top: 40px;
}
.edubin-hero-section-10 .hero-content .hero-btn .btn:hover {
  background: var(--secondary-color);
}
.edubin-hero-section-10 .hero-images {
  padding-top: 150px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.edubin-hero-section-10 .hero-images .shape-1 {
  position: absolute;
  left: 2%;
  top: 21%;
  z-index: -1;
}
.edubin-hero-section-10 .hero-images .shape-2 {
  position: absolute;
  right: 5%;
  top: 29%;
  z-index: -1;
}
.edubin-hero-section-10 .hero-images .images {
  text-align: right;
}
.edubin-hero-section-10 .hero-images .image-content {
  display: flex;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 24px 59px 0px rgba(0, 0, 0, 0.13);
  border-radius: 10px;
  position: absolute;
  left: -13%;
  top: 73.5%;
  padding: 20px;
  padding-right: 30px;
}
.edubin-hero-section-10 .hero-images .image-content .icon-img {
  background: #ebebeb;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 10px;
}
.edubin-hero-section-10 .hero-images .image-content .icon-img img {
  width: 30px;
}
.edubin-hero-section-10 .hero-images .image-content .image-text {
  flex: 1;
  text-align: left;
  margin-left: 15px;
}
.edubin-hero-section-10 .hero-images .image-content .image-text .title {
  color: var(--secondary-color);
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
.edubin-hero-section-10 .hero-images .image-content .image-text p {
  font-size: 16px;
  font-weight: 400;
  color: #999898;
}

@media only screen and (max-width: 1199px) {
  .edubin-hero-section-10 .hero-content .title {
    font-size: 42px;
    line-height: 60px;
  }
  .edubin-hero-section-10 .hero-images {
    padding-top: 110px;
  }
}
@media only screen and (max-width: 991px) {
  .edubin-hero-section-10 .hero-content .title {
    font-size: 32px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .edubin-hero-section-10 .hero-images {
    padding-top: 80px;
    padding-left: 35px;
    padding-right: 35px;
  }
  .edubin-hero-section-10 .hero-images .images {
    text-align: center;
  }
  .edubin-hero-section-10 .hero-images .image-content {
    left: 0%;
    top: 67.5%;
  }
}
@media only screen and (max-width: 575px) {
  .edubin-hero-section-10 .hero-images {
    padding-top: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes round-01 {
  0% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
/*--
/*  04 - Category CSS
/*----------------------------------------*/
.category-wrap {
  background: var(--secondary-color);
  border-radius: 10px;
  padding-top: 40px;
  padding-bottom: 80px;
  margin-top: -150px;
  position: relative;
  z-index: 5;
}
.category-wrap .category-text {
  padding-top: 40px;
}
@media only screen and (max-width: 991px) {
  .category-wrap .category-text {
    text-align: center;
  }
}
.category-wrap .category-text .title {
  font-size: 36px;
  color: #fff;
  padding: 0 50px;
}
@media only screen and (max-width: 575px) {
  .category-wrap .category-text .title {
    font-size: 32px;
  }
}

.category-slider-wrap {
  margin-top: 40px;
}

.single-category {
  padding: 20px 0;
  margin: 0 auto;
  border-radius: 5px;
  display: block;
}
.single-category.color-1 {
  background-color: #4886ff;
}
.single-category.color-2 {
  background-color: #b5d56a;
}
.single-category.color-3 {
  background-color: #ff6f6f;
}
.single-category .icon {
  display: inline-block;
}
.single-category .cont {
  display: block;
}
.single-category .cont span {
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
  padding-top: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.category-active {
  position: relative;
}
.category-active a {
  display: block;
}
.category-active .slider-arrow {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-10%);
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background-color: #557495;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 991px) {
  .category-active .slider-arrow {
    transform: translateY(90%);
  }
}
.category-active .slider-arrow.swiper-button-prev {
  right: auto;
  left: -50px;
}
.category-active .slider-arrow.swiper-button-prev::after {
  content: "\f16d";
  font-family: flaticon !important;
  font-size: 14px;
}
.category-active .slider-arrow.swiper-button-next {
  right: -50px;
}
.category-active .slider-arrow.swiper-button-next::after {
  content: "\f16e";
  font-family: flaticon !important;
  font-size: 14px;
}
.category-active .slider-arrow:hover {
  color: #ffffff;
  background: #ffc600;
  border-color: #ffc600;
}
.category-active:hover .slider-arrow {
  opacity: 1;
  visibility: visible;
}

.edubin-category-section-02 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 1199px) {
  .edubin-category-section-02 {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .edubin-category-section-02 {
    padding-bottom: 80px;
  }
}

.row .col-lg-4:nth-child(1) .single-item {
  background-color: #f8d4f1;
  border: 1px solid #000;
}

.row .col-lg-4:nth-child(2) .single-item {
  background-color: #fffbde;
  border: 1px solid #000;
}

.row .col-lg-4:nth-child(3) .single-item {
  background-color: #e5fbec;
  border: 1px solid #000;
}

.mv-content .title {
  color: var(--primary-color) !important;
}

.category-2-items {
  padding-top: 20px;
}
.category-2-items .single-items {
  position: relative;
  margin-top: 30px;
}
.category-2-items .single-items .items-image {
  position: relative;
}
.category-2-items .single-items .items-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 41, 77, 0.8);
  border-radius: 5px;
}
.category-2-items .single-items .items-image img {
  width: 100%;
  border-radius: 5px;
}
.category-2-items .single-items .items-cont {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
.category-2-items .single-items .items-cont .title {
  font-size: 18px;
  color: #ffffff;
  transition: all 0.3s linear;
}
.category-2-items .single-items .items-cont .title:hover {
  color: #ffc600;
}
.category-2-items .single-items .items-cont p {
  font-size: 14px;
  color: #ffffff;
}

.category-form {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 75px 0px rgba(0, 0, 0, 0.1);
  margin-top: -160px;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 991px) {
  .category-form {
    margin-top: 50px;
  }
}
.category-form .form-title {
  background-color: var(--secondary-color);
  padding-top: 35px;
  padding-bottom: 40px;
  padding-left: 5px;
  padding-right: 5px;
}
.category-form .form-title .title {
  color: #ffc600;
  font-size: 36px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 575px) {
  .category-form .form-title .title {
    font-size: 28px;
  }
}
.category-form .form-title span {
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
.category-form .main-form {
  padding-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 55px;
  background-color: #fff;
}
.category-form .main-form .single-form {
  margin-top: 20px;
}
.category-form
  .main-form
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.category-form .main-form .single-form textarea {
  width: 100%;
  height: 45px;
  padding: 0 20px;
  font-size: 14px;
  color: var(--text-color);
  border: 1px solid #ebebeb;
  border-radius: 3px;
  font-weight: 400;
}
.category-form
  .main-form
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-webkit-input-placeholder,
.category-form .main-form .single-form textarea::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: var(--text-color);
  font-weight: 400;
}
.category-form
  .main-form
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-moz-placeholder,
.category-form .main-form .single-form textarea:-moz-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: var(--text-color);
  font-weight: 400;
}
.category-form
  .main-form
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-moz-placeholder,
.category-form .main-form .single-form textarea::-moz-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: var(--text-color);
  font-weight: 400;
}
.category-form
  .main-form
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-ms-input-placeholder,
.category-form .main-form .single-form textarea:-ms-input-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: var(--text-color);
  font-weight: 400;
}
.category-form .main-form .single-form textarea {
  height: 100px;
  line-height: 50px;
}
.category-form .main-form .single-form .btn {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 3px;
  background: var(--secondary-color);
  color: #ffffff;
}
.category-form .main-form .single-form .btn:hover {
  background: #ffc600;
}

.edubin-category-section-03 {
  background: #edf0f2;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1199px) {
  .edubin-category-section-03 {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .edubin-category-section-03 {
    padding-top: 30px;
  }
}

.edubin-category-section-04 .category-wrap {
  background: #ffffff;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
}
.edubin-category-section-04 .category-wrap .category-text .title {
  color: #002639;
}

.edubin-category-section-05 .category-content-wrap {
  position: relative;
  margin-top: 50px;
}
.edubin-category-section-05 .category-content-wrap::before {
  content: "";
  background: #e1e1e1;
  width: 100%;
  margin: auto;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
}
.edubin-category-section-05 .edubin-category-box {
  border-right: 1px solid #e1e1e1;
}
.edubin-category-section-05 .edubin-category-box.category-box-03 {
  border-right: 0;
}
.edubin-category-section-05 .edubin-category-box .category-item {
  display: flex;
  align-items: center;
  padding: 40px 60px;
}
.edubin-category-section-05
  .edubin-category-box
  .category-item
  .category-content {
  margin-left: 20px;
}
.edubin-category-section-05
  .edubin-category-box
  .category-item
  .category-content
  .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
}
.edubin-category-section-05
  .edubin-category-box
  .category-item
  .category-content
  .title:hover {
  color: #ff773d;
}

@media only screen and (max-width: 991px) {
  .edubin-category-section-05 .edubin-category-box .category-item {
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .edubin-category-section-05 .category-content-wrap {
    margin-top: 20px;
  }
  .edubin-category-section-05 .category-content-wrap::before {
    display: none;
  }
  .edubin-category-section-05 .edubin-category-box {
    border-right: 0;
  }
  .edubin-category-section-05 .edubin-category-box .category-item {
    justify-content: center;
    padding: 0;
    margin-top: 30px;
  }
  .edubin-category-section-05
    .edubin-category-box
    .category-item
    .category-content {
    margin-left: 0;
  }
}

.category-wrap-03 {
  padding-top: 20px;
}

.category-item-02 {
  display: flex;
  align-items: center;
  background: #eff6f9;
  padding: 20px 30px 20px 30px;
  border-radius: 5px 5px 5px 5px;
  margin-top: 30px;
}
.category-item-02 .category-content {
  flex: 1;
  margin-left: 25px;
}
.category-item-02 .category-content .title {
  font-size: 18px;
  color: var(--secondary-color);
  transition: all 0.3s linear;
}
.category-item-02:hover {
  background: #2babe4;
}

.edubin-category-section-07 .category-item-02:hover {
  background: #f1f9f3;
}

/*--
/*  05 - About CSS
/*----------------------------------------*/
.edubin-about-section {
  position: relative;
  padding-bottom: 220px;
}
.edubin-about-section .about-wrap {
  margin-top: -50px;
}
.edubin-about-section .about-content-wrap {
  margin-top: 50px;
}
.edubin-about-section .about-cont p {
  padding-top: 30px;
}
.edubin-about-section .about-cont .btn {
  margin-top: 55px;
}
.edubin-about-section .about-event {
  box-shadow: 0px 0px 191px 0px rgba(0, 0, 0, 0.06);
  padding: 65px 70px 37px;
  background-color: rgba(255, 255, 255, 0.95);
  margin-top: 50px;
}
@media only screen and (max-width: 575px) {
  .edubin-about-section .about-event {
    padding: 40px 35px 37px;
  }
}
.edubin-about-section .about-event .event-title .title {
  font-size: 36px;
  color: #000000;
  padding-bottom: 5px;
}
@media only screen and (max-width: 575px) {
  .edubin-about-section .about-event .event-title .title {
    font-size: 28px;
  }
}
.edubin-about-section .about-event ul li .single-event {
  padding: 25px 0;
  border-bottom: 1px solid #cecece;
}
.edubin-about-section .about-event ul li .single-event span {
  font-size: 14px;
  color: var(--text-color);
  margin-right: 20px;
}
.edubin-about-section .about-event ul li .single-event span i {
  color: #ffc600;
  margin-right: 3px;
}
.edubin-about-section .about-event ul li .single-event .title {
  padding-top: 5px;
  padding-bottom: 10px;
  color: #000000;
  font-size: 24px;
  transition: all 0.3s linear;
}
.edubin-about-section .about-event ul li .single-event .title:hover {
  color: #ffc600;
}
.edubin-about-section .about-event ul li .single-event a {
  display: block;
}
.edubin-about-section .about-event ul li:last-child .single-event {
  border-bottom: 0;
}
.edubin-about-section .about-bg {
  width: 52%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -2;
}
.edubin-about-section .about-bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 60%,
    rgb(255, 255, 255) 100%
  );
}
.edubin-about-section .about-bg img {
  width: 100%;
}

.edubin-about-section-02 {
  padding-bottom: 120px;
}
.edubin-about-section-02 .about-wrap {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 70px 70px 70px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .edubin-about-section-02 .about-wrap {
    padding: 70px 50px 70px;
  }
}
.edubin-about-section-02 .about-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    310deg,
    rgba(7, 41, 77, 0.6392156863) 0%,
    var(--secondary-color) 100%
  );
  z-index: -1;
}
.edubin-about-section-02 .about-event {
  box-shadow: none;
  padding: 0;
  padding-right: 50px;
  background-color: transparent;
  margin-top: 0;
}
.edubin-about-section-02 .about-event .event-title .title {
  color: #ffffff;
}
.edubin-about-section-02 .about-event ul li .single-event span {
  color: #c0c0c0;
}
.edubin-about-section-02 .about-event ul li .single-event .title {
  color: #ffffff;
}
.edubin-about-section-02 .about-event ul li .single-event .title:hover {
  color: #ffc600;
}
@media only screen and (max-width: 991px) {
  .edubin-about-section-02 .video {
    margin-top: 50px;
  }
}
.edubin-about-section-02 .video a {
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 20px;
  background-color: #ffc600;
  color: var(--secondary-color);
  border-radius: 50%;
}
.edubin-about-section-02 .video a:hover {
  background: #ffffff;
  color: #ffc600;
}

.edubin-about-section-03 {
  padding-bottom: 150px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .edubin-about-section-03 {
    padding-bottom: 120px;
  }
}
.edubin-about-section-03 .about-image-two {
  position: relative;
  /* margin-top: 55px; */
  z-index: 1;
}

/* .edubin-about-section-03 .about-image-two::before {
  position: absolute;
  content: "";
  background-image: url(../images/about/dot-shape.png);
  background-position: center center;
  background-size: contain;
  width: 50%;
  height: 50%;
  top: 0px;
  z-index: -1;
} */
@media only screen and (max-width: 575px) {
  .edubin-about-section-03 .about-image-two::before {
    width: 80%;
    height: 100%;
    left: -40px;
    bottom: -40px;
  }
}
.edubin-about-section-03 .about-image-two > img {
  width: 100%;
  border-radius: 5px;
}
.edubin-about-section-03 .about-image-two .about-shape-two {
  position: absolute;
  left: -36px;
  bottom: 170px;
}
@media only screen and (max-width: 575px) {
  .edubin-about-section-03 .about-image-two .about-shape-two {
    bottom: 75px;
    width: 40px;
  }
}
.edubin-about-section-03 .about-image-two .about-shape-three {
  position: absolute;
  bottom: -30px;
  left: 85px;
}
@media only screen and (max-width: 575px) {
  .edubin-about-section-03 .about-image-two .about-shape-three {
    left: 35px;
    width: 60px;
  }
}

.edubin-about-section-04 .about-wrap {
  margin-bottom: -120px;
}
.edubin-about-section-04 .about-img {
  padding-left: 85px;
  position: relative;
  z-index: 1;
}
.edubin-about-section-04 .about-img .shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.edubin-about-section-04 .about-img .shape-1 img {
  width: 520px;
}
.edubin-about-section-04 .about-content-wrap .main-title {
  font-size: 36px;
  color: var(--secondary-color);
}
.edubin-about-section-04 .about-content-wrap .text {
  color: #696868;
  margin-top: 35px;
}
.edubin-about-section-04 .about-content-wrap .about-list-wrap {
  padding-top: 20px;
}
.edubin-about-section-04 .about-content-wrap .about-list-wrap .list-item {
  margin-top: 20px;
}
.edubin-about-section-04
  .about-content-wrap
  .about-list-wrap
  .list-item
  .title {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  margin-top: 25px;
}
.edubin-about-section-04 .about-content-wrap .about-list-wrap .list-item p {
  font-size: 14px;
  color: #696868;
}
.edubin-about-section-04 .about-content-wrap .btn {
  background: #2babe4;
  margin-top: 25px;
  color: #ffffff;
}
.edubin-about-section-04 .about-content-wrap .btn:hover {
  background: var(--secondary-color);
}

@media only screen and (max-width: 1199px) {
  .edubin-about-section-04 .about-wrap {
    margin-bottom: 0;
  }
  .edubin-about-section-04 .about-img {
    padding-left: 0;
    text-align: center;
  }
  .edubin-about-section-04 .about-img .shape-1 {
    left: 22%;
  }
  .edubin-about-section-04 .about-img .shape-1 img {
    width: 520px;
  }
  .edubin-about-section-04 .about-content-wrap {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .edubin-about-section-04 .about-img .shape-1 {
    left: 15%;
  }
}
@media only screen and (max-width: 575px) {
  .edubin-about-section-04 .about-img {
    padding-left: 0;
    text-align: center;
  }
  .edubin-about-section-04 .about-img .shape-1 {
    left: 0%;
  }
  .edubin-about-section-04 .about-img .shape-1 img {
    width: 420px;
  }
  .edubin-about-section-04 .about-content-wrap .main-title {
    font-size: 30px;
  }
}

.edubin-about-section-05 .about-content-wrap {
  padding-right: 40px;
}
.edubin-about-section-05 .about-cont .text {
  color: var(--text-color);
  margin-top: 20px;
}
.edubin-about-section-05 .about-cont .about-list-wrap {
  padding-top: 10px;
}
.edubin-about-section-05 .about-cont .about-list-wrap ul li {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  padding-left: 20px;
  position: relative;
  margin-top: 15px;
}
.edubin-about-section-05 .about-cont .about-list-wrap ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #0071dc;
  border-radius: 50%;
  transform: translateY(-50%);
}
.edubin-about-section-05 .about-image {
  position: relative;
  z-index: 1;
}
.edubin-about-section-05 .about-image .shape-1 {
  position: absolute;
  left: 8%;
  top: 20%;
  z-index: -1;
}
.edubin-about-section-05 .about-image .shape-2 {
  position: absolute;
  width: 80px;
  height: 80px;
  background: #0071dc;
  border-radius: 50%;
  left: 21%;
  top: 15%;
  z-index: -1;
}

@media only screen and (max-width: 991px) {
  .edubin-about-section-05 .about-content-wrap {
    padding-right: 0;
  }
  .edubin-about-section-05 .about-image {
    margin-top: 50px;
  }
  .edubin-about-section-05 .about-image .shape-1 {
    left: 17%;
  }
  .edubin-about-section-05 .about-image .shape-2 {
    left: 28%;
  }
}
@media only screen and (max-width: 767px) {
  .edubin-about-section-05 .about-image .shape-1 {
    left: 5%;
  }
}
@media only screen and (max-width: 575px) {
  .edubin-about-section-05 .about-image .shape-1 {
    left: 1%;
    width: 370px;
  }
}

.edubin-about-section-06 .about-img-wrap {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.edubin-about-section-06 .about-img-wrap .shape-1 {
  position: absolute;
  top: 85px;
  left: 80px;
  z-index: -1;
}
.edubin-about-section-06 .about-img-wrap .shape-2 {
  position: absolute;
  top: 0;
  right: 35%;
  z-index: -1;
}
.edubin-about-section-06 .about-img-wrap .shape-3 {
  position: absolute;
  bottom: 6%;
  left: 0;
  z-index: -1;
}
.edubin-about-section-06 .about-img-wrap .about-img-left {
  padding-right: 15px;
}
.edubin-about-section-06 .about-img-wrap .about-img-left .about-img img {
  border-radius: 10px;
}
.edubin-about-section-06 .about-img-wrap .about-img-left .about-img.img-2 {
  text-align: right;
  margin-top: 30px;
}
.edubin-about-section-06 .about-img-wrap .about-img-right {
  padding-left: 15px;
}
.edubin-about-section-06 .about-img-wrap .about-img-right img {
  border-radius: 10px;
  width: 240px;
}
@media only screen and (max-width: 991px) {
  .edubin-about-section-06 .about-content-wrap {
    margin-top: 50px;
  }
}
.edubin-about-section-06 .about-content-wrap .about-cont .text {
  margin-top: 25px;
  color: var(--text-color);
}
.edubin-about-section-06 .about-content-wrap .about-cont .about-list-wrap {
  padding-top: 10px;
}
.edubin-about-section-06
  .about-content-wrap
  .about-cont
  .about-list-wrap
  ul
  li {
  font-weight: 500;
  color: var(--text-color);
  margin-top: 15px;
}
.edubin-about-section-06
  .about-content-wrap
  .about-cont
  .about-list-wrap
  ul
  li
  i {
  color: #3bbc9b;
  margin-right: 5px;
}
.edubin-about-section-06 .about-content-wrap .about-cont .btn {
  background: #3bbc9b;
  color: #ffffff;
  margin-top: 40px;
}
.edubin-about-section-06 .about-content-wrap .about-cont .btn:hover {
  background: var(--secondary-color);
}

.edubin-about-section-07 {
  padding-top: 160px;
  padding-bottom: 175px;
}
@media only screen and (max-width: 1199px) {
  .edubin-about-section-07 {
    padding-top: 130px;
    padding-bottom: 100px;
  }
}
.edubin-about-section-07 .about-img-wrap {
  position: relative;
  padding-left: 40px;
  z-index: 1;
}
.edubin-about-section-07 .about-img-wrap img {
  border-radius: 5px;
}
.edubin-about-section-07 .about-img-wrap .svg-shape {
  position: absolute;
  left: 20px;
  top: -20px;
  z-index: -1;
}
.edubin-about-section-07 .about-img-wrap .about-img-big img {
  width: 465px;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}
.edubin-about-section-07 .about-img-wrap .about-img-sm {
  position: absolute;
  right: -25px;
  top: 60%;
  width: 225px;
  border-radius: 12px;
  border: 5px solid #fff;
}

.about-img-sm-1 {
  position: absolute;
  left: 0;
  top: 62%;
  width: 225px;
  border-radius: 12px;
  border: 5px solid #fff;
}

@media only screen and (max-width: 768px) {
  .about-img-sm-1 {
    left: 4%;
    top: 58%;
  }
}

.edubin-about-section-07 .about-content-wrap {
  padding-left: 90px;
}
@media only screen and (max-width: 1199px) {
  .edubin-about-section-07 .about-content-wrap {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .edubin-about-section-07 .about-content-wrap {
    padding-left: 0;
  }
}
.edubin-about-section-07 .about-content-wrap .about-cont .text {
  color: var(--text-color);
  margin-top: 20px;
}
.edubin-about-section-07 .about-content-wrap .about-cont .about-list-wrap {
  padding-top: 10px;
}
.edubin-about-section-07
  .about-content-wrap
  .about-cont
  .about-list-wrap
  ul
  li {
  color: var(--text-color);
  margin-top: 15px;
}
.edubin-about-section-07
  .about-content-wrap
  .about-cont
  .about-list-wrap
  ul
  li
  i {
  color: var(--primary-color-2);
  margin-right: 5px;
}
.edubin-about-section-07 .about-content-wrap .btn {
  background: var(--primary-color);
  color: #ffffff;
  margin-top: 35px;
}
.edubin-about-section-07 .about-content-wrap .btn:hover {
  color: #ffffff;
  background: #ff3e4b;
}

.edubin-about-section-08 {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .edubin-about-section-08 {
    padding-bottom: 90px;
  }
}
.edubin-about-section-08::before {
  background: var(--secondary-color) none repeat scroll 0 0;
  content: "";
  height: 100%;
  opacity: 0.3;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.edubin-about-section-08 .testimonial-slider-wrap {
  padding-right: 25px;
}
@media only screen and (max-width: 991px) {
  .edubin-about-section-08 .testimonial-slider-wrap {
    padding-right: 0;
    padding-top: 60px;
  }
}
.edubin-about-section-08 .testimonial-3-active .swiper-pagination {
  text-align: center;
  position: relative;
  margin-top: 50px;
}
.edubin-about-section-08
  .testimonial-3-active
  .swiper-pagination
  .swiper-pagination-bullet {
  background-color: #e3e3e3;
}
.edubin-about-section-08
  .testimonial-3-active
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
.edubin-about-section-08 .about-event ul li .single-event span i {
  color: var(--primary-color);
}
.edubin-about-section-08 .about-event ul li .single-event .title:hover {
  color: var(--primary-color);
}

.edubin-about-section-09 .about-wrap {
  margin-bottom: 0;
}
.edubin-about-section-09 .about-img-wrap {
  position: relative;
  z-index: 1;
}
.edubin-about-section-09 .about-img-wrap .shape-1 {
  position: absolute;
  left: 11%;
  top: 9%;
  z-index: -1;
}
.edubin-about-section-09 .about-img-wrap .shape-2 {
  position: absolute;
  right: 17%;
  top: 9%;
  z-index: -1;
}
.edubin-about-section-09 .about-img-wrap .shape-3 {
  position: absolute;
  right: 19%;
  top: 26%;
  z-index: -1;
}
.edubin-about-section-09 .about-img-wrap .shape-4 {
  position: absolute;
  left: 8%;
  top: 8%;
  z-index: -1;
}
.edubin-about-section-09 .about-content-wrap .btn {
  background: #3bbc9b;
  color: #ffffff;
  margin-top: 30px;
}
.edubin-about-section-09 .about-content-wrap .btn:hover {
  background: var(--secondary-color);
}

@media only screen and (max-width: 991px) {
  .edubin-about-section-09 .about-img-wrap .shape-2 {
    right: 28%;
  }
  .edubin-about-section-09 .about-img-wrap .shape-3 {
    right: 28%;
    top: 29%;
  }
}
@media only screen and (max-width: 767px) {
  .edubin-about-section-09 .about-img-wrap .shape-1 {
    left: 14%;
  }
  .edubin-about-section-09 .about-img-wrap .shape-2 {
    right: 10%;
  }
  .edubin-about-section-09 .about-img-wrap .shape-3 {
    right: 4%;
  }
}

.edubin-mission-section {
  padding-bottom: 120px;
}
@media only screen and (max-width: 1199px) {
  .edubin-mission-section {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .edubin-mission-section {
    padding-bottom: 80px;
  }
}
.edubin-mission-section .mission-wrap {
  margin-top: -20px;
}
.edubin-mission-section .single-item {
  margin-top: 20px;
  height: 450px;
}
.edubin-mission-section .single-item .number {
  font-size: 60px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #cecece;
}
.edubin-mission-section .single-item .title {
  font-size: 26px;
  line-height: 26px;
  color: var(--secondary-color);
  margin-top: 10px;
}
.edubin-mission-section .single-item p {
  margin-top: 18px;
}

/*--
/*  06 - Apply CSS
/*----------------------------------------*/
.apply-section {
  padding-top: 0;
}
.apply-section .apply-wrap {
  overflow: hidden;
  border-radius: 5px;
  margin-top: -100px;
}
.apply-section .apply-cont {
  background-color: var(--secondary-color);
  padding: 45px 50px 50px;
}
.apply-section .apply-cont.apply-color-2 {
  background-color: #092e56;
}
.apply-section .apply-cont .title {
  font-size: 30px;
  color: #ffffff;
  padding-bottom: 15px;
}
.apply-section .apply-cont p {
  color: #ffffff;
  padding-bottom: 45px;
}
.apply-section .apply-cont .btn:hover {
  background: #ffffff;
  color: var(--secondary-color);
}

/*--
/*  07 - Course CSS
/*----------------------------------------*/
.course-section {
  background: #f9f9f9;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.course-section .course-content-wrap {
  padding-top: 15px;
}
.course-section .course-btn .btn {
  margin-top: 60px;
}

.single-course {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 30px;
}
.single-course .thum {
  position: relative;
}
.single-course .thum .image {
  overflow: hidden;
  position: relative;
}
.single-course .thum .image a {
  display: block;
  position: relative;
}
.single-course .thum .image a img {
  width: 100%;
  transition: all 0.3s linear;
}
.single-course .thum .image .top-meta .categories {
  position: absolute;
  top: 25px;
  left: 25px;
  max-width: 70%;
}
.single-course .thum .image .top-meta .categories .tag {
  font-size: 13px;
  font-weight: 400;
  border-radius: 3px;
  padding: 0 11px;
  line-height: 29px;
  display: inline-block;
  background: #ffc600;
  color: var(--secondary-color);
  white-space: nowrap;
}
.single-course .thum .image .top-meta .wishlist a {
  background: #ffffff;
  color: var(--secondary-color);
  font-size: 16px;
  border-radius: 50%;
  position: absolute;
  top: 25px;
  right: 25px;
  width: 32px;
  height: 32px;
  line-height: 34px;
  text-align: center;
}
.single-course .thum .image .top-meta .wishlist a:hover {
  background: var(--secondary-color);
  color: #ffffff;
}
.single-course .thum .price {
  position: absolute;
  right: 60px;
  bottom: -24px;
}
.single-course .thum .price span {
  display: block;
  font-size: 14px;
  color: var(--secondary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  background-color: #ffc600;
  text-align: center;
}
.single-course .content {
  padding-top: 40px;
  padding-bottom: 34px;
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 1199px) {
  .single-course .content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.single-course .content .title {
  font-weight: 600;
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  transition: all 0.3s linear;
}
.single-course .content .title:hover {
  color: #ffc600;
}
.single-course .content > ul {
  display: inline-block;
  margin-right: 10px;
}
.single-course .content > ul li {
  display: inline-block;
  margin: 1px;
}
.single-course .content > ul li i {
  font-size: 13px;
  color: #ffc600;
}
.single-course .content span {
  font-size: 13px;
  color: #000;
}
.single-course .content .course-teacher {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  margin-top: 30px;
  overflow: hidden;
}
.single-course .content .course-teacher > .thum {
  display: inline-block;
}
.single-course .content .course-teacher > .thum a img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.single-course .content .course-teacher .name {
  display: inline-block;
  margin-left: 10px;
}
@media only screen and (max-width: 1199px) {
  .single-course .content .course-teacher .name {
    margin-left: 5px;
  }
}
.single-course .content .course-teacher .name h6 {
  font-size: 15px;
  color: #24486e;
}
.single-course .content .course-teacher .course-lesson {
  float: right;
  overflow: hidden;
}
.single-course .content .course-teacher .course-lesson ul {
  margin-top: 8px;
}
.single-course .content .course-teacher .course-lesson ul li {
  font-size: 15px;
  color: var(--text-color);
}
.single-course .content .course-teacher .course-lesson ul li i {
  margin-right: 5px;
  color: #ffc600;
}
.single-course:hover .thum .image img {
  transform: scale(1.1);
}

.course-section-02 .single-course {
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
}
.course-section-02 .single-course .thum {
  position: relative;
  padding: 10px;
}
.course-section-02 .single-course .thum .image {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  overflow: hidden;
}
.course-section-02 .single-course .thum .author-img {
  position: absolute;
  right: 30px;
  bottom: -15px;
  border: 3px solid #ffffff;
  overflow: hidden;
  border-radius: 50%;
}
.course-section-02 .single-course .content {
  padding-top: 30px;
  padding-left: 20px;
  padding-bottom: 0;
  padding-right: 20px;
}
.course-section-02 .single-course .content .title {
  font-size: 18px;
  line-height: 26px;
}
.course-section-02 .single-course .course-teacher {
  border-top: 1px solid #e0e0e0;
  padding: 15px 20px;
  padding-top: 10px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-section-02 .single-course .course-teacher .course-lesson {
  float: none;
}
.course-section-02 .single-course .course-teacher .course-lesson ul {
  margin-top: 8px;
}
.course-section-02 .single-course .course-teacher .course-lesson ul li {
  font-size: 15px;
  color: var(--text-color);
}
.course-section-02 .single-course .course-teacher .course-lesson ul li i {
  margin-right: 5px;
  color: #ffc600;
}
.course-section-02 .single-course .course-teacher .view-details .read-more {
  font-size: 15px;
  font-weight: 700;
  color: #ffc600;
  margin-top: 8px;
}
.course-section-02
  .single-course
  .course-teacher
  .view-details
  .read-more:hover {
  color: var(--secondary-color);
}

.course-section-03 .course-btn {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .course-section-03 .course-btn {
    text-align: left;
    margin-top: 25px;
  }
}
.course-section-03 .course-btn .btn {
  background: #ff773d;
  color: #ffffff;
}
.course-section-03 .course-btn .btn:hover {
  background: var(--secondary-color);
}
.course-section-03 .course-content-wrap {
  padding-top: 20px;
}
.course-section-03 .single-course {
  background-color: none;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 30px;
}
.course-section-03 .single-course .thum {
  position: relative;
}
.course-section-03 .single-course .thum .image {
  overflow: hidden;
  position: relative;
}
.course-section-03 .single-course .thum .image a {
  display: block;
  position: relative;
}
.course-section-03 .single-course .thum .image a img {
  width: 100%;
  transition: all 0.3s linear;
}
.course-section-03 .single-course .thum .image .top-meta .categories .tag {
  background: #ff4830;
  color: #ffffff;
}
.course-section-03 .single-course .content {
  padding-top: 25px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.course-section-03 .single-course .content .course-categories .tag {
  font-size: 13px;
  font-weight: 400;
  border-radius: 3px;
  padding: 0 15px;
  line-height: 29px;
  display: inline-block;
  background: rgba(255, 72, 48, 0.1098039216);
  color: #ff4830;
  white-space: nowrap;
}
.course-section-03 .single-course .content .course-categories .tag.color-2 {
  background: rgba(108, 189, 127, 0.15);
  color: #6cbd7f;
}
.course-section-03 .single-course .content .course-categories .tag.color-3 {
  background: rgba(142, 86, 255, 0.15);
  color: #8e56ff;
}
.course-section-03 .single-course .content .course-categories .tag.color-4 {
  background: rgba(23, 184, 193, 0.15);
  color: #17b8c1;
}
.course-section-03 .single-course .content .title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  transition: all 0.3s linear;
  margin-top: 20px;
}
.course-section-03 .single-course .content .title:hover {
  color: #ff773d;
}
.course-section-03 .single-course .content .course-lesson ul {
  margin-top: 8px;
}
.course-section-03 .single-course .content .course-lesson ul li {
  font-size: 15px;
  color: var(--text-color);
}
.course-section-03 .single-course .content .course-lesson ul li i {
  margin-right: 5px;
  color: #ff773d;
}
.course-section-03 .single-course .content .author-name p {
  margin-bottom: 5px;
  color: var(--text-color);
  font-size: 15px;
}
.course-section-03 .single-course .content .author-name p a {
  color: #0071dc;
}
.course-section-03 .single-course .content .price p {
  font-weight: 15px;
  font-weight: 600;
  color: #ff773d;
}
.course-section-03 .single-course:hover .thum .image img {
  transform: scale(1.1);
}

.course-section-04 .course-btn {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .course-section-04 .course-btn {
    text-align: left;
    margin-top: 25px;
  }
}
.course-section-04 .course-btn .btn {
  background: #2babe4;
  margin-top: 0;
  color: #ffffff;
}
.course-section-04 .course-btn .btn:hover {
  background: var(--secondary-color);
}
.course-section-04 .course-content-wrap {
  padding-top: 20px;
}
.course-section-04 .single-course {
  background-color: none;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 30px;
}
.course-section-04 .single-course .thum .image .top-meta .categories .tag {
  background: #2babe4;
  color: #ffffff;
}
.course-section-04 .single-course .content {
  padding-top: 20px;
  padding-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
}
.course-section-04 .single-course .content .title {
  font-weight: 600;
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  transition: all 0.3s linear;
  margin-top: 20px;
}
.course-section-04 .single-course .content .title:hover {
  color: #2babe4;
}
.course-section-04 .single-course .course-teacher .course-lesson ul li i {
  color: #2babe4;
}
.course-section-04 .single-course .course-teacher .view-details .read-more {
  font-size: 15px;
  font-weight: 700;
  color: #2babe4;
  margin-top: 8px;
}
.course-section-04
  .single-course
  .course-teacher
  .view-details
  .read-more:hover {
  color: var(--secondary-color);
}
.course-section-04 .single-course:hover .thum .image img {
  transform: scale(1.1);
}

.course-section-05 {
  background: none;
}
.course-section-05 .course-btn {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .course-section-05 .course-btn {
    text-align: left;
    margin-top: 25px;
  }
}
.course-section-05 .course-btn .btn {
  background: #0071dc;
  margin-top: 0;
  color: #ffffff;
}
.course-section-05 .course-btn .btn:hover {
  background: var(--secondary-color);
}
.course-section-05 .course-content-wrap {
  padding-top: 20px;
}
.course-section-05 .single-course {
  margin-top: 30px;
  background: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}
.course-section-05 .single-course .thum .image .top-meta .categories .tag {
  background: #0071dc;
  color: #ffffff;
}
.course-section-05 .single-course .content {
  padding-top: 20px;
  padding-bottom: 0;
  padding-left: 30px;
  padding-right: 30px;
}
.course-section-05 .single-course .content .title {
  font-size: 18px;
  line-height: 28px;
  margin-top: 10px;
}
.course-section-05 .single-course .content .title:hover {
  color: #0071dc;
}
.course-section-05 .single-course .content .course-author {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.course-section-05 .single-course .content .course-author .thum a img {
  width: 32px;
  height: 32px;
  border-radius: 100px;
  margin-right: 5px;
  display: inline-block;
  border: 2px solid #cccccc;
}
.course-section-05 .single-course .content .course-author .name {
  margin-left: 5px;
}
.course-section-05 .single-course .content .course-author .name h6 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
}
.course-section-05 .single-course .course-teacher {
  border-top: 1px solid #e0e0e0;
  padding: 15px 30px;
  padding-top: 10px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-section-05 .single-course .course-teacher .course-lesson {
  float: none;
}
.course-section-05 .single-course .course-teacher .course-lesson ul {
  margin-top: 8px;
}
.course-section-05 .single-course .course-teacher .course-lesson ul li {
  font-size: 15px;
  color: var(--text-color);
}
.course-section-05 .single-course .course-teacher .course-lesson ul li i {
  margin-right: 5px;
  color: #0071dc;
}
.course-section-05 .single-course .course-teacher .price {
  margin-top: 8px;
}
.course-section-05 .single-course .course-teacher .price span {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
}
.course-section-05 .single-course:hover .thum .image img {
  transform: scale(1.1);
}

.course-section-06 {
  background: #f5f7fa;
  padding-top: 220px;
}
.course-section-06 .single-course .thum .image .top-meta .categories .tag {
  background: #3bbc9b;
  color: #ffffff;
}
.course-section-06 .single-course .content .title:hover {
  color: #3bbc9b;
}
.course-section-06 .single-course .course-teacher .course-lesson ul li i {
  color: #3bbc9b;
}

.course-active .course-arrow {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  transform: translateY(-30%);
  border: 2px solid #3bbc9b;
  box-shadow: 0px 5px 57px 0px rgba(0, 0, 0, 0.15);
  color: #3bbc9b;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.course-active .course-arrow.swiper-button-prev {
  left: 0;
}
.course-active .course-arrow.swiper-button-prev::after {
  content: "\f16d";
  font-family: flaticon !important;
  font-size: 18px;
}
.course-active .course-arrow.swiper-button-next {
  right: 0;
}
.course-active .course-arrow.swiper-button-next::after {
  content: "\f16e";
  font-family: flaticon !important;
  font-size: 18px;
}
.course-active .course-arrow:hover {
  color: #ffffff;
  background: #3bbc9b;
}
.course-active:hover .course-arrow {
  opacity: 1;
  visibility: visible;
}
.course-active:hover .course-arrow.swiper-button-prev {
  left: 10px;
}
.course-active:hover .course-arrow.swiper-button-next {
  right: 10px;
}

.course-section-07 .course-slider-wrap {
  padding-top: 20px;
}
.course-section-07 .single-course {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  background: #ffffff;
  margin: 10px;
}
.course-section-07 .single-course .thum .image .top-meta .categories .tag {
  background: var(--primary-color-2);
  color: #fff;
}
.course-section-07 .single-course .content .title:hover {
  color: var(--primary-color);
}
.course-section-07 .single-course .course-teacher .course-lesson ul li i {
  color: var(--primary-color);
}
.course-section-07 .course-btn .btn {
  background: var(--primary-color);
  margin-top: 60px;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .course-section-07 .course-btn .btn {
    margin-top: 30px;
  }
}
.course-section-07 .course-btn .btn:hover {
  background: var(--secondary-color-2);
  color: var(--secondary-color);
}
.course-section-07 .course-active .course-arrow {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}
.course-section-07 .course-active .course-arrow:hover {
  color: #ffffff;
  background: var(--primary-color);
}

.course-section-08 {
  background: #ecf7f4;
  padding-top: 195px;
}
.course-section-08 .section-title2 .title {
  margin-top: 10px;
}
.course-section-08 .course-content-wrap {
  padding-top: 30px;
}
.course-section-08 .single-course {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  background: #ffffff;
  border-radius: 20px;
  margin-top: 30px;
}
.course-section-08 .single-course .thum .image {
  background: #e5572e;
  height: 200px;
  width: auto;
  position: relative;
  z-index: 1;
}
.course-section-08 .single-course .thum .image.color-2 {
  background: #2bc183;
}
.course-section-08 .single-course .thum .image.color-3 {
  background: #0870da;
}
.course-section-08 .single-course .thum .image.color-4 {
  background: #7044b3;
}
.course-section-08 .single-course .thum .image.color-5 {
  background: #ea9c0b;
}
.course-section-08 .single-course .thum .image .shape-1 {
  left: -27px;
  bottom: -38px;
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.2392156863);
  height: 80px;
  border-radius: 50%;
  width: 80px;
  z-index: -1;
}
.course-section-08 .single-course .thum .image .shape-2 {
  height: 120px;
  width: 200px;
  background-color: rgba(255, 255, 255, 0.1215686275);
  bottom: -33px;
  right: -34px;
  top: 0;
  position: absolute;
  z-index: -1;
}
.course-section-08 .single-course .thum .image .shape-3 {
  height: 180px;
  width: 180px;
  background-color: rgba(255, 255, 255, 0.1215686275);
  border-radius: 50%;
  position: absolute;
  right: -55px;
  top: 77px;
}
.course-section-08 .single-course .thum .image .top-meta .title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  padding-top: 25px;
  padding-left: 30px;
  padding-right: 70px;
}
.course-section-08 .single-course .thum .image .top-meta .title:hover a {
  color: #ffffff;
  opacity: 0.8;
}
.course-section-08 .single-course .content {
  padding-top: 20px;
  padding-bottom: 25px;
  padding-left: 30px;
  padding-right: 30px;
}
.course-section-08 .single-course .content p {
  color: var(--text-color);
  margin-top: 15px;
  margin-bottom: 15px;
}
.course-section-08 .single-course .content .course-author {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.course-section-08 .single-course .content .course-author .thum a img {
  width: 32px;
  height: 32px;
  border-radius: 100px;
  margin-right: 5px;
  display: inline-block;
  border: 2px solid #cccccc;
}
.course-section-08 .single-course .content .course-author .name {
  margin-left: 5px;
}
.course-section-08 .single-course .content .course-author .name h6 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
}
.course-section-08 .single-course .course-teacher {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-section-08 .single-course .course-teacher .price {
  margin-top: 0;
}
.course-section-08 .single-course .course-teacher .price span {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
}
.course-section-08 .single-course .course-teacher .read-more .btn {
  height: 35px;
  line-height: 35px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  background: #2bc183;
  padding: 0 15px;
  border-radius: 5px;
}
.course-section-08 .single-course .course-teacher .read-more .btn:hover {
  opacity: 0.75;
}
.course-section-08 .course-btn .btn {
  background: #3bbc9b;
  color: #ffffff;
  margin-top: 50px;
}
.course-section-08 .course-btn .btn:hover {
  background: var(--secondary-color);
}

.course-section-09 {
  background: #ffffff;
}
.course-section-09 .course-grid-wrap {
  margin-top: -30px;
}
.course-section-09 .single-course {
  background-color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}
.course-section-09 .single-course .thum .image .top-meta .categories .tag {
  background: #0071dc;
  color: #ffffff;
}
.course-section-09 .single-course .thum .price span {
  color: #ffffff;
  background-color: #0071dc;
}
.course-section-09 .single-course .content .title:hover {
  color: #0071dc;
}
.course-section-09
  .single-course
  .content
  .course-teacher
  .course-lesson
  ul
  li
  i {
  color: #0071dc;
}

/*--
/*  08 - Video CSS
/*----------------------------------------*/
.video-section {
  padding-top: 60px;
  padding-bottom: 110px;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.video-section .feature-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(7, 41, 77, 0.9);
}
@media only screen and (max-width: 991px) {
  .video-section .feature-bg {
    width: 100%;
  }
}
.video-section .video {
  padding-left: 90px;
}
@media only screen and (max-width: 991px) {
  .video-section .video {
    text-align: center;
    padding-top: 50px;
    padding-left: 0;
    position: relative;
    z-index: 5;
  }
}
.video-section .video a {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 20px;
  background-color: #ffc600;
  color: var(--secondary-color);
  border-radius: 50%;
}
.video-section .video a:hover {
  background: #ffffff;
  color: #ffc600;
}
.video-section .feature {
  position: relative;
  z-index: 5;
  padding-top: 50px;
}
.video-section .feature .feature-title .title {
  font-size: 36px;
  color: #fff;
  padding-bottom: 15px;
}
.video-section .feature ul li .single-feature {
  display: flex;
  align-items: center;
  padding-top: 55px;
}
@media only screen and (max-width: 575px) {
  .video-section .feature ul li .single-feature {
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }
}
.video-section .feature ul li .single-feature .cont {
  flex: 1;
  margin-left: 30px;
}
@media only screen and (max-width: 575px) {
  .video-section .feature ul li .single-feature .cont {
    margin-left: 0;
  }
}
.video-section .feature ul li .single-feature .cont .title {
  font-size: 24px;
  color: #fff;
  padding-bottom: 15px;
}
.video-section .feature ul li .single-feature .cont p {
  color: #ffffff;
}

.video-section-02 .feature {
  padding-left: 70px;
}
@media only screen and (max-width: 1199px) {
  .video-section-02 .feature {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .video-section-02 .feature {
    padding-left: 0;
    padding-right: 135px;
    padding-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .video-section-02 .feature {
    padding-right: 0;
  }
}
.video-section-02 .feature .feature-title p {
  color: #ffffff;
  margin-top: 15px;
}
.video-section-02 .feature .edubin-countdown {
  margin-top: 40px;
}
.video-section-02 .feature .edubin-countdown .single-countdown {
  min-width: 105px;
  height: 105px;
  line-height: 105px;
  border: 2px solid #fff;
  border-radius: 50%;
}
@media only screen and (max-width: 575px) {
  .video-section-02 .feature .edubin-countdown .single-countdown {
    padding: 26px 15px;
    min-width: 90px;
    height: 90px;
    line-height: 90px;
  }
}
@media only screen and (max-width: 449px) {
  .video-section-02 .feature .edubin-countdown .single-countdown {
    min-width: 70px;
    padding: 18px 10px;
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}
.video-section-02 .feature .edubin-countdown .single-countdown .count {
  font-size: 30px;
  line-height: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: block;
  color: #ffffff;
}
@media only screen and (max-width: 575px) {
  .video-section-02 .feature .edubin-countdown .single-countdown .count {
    font-size: 30px;
  }
}
@media only screen and (max-width: 449px) {
  .video-section-02 .feature .edubin-countdown .single-countdown .count {
    font-size: 24px;
  }
}
.video-section-02 .feature .edubin-countdown .single-countdown .value {
  margin-top: 20px;
}
@media only screen and (max-width: 575px) {
  .video-section-02 .feature .edubin-countdown .single-countdown .value {
    margin-top: 15px;
  }
}
.video-section-02 .feature .video-btn {
  padding-top: 45px;
}
.video-section-02 .feature .video-btn ul li {
  display: inline-block;
  margin-right: 25px;
}
.video-section-02 .feature .video-btn ul li:last-child {
  margin-right: 0;
}
.video-section-02 .feature .video-btn ul li .btn {
  margin-top: 15px;
}

.video-section-03 {
  padding-top: 210px;
  padding-bottom: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.video-section-03::before {
  background: var(--secondary-color) none repeat scroll 0 0;
  content: "";
  height: 100%;
  opacity: 0.4;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.video-section-03 .video-content .title {
  font-size: 52px;
  line-height: 62px;
  color: #ffffff;
}
.video-section-03 .video-content .title span {
  color: var(--primary-color);
}
.video-section-03 .video-content .video {
  margin-top: 35px;
}
.video-section-03 .video-content .video a {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 18px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
}
.video-section-03 .video-content .video a:hover {
  background: #ffffff;
  color: var(--primary-color);
}

@media only screen and (max-width: 1199px) {
  .video-section-03 {
    padding-top: 130px;
    padding-bottom: 220px;
  }
  .video-section-03 .video-content .title {
    font-size: 48px;
    line-height: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .video-section-03 {
    padding-top: 90px;
    padding-bottom: 205px;
  }
  .video-section-03 .video-content .title {
    font-size: 36px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 575px) {
  .video-section-03 .video-content .title {
    font-size: 30px;
    line-height: 42px;
  }
}

.video-section-04 {
  padding-top: 135px;
  position: relative;
  z-index: 1;
}
.video-section-04 .shape-1 {
  position: absolute;
  left: 22%;
  top: 12%;
  z-index: -1;
  animation: round-01 5s linear infinite;
}
.video-section-04 .shape-2 {
  position: absolute;
  right: 23%;
  bottom: -30%;
  z-index: -1;
  animation: rotate-style 20s linear infinite;
}
.video-section-04 .video-wrap {
  max-width: 960px;
  padding-top: 200px;
  padding-bottom: 210px;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  margin-bottom: -100px;
  z-index: 1;
}
.video-section-04 .video-wrap::before {
  background: #000 none repeat scroll 0 0;
  content: "";
  height: 100%;
  opacity: 0.5;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.video-section-04 .video-content .video a {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 18px;
  background-color: #3bbc9b;
  color: #ffffff;
  border-radius: 50%;
}
.video-section-04 .video-content .video a:hover {
  background: #ffffff;
  color: #3bbc9b;
}

@media only screen and (max-width: 1199px) {
  .video-section-04 .shape-2 {
    right: 13%;
    bottom: -41%;
  }
  .video-section-04 .video-wrap {
    padding-top: 150px;
    padding-bottom: 170px;
  }
}

@keyframes rotate-style {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--
/*  09 - Teacher CSS
/*----------------------------------------*/
.edubin-teachers-section .teachers-cont p {
  margin-top: 30px;
}
.edubin-teachers-section .teachers-cont .btn {
  margin-top: 50px;
}
.edubin-teachers-section .teachers-item-wrap {
  margin-top: -30px;
}
@media only screen and (max-width: 991px) {
  .edubin-teachers-section .teachers-item-wrap {
    margin-top: 0;
    padding-top: 20px;
  }
}

.single-teachers {
  position: relative;
  margin-top: 30px;
}
.single-teachers .image {
  overflow: hidden;
}
.single-teachers .image a {
  display: block;
}
.single-teachers .image a img {
  border-radius: 5px;
  width: 100%;
}
.single-teachers .cont {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  width: 80%;
  background-color: #fff;
  border-radius: 5px;
  margin: 0 auto;
  padding: 15px;
}
.single-teachers .cont .name {
  color: var(--secondary-color);
  font-size: 16px;
}
.single-teachers .cont p {
  font-size: 14px;
  color: var(--primary-color-2);
  font-weight: 600;
}
.single-teachers .cont .teachers-social {
  margin-bottom: -30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.single-teachers .cont .teachers-social ul {
  margin-top: 5px;
}
.single-teachers .cont .teachers-social ul li {
  display: inline-block;
}
.single-teachers .cont .teachers-social ul li + li {
  margin-left: 10px;
}
.single-teachers .cont .teachers-social ul li a {
  font-size: 16px;
  color: var(--secondary-color);
}
.single-teachers .cont .teachers-social ul li a:hover {
  color: #ffc600;
}
.single-teachers:hover .cont .teachers-social {
  margin-bottom: 0;
  visibility: visible;
  opacity: 1;
}

.edubin-teachers-section-02 {
  background: #f9f9f9;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.edubin-teachers-section-02 .teachers-2 {
  padding-top: 20px;
}

.teachers-2-single {
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 40px 20px;
  margin-top: 30px;
}
.teachers-2-single .thum img {
  border-radius: 50%;
}
.teachers-2-single .cont {
  flex: 1;
  margin-left: 20px;
}
.teachers-2-single .cont .name {
  font-size: 18px;
  color: #23252a;
  margin-bottom: 4px;
  transition: all 0.3s linear;
}
.teachers-2-single .cont .name:hover {
  color: #ffc600;
}
.teachers-2-single .cont p {
  font-size: 14px;
  font-weight: 600;
  color: #999898;
}
.teachers-2-single .cont span {
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: 500;
}
.teachers-2-single .cont span i {
  color: #ffc600;
  margin-right: 5px;
}

.happy-student {
  background-color: var(--secondary-color);
  padding-top: 65px;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 80px;
  border-radius: 5px;
  margin-left: 20px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .happy-student {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .happy-student {
    margin-left: 0;
    margin-top: 50px;
    padding-left: 60px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .happy-student {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.happy-student .happy-title .title {
  font-size: 36px;
  color: #fff;
  padding-bottom: 60px;
}
@media only screen and (max-width: 575px) {
  .happy-student .happy-title .title {
    font-size: 28px;
  }
}
.happy-student .student-image {
  position: absolute;
  bottom: 0;
  right: 0;
}

.single-student p {
  font-size: 16px;
  line-height: 28px;
  padding-bottom: 25px;
  color: #ffffff;
  margin-top: 20px;
  padding-right: 120px;
}
@media only screen and (max-width: 1199px) {
  .single-student p {
    padding-right: 70px;
  }
}
@media only screen and (max-width: 575px) {
  .single-student p {
    padding-right: 0;
  }
}
.single-student .name {
  color: #fff;
  font-size: 18px;
  font-weight: 600 !important;
  margin-bottom: 5px;
}
.single-student span {
  font-size: 15px;
  color: #ffffff;
}

.student-active .swiper-pagination {
  position: relative;
  margin-top: 40px;
}
.student-active .swiper-pagination .swiper-pagination-bullet {
  margin: 0 6px;
}

.edubin-teachers-section-03 .teachers-item-wrap {
  margin-top: 0;
  padding-top: 15px;
}

.teachers-grid-warp {
  margin-top: -30px;
}

/*--
/*  10 - Testimonial CSS
/*----------------------------------------*/
.edubin-testimonial-section {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.edubin-testimonial-section::before {
  background: var(--secondary-color) none repeat scroll 0 0;
  content: "";
  height: 100%;
  opacity: 0.8;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.edubin-testimonial-section .testimonial-slider-wrap {
  padding-top: 60px;
}
@media only screen and (max-width: 575px) {
  .edubin-testimonial-section .section-title {
    text-align: center;
  }
  .edubin-testimonial-section .section-title .sub-title::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.single-testimonial {
  position: relative;
}
.single-testimonial .testimonial-thum {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 575px) {
  .single-testimonial .testimonial-thum {
    position: relative;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    margin-top: 25px;
  }
}
.single-testimonial .testimonial-thum img {
  border-radius: 5px;
}
.single-testimonial .testimonial-thum .quote {
  position: absolute;
  right: -22px;
  top: -22px;
}
.single-testimonial .testimonial-thum .quote i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: #ffc600;
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
}
.single-testimonial .testimonial-cont {
  padding-left: 140px;
}
@media only screen and (max-width: 575px) {
  .single-testimonial .testimonial-cont {
    padding-left: 0;
    text-align: center;
    margin-top: 30px;
  }
}
.single-testimonial .testimonial-cont p {
  color: #ffffff;
  padding-bottom: 32px;
}
.single-testimonial .testimonial-cont .name {
  font-size: 18px;
  color: #ffffff;
  padding-bottom: 4px;
}
.single-testimonial .testimonial-cont span {
  color: #fff;
  font-size: 16px;
}

.testimonial-active .swiper-pagination {
  position: relative;
  margin-top: 50px;
}
.testimonial-active .swiper-pagination .swiper-pagination-bullet {
  margin: 0 6px;
}

.edubin-testimonial-section-02 .testimonial-wrap {
  background: #f9eee1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding-top: 65px;
  padding-bottom: 110px;
  padding-left: 60px;
  padding-right: 60px;
}
.edubin-testimonial-section-02 .single-testimonial {
  background: #ffffff;
  border-radius: 10px;
  margin-top: 50px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-right: 5px;
}
.edubin-testimonial-section-02 .single-testimonial .testimonial-content {
  padding: 50px;
}
.edubin-testimonial-section-02 .single-testimonial .testimonial-content p {
  color: #29303b;
}
.edubin-testimonial-section-02
  .single-testimonial
  .testimonial-content
  .testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.edubin-testimonial-section-02
  .single-testimonial
  .testimonial-content
  .testimonial-author
  .author-thumb
  img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.edubin-testimonial-section-02
  .single-testimonial
  .testimonial-content
  .testimonial-author
  .author-text {
  margin-left: 25px;
}
.edubin-testimonial-section-02
  .single-testimonial
  .testimonial-content
  .testimonial-author
  .author-text
  .name {
  display: block;
  font-size: 18px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #29303b;
  margin-bottom: 5px;
}
.edubin-testimonial-section-02
  .single-testimonial
  .testimonial-content
  .testimonial-author
  .author-text
  .designation {
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--text-color);
}

.testimonial-2-active .swiper-pagination {
  position: relative;
  margin-top: 40px;
}
.testimonial-2-active .swiper-pagination .swiper-pagination-bullet {
  background-color: #ffffff;
}
.testimonial-2-active
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ff773d;
}

.edubin-testimonial-section-03 .testimonial-title-wrap {
  background-color: #eff6f9;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-bottom: 245px;
}
@media only screen and (max-width: 991px) {
  .edubin-testimonial-section-03 .testimonial-title-wrap {
    padding-bottom: 220px;
  }
}
.edubin-testimonial-section-03 .testimonial-slider-wrap {
  background: #ffffff;
  padding: 50px;
  padding-right: 80px;
  margin-top: -170px;
}
@media only screen and (max-width: 991px) {
  .edubin-testimonial-section-03 .testimonial-slider-wrap {
    padding: 50px;
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .edubin-testimonial-section-03 .testimonial-slider-wrap {
    padding: 35px;
  }
}

@media only screen and (max-width: 991px) {
  .single-testimonial-02 {
    margin-top: 50px;
  }
}
.single-testimonial-02 .testimonial-cont p {
  color: #383b46;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
}
.single-testimonial-02 .testimonial-cont .name {
  font-size: 18px;
  color: #000000;
  font-weight: 700;
  padding-bottom: 5px;
}
.single-testimonial-02 .testimonial-cont span {
  color: #7b7b7b;
  font-size: 14px;
}

.testimonial-3-active .swiper-pagination {
  text-align: left;
  position: relative;
  margin-top: 40px;
}
@media only screen and (max-width: 991px) {
  .testimonial-3-active .swiper-pagination {
    text-align: center;
  }
}
.testimonial-3-active .swiper-pagination .swiper-pagination-bullet {
  background-color: #e3e3e3;
}
.testimonial-3-active
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #2babe4;
}

.edubin-testimonial-section-04 {
  background: #f5f6f9;
  background-position: center center;
  background-repeat: no-repeat;
}
.edubin-testimonial-section-04 .testimonial-content-wrap-02 {
  padding-top: 40px;
}

.single-testimonial-03 {
  background: #ffffff;
  border-radius: 20px;
  width: 470px;
  margin: 10px 80px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .single-testimonial-03 {
    margin: 10px auto;
  }
}
@media only screen and (max-width: 767px) {
  .single-testimonial-03 {
    width: 100%;
    text-align: center;
    border-radius: 20px 20px 20px 20px;
  }
}
.single-testimonial-03 .testimonial-thumb {
  position: absolute;
  left: -15%;
  top: 50%;
  transform: translateY(-65%);
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .single-testimonial-03 .testimonial-thumb {
    position: relative;
    text-align: center;
    left: 0;
    top: 0;
    padding-top: 40px;
    margin-bottom: 15px;
    transform: translateY(0%);
  }
}
.single-testimonial-03 .testimonial-thumb img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
}
.single-testimonial-03 .testimonial-content {
  padding: 50px 110px 60px;
  padding-right: 40px;
}
@media only screen and (max-width: 767px) {
  .single-testimonial-03 .testimonial-content {
    padding: 15px 45px 50px;
  }
}
@media only screen and (max-width: 449px) {
  .single-testimonial-03 .testimonial-content {
    padding: 15px 30px 50px;
  }
}
.single-testimonial-03 .testimonial-content i {
  font-size: 48px;
  color: #3bbc9b;
}
.single-testimonial-03 .testimonial-content p {
  font-size: 22px;
  line-height: 36px;
  font-weight: 400;
  color: #7a7a7a;
  margin-top: 15px;
  margin-bottom: 10px;
}
.single-testimonial-03 .testimonial-content .name {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--secondary-color);
}

.testimonial-04-active .swiper-pagination {
  text-align: center;
  position: relative;
  margin-top: 50px;
}
.testimonial-04-active .swiper-pagination .swiper-pagination-bullet {
  background-color: #e3e3e3;
}
.testimonial-04-active
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #3bbc9b;
}

.single-testimonial-04 .testimonial-cont {
  padding: 40px;
  margin: 0 0px 35px 0;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.4588235294);
  position: relative;
}
.single-testimonial-04 .testimonial-cont::before {
  content: "";
  border: 15px solid transparent;
  position: absolute;
  left: 40px;
  bottom: -30px;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 15px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(0, 0, 0, 0.4588235294);
}
.single-testimonial-04 .testimonial-cont .title {
  color: #fff;
  font-size: 26px;
  margin-bottom: 15px;
}
.single-testimonial-04 .testimonial-cont p {
  color: #ffffff;
}
.single-testimonial-04 .testimonial-author-wrap {
  display: flex;
  align-items: center;
}
.single-testimonial-04 .testimonial-author-wrap .testimonial-thum img {
  border: 2px solid #ffffff;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  -o-object-fit: cover;
  object-fit: cover;
}
.single-testimonial-04 .testimonial-author-wrap .testimonial-author-text {
  flex: 1;
  margin-left: 25px;
}
.single-testimonial-04 .testimonial-author-wrap .testimonial-author-text .name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}
.single-testimonial-04 .testimonial-author-wrap .testimonial-author-text span {
  color: #ddd;
  font-size: 15px;
}

.edubin-testimonial-section-05
  .testimonial-3-active
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #3bbc9b;
}

.edubin-testimonial-section-06::before {
  background: #000 none repeat scroll 0 0;
  opacity: 0.65;
}
.edubin-testimonial-section-06 .single-testimonial {
  position: relative;
}
.edubin-testimonial-section-06 .single-testimonial .testimonial-thum .quote i {
  background-color: #0071dc;
}
.edubin-testimonial-section-06
  .testimonial-active
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0071dc;
}

.edubin-testimonial-section-07 {
  background: #ffffff;
}
.edubin-testimonial-section-07 .single-testimonial-03 {
  background: #ffffff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
}
.edubin-testimonial-section-07 .single-testimonial-03 .testimonial-content i {
  color: #0071dc;
}
.edubin-testimonial-section-07 .testimonial-04-active .swiper-pagination {
  text-align: center;
  position: relative;
  margin-top: 50px;
}
.edubin-testimonial-section-07
  .testimonial-04-active
  .swiper-pagination
  .swiper-pagination-bullet {
  background-color: #e3e3e3;
}
.edubin-testimonial-section-07
  .testimonial-04-active
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0071dc;
}

.edubin-testimonial-section-08 {
  padding-bottom: 80px;
}
.edubin-testimonial-section-08 .section-title2 .title span {
  color: #0071dc;
}

/*--
/*  11 - Publication CSS
/*----------------------------------------*/
.edubin-publication-section {
  background-color: #f9f9f9;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.edubin-publication-section .publication-btn {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .edubin-publication-section .publication-btn {
    text-align: left;
    margin-top: 30px;
  }
}
.edubin-publication-section .publication-content-wrap {
  padding-top: 15px;
}

.single-publication {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-top: 30px;
}
.single-publication .image {
  height: 320px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}
.single-publication .image::before {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-out;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: all 0.3s linear;
}
.single-publication .image a img {
  width: 100%;
}
.single-publication .image .top-meta {
  position: absolute;
  left: 15px;
  top: 15px;
}
.single-publication .image .top-meta ul li {
  display: inline-block;
  padding: 0px 13px;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
  display: inline-block;
  background: #ffc600;
  color: #ffffff;
  height: 28px;
  border-radius: 5px;
}
.single-publication .image .top-meta ul li:last-child {
  margin-left: 7px;
  background: #ff4830;
}
.single-publication .content {
  padding: 20px 10px 20px 10px;
}
.single-publication .content .add-cart {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.single-publication .content .add-cart .btn {
  height: 50px;
  line-height: 50px;
  font-size: 15px;
  padding: 0 15px;
}
.single-publication .content .book-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 3px;
}
.single-publication .content .price .discount-price {
  font-size: 14px;
  color: #505050;
  font-weight: 500;
  position: relative;
}
.single-publication .content .price .discount-price::before {
  position: absolute;
  content: "";
  background-color: #505050;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.single-publication .content .price .normal-price {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #ffc600;
}
.single-publication:hover .image::before {
  opacity: 1;
  visibility: visible;
}
.single-publication:hover .content .add-cart {
  transform: translate(-50%, -100%);
  opacity: 1;
  visibility: visible;
}

/*--
/*  12 - Blog CSS
/*----------------------------------------*/
.blog-content-wrap {
  padding-top: 15px;
}

.single-blog {
  margin-top: 30px;
}
.single-blog .blog-img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.single-blog .blog-img a {
  display: block;
}
.single-blog .blog-img a img {
  width: 100%;
  transition: all 0.3s linear;
}
.single-blog .blog-content {
  padding-top: 25px;
}
.single-blog .blog-content .meta {
  padding-bottom: 20px;
}
.single-blog .blog-content .meta .blog-meta {
  font-size: 14px;
  color: var(--text-color);
  position: relative;
  margin-right: 10px;
}
.single-blog .blog-content .meta .blog-meta i {
  color: #ffc600;
  margin-right: 2px;
}
.single-blog .blog-content .title {
  font-size: 24px;
  line-height: 1.3;
  color: #002e5b;
  padding-right: 15px;
}
@media only screen and (max-width: 991px) {
  .single-blog .blog-content .title {
    padding-right: 0;
  }
}
.single-blog .blog-content p {
  margin-top: 15px;
}
.single-blog:hover .blog-img a img {
  transform: scale(1.1);
}

.edubin-blog-section-02 .course-btn {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .edubin-blog-section-02 .course-btn {
    text-align: left;
    margin-top: 25px;
  }
}
.edubin-blog-section-02 .course-btn .btn {
  background: #3bbc9b;
  margin-top: 0;
  color: #ffffff;
}
.edubin-blog-section-02 .course-btn .btn:hover {
  background: var(--secondary-color);
}
.edubin-blog-section-02 .single-blog .blog-img a {
  display: block;
}
.edubin-blog-section-02 .single-blog .blog-img a img {
  height: 320px;
  -o-object-fit: cover;
  object-fit: cover;
}
.edubin-blog-section-02 .single-blog .blog-content {
  padding-right: 15px;
}
.edubin-blog-section-02 .single-blog .blog-content .meta .blog-meta i {
  color: #3bbc9b;
}
.edubin-blog-section-02 .single-blog .blog-content .title {
  font-size: 18px;
  line-height: 1.3;
  color: var(--secondary-color);
  padding-right: 15px;
}
.edubin-blog-section-02 .single-blog .blog-content .title a:hover {
  color: #3bbc9b;
}
.edubin-blog-section-02 .single-blog .blog-content p {
  margin-top: 15px;
}

.edubin-blog-section-03 .single-blog {
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  border-radius: 10px;
}
.edubin-blog-section-03 .single-blog .blog-content {
  padding: 30px;
}
.edubin-blog-section-03 .single-blog .blog-content .meta .blog-meta i {
  color: var(--primary-color);
}
.edubin-blog-section-03 .single-blog .blog-content .title {
  font-size: 24px;
}
.edubin-blog-section-03 .single-blog .blog-content .title a:hover {
  color: var(--primary-color);
}
.edubin-blog-section-03 .single-blog .blog-content p {
  margin-top: 15px;
  color: var(--text-color);
}

.blog-grid-wrap {
  margin-top: -30px;
}

.edubin-pagination .pagination {
  margin-top: 90px;
}
@media only screen and (max-width: 575px) {
  .edubin-pagination .pagination {
    margin-top: 60px;
  }
}
.edubin-pagination .pagination .page-item {
  margin: 0 7px;
}
.edubin-pagination .pagination .page-item.active .page-link {
  background-color: #0071dc;
  border-color: #0071dc;
  color: #ffffff;
}
.edubin-pagination .pagination .page-item .page-link {
  width: 45px;
  height: 45px;
  padding: 0;
  line-height: 44px;
  font-size: 16px;
  text-align: center;
  color: var(--secondary-color);
  border: 1px solid #ebebeb;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s linear;
}
.edubin-pagination .pagination .page-item .page-link:focus {
  box-shadow: none;
}
.edubin-pagination .pagination .page-item .page-link:hover {
  background: #0071dc;
  border-color: #0071dc;
  color: #ffffff;
}
.edubin-pagination .pagination .page-item .page-link i {
  line-height: 32px;
  font-size: 13px;
}

.edubin-blog-section-04 .single-blog .blog-content .meta .blog-meta a:hover {
  color: #0071dc;
}
.edubin-blog-section-04 .single-blog .blog-content .meta .blog-meta i {
  color: #0071dc;
}
.edubin-blog-section-04 .single-blog .blog-content .title {
  font-size: 24px;
}
.edubin-blog-section-04 .single-blog .blog-content .title a:hover {
  color: #0071dc;
}

/*--
/*  13 - Brand CSS
/*----------------------------------------*/
.edubin-brand-section {
  background: #f9f9f9;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 80px;
  padding-bottom: 80px;
}

.edubin-brand-section-02 .brand-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 60px;
}

.edubin-brand-section-03 {
  padding-top: 60px;
}
@media only screen and (max-width: 991px) {
  .edubin-brand-section-03 {
    padding-top: 30px;
  }
}

.edubin-brand-section-04 {
  background: #f5f6f9;
}
.edubin-brand-section-04 .brand-title {
  font-size: 38px;
}
.edubin-brand-section-04 .brand-title span {
  color: #3bbc9b;
}

/*--
/*  14 - Counter CSS
/*----------------------------------------*/
.counter-section {
  padding-bottom: 120px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .counter-section {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .counter-section {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .counter-section {
    padding-bottom: 60px;
  }
}
.counter-section::before {
  background: var(--secondary-color) none repeat scroll 0 0;
  opacity: 0.8;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.counter-wrap {
  margin-top: -30px;
}

.single-counter {
  margin-top: 30px;
}
.single-counter span {
  font-size: 45px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
}
.single-counter span::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 50px;
  height: 3px;
  transform: translateX(-50%);
  background: #ffc600;
}
.single-counter p {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 40px;
}

.counter-section-02 {
  background: #edf0f2;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.counter-section-02 .single-counter span {
  color: #333333;
}
.counter-section-02 .single-counter p {
  color: var(--secondary-color);
}

.edubin-counter-section-03 .counter-wrap {
  margin-top: -120px;
  position: relative;
  z-index: 1;
}

.single-counter-02 {
  background: #ffffff;
  box-shadow: 0px 0px 90px 0px rgba(0, 0, 0, 0.16);
  width: 205px;
  height: 205px;
  text-align: center;
  border-radius: 50%;
  padding: 55px 10px;
  margin: 0 auto;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .single-counter-02 {
    width: 190px;
    height: 190px;
  }
}
.single-counter-02 .title {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .single-counter-02 .title {
    font-size: 40px;
  }
}
.single-counter-02 p {
  font-size: 15px;
  color: #000000;
  margin-top: -5px;
}

.counter-section-04 {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 35px;
  padding-bottom: 65px;
}
@media only screen and (max-width: 991px) {
  .counter-section-04 .counter-title-wrap {
    padding-bottom: 20px;
    text-align: center;
  }
}
.counter-section-04 .counter-title-wrap .title {
  font-size: 36px;
  color: #ffffff;
}

.single-counter-03 {
  margin-top: 30px;
}
.single-counter-03 .icon {
  margin-bottom: 25px;
}
.single-counter-03 span {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}
.single-counter-03 p {
  font-size: 14px;
  color: #ffffff;
}

.counter-section-05 {
  background: #e9f3f9;
  padding-top: 35px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.counter-section-05 .shape-1 {
  position: absolute;
  left: -15px;
  top: -15px;
  z-index: -1;
}
.counter-section-05 .shape-2 {
  position: absolute;
  right: -15px;
  bottom: -15px;
  z-index: -1;
}
.counter-section-05 .single-counter-03 {
  margin-top: 30px;
}
.counter-section-05 .single-counter-03 .icon {
  margin-bottom: 25px;
}
.counter-section-05 .single-counter-03 span {
  font-size: 36px;
  font-weight: 700;
  color: #0071dc;
}
.counter-section-05 .single-counter-03 p {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  color: #555555;
}

.counter-section-06 .counter-wrap-03 {
  margin-top: -30px;
}

.single-counter-04 {
  margin-top: 30px;
  background: #fff7ef;
  border-radius: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
.single-counter-04.item-2 {
  background: #eefaf8;
}
.single-counter-04.item-2 span {
  color: #3bbc9b;
}
.single-counter-04.item-3 {
  background: #f7f3ff;
}
.single-counter-04.item-3 span {
  color: #9b51e0;
}
.single-counter-04.item-4 {
  background: #fffaef;
}
.single-counter-04.item-4 span {
  color: #f8941f;
}
.single-counter-04 span {
  font-size: 34px;
  font-weight: 700;
  color: #ee4a62;
}
.single-counter-04 p {
  font-size: 15px;
  color: var(--text-color);
}

.bg-color {
  background-color: #e9f3f9;
}

.counter-section-07 .counter-wrap-03 {
  position: relative;
  width: 100%;
  height: max-content;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
  align-content: center;
  padding: 50px;
}

@media only screen and (200px <= width <= 768px) {
  .counter-wrap-03 {
    height: 100% !important;
  }
}

.counter-section-07 .counter-wrap-03::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--secondary-color);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.counter-section-07 .single-counter-03 {
  margin: 10px 0px;
  position: relative;
}
.counter-section-07 .single-counter-03::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background: #ffffff;
  width: 1px;
  height: 78px;
  transform: translateY(-50%);
}
.counter-section-07 .single-counter-03.item-4::before {
  display: none;
}
.counter-section-07 .single-counter-03 span {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}
.counter-section-07 .single-counter-03 p {
  font-size: 16px;
  color: #ffffff;
}

@media only screen and (max-width: 991px) {
  .counter-section-07 .single-counter-03::before {
    display: none;
  }
}

.counter-section-08 .counter-wrap-03 {
  margin-top: -30px;
}
.counter-section-08 .counter-cont-wrap {
  padding-top: 30px;
  padding-right: 50px;
}
@media only screen and (max-width: 1199px) {
  .counter-section-08 .counter-cont-wrap {
    padding-right: 0;
  }
}
.counter-section-08 .counter-cont-wrap .title {
  font-size: 36px;
  color: var(--secondary-color);
}
@media only screen and (max-width: 575px) {
  .counter-section-08 .counter-cont-wrap .title {
    font-size: 30px;
  }
}
.counter-section-08 .counter-cont-wrap .text {
  color: var(--text-color);
  margin-top: 20px;
}

.counter-section-09::before {
  background: #000 none repeat scroll 0 0;
  opacity: 0.65;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.counter-section-09 .single-counter span::before {
  background: #0071dc;
}

/*--
/*  15 - Countdown CSS
/*----------------------------------------*/
.countdown-section {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.countdown-section::before {
  background: var(--secondary-color) none repeat scroll 0 0;
  content: "";
  opacity: 0.8;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  .countdown-section .countdown-cont {
    padding-right: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .countdown-section .countdown-cont {
    padding-right: 150px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .countdown-section .countdown-cont {
    padding-right: 0;
  }
}
.countdown-section .countdown-cont .sub-title {
  font-size: 30px;
  color: #fff;
  font-weight: 500;
  padding-bottom: 5px;
}
@media only screen and (max-width: 575px) {
  .countdown-section .countdown-cont .sub-title {
    font-size: 24px;
  }
}
.countdown-section .countdown-cont .title {
  font-size: 72px;
  color: #ffc600;
  font-weight: 700;
  padding-bottom: 37px;
}
@media only screen and (max-width: 767px) {
  .countdown-section .countdown-cont .title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 575px) {
  .countdown-section .countdown-cont .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .countdown-section .countdown-cont .title {
    font-size: 42px;
  }
}
.countdown-section .category-form {
  margin-top: 0;
}
.countdown-section .category-form .form-title {
  background-color: #ffc600;
}
.countdown-section .category-form .form-title .title {
  color: var(--secondary-color);
}
.countdown-section .category-form .form-title span {
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary-color);
}

.edubin-countdown {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.edubin-countdown .single-countdown {
  text-align: center;
  position: relative;
  padding: 40px 15px;
  min-width: 115px;
  height: 115px;
  line-height: 115px;
  border: 3px solid #fff;
  border-radius: 50%;
}
@media only screen and (max-width: 575px) {
  .edubin-countdown .single-countdown {
    padding: 26px 15px;
    min-width: 90px;
    height: 90px;
    line-height: 90px;
  }
}
@media only screen and (max-width: 449px) {
  .edubin-countdown .single-countdown {
    min-width: 70px;
    padding: 18px 10px;
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}
.edubin-countdown .single-countdown .count {
  font-size: 42px;
  line-height: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: block;
  color: #ffffff;
}
@media only screen and (max-width: 575px) {
  .edubin-countdown .single-countdown .count {
    font-size: 30px;
  }
}
@media only screen and (max-width: 449px) {
  .edubin-countdown .single-countdown .count {
    font-size: 24px;
  }
}
.edubin-countdown .single-countdown .value {
  font-size: 15px;
  line-height: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  display: block;
  color: #ffffff;
  margin-top: 25px;
  text-transform: capitalize;
}
@media only screen and (max-width: 575px) {
  .edubin-countdown .single-countdown .value {
    margin-top: 15px;
  }
}

/*--
/*  16 - Admission CSS
/*----------------------------------------*/
.edubin-admission-section {
  padding-bottom: 120px;
}
@media only screen and (max-width: 1199px) {
  .edubin-admission-section {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .edubin-admission-section {
    padding-bottom: 80px;
  }
}

.admission-wrap {
  margin-top: -30px;
}

.admission-item {
  background-color: var(--secondary-color);
  margin-top: 30px;
}
.admission-item .admission-image img {
  width: 100%;
}
.admission-item .admission-content {
  padding: 40px;
}
.admission-item .admission-content .title {
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 20px;
}
.admission-item .admission-content p {
  color: #fff;
}

.admission-info {
  background-color: var(--secondary-color);
  padding: 70px 40px;
  margin-top: 30px;
}
@media only screen and (max-width: 1199px) {
  .admission-info {
    padding: 45px 28px;
  }
}
.admission-info .admission-title {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 30px;
}
.admission-info p {
  color: #fff;
  padding-bottom: 31px;
}
.admission-info .help-line {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 15px;
}
.admission-info span {
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  color: #ffc600;
}

/*--
/*  17 - CTA CSS
/*----------------------------------------*/
.edubin-cta-section {
  background: #f9eee1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.edubin-cta-section .shape-3 {
  position: absolute;
  left: 65px;
  top: 140px;
  z-index: -1;
  animation: zoom-in 3s infinite;
}
.edubin-cta-section .cta-wrap {
  margin-top: -30px;
}

.cta-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px 40px;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
@media only screen and (max-width: 1199px) {
  .cta-item {
    padding: 40px 30px;
  }
}
.cta-item .shape-1 {
  position: absolute;
  right: 0;
  top: 45px;
  z-index: -1;
}
.cta-item .cta-content .title {
  font-size: 30px;
}
.cta-item .cta-content p {
  font-size: 14px;
  color: #383b46;
  padding-top: 20px;
}
.cta-item .cta-content .btn {
  height: 45px;
  line-height: 45px;
  background: #ff773d;
  color: #ffffff;
  margin-top: 20px;
}
.cta-item .cta-content .btn:hover {
  background: var(--secondary-color);
}
@media only screen and (max-width: 575px) {
  .cta-item .cta-img {
    text-align: center;
    margin-top: 30px;
  }
}
.cta-item .cta-img img {
  width: 135px;
  height: 135px;
  border-radius: 50%;
}

.edubin-cta-section-02 .cta-wrap {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 90px 90px 100px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: -120px;
  z-index: 1;
}
.edubin-cta-section-02 .cta-cont {
  padding-left: 290px;
}
.edubin-cta-section-02 .cta-cont .title {
  font-size: 30px;
  color: #ffffff;
}
.edubin-cta-section-02 .cta-btn {
  text-align: right;
}
.edubin-cta-section-02 .cta-btn .btn {
  background: #ffffff;
  border: 2px solid #ffffff;
  line-height: 50px;
  color: #000000;
}
.edubin-cta-section-02 .cta-btn .btn:hover {
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
}

@media only screen and (max-width: 1199px) {
  .edubin-cta-section-02 .cta-cont {
    padding-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .edubin-cta-section-02 .cta-wrap {
    padding: 80px 80px 90px;
  }
  .edubin-cta-section-02 .cta-btn {
    text-align: center;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .edubin-cta-section-02 .cta-wrap {
    padding: 70px 35px 80px;
  }
}

.edubin-cta-section-03 .cta-wrap {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.edubin-cta-section-03 .cta-cont .title {
  font-size: 52px;
  line-height: 62px;
  color: #ffffff;
}
@media only screen and (max-width: 1199px) {
  .edubin-cta-section-03 .cta-cont .title {
    font-size: 48px;
    line-height: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .edubin-cta-section-03 .cta-cont .title {
    font-size: 30px;
    line-height: 36px;
  }
}
.edubin-cta-section-03 .cta-cont .title span {
  color: var(--primary-color);
}
.edubin-cta-section-03 .cta-cont .cta-btn {
  margin-top: 25px;
}
.edubin-cta-section-03 .cta-cont .cta-btn ul li {
  display: inline-block;
  margin-right: 15px;
  margin-top: 15px;
}
.edubin-cta-section-03 .cta-cont .cta-btn ul li:last-child {
  margin-right: 0;
}
.edubin-cta-section-03 .cta-cont .cta-btn ul li .btn {
  background: var(--primary-color);
  color: #ffffff;
}
.edubin-cta-section-03 .cta-cont .cta-btn ul li .btn:hover {
  color: #ffffff;
  background: #ff3e4b;
}
.edubin-cta-section-03 .cta-cont .cta-btn ul li .btn-white {
  border: 2px solid #ffffff;
  line-height: 48px;
  background: transparent;
  color: #ffffff;
}
.edubin-cta-section-03 .cta-cont .cta-btn ul li .btn-white:hover {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
/*--
/*  18 - Features CSS
/*----------------------------------------*/
.features-content-wrap {
  padding-top: 10px;
}

.features-item {
  margin-top: 30px;
}
.features-item .features-content {
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .features-item .features-content {
    padding: 0;
  }
}
.features-item .features-content .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #383b46;
  margin-top: 20px;
}
.features-item .features-content p {
  color: #383b46;
}

.edubin-features-section-02 {
  background-color: #eff6f9;
  padding-top: 15px;
  padding-bottom: 45px;
}

.features-item-02 {
  display: flex;
  align-items: center;
  border: 1px dashed #2babe4;
  padding: 25px;
  border-radius: 0 40px 40px 40px;
  margin-top: 30px;
}
.features-item-02.features-02 {
  border-radius: 40px 40px 0px 40px;
}
.features-item-02 .features-content {
  flex: 1;
  margin-left: 25px;
}
.features-item-02 .features-content .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #383b46;
}
.features-item-02 .features-content p {
  color: #383b46;
  font-size: 14px;
}

.edubin-features-section-03 {
  background: #0071dc;
  padding-top: 30px;
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}
.edubin-features-section-03 .shape-1 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.features-item-03 {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.features-item-03 .features-content {
  flex: 1;
  margin-left: 25px;
}
.features-item-03 .features-content .title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.edubin-features-section-04 .category-form {
  margin-top: -380px;
}
@media only screen and (max-width: 991px) {
  .edubin-features-section-04 .category-form {
    margin-top: 50px;
  }
}
.edubin-features-section-04 .category-form .form-title {
  background-color: #ffffff;
  padding-top: 45px;
  padding-bottom: 0;
}
.edubin-features-section-04 .category-form .form-title .title {
  color: #000000;
}
.edubin-features-section-04 .category-form .form-title span {
  font-size: 17px;
  color: var(--secondary-color);
}
.edubin-features-section-04 .category-form .main-form .single-form .btn {
  background: #3bbc9b;
  color: #ffffff;
}
.edubin-features-section-04 .category-form .main-form .single-form .btn:hover {
  background: var(--secondary-color);
}
.edubin-features-section-04 .features-content-wrap {
  margin-top: -30px;
  padding-top: 0;
}

.features-item-04 {
  margin-top: 30px;
}
.features-item-04 .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background: #3bbc9b;
  font-size: 30px;
  color: #ffffff;
}
.features-item-04 .cont .title {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--secondary-color);
  margin-top: 20px;
}
.features-item-04 .cont p {
  color: var(--text-color);
}

.edubin-features-section-05 .features-wrap {
  margin-top: -30px;
}

.features-item-05 {
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 40px 40px 50px 40px;
  margin-top: 30px;
}
.features-item-05 .features-content .title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #000000;
  margin-top: 20px;
}
.features-item-05 .features-content p {
  color: var(--text-color);
  margin-top: 20px;
}

/*--
/*  19 - Faq CSS
/*----------------------------------------*/
.edubin-faq-section {
  overflow: hidden;
}

.faq-left {
  position: relative;
  z-index: 1;
}
.faq-left .shape-1 {
  position: absolute;
  left: 7%;
  top: 10%;
  z-index: -1;
}
.faq-left .shape-2 {
  position: absolute;
  left: 15%;
  top: 5%;
  z-index: -1;
}
.faq-left .shape-3 {
  position: absolute;
  left: 3%;
  bottom: 1%;
  z-index: -1;
}
.faq-left .shape-4 {
  position: absolute;
  right: 12%;
  bottom: 3%;
  z-index: -1;
}
.faq-left .image {
  padding-left: 95px;
}

@media only screen and (max-width: 991px) {
  .faq-left .shape-4 {
    right: 30%;
  }
}
@media only screen and (max-width: 575px) {
  .faq-left .shape-1 {
    left: 2%;
  }
}

@media only screen and (max-width: 991px) {
  .faq-accordion {
    margin-top: 60px;
  }
}
.faq-accordion .accordion-item {
  border: 0;
  border-radius: 10px;
  box-shadow: 0px 0px 161px 0px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}
.faq-accordion .accordion-item:first-of-type {
  margin-top: 0;
}
.faq-accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.faq-accordion .accordion-item:last-of-type .accordion-button {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.faq-accordion .accordion-item .accordion-button {
  padding: 20px 35px;
  border-radius: 10px;
}
.faq-accordion .accordion-item .accordion-button .title {
  font-size: 16px;
  color: #222222;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}
.faq-accordion .accordion-item .accordion-button::after {
  position: absolute;
  content: "+";
  border: none;
  width: 30px;
  height: 30px;
  line-height: 25px;
  font-size: 35px;
  font-weight: 400;
  text-align: center;
  color: #222222;
  background: none;
  right: 30px;
  transition: all 0.3s ease-out 0s;
}
.faq-accordion .accordion-item .accordion-body {
  font-size: 16px;
  padding: 25px 35px;
}
.faq-accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: #3bbc9b;
  box-shadow: none;
}
.faq-accordion .accordion-item .accordion-button:not(.collapsed) .title {
  color: #ffffff;
}
.faq-accordion .accordion-item .accordion-button:not(.collapsed)::after {
  position: absolute;
  content: "-";
  border: none;
  width: 30px;
  height: 30px;
  line-height: 20px;
  text-align: center;
  background: none;
  transform: rotate(0);
}

.faq-accordion-wrapper {
  display: flex;
  padding-top: 40px;
}
@media only screen and (max-width: 991px) {
  .faq-accordion-wrapper {
    display: block;
  }
}
.faq-accordion-wrapper .faq-col {
  width: 50%;
}
@media only screen and (max-width: 991px) {
  .faq-accordion-wrapper .faq-col {
    width: 100%;
  }
}
.faq-accordion-wrapper .faq-col:first-child {
  padding-right: 25px;
}
@media only screen and (max-width: 991px) {
  .faq-accordion-wrapper .faq-col:first-child {
    padding-right: 0px;
  }
}
.faq-accordion-wrapper .faq-col:last-child {
  padding-left: 25px;
}
@media only screen and (max-width: 991px) {
  .faq-accordion-wrapper .faq-col:last-child {
    padding-left: 0px;
  }
}

@media only screen and (max-width: 991px) {
  .faq-section-02 .faq-accordion {
    margin-top: 0px;
  }
}
.faq-section-02 .faq-accordion .accordion-item:first-of-type {
  margin-top: 20px;
}
.faq-section-02 .faq-accordion .accordion-item .accordion-button .title {
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.faq-section-02 .faq-accordion .accordion-item .accordion-button::after {
  position: absolute;
  content: "+";
  border: none;
  width: 30px;
  height: 30px;
  line-height: 25px;
  font-size: 35px;
  font-weight: 400;
  text-align: center;
  color: #222222;
  background: none;
  right: 30px;
  transition: all 0.3s ease-out 0s;
}
.faq-section-02 .faq-accordion .accordion-item .accordion-body {
  font-size: 16px;
  padding: 25px 30px;
}
.faq-section-02 .faq-accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.faq-section-02
  .faq-accordion
  .accordion-item
  .accordion-button:not(.collapsed) {
  background-color: #0071dc;
  box-shadow: none;
}
.faq-section-02
  .faq-accordion
  .accordion-item
  .accordion-button:not(.collapsed)
  .title {
  color: #ffffff;
}
.faq-section-02
  .faq-accordion
  .accordion-item
  .accordion-button:not(.collapsed)::after {
  position: absolute;
  content: "-";
  border: none;
  width: 30px;
  height: 30px;
  line-height: 20px;
  text-align: center;
  background: none;
  transform: rotate(0);
  color: #ffffff;
}

/*--
/*  16 - Page Banner CSS
/*----------------------------------------*/

@media only screen and (max-width: 991px) {
  .page-banner-section {
    min-height: 350px;
    padding-top: 82px;
  }
}

.page-banner .section-title .title {
  color: #ffffff;
}

.title-color {
  color: var(--primary-color);
}

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

.breadcrumb {
  margin-bottom: 0;
  margin-top: 15px;
}
.breadcrumb .breadcrumb-item {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #ffffff;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 8px;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f16e";
  font-family: flaticon !important;
  font-size: 11px;
  padding-right: 8px;
  position: relative;
  top: 0;
  color: #ffffff;
}
.breadcrumb .breadcrumb-item:hover a {
  color: #0071dc;
}
/*--
/*  12 - Blog List CSS
/*----------------------------------------*/
.blog-standard-section .blog-post-wrap {
  margin-top: -30px;
}
.blog-standard-section .single-blog {
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  border-radius: 10px;
}
.blog-standard-section .single-blog .blog-content {
  padding: 30px;
}
.blog-standard-section .single-blog .blog-content .meta .blog-meta a:hover {
  color: #0071dc;
}
.blog-standard-section .single-blog .blog-content .meta .blog-meta i {
  color: #0071dc;
}
.blog-standard-section .single-blog .blog-content .title {
  font-size: 24px;
}
.blog-standard-section .single-blog .blog-content .title a:hover {
  color: #0071dc;
}
.blog-standard-section .single-blog .blog-content p {
  margin-top: 15px;
  color: var(--text-color);
}

.blog-sidebar {
  margin-left: 50px;
  margin-top: -30px;
}
@media only screen and (max-width: 991px) {
  .blog-sidebar {
    margin-left: 0;
    margin-top: 50px;
  }
}

.sidebar-widget {
  margin-top: 30px;
}
.sidebar-widget .search-form {
  position: relative;
}
.sidebar-widget
  .search-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  width: 100%;
  height: 50px;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  padding-right: 35px;
  background: #f2f4f7;
  color: #415674;
  font-weight: 500;
  outline: none;
  overflow: hidden;
}
.sidebar-widget
  .search-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #898c94;
  font-weight: 400;
}
.sidebar-widget
  .search-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-moz-placeholder {
  opacity: 0.95;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #898c94;
  font-weight: 400;
}
.sidebar-widget
  .search-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-moz-placeholder {
  opacity: 0.95;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #898c94;
  font-weight: 400;
}
.sidebar-widget
  .search-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-ms-input-placeholder {
  opacity: 0.95;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #898c94;
  font-weight: 400;
}
.sidebar-widget .search-form button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 0;
  font-size: 14px;
  background: #0071dc;
  color: #ffffff;
  transition: all 0.3s linear;
}

.sidebar-widget .widget-title {
  margin-bottom: 25px;
}
.sidebar-widget .widget-title .title {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--secondary-color);
  display: inline-block;
}

.sidebar-widget .recent-posts ul li {
  margin-top: 30px;
}
.sidebar-widget .recent-posts ul li:first-child {
  margin-top: 0;
}
.sidebar-widget .recent-posts ul li .post-link {
  display: flex;
  align-items: center;
}
.sidebar-widget .recent-posts ul li .post-link .post-thumb {
  margin-right: 20px;
}
.sidebar-widget .recent-posts ul li .post-link .post-thumb img {
  border-radius: 6px;
  image-rendering: crisp-edges;
}
.sidebar-widget .recent-posts ul li .post-link .post-text {
  flex: 1;
}
.sidebar-widget .recent-posts ul li .post-link .post-text .title {
  font-size: 16px;
  line-height: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: all 0.3s linear;
  color: var(--secondary-color);
}
.sidebar-widget .recent-posts ul li .post-link .post-text .post-meta {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 24px;
  color: #838383;
  display: inline-block;
  margin-top: 5px;
}
.sidebar-widget .recent-posts ul li .post-link .post-text .post-meta i {
  color: #0071dc;
  margin-right: 5px;
}
.sidebar-widget .recent-posts ul li .post-link:hover .post-text .title {
  color: #0071dc;
}

.sidebar-widget .category .cate-item {
  margin-top: 15px;
}
.sidebar-widget .category .cate-item:first-child {
  padding-top: 0;
  margin-top: 0;
}
.sidebar-widget .category .cate-item a {
  display: flex;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
  transition: all 0.3s linear;
}
.sidebar-widget .category .cate-item a .post-count {
  margin-left: auto;
  align-items: flex-start;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  transition: all 0.3s linear;
}
.sidebar-widget .category .cate-item a .post-count:hover {
  color: #0071dc;
}
.sidebar-widget .category .cate-item a:hover {
  color: #0071dc;
}

.sidebar-widget .sidebar-tag li {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 4px;
}
.sidebar-widget .sidebar-tag li a {
  display: inline-block;
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-color);
  line-height: 18px;
  background: #f3f3f8;
  transition: all 0.3s linear;
}
.sidebar-widget .sidebar-tag li a:hover {
  background-color: #0071dc;
  color: #ffffff;
}

/*--
/*  18 - Blog Details CSS
/*----------------------------------------*/
.blog-details-post {
  margin-top: -30px;
}
.blog-details-post .single-blog .blog-img img {
  width: 100%;
}
.blog-details-post .single-blog .blog-content {
  padding-left: 0;
}
.blog-details-post .single-blog .blog-content .blog-meta {
  margin-bottom: 20px;
}
.blog-details-post .single-blog .blog-content .blog-meta span {
  margin-right: 10px;
}
.blog-details-post .single-blog .blog-content .blog-meta a:hover {
  color: #0071dc;
}
.blog-details-post .single-blog .blog-content .blog-meta i {
  color: #0071dc;
  margin-right: 3px;
}
.blog-details-post .single-blog .blog-content .title {
  font-size: 24px;
  color: var(--secondary-color);
}
.blog-details-post .single-blog .blog-content p {
  font-size: 16px;
  line-height: 30px;
}
.blog-details-post .blog-details-content .blog-quote {
  background-color: #f3f3f8;
  padding: 35px 40px 35px 30px !important;
  margin-top: 35px;
}
.blog-details-post .blog-details-content .blog-quote .blockquote {
  padding-left: 50px;
  margin-left: 20px;
  margin-bottom: 0;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .blog-details-post .blog-details-content .blog-quote .blockquote {
    padding-right: 0;
    margin-left: 0;
  }
}
.blog-details-post .blog-details-content .blog-quote .blockquote::before {
  content: "\f137";
  font-family: flaticon !important;
  font-size: 30px;
  line-height: 1;
  margin-right: 5px;
  position: absolute;
  top: 5px;
  left: 0;
  color: #0071dc;
}
.blog-details-post
  .blog-details-content
  .blog-quote
  .blockquote:not(:first-child) {
  margin-top: 25px;
}
.blog-details-post
  .blog-details-content
  .blog-quote
  .blockquote:not(:last-child) {
  margin-bottom: 25px;
}
.blog-details-post .blog-details-content .blog-quote .blockquote p {
  display: inline;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  color: #696868;
  line-height: 32px;
  font-weight: 400;
  margin-top: 0;
}
.blog-details-post .blog-details-content .blog-quote .blockquote span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-top: 8px;
}
.blog-details-post .blog-details-content .blog-inner-img {
  padding-top: 15px;
}
.blog-details-post .blog-details-content .blog-inner-img .image {
  margin-top: 40px;
}
.blog-details-post .blog-details-content .blog-inner-img .image img {
  border-radius: 10px;
  width: 100%;
}
.blog-details-post .blog-details-content .blog-details-text p {
  font-size: 16px;
  line-height: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-top: 50px;
}
.blog-details-post .blog-details-content .blog-details-tag-share {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 65px;
  padding-top: 20px;
  border-top: 1px solid #e3e3e5;
}
.blog-details-post
  .blog-details-content
  .blog-details-tag-share
  .blog-details-tag {
  padding-top: 20px;
}
.blog-details-post
  .blog-details-content
  .blog-details-tag-share
  .blog-details-tag
  .sidebar-widget {
  margin-top: 0;
  display: flex;
  align-items: center;
}
.blog-details-post
  .blog-details-content
  .blog-details-tag-share
  .blog-details-tag
  .sidebar-widget
  .label {
  font-size: 14px;
  line-height: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--secondary-color);
  margin-right: 10px;
}
.blog-details-post
  .blog-details-content
  .blog-details-tag-share
  .blog-details-tag
  .sidebar-widget
  .sidebar-tag
  li {
  margin-bottom: 0px;
}
.blog-details-post
  .blog-details-content
  .blog-details-tag-share
  .blog-details-share {
  display: flex;
  align-items: center;
  padding-top: 20px;
}
.blog-details-post
  .blog-details-content
  .blog-details-tag-share
  .blog-details-share
  li {
  display: inline-block;
  margin-right: 10px;
}
.blog-details-post
  .blog-details-content
  .blog-details-tag-share
  .blog-details-share
  li:last-child {
  margin-right: 0;
}
.blog-details-post
  .blog-details-content
  .blog-details-tag-share
  .blog-details-share
  li
  a {
  display: inline-block;
  font-size: 13px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #ffffff;
  border-radius: 50%;
}
.blog-details-post
  .blog-details-content
  .blog-details-tag-share
  .blog-details-share
  li
  a.share-twitter {
  background: #1da1f2;
}
.blog-details-post
  .blog-details-content
  .blog-details-tag-share
  .blog-details-share
  li
  a.share-facebook {
  background: #4867aa;
}
.blog-details-post
  .blog-details-content
  .blog-details-tag-share
  .blog-details-share
  li
  a.share-pinterest {
  background: #bd081b;
}
.blog-details-post
  .blog-details-content
  .blog-details-tag-share
  .blog-details-share
  li
  a.share-linkedin {
  background: #007bb6;
}
.blog-details-post
  .blog-details-content
  .blog-details-tag-share
  .blog-details-share
  li
  a:hover {
  opacity: 0.9;
}
.blog-details-post .blog-details-content .edubin-post-pagination {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.16);
  padding: 10px 30px;
  margin-top: 80px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .blog-details-post .blog-details-content .edubin-post-pagination {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 575px) {
  .blog-details-post .blog-details-content .edubin-post-pagination {
    padding: 0 10px;
  }
}
.blog-details-post .blog-details-content .edubin-post-pagination::before {
  position: absolute;
  content: "";
  width: 1px;
  background-color: #e1e1e1;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .blog-details-post .blog-details-content .edubin-post-pagination::before {
    width: auto;
    height: 1px;
    left: 30px;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }
}
.blog-details-post .blog-details-content .edubin-post-pagination .previous-post,
.blog-details-post .blog-details-content .edubin-post-pagination .next-post {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .blog-details-post
    .blog-details-content
    .edubin-post-pagination
    .previous-post,
  .blog-details-post .blog-details-content .edubin-post-pagination .next-post {
    width: 100%;
  }
}
.blog-details-post
  .blog-details-content
  .edubin-post-pagination
  .blog-pagination-post {
  display: flex;
  align-items: center;
  padding: 30px 0;
}
@media only screen and (max-width: 1199px) {
  .blog-details-post
    .blog-details-content
    .edubin-post-pagination
    .blog-pagination-post {
    padding: 20px 0;
  }
}
.blog-details-post
  .blog-details-content
  .edubin-post-pagination
  .blog-pagination-post
  .post-thumb {
  flex-shrink: 0;
}
.blog-details-post
  .blog-details-content
  .edubin-post-pagination
  .blog-pagination-post
  .post-thumb
  a
  img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog-details-post
  .blog-details-content
  .edubin-post-pagination
  .blog-pagination-post
  .post-thumb
  a
  i {
  font-size: 14px;
  color: #0071dc;
  padding: 0 10px;
}
.blog-details-post
  .blog-details-content
  .edubin-post-pagination
  .blog-pagination-post
  .post-content {
  flex-grow: 1;
  padding: 0 20px;
}
@media only screen and (max-width: 1199px) {
  .blog-details-post
    .blog-details-content
    .edubin-post-pagination
    .blog-pagination-post
    .post-content {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 575px) {
  .blog-details-post
    .blog-details-content
    .edubin-post-pagination
    .blog-pagination-post
    .post-content {
    padding: 0 13px;
  }
}
.blog-details-post
  .blog-details-content
  .edubin-post-pagination
  .blog-pagination-post
  .post-content
  .title {
  font-size: 16px;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: var(--secondary-color);
}
@media only screen and (max-width: 1199px) {
  .blog-details-post
    .blog-details-content
    .edubin-post-pagination
    .blog-pagination-post
    .post-content
    .title {
    font-size: 15px;
  }
}
.blog-details-post
  .blog-details-content
  .edubin-post-pagination
  .blog-pagination-post
  .post-content
  .title:hover
  a {
  color: #0071dc;
}
.blog-details-post
  .blog-details-content
  .edubin-post-pagination
  .blog-pagination-post
  .post-content
  .date {
  font-size: 12px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #838383;
}
.blog-details-post
  .blog-details-content
  .edubin-post-pagination
  .blog-pagination-post
  .post-content
  .date
  i {
  color: #0071dc;
  margin-right: 6px;
}
.blog-details-post .blog-details-content .comment-wrap .comment-box {
  margin-top: 50px;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-box
  .comment-title {
  font-size: 24px;
  line-height: 30px;
  color: var(--secondary-color);
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-box
  .comment-items
  li
  .single-comment {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #e1e1e1;
}
@media only screen and (max-width: 575px) {
  .blog-details-post
    .blog-details-content
    .comment-wrap
    .comment-box
    .comment-items
    li
    .single-comment {
    display: block;
  }
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-box
  .comment-items
  li
  .single-comment
  .comment-author {
  flex-shrink: 0;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-box
  .comment-items
  li
  .single-comment
  .comment-author
  img {
  width: 75px;
  border-radius: 50%;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-box
  .comment-items
  li
  .single-comment
  .comment-content {
  flex-grow: 1;
  padding-left: 30px;
}
@media only screen and (max-width: 575px) {
  .blog-details-post
    .blog-details-content
    .comment-wrap
    .comment-box
    .comment-items
    li
    .single-comment
    .comment-content {
    padding-left: 0;
    padding-top: 25px;
  }
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-box
  .comment-items
  li
  .single-comment
  .comment-content
  .name {
  font-size: 16px;
  font-weight: 700;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-box
  .comment-items
  li
  .single-comment
  .comment-content
  p {
  font-size: 16px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  margin-top: 5px;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-box
  .comment-items
  li
  .single-comment
  .comment-content
  .meta {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-box
  .comment-items
  li
  .single-comment
  .comment-content
  .meta
  .date {
  margin-right: 30px;
  color: #0071dc;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-box
  .comment-items
  li
  .single-comment
  .comment-content
  .meta
  .reply:hover {
  color: #0071dc;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-box
  .comment-items
  li
  .comment-reply {
  padding-left: 105px;
}
@media only screen and (max-width: 767px) {
  .blog-details-post
    .blog-details-content
    .comment-wrap
    .comment-box
    .comment-items
    li
    .comment-reply {
    padding-left: 0;
  }
}
.blog-details-post .blog-details-content .comment-wrap .comment-form {
  margin-top: 50px;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-form
  .comment-title {
  font-size: 24px;
  line-height: 30px;
  color: var(--secondary-color);
}
.blog-details-post .blog-details-content .comment-wrap .comment-form p {
  font-size: 14px;
  line-height: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #686f7a;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-form
  .comment-form-wrap {
  padding-top: 10px;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-form
  .comment-form-wrap
  .single-form {
  margin-top: 20px;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-form
  .comment-form-wrap
  .single-form
  .form-control {
  border: 1px solid transparent;
  background: #f6f7f9;
  border-radius: 0;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-form
  .comment-form-wrap
  .single-form
  .form-control::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #9d9d9d;
  font-weight: 400;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-form
  .comment-form-wrap
  .single-form
  .form-control:-moz-placeholder {
  opacity: 0.95;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #9d9d9d;
  font-weight: 400;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-form
  .comment-form-wrap
  .single-form
  .form-control::-moz-placeholder {
  opacity: 0.95;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #9d9d9d;
  font-weight: 400;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-form
  .comment-form-wrap
  .single-form
  .form-control:-ms-input-placeholder {
  opacity: 0.95;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #9d9d9d;
  font-weight: 400;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-form
  .comment-form-wrap
  .single-form
  .form-control:focus {
  outline: none;
  border-color: #0071dc;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-form
  .comment-form-wrap
  .single-form
  textarea.form-control {
  height: 135px;
  padding-top: 15px;
  font-size: 13px;
  color: #415674;
  font-weight: 600;
  padding: 10px 25px;
  resize: none;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-form
  .comment-form-wrap
  .single-form
  textarea.form-control:focus {
  outline: none;
  box-shadow: none;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-form
  .comment-form-wrap
  .form-btn
  .btn {
  height: 45px;
  line-height: 36px;
  font-weight: 500;
  margin-top: 30px;
  font-size: 15px;
  padding: 0 30px;
  background: #0071dc;
  color: #ffffff;
}
.blog-details-post
  .blog-details-content
  .comment-wrap
  .comment-form
  .comment-form-wrap
  .form-btn
  .btn:hover {
  background: var(--secondary-color);
}

/*--
/*  19 - Event CSS
/*----------------------------------------*/
.event-wrap {
  margin-top: -30px;
}

.event-item {
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
}
.event-item .thum {
  position: relative;
}
.event-item .thum .image {
  overflow: hidden;
  position: relative;
}
.event-item .thum .image a {
  display: block;
  position: relative;
}
.event-item .thum .image a img {
  width: 100%;
  transition: all 0.3s linear;
}
.event-item .thum .image .top-meta .categories {
  position: absolute;
  top: 30px;
  left: 30px;
  max-width: 70%;
}
.event-item .thum .image .top-meta .categories .tag {
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
  padding: 3px 15px;
  line-height: 29px;
  display: inline-block;
  background: #0071dc;
  color: #ffffff;
  white-space: nowrap;
}
.event-item .thum .price {
  position: absolute;
  right: 30px;
  bottom: -30px;
}
.event-item .thum .price span {
  display: block;
  font-size: 16px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background-color: #0071dc;
  text-align: center;
}
.event-item .content {
  padding-top: 40px;
  padding-bottom: 34px;
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 1199px) {
  .event-item .content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.event-item .content .title {
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  transition: all 0.3s linear;
}
.event-item .content .title:hover {
  color: #0071dc;
}
.event-item .content .event-place {
  border-top: 1px solid #ebebeb;
  padding-top: 10px;
  margin-top: 15px;
}
.event-item .content .event-place ul {
  margin-top: 8px;
}
.event-item .content .event-place ul li {
  font-size: 15px;
  color: var(--text-color);
}
.event-item .content .event-place ul li i {
  margin-right: 5px;
  color: #0071dc;
}
.event-item:hover .thum .image img {
  transform: scale(1.1);
}

/*--
/*  19 - Event Details CSS
/*----------------------------------------*/
.event-details-section .event-content-wrap .image img {
  width: 100%;
  border-radius: 10px;
}
.event-details-section .event-content-wrap .title {
  font-size: 36px;
  color: #002639;
  margin-top: 40px;
  margin-bottom: 20px;
}
.event-details-section .event-content-wrap .event-list-wrap {
  padding-top: 10px;
}
.event-details-section .event-content-wrap .event-list-wrap ul li {
  margin-top: 10px;
}
.event-details-section .event-content-wrap .event-list-wrap ul li i {
  color: #0071dc;
  margin-right: 5px;
}
.event-details-section .event-content-wrap .event-location {
  padding-top: 15px;
}
.event-details-section .event-content-wrap .event-location .event-map {
  margin-top: 20px;
}
.event-details-section .event-content-wrap .event-location .event-map iframe {
  height: 405px;
  width: 100%;
  border-radius: 5px;
}
.event-details-section .event-info-wrap {
  border-radius: 5px;
  background: #fff;
  border: 1px solid #ededed;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  padding: 30px 25px 40px;
  margin-left: 10px;
}
@media only screen and (max-width: 991px) {
  .event-details-section .event-info-wrap {
    margin-left: 0;
    margin-top: 50px;
  }
}
.event-details-section
  .event-info-wrap
  .event-info-countdown
  .edubin-countdown {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.event-details-section
  .event-info-wrap
  .event-info-countdown
  .edubin-countdown
  .single-countdown {
  padding: 30px 5px;
  width: 75px;
  height: 75px;
  line-height: 75px;
  min-width: 0;
  border: 2px solid #0071dc;
}
.event-details-section
  .event-info-wrap
  .event-info-countdown
  .edubin-countdown
  .single-countdown
  .count {
  font-size: 20px;
  line-height: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: block;
  color: #002639;
}
.event-details-section
  .event-info-wrap
  .event-info-countdown
  .edubin-countdown
  .single-countdown
  .value {
  font-size: 14px;
  line-height: 48px;
  color: var(--text-color);
}
.event-details-section .event-info-wrap .info-item-cost {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ebebeb;
  margin-top: 65px;
  padding-top: 20px;
}
.event-details-section .event-info-wrap .info-item-cost .text .title {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
}
.event-details-section .event-info-wrap .info-item-cost .text .title i {
  color: #0071dc;
  margin-right: 3px;
}
.event-details-section .event-info-wrap .info-item-cost .cost .price {
  font-size: 24px;
  font-weight: 700;
  color: #ff4830;
}
.event-details-section .event-info-wrap .info-item {
  border-top: 1px solid #ebebeb;
  margin-top: 15px;
  padding-top: 20px;
}
.event-details-section .event-info-wrap .info-item .title {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
}
.event-details-section .event-info-wrap .info-item .title i {
  color: #0071dc;
  margin-right: 3px;
}
.event-details-section .event-info-wrap .info-item p {
  color: #696868;
  margin-top: 3px;
}
.event-details-section .event-info-wrap .info-btn .btn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #0071dc;
  color: #ffffff;
  margin-top: 35px;
}
.event-details-section .event-info-wrap .info-btn .btn:hover {
  background: var(--secondary-color);
}
.event-details-section .event-info-wrap .info-btn p {
  font-size: 14px;
  color: #696868;
}
.event-details-section .event-info-wrap .info-btn p a {
  color: var(--secondary-color);
}
.event-details-section .event-info-wrap .info-btn p a:hover {
  color: #0071dc;
}
.event-details-section .event-speaker-wrap {
  padding-top: 50px;
}
.event-details-section .event-speaker-wrap .section-title2 .title {
  font-size: 28px;
}

/*--
/*  20 - Speaker CSS
/*----------------------------------------*/
.single-speaker {
  margin-top: 30px;
}
.single-speaker .speaker-img {
  border-radius: 10px;
  overflow: hidden;
}
.single-speaker .speaker-img a {
  display: block;
  overflow: hidden;
  position: relative;
}
.single-speaker .speaker-img a img {
  width: 100%;
}
.single-speaker .speaker-content {
  position: relative;
  margin-top: 15px;
  transition: all 0.3s linear;
}
.single-speaker .speaker-content .speaker-social {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -65px);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.single-speaker .speaker-content .speaker-social .social li {
  display: inline-block;
}
.single-speaker .speaker-content .speaker-social .social li + li {
  margin-left: 8px;
}
.single-speaker .speaker-content .speaker-social .social li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 15px;
  transform: translate3d(0, 0, 0);
  background: #ffffff;
  border-radius: 50%;
  color: var(--secondary-color);
}
.single-speaker .speaker-content .speaker-social .social li:hover a {
  transform: translateY(-5px);
  color: #0071dc;
}
.single-speaker .speaker-content .name {
  font-size: 18px;
  line-height: 30px;
  color: var(--secondary-color);
}
.single-speaker .speaker-content .name:hover a {
  color: #0071dc;
}
.single-speaker .speaker-content .designation {
  font-size: 16px;
  line-height: 24px;
  color: #696868;
}
.single-speaker:hover .speaker-img a img {
  transform: scale(1.05);
}
.single-speaker:hover .speaker-content .speaker-social {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -95px);
}

/*--
/*  21 - Course Filter CSS
/*----------------------------------------*/
.course-top-bar {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.course-top-bar .label {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-color);
  white-space: nowrap;
  margin-right: 10px;
}

.course-top-text {
  margin-top: 15px;
}
.course-top-text p {
  font-weight: 500;
  color: #838383;
}
.course-top-text p span {
  color: #002e5b;
}

.course-top-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.course-top-inner > * {
  margin-right: 30px;
}
.course-top-inner > *:last-child {
  margin-right: 0;
}

.course-top-menu {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.course-top-menu .nav li {
  margin-right: 10px;
}
.course-top-menu .nav li:last-child {
  margin-right: 0;
}
.course-top-menu .nav li button {
  padding: 0;
  border: 0;
  background-color: transparent;
  color: var(--text-color);
  font-size: 15px;
}
.course-top-menu .nav li button.active {
  color: #0071dc;
}

.course-top-action {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding: 0 20px;
  border-radius: 5px;
  background-color: #f6f7f9;
  height: 40px;
  line-height: 40px;
}
.course-top-action .nice-select {
  float: none;
  height: auto;
  line-height: 1;
  padding: 0;
  padding-right: 20px;
  border: 0;
  color: #002e5b;
  font-weight: 700;
  font-size: 15px;
  background: none;
}
.course-top-action .nice-select::after {
  right: 0;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #002e5b;
  border-right: 1px solid #002e5b;
  margin-top: -6px;
}
.course-top-action .nice-select .option {
  line-height: 35px;
  padding-left: 15px;
  padding-right: 22px;
  font-size: 14px;
  font-weight: 500;
}

.course-collapse-btn {
  margin-top: 15px;
}
.course-collapse-btn .btn {
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  color: #a9a9a9;
}
.course-collapse-btn .btn span {
  color: #0071dc;
}
.course-collapse-btn .btn i {
  margin: 0 3px;
  transition: all 0.3s linear;
}
.course-collapse-btn .btn i:last-child {
  color: #002e5b;
}
.course-collapse-btn .btn.collapsed {
  background-color: #ffffff;
}
.course-collapse-btn .btn:hover {
  border: 1px solid #0071dc;
}
.course-collapse-btn .btn:hover i {
  color: #0071dc;
}

.course-collapse {
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-top: 50px;
  padding: 35px 40px;
  transition: all 0.3s linear;
}

.widget-checkbox {
  margin-top: 18px;
}
.widget-checkbox .checkbox-list li {
  min-height: auto;
  margin-bottom: 0;
  margin-top: 18px;
}
.widget-checkbox .checkbox-list li label {
  line-height: 1.3;
}
.widget-checkbox .rating {
  position: relative;
  display: inline-block;
}
.widget-checkbox .rating::before {
  content: "\f13b\f13b\f13b\f13b\f13b";
  font-family: "flaticon";
  color: #dedede;
  font-size: 14px;
  letter-spacing: 2px;
}
.widget-checkbox .rating .rating-on {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
}
.widget-checkbox .rating .rating-on::before {
  content: "\f13b\f13b\f13b\f13b\f13b";
  font-family: "flaticon";
  color: #fda000;
  font-size: 14px;
  letter-spacing: 2px;
}

.sidebar-widget-02 .widget-title {
  font-size: 18px;
}
.sidebar-widget-02 + .sidebar-widget-02 {
  padding-top: 22px;
}

.sidebar-wrap-02 {
  background-color: #f9f9f9;
  border-radius: 5px;
  padding: 35px 40px;
  margin-top: 50px;
}
@media only screen and (max-width: 1199px), only screen and (max-width: 575px) {
  .sidebar-wrap-02 {
    padding: 35px 25px;
  }
}
@media only screen and (max-width: 991px) {
  .sidebar-wrap-02 {
    margin-top: 0;
  }
}

.course-list-items .course-list {
  display: flex;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  background: #ffffff;
}
.course-list-items .course-list .thum .image a img {
  height: 270px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 991px) {
  .course-list-items .course-list .thum .image a img {
    height: 330px;
  }
}
.course-list-items .course-list .thum .image .top-meta .categories .tag {
  background: #0071dc;
  color: #ffffff;
}
.course-list-items .course-list .content {
  padding: 30px;
}
.course-list-items .course-list .content .price span {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
}
.course-list-items .course-list .content .title {
  font-size: 22px;
  line-height: 32px;
  margin-top: 5px;
}
.course-list-items .course-list .content .title:hover {
  color: #0071dc;
}
.course-list-items .course-list .content p {
  margin-top: 10px;
}
.course-list-items .course-list .content .course-lesson ul {
  margin-top: 10px;
}
.course-list-items .course-list .content .course-lesson ul li {
  font-size: 15px;
  color: var(--text-color);
}
.course-list-items .course-list .content .course-lesson ul li i {
  margin-right: 5px;
  color: #0071dc;
}

/*--
/*  22 - Course Details CSS
/*----------------------------------------*/
.course-page-banner-section {
  background: #13181c;
  padding-top: 150px;
  min-height: 550px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.course-page-banner-section-02 {
  background: #eff1f6;
}
@media only screen and (max-width: 991px), only screen and (max-width: 767px) {
  .course-page-banner-section-02 .course-details-banner-content {
    padding: 50px 0;
    padding-top: 0;
  }
}
.course-page-banner-section-02 .course-details-banner-content .breadcrumb {
  margin-top: 0;
}
.course-page-banner-section-02
  .course-details-banner-content
  .breadcrumb
  .breadcrumb-item {
  color: #696868;
}
.course-page-banner-section-02
  .course-details-banner-content
  .breadcrumb
  .breadcrumb-item
  + .breadcrumb-item::before {
  color: #696868;
}
.course-page-banner-section-02
  .course-details-banner-content
  .breadcrumb
  .breadcrumb-item
  a {
  color: #696868;
}
.course-page-banner-section-02
  .course-details-banner-content
  .breadcrumb
  .breadcrumb-item
  a:hover {
  color: #0071dc;
}
.course-page-banner-section-02 .course-details-banner-content .title {
  color: var(--secondary-color);
}
.course-page-banner-section-02 .course-details-banner-content > p {
  color: #696868;
}
.course-page-banner-section-02
  .course-details-banner-content
  .course-details-meta
  > *::before {
  background-color: #64768e;
}
.course-page-banner-section-02
  .course-details-banner-content
  .course-details-meta
  .meta-action
  .meta-name
  .name {
  color: #696868;
}
.course-page-banner-section-02
  .course-details-banner-content
  .course-details-meta
  .meta-action
  p {
  color: #696868;
}
.course-page-banner-section-02
  .course-details-banner-content
  .course-details-meta
  .meta-action
  .rating
  span {
  color: #696868;
}

.course-page-banner-section-03 {
  background: #111827;
}
@media only screen and (max-width: 991px) {
  .course-page-banner-section-03 {
    padding-bottom: 80px;
  }
}
.course-page-banner-section-03
  .course-details-banner-content
  .course-details-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #3d4c66;
  padding-top: 20px;
  margin-top: 40px;
}
.course-page-banner-section-03
  .course-details-banner-content
  .course-details-meta
  > * {
  padding-left: 25px;
}
.course-page-banner-section-03
  .course-details-banner-content
  .course-details-meta
  > *::before {
  display: none;
}
.course-page-banner-section-03
  .course-details-banner-content
  .course-details-meta
  .course-meta
  ul
  li {
  display: inline-block;
  padding: 0 25px;
  background: #1f2838;
  border-radius: 100px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 8px;
}
.course-page-banner-section-03
  .course-details-banner-content
  .course-details-meta
  .course-meta
  ul
  li
  + li {
  margin-left: 10px;
}
.course-page-banner-section-03
  .course-details-banner-content
  .course-details-meta
  .course-meta
  ul
  li
  i {
  color: #0071dc;
  margin-right: 3px;
}

.course-details-banner-content {
  max-width: 620px;
}
@media only screen and (max-width: 991px), only screen and (max-width: 767px) {
  .course-details-banner-content {
    padding: 50px 0;
    padding-top: 0;
  }
}
.course-details-banner-content .breadcrumb {
  margin-top: 0;
}
.course-details-banner-content .breadcrumb .breadcrumb-item a:hover {
  color: #0071dc;
}
.course-details-banner-content .title {
  font-size: 40px;
  line-height: 52px;
  color: #ffffff;
  margin-top: 10px;
}
.course-details-banner-content > p {
  margin-top: 15px;
  color: #ffffff;
}
.course-details-banner-content .course-details-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 10px;
}
.course-details-banner-content .course-details-meta > * {
  padding-left: 40px;
  margin-top: 10px;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .course-details-banner-content .course-details-meta > * {
    padding-left: 20px;
  }
}
.course-details-banner-content .course-details-meta > *::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 25px;
  background-color: #e1e1e1;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 575px) {
  .course-details-banner-content .course-details-meta > *::before {
    left: 8px;
  }
}
.course-details-banner-content .course-details-meta > *:first-child {
  padding-left: 0;
}
.course-details-banner-content .course-details-meta > *:first-child::before {
  display: none;
}
.course-details-banner-content .course-details-meta .meta-action:first-child {
  display: flex;
  align-items: center;
}
.course-details-banner-content .course-details-meta .meta-action .meta-author {
  margin-right: 10px;
}
.course-details-banner-content
  .course-details-meta
  .meta-action
  .meta-author
  img {
  width: 40px;
  border-radius: 50%;
  padding: 2px;
  border: 1px solid #e1e1e1;
}
.course-details-banner-content
  .course-details-meta
  .meta-action
  .meta-name
  .name {
  font-weight: 500;
  color: #ffffff;
}
.course-details-banner-content .course-details-meta .meta-action p {
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
}
.course-details-banner-content .course-details-meta .meta-action .rating {
  display: flex;
  align-items: center;
}
.course-details-banner-content
  .course-details-meta
  .meta-action
  .rating
  .rating-star {
  display: block;
  position: relative;
}
.course-details-banner-content
  .course-details-meta
  .meta-action
  .rating
  .rating-star::before {
  content: "\f13b\f13b\f13b\f13b\f13b";
  font-family: "flaticon";
  font-size: 13px;
  color: #c5c2c2;
  letter-spacing: 4px;
}
.course-details-banner-content
  .course-details-meta
  .meta-action
  .rating
  .rating-star
  .rating-active {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.course-details-banner-content
  .course-details-meta
  .meta-action
  .rating
  .rating-star
  .rating-active::before {
  content: "\f13b\f13b\f13b\f13b\f13b";
  font-family: "flaticon";
  font-size: 13px;
  color: #ffc000;
  letter-spacing: 4px;
}
.course-details-banner-content .course-details-meta .meta-action .rating span {
  font-size: 13px;
  color: #ffffff;
}

.edubin-tabs-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid #e2e0db;
}
@media only screen and (max-width: 575px) {
  .edubin-tabs-menu {
    justify-content: center;
  }
}
.edubin-tabs-menu li {
  cursor: pointer;
}
.edubin-tabs-menu .edubin-title {
  width: 150px;
  border-color: #e2e0db;
  text-align: center;
  border-radius: 0;
  padding: 13px 0;
}
.edubin-tabs-menu .edubin-title .menu-title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #696868;
}
.edubin-tabs-menu .active .edubin-title {
  border-bottom: 2px solid #0071dc;
}
.edubin-tabs-menu .active .edubin-title .menu-title {
  color: var(--secondary-color);
}

.edubin-tab-pane {
  display: none;
}
.edubin-tab-pane.active {
  display: block;
}

.course-accordion .accordion-item {
  border-radius: 0;
  margin-top: 20px;
  border: 0;
}
.course-accordion .accordion-item button {
  font-size: 16px;
  font-weight: 700;
  background: #f6f7f9;
  color: #002e5b;
  width: 100%;
  text-align: left;
  padding: 10px 20px;
  border: 0;
  transition: all 0.3s linear;
}
.course-accordion .accordion-item button::before {
  content: "\f170";
  font-family: "flaticon";
  font-size: 13px;
  font-weight: 300;
  margin-right: 10px;
  transition: all 0.3s linear;
}
.course-accordion .accordion-item button.collapsed::before {
  content: "\f111";
}
.course-accordion .accordion-item .accordion-body {
  padding: 0;
}
.course-accordion .accordion-item .accordion-body .lessons-list li {
  padding: 18px 35px 18px 30px;
  border-top: 1px solid #dce4e6;
}
.course-accordion
  .accordion-item
  .accordion-body
  .lessons-list
  li
  .lessons-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-accordion
  .accordion-item
  .accordion-body
  .lessons-list
  li
  .lessons-list-item
  .list-left
  .title {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-color);
}
.course-accordion
  .accordion-item
  .accordion-body
  .lessons-list
  li
  .lessons-list-item
  .list-left
  .title:hover {
  color: #0071dc;
}
.course-accordion
  .accordion-item
  .accordion-body
  .lessons-list
  li
  .lessons-list-item
  .list-left
  .title
  i {
  color: #696868;
  margin-right: 10px;
}
.course-accordion
  .accordion-item
  .accordion-body
  .lessons-list
  li
  .lessons-list-item
  .list-right
  .duration {
  display: inline-block;
  font-size: 13px;
  background: rgba(238, 74, 99, 0.07) !important;
  padding: 1px 14px;
  border: 1px solid #ff4830;
  border-radius: 3px;
  color: #ff4830;
  cursor: pointer;
  margin-right: 5px;
}
@media only screen and (max-width: 575px) {
  .course-accordion
    .accordion-item
    .accordion-body
    .lessons-list
    li
    .lessons-list-item
    .list-right
    .duration {
    margin-bottom: 5px;
  }
}
.course-accordion
  .accordion-item
  .accordion-body
  .lessons-list
  li
  .lessons-list-item
  .list-right
  .preview {
  display: inline-block;
  font-size: 13px;
  color: #2dbbc4;
  background: #e3f1f2;
  border: 1px solid #2dbbc4;
  border-radius: 3px;
  padding: 0 14px;
  cursor: pointer;
}
.course-accordion
  .accordion-item
  .accordion-body
  .lessons-list
  li
  .lessons-list-item
  .list-right
  .lock {
  font-size: 15px;
  color: #442e66;
  margin-left: 5px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .course-accordion .accordion-item .accordion-body .lessons-list li {
    padding: 18px 20px 18px 20px;
  }
}
@media only screen and (max-width: 449px) {
  .course-accordion .accordion-item .accordion-body .lessons-list li {
    padding: 15px 0px 8px 0px;
  }
}
.course-accordion .accordion-item .accordion-body .lessons-list li:first-child {
  border-top: 0;
}

.course-overview-wrap .course-overview {
  margin-top: 30px;
}
.course-overview-wrap .course-overview p {
  color: #696868;
}
.course-overview-wrap .course-learn-list {
  background: #f9fafc;
  padding: 50px;
  margin-top: 50px;
  border-radius: 5px;
}
@media only screen and (max-width: 575px) {
  .course-overview-wrap .course-learn-list {
    padding: 30px;
  }
}
.course-overview-wrap .course-learn-list ul {
  padding-top: 6px;
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.course-overview-wrap .course-learn-list ul li {
  font-size: 15px;
  line-height: 26px;
  position: relative;
  padding-left: 40px;
  padding-right: 10px;
  width: 50%;
  margin-top: 20px;
  color: #696868;
}
@media only screen and (max-width: 767px) {
  .course-overview-wrap .course-learn-list ul li {
    width: 100%;
  }
}
.course-overview-wrap .course-learn-list ul li::before {
  position: absolute;
  top: 0;
  left: 10px;
  content: "\f132";
  font-family: "flaticon";
  font-size: 13px;
  color: var(--secondary-color);
}

.instructor-profile {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}
@media only screen and (max-width: 575px) {
  .instructor-profile {
    flex-direction: column;
  }
}
.instructor-profile .profile-images {
  flex-shrink: 0;
}
.instructor-profile .profile-images img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.instructor-profile .profile-content {
  flex-grow: 1;
}
.instructor-profile .profile-content .name {
  font-size: 20px;
  font-weight: 700;
}
.instructor-profile .profile-content p {
  color: #696868;
  margin-top: 10px;
}

.course-details-faq .faq-accordion {
  margin-top: 40px;
}
.course-details-faq .faq-accordion .accordion-item {
  border: 1px solid #e1e1e1;
  box-shadow: none;
}
.course-details-faq .faq-accordion .accordion-item .accordion-button {
  padding: 15px 30px;
}
.course-details-faq .faq-accordion .accordion-item .accordion-button .title {
  font-size: 15px;
  color: #696868;
}
.course-details-faq .faq-accordion .accordion-item .accordion-button::after {
  position: absolute;
  content: "+";
  border: none;
  width: 30px;
  height: 30px;
  line-height: 25px;
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  color: #696868;
  background: none;
  right: 30px;
  transition: all 0.3s ease-out 0s;
}
.course-details-faq .faq-accordion .accordion-item .accordion-body {
  font-size: 15px;
  padding: 25px 30px;
  padding-top: 10px;
}
.course-details-faq .faq-accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.course-details-faq
  .faq-accordion
  .accordion-item
  .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}
.course-details-faq
  .faq-accordion
  .accordion-item
  .accordion-button:not(.collapsed)
  .title {
  color: #0071dc;
}
.course-details-faq
  .faq-accordion
  .accordion-item
  .accordion-button:not(.collapsed)::after {
  position: absolute;
  content: "-";
  border: none;
  width: 30px;
  height: 30px;
  line-height: 20px;
  font-size: 35px;
  text-align: center;
  background: none;
  color: #0071dc;
  transform: rotate(0);
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
@media only screen and (max-width: 575px) {
  .review-rating {
    display: block;
  }
}
.review-rating .rating-box {
  text-align: center;
  width: 190px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 33px 20px;
  flex-shrink: 0;
}
@media only screen and (max-width: 575px) {
  .review-rating .rating-box {
    margin: 0 auto;
  }
}
.review-rating .rating-box .count {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #002e5b;
  line-height: 1;
}
.review-rating .rating-box .rating-star {
  display: inline-block;
  position: relative;
}
.review-rating .rating-box .rating-star::before {
  content: "\f13b\f13b\f13b\f13b\f13b";
  font-family: "flaticon";
  font-size: 18px;
  color: #c5c2c2;
  letter-spacing: 4px;
}
.review-rating .rating-box .rating-star .rating-active {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.review-rating .rating-box .rating-star .rating-active::before {
  content: "\f13b\f13b\f13b\f13b\f13b";
  font-family: "flaticon";
  font-size: 18px;
  color: #ffc000;
  letter-spacing: 4px;
}
.review-rating .rating-box p {
  margin-top: 0;
}
.review-rating .rating-percentage {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (max-width: 575px) {
  .review-rating .rating-percentage {
    margin-top: 30px;
  }
}

.single-rating-percentage {
  display: flex;
  align-items: center;
}
.single-rating-percentage .label {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-color);
  white-space: nowrap;
}
.single-rating-percentage .rating-line {
  width: 100%;
  height: 12px;
  border-radius: 3px;
  background-color: #ebebeb;
  position: relative;
  margin: 0 20px;
}
.single-rating-percentage .rating-line .line-bar {
  position: absolute;
  height: 100%;
  border-radius: 3px;
  background-color: #fcca45;
}

.sidebar-details-wrap {
  margin-top: -420px;
  position: relative;
  z-index: 1;
  position: sticky;
  top: 100px;
}
@media only screen and (max-width: 991px), only screen and (max-width: 767px) {
  .sidebar-details-wrap {
    margin-top: 50px;
  }
}

.sidebar-details-wrap-2 {
  margin-top: 0;
}
@media only screen and (max-width: 991px) {
  .sidebar-details-wrap-2 {
    margin-top: 50px;
  }
}

.sidebar-details-video-description {
  border-radius: 5px;
  background: #fff;
  border: 1px solid #ededed;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.sidebar-details-video-description .sidebar-description {
  padding: 40px 40px 40px;
}
@media only screen and (max-width: 1199px), only screen and (max-width: 575px) {
  .sidebar-details-video-description .sidebar-description {
    padding: 30px 20px 30px;
  }
}
.sidebar-details-video-description .sidebar-description .title {
  font-size: 20px;
  color: var(--secondary-color);
}
.sidebar-details-video-description .sidebar-description .btn {
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  background: #0071dc;
  color: #ffffff;
}
.sidebar-details-video-description .sidebar-description .btn:hover {
  background: var(--secondary-color);
}
.sidebar-details-video-description .sidebar-description .description-list {
  padding-top: 26px;
  padding-bottom: 15px;
}
.sidebar-details-video-description .sidebar-description .description-list li {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-color);
  border-bottom: 1px solid #ebebeb;
  color: #696868;
  padding: 12px 0;
}
.sidebar-details-video-description
  .sidebar-description
  .description-list
  li.price
  span {
  font-weight: 700;
  font-size: 24px;
  color: #ff4830;
}
@media only screen and (max-width: 1199px), only screen and (max-width: 575px) {
  .sidebar-details-video-description .sidebar-description .description-list li {
    font-size: 15px;
  }
}
.sidebar-details-video-description
  .sidebar-description
  .description-list
  li:last-child {
  border-bottom: 0;
}
.sidebar-details-video-description .sidebar-description .description-list li i {
  color: #0071dc;
  margin: 0 4px 0 0;
}
.sidebar-details-video-description
  .sidebar-description
  .description-list
  li
  span {
  font-weight: 500;
  color: var(--secondary-color);
  float: right;
  display: block;
}
.sidebar-details-video-description .sidebar-description .share-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(204, 204, 204, 0.3);
  margin-top: 30px;
  padding-top: 20px;
}
.sidebar-details-video-description .sidebar-description .share-link .link-icon {
  font-size: 16px;
  text-align: center;
  color: #696868;
  margin-left: 5px;
}
.sidebar-details-video-description
  .sidebar-description
  .share-link:hover
  .social-share-wrapper {
  opacity: 1;
  visibility: visible;
}
.sidebar-details-video-description
  .sidebar-description
  .share-link
  .social-share-wrapper {
  display: block;
  position: absolute;
  left: 50%;
  bottom: calc(100% - 6px);
  transform: translateX(-70%);
  background-color: #28314b;
  z-index: 2;
  box-shadow: none;
  border-radius: 5px;
  margin: 0;
  padding: 2px;
  line-height: 0;
  white-space: nowrap;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}
.sidebar-details-video-description
  .sidebar-description
  .share-link
  .social-share-wrapper::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5.5px 0 5.5px;
  border-color: #28314b transparent transparent transparent;
  left: 50%;
  bottom: -5px;
  margin-left: -5px;
}
.sidebar-details-video-description
  .sidebar-description
  .share-link
  .social-share-wrapper
  ul
  li {
  display: inline-block;
}
.sidebar-details-video-description
  .sidebar-description
  .share-link
  .social-share-wrapper
  ul
  li
  a {
  width: 30px;
  height: 35px;
  line-height: 35px;
  font-size: 12px;
  color: #ffffff;
  border-radius: inherit;
  text-align: center;
  transition: all 0.3s linear;
}
.sidebar-details-video-description
  .sidebar-description
  .share-link
  .social-share-wrapper
  ul
  li:hover
  a {
  background: rgba(255, 255, 255, 0.13);
}
.sidebar-details-video-description .sidebar-description .share-link .share-btn {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #696868;
}
.sidebar-details-video-description
  .sidebar-description
  .share-link
  .share-btn:hover {
  color: var(--secondary-color);
}

.sidebar-video {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.sidebar-video img {
  width: 100%;
}
.sidebar-video .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  line-height: 65px;
  background-color: #ffffff;
  border-radius: 50%;
  font-size: 14px;
  color: #002e5b;
  text-align: center;
  z-index: 2;
}
.sidebar-video .play:hover {
  color: #ffffff;
  background-color: #0071dc;
}

/*--
/*  22 - Shop CSS
/*----------------------------------------*/
.shop-section {
  background: #ffffff;
}
.shop-section .shop-text p {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
}
.shop-section .product-sort {
  text-align: right;
  justify-content: end;
}
@media only screen and (max-width: 767px) {
  .shop-section .product-sort {
    text-align: left;
    justify-content: flex-start;
    margin-top: 30px;
  }
}
.shop-section .product-sort .filter-name span {
  font-size: 14px;
  color: #333;
  margin-right: 10px;
}
.shop-section .product-sort .nice-select {
  width: 190px;
  color: #666;
  border: 1px solid #e5e5e7;
  padding-left: 25px;
}
.shop-section .product-sort .nice-select .list {
  width: 100%;
}
.shop-section .single-publication .image .top-meta ul li {
  background: #0071dc;
}
.shop-section .single-publication .image .top-meta ul li:last-child {
  margin-left: 7px;
  background: #ff4830;
}
.shop-section .single-publication .content .add-cart .btn {
  background: #0071dc;
  color: #ffffff;
}
.shop-section .single-publication .content .add-cart .btn:hover {
  background: var(--secondary-color);
}
.shop-section .single-publication .content .book-title:hover a {
  color: #0071dc;
}
.shop-section .single-publication .content .price .normal-price {
  color: #0071dc;
}

/*--
/*  23 - Shop Details CSS
/*----------------------------------------*/
.product-details-slide .gallery {
  margin-bottom: 20px;
}
.product-details-slide .gallery-nav {
  max-width: 450px;
}
.product-details-slide .gallery-nav a {
  border: 1px solid #e1e1e1;
}

@media only screen and (max-width: 767px) {
  .product-details-overview {
    margin-top: 40px;
  }
}
.product-details-overview .title {
  font-size: 50px;
  line-height: 62px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .product-details-overview .title {
    font-size: 36px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 575px) {
  .product-details-overview .title {
    font-size: 30px;
    line-height: 42px;
  }
}
.product-details-overview .product-price {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0071dc;
  line-height: 1.2;
  font-weight: 700;
}
.product-details-overview .product-details-meta {
  padding-top: 30px;
}
.product-details-overview .product-details-meta p {
  color: #696868;
  font-weight: 500;
}
.product-details-overview .product-details-meta p span {
  font-weight: 400;
}
.product-details-overview .text {
  font-size: 16px;
  line-height: 30px;
  color: #696868;
  margin-top: 25px;
}
.product-details-overview .product-details-menu-2 .cart-plus-minus {
  border: 1px solid #e1e1e1;
  height: 50px;
  line-height: 48px;
  width: 110px;
  border-radius: 0;
  color: #939393;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  background-color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  cursor: pointer;
}
.product-details-overview
  .product-details-menu-2
  .cart-plus-minus
  .dec.qtybutton {
  height: 100%;
  width: 30%;
  float: left;
  border-right: 1px solid #e1e1e1;
}
.product-details-overview
  .product-details-menu-2
  .cart-plus-minus
  .inc.qtybutton {
  height: 100%;
  width: 30%;
  float: right;
  border-right: 0;
  border-left: 1px solid #e1e1e1;
}
.product-details-overview .product-details-menu-2 ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.product-details-overview .product-details-menu-2 ul li {
  list-style: none;
  display: inline-block;
  margin-right: 20px;
  margin-top: 25px;
}
.product-details-overview .product-details-menu-2 ul li:last-child {
  margin-right: 0;
}
.product-details-overview .product-details-menu-2 ul li .btn {
  height: 50px;
  line-height: 50px;
  text-transform: capitalize;
  font-size: 14px;
  padding: 0 30px;
  background: #0071dc;
  color: #ffffff;
  border-radius: 0;
}
.product-details-overview .product-details-menu-2 ul li .btn:hover {
  background: var(--secondary-color);
}
.product-details-overview
  .product-details-menu-2
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.product-details-overview .product-details-menu-2 textarea {
  background: transparent none repeat scroll 0 0;
  box-shadow: none;
  border: none;
  height: 100%;
  margin-bottom: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #222222;
  text-align: center;
  width: 40%;
  font-weight: 600;
}
.product-details-overview .product-details-sku {
  margin-top: 30px;
}
.product-details-overview .product-details-sku p {
  color: #696868;
}
.product-details-overview .product-details-sku p a {
  color: var(--secondary-color);
}
.product-details-overview .product-details-sku p a:hover {
  color: #0071dc;
}

.shop-details-review-wrap {
  margin-top: 40px;
}
.shop-details-review-wrap .product-desc {
  margin-top: 40px;
}
.shop-details-review-wrap .product-desc p {
  color: #696868;
}
.shop-details-review-wrap .edubin-tabs-menu {
  justify-content: center;
}

.product-review-reply {
  margin-top: 40px;
}
.product-review-reply .title {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 30px;
}
.product-review-reply .add-review {
  display: flex;
  align-items: center;
}
.product-review-reply .add-review .comment-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-right: 10px;
}
.product-review-reply .add-review .rating li {
  display: inline-block;
  font-size: 14px;
  color: #dfdfdf;
}
.product-review-reply .comment-form .single-form {
  position: relative;
  margin-top: 20px;
}
.product-review-reply
  .comment-form
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  display: block;
  height: 50px;
  max-width: 100%;
  border: 1px solid #d6d5d7;
  border-radius: 5px;
  padding: 14px 20px 14px;
  font-size: 13px;
  color: #415674;
  font-weight: 500;
  line-height: 1.7;
  text-transform: unset;
}
.product-review-reply
  .comment-form
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #4c4d56;
  font-weight: 400;
}
.product-review-reply
  .comment-form
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-moz-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #4c4d56;
  font-weight: 400;
}
.product-review-reply
  .comment-form
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-moz-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #4c4d56;
  font-weight: 400;
}
.product-review-reply
  .comment-form
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-ms-input-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #4c4d56;
  font-weight: 400;
}
.product-review-reply .comment-form .single-form textarea {
  height: 120px;
  font-size: 13px;
  color: #415674;
  padding: 14px 20px 14px;
  font-weight: 500;
  line-height: 1.7;
  text-transform: unset;
  border: 1px solid #d6d5d7;
  border-radius: 5px;
  resize: none;
}
.product-review-reply
  .comment-form
  .single-form
  textarea::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #4c4d56;
  font-weight: 400;
}
.product-review-reply .comment-form .single-form textarea:-moz-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #4c4d56;
  font-weight: 400;
}
.product-review-reply .comment-form .single-form textarea::-moz-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #4c4d56;
  font-weight: 400;
}
.product-review-reply
  .comment-form
  .single-form
  textarea:-ms-input-placeholder {
  opacity: 0.95;
  font-size: 13px;
  color: #4c4d56;
  font-weight: 400;
}
.product-review-reply .comment-form .comment-btn .btn {
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  padding: 0 30px;
  background: #0071dc;
  color: #ffffff;
  margin-top: 25px;
}
.product-review-reply .comment-form .comment-btn .btn:hover {
  background: var(--secondary-color);
}

/*--
/*  26 - Team Single CSS
/*----------------------------------------*/
.team-profile-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.team-profile {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1199px) {
  .team-profile {
    width: 70%;
  }
}
@media only screen and (max-width: 991px), only screen and (max-width: 767px) {
  .team-profile {
    width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .team-profile .profile-img {
    max-width: 42%;
  }
}
@media only screen and (max-width: 991px), only screen and (max-width: 767px) {
  .team-profile .profile-img {
    text-align: left;
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
}
.team-profile .profile-img img {
  width: 285px;
  height: 285px;
  border-radius: 5px;
  image-rendering: crisp-edges;
}
.team-profile .profile-content {
  flex: 1;
  padding-left: 55px;
  padding-right: 60px;
  padding-top: 15px;
}
@media only screen and (max-width: 1399px) {
  .team-profile .profile-content {
    padding-right: 35px;
  }
}
@media only screen and (max-width: 1199px) {
  .team-profile .profile-content {
    padding-left: 35px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 991px), only screen and (max-width: 767px) {
  .team-profile .profile-content {
    padding-left: 0px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .team-profile .profile-content {
    padding-left: 0px;
    padding-right: 0;
  }
}
.team-profile .profile-content .name {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: var(--secondary-color);
}
@media only screen and (max-width: 767px) {
  .team-profile .profile-content .name {
    font-size: 28px;
  }
}
.team-profile .profile-content .designation {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  display: inline-block;
  margin-top: 15px;
}
.team-profile .profile-content p {
  font-size: 16px;
  line-height: 30px;
  color: #696868;
  margin-top: 15px;
}

.team-profile-info {
  width: 30%;
  border-left: 1px solid #ddd;
  padding-left: 50px;
  padding-top: 60px;
}
@media only screen and (max-width: 1399px) {
  .team-profile-info {
    padding-left: 35px;
  }
}
@media only screen and (max-width: 1199px) {
  .team-profile-info {
    width: 30%;
    padding-left: 35px;
  }
}
@media only screen and (max-width: 991px), only screen and (max-width: 767px) {
  .team-profile-info {
    width: 100%;
    border-left: 0;
    padding-left: 0;
    padding-top: 30px;
  }
}
.team-profile-info ul .team-info {
  font-size: 16px;
  line-height: 21px;
  color: #696868;
  margin-bottom: 20px;
}
.team-profile-info ul .team-info span {
  font-weight: 700;
  color: var(--secondary-color);
  padding-right: 10px;
}
@media only screen and (max-width: 1399px),
  only screen and (max-width: 1199px) {
  .team-profile-info ul .team-info span {
    padding-right: 8px;
  }
}
.team-profile-info .profile-social-wrap {
  margin-top: 30px;
}
.team-profile-info .profile-social-wrap ul li {
  display: inline-block;
  margin-right: 10px;
}
.team-profile-info .profile-social-wrap ul li a {
  font-size: 18px;
  transition: all 0.3s linear;
}
.team-profile-info .profile-social-wrap ul li a.profile-twitter {
  color: #1da1f2;
}
.team-profile-info .profile-social-wrap ul li a.profile-facebook {
  color: #4867aa;
}
.team-profile-info .profile-social-wrap ul li a.profile-instagram {
  color: #b23a94;
}
.team-profile-info .profile-social-wrap ul li a:hover {
  opacity: 0.9;
}

.team-profile-description {
  padding-top: 115px;
}
@media only screen and (max-width: 991px) {
  .team-profile-description {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .team-profile-description {
    padding-top: 40px;
  }
}
.team-profile-description .title {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .team-profile-description .title {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
.team-profile-description p {
  font-size: 16px;
  line-height: 30px;
  color: #696868;
}

.skill-section {
  padding-top: 15px;
}

.team-details-skill-section {
  padding-bottom: 120px;
}

.skill-descrption {
  margin-top: 40px;
}
.skill-descrption .title {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .skill-descrption .title {
    font-size: 28px;
  }
}
.skill-descrption p {
  font-size: 16px;
  line-height: 30px;
  color: #696868;
}
.skill-descrption p.text {
  padding-bottom: 20px;
}

/*--
/*  27 - Pricing CSS
/*----------------------------------------*/
.single-pricing {
  border: 1px solid var(--secondary-color);
  padding: 50px 60px;
  text-align: center;
  border-radius: 10px;
  margin-top: 30px;
}
@media only screen and (max-width: 1199px), only screen and (max-width: 575px) {
  .single-pricing {
    padding: 30px 30px;
  }
}
.single-pricing .pricig-header .title {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.single-pricing .pricig-header p {
  font-size: 18px;
  font-weight: 600;
  color: #0071dc;
  line-height: 1.2;
}
.single-pricing .pricig-header p span {
  font-size: 40px;
  color: #0071dc;
}
.single-pricing .pricig-body .pricig-list {
  padding-top: 22px;
}
.single-pricing .pricig-body .pricig-list li {
  font-size: 16px;
  color: #696868;
  margin-top: 7px;
}
.single-pricing .pricig-body .btn {
  height: 45px;
  line-height: 45px;
  background: #0071dc;
  color: #ffffff;
  margin-top: 30px;
}
.single-pricing .pricig-body .btn:hover {
  background: var(--secondary-color);
}

/*--
/*  28 - 404 CSS
/*----------------------------------------*/
/* 404 page */
.error-image svg {
  width: 380px;
  height: 281px;
}
@media only screen and (max-width: 575px) {
  .error-image svg {
    width: 320px;
  }
}

.error-content .error-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color);
}

.error-content {
  margin-top: 60px;
}
.error-content p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 30px;
  color: var(--secondary-color);
}
@media only screen and (max-width: 575px) {
  .error-content p {
    font-size: 16px;
    padding: 0 0;
    margin-top: 10px;
  }
}
.error-content .btn {
  height: 45px;
  line-height: 45px;
  background: #0071dc;
  color: #ffffff;
}
.error-content .btn:hover {
  background: var(--secondary-color);
}

/*--
/*  28 - Contact CSS
/*----------------------------------------*/
.contact-info-wrap .title {
  font-size: 32px;
  color: var(--secondary-color);
}
.contact-info-wrap .text {
  color: #696868;
  margin-top: 30px;
  padding-bottom: 10px;
}
.contact-info-wrap .single-contact-info {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.contact-info-wrap .single-contact-info .info-icon i {
  color: var(--primary-color-2);
}
.contact-info-wrap .single-contact-info .info-content {
  margin-left: 10px;
}
.contact-info-wrap .single-contact-info .info-content p {
  color: var(--secondary-color);
}

.contact-location {
  margin-top: 30px;
}
.contact-location .title {
  font-size: 32px;
  color: var(--secondary-color);
}
.cnct-head {
  color: var(--text-color) !important;
}
.cnct-num {
  padding: 0px 5px;
}

.contact-map iframe {
  height: 500px;
  width: 100%;
}

.contact-form {
  margin-left: 30px;
}
@media only screen and (max-width: 991px) {
  .contact-form {
    margin-left: 0;
    margin-top: 30px;
  }
}
.contact-form .contact-title {
  font-size: 32px;
  line-height: 44px;
  color: var(--secondary-color);
}
.contact-form .contact-form-wrap {
  background: #ffffff;
  box-shadow: 0px 0px 75px 0px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 50px;
  padding-top: 30px;
  margin-top: 40px;
}
.contact-form .contact-form-wrap .single-form {
  margin-top: 20px;
}
.contact-form
  .contact-form-wrap
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  border: 1px solid transparent;
  background: #f6f7f9;
  font-weight: 400;
  border-radius: 3px;
}
.contact-form
  .contact-form-wrap
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #9d9d9d;
  font-weight: 400;
}
.contact-form
  .contact-form-wrap
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-moz-placeholder {
  opacity: 0.95;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #9d9d9d;
  font-weight: 400;
}
.contact-form
  .contact-form-wrap
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-moz-placeholder {
  opacity: 0.95;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #9d9d9d;
  font-weight: 400;
}
.contact-form
  .contact-form-wrap
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-ms-input-placeholder {
  opacity: 0.95;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #9d9d9d;
  font-weight: 400;
}
.contact-form
  .contact-form-wrap
  .single-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus {
  outline: none;
  border-color: #0071dc;
}
.contact-form .contact-form-wrap .single-form textarea {
  height: 135px;
  padding-top: 15px;
  border: 1px solid transparent;
  font-size: 13px;
  color: #415674;
  background: #f6f7f9;
  font-weight: 400;
  padding: 10px 25px;
  border-radius: 3px;
  resize: none;
}
.contact-form
  .contact-form-wrap
  .single-form
  textarea::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #9d9d9d;
  font-weight: 400;
}
.contact-form .contact-form-wrap .single-form textarea:-moz-placeholder {
  opacity: 0.95;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #9d9d9d;
  font-weight: 400;
}
.contact-form .contact-form-wrap .single-form textarea::-moz-placeholder {
  opacity: 0.95;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #9d9d9d;
  font-weight: 400;
}
.contact-form .contact-form-wrap .single-form textarea:-ms-input-placeholder {
  opacity: 0.95;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #9d9d9d;
  font-weight: 400;
}
.contact-form .contact-form-wrap .single-form textarea:focus {
  outline: none;
  border-color: #0071dc;
}
.contact-form .contact-form-wrap .form-btn .btn {
  width: 100%;
  height: auto;
  font-weight: 700;
  margin-top: 30px;
  font-size: 15px;
  padding: 0 30px;
  background: var(--secondary-color);
  color: #ffffff;
}
.contact-form .contact-form-wrap .form-btn .btn:hover {
  background: var(--primary-color);
  color: #fff;
}

/*--
/*  24 - Login Register CSS
/*----------------------------------------*/
.login-register-section .login-register-wrap {
  margin-top: -50px;
}
.login-register-section .login-register-wrap .section-title .title {
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  line-height: 1.2;
  margin-top: -8px;
}
.login-register-section .login-register-wrap .login-register-box {
  border: 1px solid #ebebeb;
  padding: 40px;
  border-radius: 10px;
  margin-top: 50px;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .single-form {
  margin-top: 20px;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .single-form
  .form-control {
  border: 1px solid transparent;
  background: #f6f7f9;
  border-radius: 0;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .single-form
  .form-control::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #787884;
  font-weight: 400;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .single-form
  .form-control:-moz-placeholder {
  opacity: 0.95;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #787884;
  font-weight: 400;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .single-form
  .form-control::-moz-placeholder {
  opacity: 0.95;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #787884;
  font-weight: 400;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .single-form
  .form-control:-ms-input-placeholder {
  opacity: 0.95;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #787884;
  font-weight: 400;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .single-form
  .form-control:focus {
  outline: none;
  border-color: #ffc600;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .single-form
  textarea.form-control {
  height: 135px;
  font-size: 13px;
  color: #415674;
  font-weight: 600;
  padding: 10px 25px;
  padding-top: 15px;
  resize: none;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .single-form
  textarea.form-control:focus {
  outline: none;
  box-shadow: none;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .single-form
  .form-check-input {
  margin-right: 8px;
  margin-top: 5px;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .single-form
  .form-check-input:focus {
  box-shadow: none;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .single-form
  .form-check-label {
  display: inline;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 0;
  text-transform: none;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .single-form
  a:hover {
  color: #0071dc;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .form-btn {
  margin-top: 30px;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .form-btn
  .btn {
  height: 50px;
  line-height: 45px;
  width: 100%;
  background: #0071dc;
  color: #ffffff;
}
.login-register-section
  .login-register-wrap
  .login-register-box
  .login-register-form
  .form-btn
  .btn:hover {
  background: var(--secondary-color);
}

/*----------------------------------------*/
/*  05. Widget CSS
/*----------------------------------------*/
/*--
/*  5.1 - Sidebar Widget CSS
/*----------------------------------------*/
.sidebar-wrap {
  border-left: 1px solid #eeeeee;
  height: 100%;
}
@media only screen and (max-width: 991px), only screen and (max-width: 767px) {
  .sidebar-wrap {
    border-left: none;
    height: auto;
    padding-top: 0;
  }
}

.widget {
  margin-bottom: 40px;
  color: var(--text-color);
}
.widget:last-child {
  margin-bottom: 0;
}
.widget .widget-title {
  border-bottom: 1px solid #eeeeee;
  padding-left: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 991px), only screen and (max-width: 767px) {
  .widget .widget-title {
    padding-left: 0;
  }
}

/*--
/*  24.1 - Footer Widget CSS
/*----------------------------------------*/
.footer-widget-wrap {
  padding: 25px 0px;
}
@media only screen and (max-width: 991px) {
  .footer-widget-wrap {
    padding-top: 50px;
  }
}

.footer-widget {
  margin-top: 30px;
}
.footer-widget.footer-widget-2,
.footer-widget.footer-widget-3 {
  padding-left: 40px;
}
@media only screen and (max-width: 991px) {
  .footer-widget.footer-widget-2,
  .footer-widget.footer-widget-3 {
    padding-left: 0px;
  }
}

.widget-info {
  padding-top: 20px;
}
.widget-info ul li {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.widget-info ul li + li {
  margin-top: 6px;
}
.widget-info ul li .info-text {
  display: flex;
  font-size: 15px;
  line-height: 26px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #ffffff;
}
.widget-info ul li .info-text .label-name {
  font-weight: 500;
}
.widget-info ul li .info-text span {
  flex: 1;
  margin-left: 5px;
}

.footer-widget-about {
  margin-top: 30px;
}
.footer-widget-about p {
  font-size: 15px;
  line-height: 26px;
  color: #ffffff;
  margin-top: 23px;
}

.footer-social .social {
  margin-top: 20px;
}
.footer-social .social li {
  display: inline-block;
}
.footer-social .social li + li {
  margin-left: 10px;
}
.footer-social .social li a {
  font-size: 16px;
  color: #ffc600;
}
.footer-social .social li a:hover {
  color: #ffffff;
}

.footer-widget .text {
  font-size: 15px;
  line-height: 26px;
  color: #ffffff;
  margin-top: 30px;
}
.footer-widget .footer-widget-title {
  font-size: 18px;
  line-height: 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #ffffff;
}

.widget-link {
  padding-top: 25px;
}
.widget-link .link li {
  margin-top: 8px;
}
.widget-link .link li a {
  font-size: 15px;
  color: #ffffff;
  transition: all 0.3s linear;
}
.widget-link .link li a:hover {
  color: #ffc600;
}

.footer-section-02 .footer-widget-about p {
  color: #29303b;
}
.footer-section-02 .footer-widget .text {
  color: #29303b;
}
.footer-section-02 .footer-widget .footer-widget-title {
  color: #29303b;
}
.footer-section-02 .footer-social .social li a {
  color: #ff773d;
}
.footer-section-02 .footer-social .social li a:hover {
  color: #29303b;
}
.footer-section-02 .widget-info ul li .info-text {
  color: #29303b;
}
.footer-section-02 .widget-info ul li .info-text span a:hover {
  color: #ff773d;
}
.footer-section-02 .widget-link {
  padding-top: 25px;
}
.footer-section-02 .widget-link .link li a {
  color: #29303b;
}
.footer-section-02 .widget-link .link li a:hover {
  color: #ff773d;
}

.footer-section-03 .footer-social .social li a {
  color: #2babe4;
}
.footer-section-03 .footer-social .social li a:hover {
  color: #29303b;
}
.footer-section-03 .widget-info ul li .info-text {
  color: #29303b;
}
.footer-section-03 .widget-info ul li .info-text span a:hover {
  color: #2babe4;
}
.footer-section-03 .widget-link {
  padding-top: 25px;
}
.footer-section-03 .widget-link .link li a {
  color: #29303b;
}
.footer-section-03 .widget-link .link li a:hover {
  color: #2babe4;
}

.footer-section-04 .footer-social .social li a {
  color: #0071dc;
}
.footer-section-04 .footer-social .social li a:hover {
  color: #ffffff;
}
.footer-section-04 .widget-info ul li .info-text {
  color: #ffffff;
}
.footer-section-04 .widget-info ul li .info-text span a:hover {
  color: #0071dc;
}
.footer-section-04 .widget-link {
  padding-top: 25px;
}
.footer-section-04 .widget-link .link li a {
  color: #ffffff;
}
.footer-section-04 .widget-link .link li a:hover {
  color: #0071dc;
}

.footer-section-05 .footer-social .social li a {
  color: #3bbc9b;
}
.footer-section-05 .footer-social .social li a:hover {
  color: #ffffff;
}
.footer-section-05 .widget-info ul li .info-text {
  color: #ffffff;
}
.footer-section-05 .widget-info ul li .info-text span a:hover {
  color: #3bbc9b;
}
.footer-section-05 .widget-link {
  padding-top: 25px;
}
.footer-section-05 .widget-link .link li a {
  color: #ffffff;
}
.footer-section-05 .widget-link .link li a:hover {
  color: #3bbc9b;
}

.footer-section-06 .footer-widget .footer-widget-title {
  color: #ffffff;
}
.footer-section-06 .footer-widget-about .widget-info {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  margin-top: 30px;
}
.footer-section-06 .footer-widget-about .widget-info .icon svg {
  width: 25px;
  fill: var(--primary-color);
}
.footer-section-06 .footer-widget-about .widget-info .cont {
  flex: 1;
  margin-left: 15px;
}
.footer-section-06 .footer-widget-about .widget-info .cont .title {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}
.footer-section-06 .footer-widget-about .widget-info .cont .number {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 5px;
}
.footer-section-06 .footer-widget-about p {
  color: #ffffff;
}
.footer-section-06 .footer-social {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .footer-section-06 .footer-social {
    text-align: center;
  }
}
.footer-section-06 .footer-social .social li + li {
  margin-left: 15px;
}
.footer-section-06 .footer-social .social li a {
  color: var(--primary-color);
}
.footer-section-06 .footer-social .social li a:hover {
  color: var(--secondary-color-2);
}
.footer-section-06 .widget-info ul li .info-text {
  color: #ffffff;
}
.footer-section-06 .widget-info ul li .info-text span a:hover {
  color: var(--primary-color);
}
.footer-section-06 .widget-link {
  padding-top: 25px;
}
.footer-section-06 .widget-link .link li a {
  color: #ffffff;
}
.footer-section-06 .widget-link .link li a:hover {
  color: var(--secondary-color-2);
}
.footer-section-06 .footer-widget .widget-app {
  padding-top: 18px;
}
.footer-section-06 .footer-widget .widget-app a img {
  border-radius: 5px;
  margin-top: 20px;
}

.footer-section-07 .footer-social .social li a {
  color: #3bbc9b;
}
.footer-section-07 .footer-social .social li a:hover {
  color: #29303b;
}
.footer-section-07 .widget-info ul li .info-text {
  color: #29303b;
}
.footer-section-07 .widget-info ul li .info-text span a:hover {
  color: #3bbc9b;
}
.footer-section-07 .widget-link {
  padding-top: 25px;
}
.footer-section-07 .widget-link .link li a {
  color: #29303b;
}
.footer-section-07 .widget-link .link li a:hover {
  color: #3bbc9b;
}

/*--
/*  24. Footer CSS
/*----------------------------------------*/
.footer-top-section {
  background: var(--secondary-color);
}

.footer-section-02 {
  background-color: #eeebe7;
}
.footer-section-02 .footer-top-section {
  background: none;
}
.footer-section-02 .footer-copyright-area {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
}
.footer-section-02 .footer-copyright-area .footer-copyright-wrap {
  border-top: 1px solid #e1e1e1;
  padding-top: 20px;
  padding-bottom: 30px;
}
.footer-section-02 .copyright-text p {
  color: #29303b;
}

.copyright-text p a {
  font-weight: 700;
}

.newsletter-area {
  color: #fff;
  margin: 25px 0px;
}

.footer-section-03 {
  background-color: #eff6f9;
}
.footer-section-03 .footer-top-section {
  background: none;
}
.footer-section-03 .footer-copyright-area .footer-copyright-wrap {
  border-top: 1px solid #d7d7d7;
}
.footer-section-03 .copyright-text p {
  color: #29303b;
}

.footer-section-04 .footer-top-section {
  background: #000710;
}
.footer-section-04 .footer-copyright-area {
  background: #000103;
}
.footer-section-04 .footer-copyright-links a:hover {
  color: #0071dc;
}

.footer-section-05 .footer-top-section {
  background: #000710;
}
.footer-section-05 .footer-copyright-area {
  background: #000103;
}
.footer-section-05 .footer-copyright-links a:hover {
  color: #3bbc9b;
}

.footer-section-06 {
  background-color: #111a24;
}
.footer-section-06 .footer-top-section {
  background: none;
}
.footer-section-06 .footer-copyright-area .footer-copyright-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.footer-section-06 .copyright-text p {
  color: #ffffff;
}

.footer-section-07 {
  background-color: #ecf7f4;
}
.footer-section-07 .footer-top-section {
  background: none;
}
.footer-section-07 .footer-copyright-area .footer-copyright-wrap {
  border-top: 1px solid #d7d7d7;
}
.footer-section-07 .copyright-text p {
  color: #29303b;
}

.footer-logo {
  max-width: 170px;
}

.footer-copyright-area {
  background: #021d3a;
  padding-top: 20px;
  padding-bottom: 30px;
}

.copyright-text {
  margin-top: 10px;
}
@media only screen and (max-width: 991px) {
  .copyright-text {
    text-align: center;
  }
}
.copyright-text p {
  font-size: 15px;
  line-height: 26px;
  color: #ffffff;
}

.footer-copyright-links {
  text-align: right;
  margin-top: 10px;
}
@media only screen and (max-width: 991px) {
  .footer-copyright-links {
    text-align: center;
  }
}
.footer-copyright-links a {
  font-size: 15px;
  line-height: 26px;
  color: #ffffff;
  margin-left: 10px;
  padding-left: 12px;
  position: relative;
}
.footer-copyright-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  width: 1px;
  height: 13px;
}
.footer-copyright-links a:first-child {
  margin-left: 0;
  padding-left: 0;
}
.footer-copyright-links a:first-child::before {
  display: none;
}
.footer-copyright-links a:hover {
  color: #ffc600;
}

.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 93, 224, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(130%);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  position: absolute;
  content: "\f108";
  font-family: flaticon !important;
  text-align: center;
  line-height: 45px;
  font-size: 18px;
  color: #ffc600;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  transform: rotate(90deg);
  cursor: pointer;
  display: block;
  z-index: 1;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #ffc600;
  stroke-width: 4;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Custom Style Section Start */

.about-banner-section {
  background-image: url("../images/page-banner-images/about-page-banner.jpg");
  width: 100%;
  height: calc(100vh - 55vh);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 0px;
  overflow: hidden;
  align-content: center;
}

.mission-vision-banner-section {
  background-image: url("../images/page-banner-images/mission-vision-banner-images.jpg");
  width: 100%;
  height: calc(100vh - 55vh);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 0px;
  overflow: hidden;
  align-content: center;
}

.gr-banner-section {
  background-image: url("../images/page-banner-images/govt-regd-banner-images.jpg");
  width: 100%;
  height: calc(100vh - 55vh);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 0px;
  overflow: hidden;
  align-content: center;
}

.milestone-banner-section {
  background-image: url("../images/page-banner-images/milestone-banner-images.jpg");
  width: 100%;
  height: calc(100vh - 55vh);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 0px;
  overflow: hidden;
  align-content: center;
}

.center-csri-banner-section {
  background-image: url("../images/page-banner-images/membership-banner-images.jpg");
  width: 100%;
  height: calc(100vh - 55vh);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 0px;
  overflow: hidden;
  align-content: center;
}

.placement-cell-banner-section {
  background-image: url("../images/page-banner-images/placement-banner-images.jpg");
  width: 100%;
  height: calc(100vh - 55vh);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 0px;
  overflow: hidden;
  align-content: center;
}

.cv-banner-section {
  background-image: url("../images/page-banner-images/verification-banner-images.jpg");
  width: 100%;
  height: calc(100vh - 55vh);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 0px;
  overflow: hidden;
  align-content: center;
}

.faq-banner-section {
  background-image: url("../images/page-banner-images/faq-banner-images.jpg");
  width: 100%;
  height: calc(100vh - 55vh);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 0px;
  overflow: hidden;
  align-content: center;
}

.gallery-banner-section {
  background-image: url("../images/page-banner-images/gallery-banner-images.jpg");
  width: 100%;
  height: calc(100vh - 55vh);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 0px;
  overflow: hidden;
  align-content: center;
}

.courses-banner-section {
  background-image: url("../images/page-banner-images/course-details-banner-images.jpg");
  width: 100%;
  height: calc(100vh - 55vh);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 0px;
  overflow: hidden;
  align-content: center;
}

.contact-banner-section {
  background-image: url("../images/page-banner-images/contact-banner-images.jpg");
  width: 100%;
  height: calc(100vh - 55vh);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: 0px;
  overflow: hidden;
  align-content: center;
}

.page-banner-wrap::before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #00000025;
}

.page-banner {
  position: absolute;
  z-index: 10;
  align-self: anchor-center;
  justify-self: anchor-center;
}

.single-item {
  padding: 20px;
  border-radius: 12px;
  overflow: clip;
}

.mv-content-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mv-icon {
  width: 250px;
  height: 175px;
}

@media only screen and (200px <= width <= 374.99px) {
  .about-banner-section {
    height: 70px;
  }

  .mission-vision-banner-section {
    height: 70px;
  }

  .gr-banner-section {
    height: 70px;
  }

  .milestone-banner-section {
    height: 70px;
  }

  .center-csri-banner-section {
    height: 70px;
  }

  .placement-cell-banner-section {
    height: 70px;
  }

  .cv-banner-section {
    height: 70px;
  }

  .faq-banner-section {
    height: 70px;
  }

  .gallery-banner-section {
    height: 70px;
  }

  .courses-banner-section {
    height: 70px;
  }

  .contact-banner-section {
    height: 70px;
  }

  .section-title .title {
    font-size: 20px;
  }

  .breadcrumb {
    margin-top: 0px !important;
  }
}

@media only screen and (375px <= width <= 424.99px) {
  .about-banner-section {
    height: 80px;
  }

  .mission-vision-banner-section {
    height: 80px;
  }

  .gr-banner-section {
    height: 80px;
  }

  .milestone-banner-section {
    height: 80px;
  }

  .center-csri-banner-section {
    height: 80px;
  }

  .placement-cell-banner-section {
    height: 80px;
  }

  .cv-banner-section {
    height: 80px;
  }

  .faq-banner-section {
    height: 80px;
  }

  .gallery-banner-section {
    height: 80px;
  }

  .courses-banner-section {
    height: 80px;
  }

  .contact-banner-section {
    height: 80px;
  }

  .section-title .title {
    font-size: 20px;
  }

  .breadcrumb {
    margin-top: 0px !important;
  }
}

@media only screen and (425px <= width <= 499.99px) {
  .about-banner-section {
    height: calc(100vh - 89vh);
  }

  .mission-vision-banner-section {
    height: calc(100vh - 89vh);
  }

  .gr-banner-section {
    height: calc(100vh - 89vh);
  }

  .milestone-banner-section {
    height: calc(100vh - 89vh);
  }

  .center-csri-banner-section {
    height: calc(100vh - 89vh);
  }

  .placement-cell-banner-section {
    height: calc(100vh - 89vh);
  }

  .cv-banner-section {
    height: calc(100vh - 89vh);
  }

  .faq-banner-section {
    height: calc(100vh - 89vh);
  }

  .gallery-banner-section {
    height: calc(100vh - 89vh);
  }

  .courses-banner-section {
    height: calc(100vh - 89vh);
  }

  .contact-banner-section {
    height: calc(100vh - 89vh);
  }

  .section-title .title {
    font-size: 20px;
  }

  .breadcrumb {
    margin-top: 0px !important;
  }
}

@media only screen and (500px <= width <= 599.99px) {
  .about-banner-section {
    height: calc(100vh - 87vh);
  }

  .mission-vision-banner-section {
    height: calc(100vh - 87vh);
  }

  .gr-banner-section {
    height: calc(100vh - 87vh);
  }

  .milestone-banner-section {
    height: calc(100vh - 87vh);
  }

  .center-csri-banner-section {
    height: calc(100vh - 87vh);
  }

  .placement-cell-banner-section {
    height: calc(100vh - 87vh);
  }

  .cv-banner-section {
    height: calc(100vh - 87vh);
  }

  .faq-banner-section {
    height: calc(100vh - 87vh);
  }

  .gallery-banner-section {
    height: calc(100vh - 87vh);
  }

  .courses-banner-section {
    height: calc(100vh - 87vh);
  }

  .contact-banner-section {
    height: calc(100vh - 87vh);
  }

  .section-title .title {
    font-size: 20px;
  }

  .breadcrumb {
    margin-top: 0px !important;
  }
}

@media only screen and (600px <= width <= 699.99px) {
  .about-banner-section {
    height: calc(100vh - 85vh);
  }

  .mission-vision-banner-section {
    height: calc(100vh - 85vh);
  }

  .gr-banner-section {
    height: calc(100vh - 85vh);
  }

  .milestone-banner-section {
    height: calc(100vh - 85vh);
  }

  .center-csri-banner-section {
    height: calc(100vh - 85vh);
  }

  .placement-cell-banner-section {
    height: calc(100vh - 85vh);
  }

  .cv-banner-section {
    height: calc(100vh - 85vh);
  }

  .faq-banner-section {
    height: calc(100vh - 85vh);
  }

  .gallery-banner-section {
    height: calc(100vh - 85vh);
  }

  .courses-banner-section {
    height: calc(100vh - 85vh);
  }

  .contact-banner-section {
    height: calc(100vh - 85vh);
  }

  .section-title .title {
    font-size: 20px;
  }

  .breadcrumb {
    margin-top: 0px !important;
  }
}

@media only screen and (700px <= width <= 799.99px) {
  .about-banner-section {
    height: calc(100vh - 83vh);
  }

  .mission-vision-banner-section {
    height: calc(100vh - 83vh);
  }

  .gr-banner-section {
    height: calc(100vh - 83vh);
  }

  .milestone-banner-section {
    height: calc(100vh - 83vh);
  }

  .center-csri-banner-section {
    height: calc(100vh - 83vh);
  }

  .placement-cell-banner-section {
    height: calc(100vh - 83vh);
  }

  .cv-banner-section {
    height: calc(100vh - 83vh);
  }

  .faq-banner-section {
    height: calc(100vh - 83vh);
  }

  .gallery-banner-section {
    height: calc(100vh - 83vh);
  }

  .courses-banner-section {
    height: calc(100vh - 83vh);
  }

  .contact-banner-section {
    height: calc(100vh - 83vh);
  }

  .section-title .title {
    font-size: 20px;
  }

  .breadcrumb {
    margin-top: 0px !important;
  }
}

@media only screen and (800px <= width <= 899.99px) {
  .about-banner-section {
    height: calc(100vh - 79vh);
  }

  .mission-vision-banner-section {
    height: calc(100vh - 79vh);
  }

  .gr-banner-section {
    height: calc(100vh - 79vh);
  }

  .milestone-banner-section {
    height: calc(100vh - 79vh);
  }

  .center-csri-banner-section {
    height: calc(100vh - 79vh);
  }

  .placement-cell-banner-section {
    height: calc(100vh - 79vh);
  }

  .cv-banner-section {
    height: calc(100vh - 79vh);
  }

  .faq-banner-section {
    height: calc(100vh - 79vh);
  }

  .gallery-banner-section {
    height: calc(100vh - 79vh);
  }

  .courses-banner-section {
    height: calc(100vh - 79vh);
  }

  .contact-banner-section {
    height: calc(100vh - 79vh);
  }

  .section-title .title {
    font-size: 20px;
  }

  .breadcrumb {
    margin-top: 0px !important;
  }
}

@media only screen and (900px <= width <= 991.99px) {
  .about-banner-section {
    height: calc(100vh - 77vh);
  }

  .mission-vision-banner-section {
    height: calc(100vh - 77vh);
  }

  .gr-banner-section {
    height: calc(100vh - 77vh);
  }

  .milestone-banner-section {
    height: calc(100vh - 77vh);
  }

  .center-csri-banner-section {
    height: calc(100vh - 77vh);
  }

  .placement-cell-banner-section {
    height: calc(100vh - 77vh);
  }

  .cv-banner-section {
    height: calc(100vh - 77vh);
  }

  .faq-banner-section {
    height: calc(100vh - 77vh);
  }

  .gallery-banner-section {
    height: calc(100vh - 77vh);
  }

  .courses-banner-section {
    height: calc(100vh - 77vh);
  }

  .contact-banner-section {
    height: calc(100vh - 77vh);
  }

  .section-title .title {
    font-size: 20px;
  }

  .breadcrumb {
    margin-top: 0px !important;
  }
}

@media only screen and (992px <= width <= 1099.99px) {
  .about-banner-section {
    height: calc(100vh - 74vh);
  }

  .mission-vision-banner-section {
    height: calc(100vh - 74vh);
  }

  .gr-banner-section {
    height: calc(100vh - 74vh);
  }

  .milestone-banner-section {
    height: calc(100vh - 74vh);
  }

  .center-csri-banner-section {
    height: calc(100vh - 74vh);
  }

  .placement-cell-banner-section {
    height: calc(100vh - 74vh);
  }

  .cv-banner-section {
    height: calc(100vh - 74vh);
  }

  .faq-banner-section {
    height: calc(100vh - 74vh);
  }

  .gallery-banner-section {
    height: calc(100vh - 74vh);
  }

  .courses-banner-section {
    height: calc(100vh - 74vh);
  }

  .contact-banner-section {
    height: calc(100vh - 74vh);
  }

  .section-title .title {
    font-size: 20px;
  }

  .breadcrumb {
    margin-top: 0px !important;
  }
}

@media only screen and (1100px <= width <= 1199.99px) {
  .about-banner-section {
    height: calc(100vh - 71vh);
  }

  .mission-vision-banner-section {
    height: calc(100vh - 71vh);
  }

  .gr-banner-section {
    height: calc(100vh - 71vh);
  }

  .milestone-banner-section {
    height: calc(100vh - 71vh);
  }

  .center-csri-banner-section {
    height: calc(100vh - 71vh);
  }

  .placement-cell-banner-section {
    height: calc(100vh - 71vh);
  }

  .cv-banner-section {
    height: calc(100vh - 71vh);
  }

  .faq-banner-section {
    height: calc(100vh - 71vh);
  }

  .gallery-banner-section {
    height: calc(100vh - 71vh);
  }

  .courses-banner-section {
    height: calc(100vh - 71vh);
  }

  .contact-banner-section {
    height: calc(100vh - 71vh);
  }

  .section-title .title {
    font-size: 20px;
  }

  .breadcrumb {
    margin-top: 0px !important;
  }
}

@media only screen and (1200px <= width <= 1299.99px) {
  .about-banner-section {
    height: calc(100vh - 68vh);
  }

  .mission-vision-banner-section {
    height: calc(100vh - 68vh);
  }

  .gr-banner-section {
    height: calc(100vh - 68vh);
  }

  .milestone-banner-section {
    height: calc(100vh - 68vh);
  }

  .center-csri-banner-section {
    height: calc(100vh - 68vh);
  }

  .placement-cell-banner-section {
    height: calc(100vh - 68vh);
  }

  .cv-banner-section {
    height: calc(100vh - 68vh);
  }

  .faq-banner-section {
    height: calc(100vh - 68vh);
  }

  .gallery-banner-section {
    height: calc(100vh - 68vh);
  }

  .courses-banner-section {
    height: calc(100vh - 68vh);
  }

  .contact-banner-section {
    height: calc(100vh - 68vh);
  }

  .section-title .title {
    font-size: 20px;
  }

  .breadcrumb {
    margin-top: 0px !important;
  }
}

@media only screen and (1300px <= width <= 1399.99px) {
  .about-banner-section {
    height: calc(100vh - 65vh);
  }

  .mission-vision-banner-section {
    height: calc(100vh - 65vh);
  }

  .gr-banner-section {
    height: calc(100vh - 65vh);
  }

  .milestone-banner-section {
    height: calc(100vh - 65vh);
  }

  .center-csri-banner-section {
    height: calc(100vh - 65vh);
  }

  .placement-cell-banner-section {
    height: calc(100vh - 65vh);
  }

  .cv-banner-section {
    height: calc(100vh - 65vh);
  }

  .faq-banner-section {
    height: calc(100vh - 65vh);
  }

  .gallery-banner-section {
    height: calc(100vh - 65vh);
  }

  .courses-banner-section {
    height: calc(100vh - 65vh);
  }

  .contact-banner-section {
    height: calc(100vh - 65vh);
  }

  .section-title .title {
    font-size: 20px;
  }

  .breadcrumb {
    margin-top: 0px !important;
  }
}

@media only screen and (1400px <= width <= 1499.99px) {
  .about-banner-section {
    height: calc(100vh - 62vh);
  }

  .mission-vision-banner-section {
    height: calc(100vh - 62vh);
  }

  .gr-banner-section {
    height: calc(100vh - 62vh);
  }

  .milestone-banner-section {
    height: calc(100vh - 62vh);
  }

  .center-csri-banner-section {
    height: calc(100vh - 62vh);
  }

  .placement-cell-banner-section {
    height: calc(100vh - 62vh);
  }

  .cv-banner-section {
    height: calc(100vh - 62vh);
  }

  .faq-banner-section {
    height: calc(100vh - 62vh);
  }

  .gallery-banner-section {
    height: calc(100vh - 62vh);
  }

  .courses-banner-section {
    height: calc(100vh - 62vh);
  }

  .contact-banner-section {
    height: calc(100vh - 62vh);
  }

  .section-title .title {
    font-size: 20px;
  }

  .breadcrumb {
    margin-top: 0px !important;
  }
}

.about-image-two {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.about-image {
  width: 33.33%;
  margin: 10px 0px 0px 10px;
  justify-items: center;
}

.abt-img-sec {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  transition: 0.25s ease-in-out;
  overflow: hidden;
  cursor: pointer;
}

.abt-img-sec:hover .abt-img {
  scale: 1.1;
}

.abt-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  vertical-align: middle;
  scale: 1;
}

.justify-items-center {
  justify-items: center;
}

/* Thumbnail Gallery Section Start */

.img-thumbnail-area {
  width: 100%;
  justify-self: center;
  padding: 50px 0px;
}

.thumbnail-img-section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.thumbnail-img {
  width: 100%;
  cursor: pointer;
  transition: 0.5s linear;
  scale: 1;
}

.thumbnail-img:hover {
  scale: 1.05;
}

.thumbnail-view-area {
  display: none;
  position: fixed;
  width: 100%;
  height: -webkit-fill-available;
  top: 0;
  background-color: #74787cbf;
  align-content: center;
  z-index: 999;
}

.cancel-btn {
  position: absolute;
  top: 10%;
  right: 10%;
  font-size: 24px;
  color: #ff3f33;
  background-color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  align-content: center;
  text-align: center;
  cursor: pointer;
}

.thumbnail-img-view {
  width: 35%;
  height: inherit;
  justify-self: center;
  align-content: center;
}

@media only screen and (200px <= width <= 424.99px) {
  .thumbnail-img-view {
    width: 90%;
  }

  .prev-btn {
    left: 0 !important;
  }

  .next-btn {
    right: 0 !important;
  }
}

@media only screen and (425px <= width <= 767.99px) {
  .thumbnail-img-view {
    width: 65%;
  }
}

.thumbnail-viewer {
  width: 100%;
  border-radius: 12px;
}

.prev-btn {
  position: absolute;
  top: 0;
  left: 10%;
  align-self: anchor-center;
  font-size: 20px;
  background-color: #fff;
  color: #ff3f33;
  width: 30px;
  height: 30px;
  text-align: center;
  align-content: center;
  border-radius: 5px;
  cursor: pointer;
}

.next-btn {
  position: absolute;
  top: 0;
  right: 10%;
  align-self: anchor-center;
  font-size: 20px;
  background-color: #fff;
  color: #ff3f33;
  width: 30px;
  height: 30px;
  text-align: center;
  align-content: center;
  border-radius: 5px;
  cursor: pointer;
}

/* Thumbnail Gallery Section End */

/* Timeline Section Start */

.timeline {
  width: 100%;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #ddd;
  z-index: -1;
}

.timeline-item:nth-child(odd) {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.timeline-item:nth-child(even) {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 40px 0;
  position: relative;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(1)::after {
  border: 4px solid #fba223;
}
.timeline-item:nth-child(2)::after {
  border: 4px solid #44c10e;
}
.timeline-item:nth-child(3)::after {
  border: 4px solid #10a7cf;
}
.timeline-item:nth-child(4)::after {
  border: 4px solid #ff884d;
}
.timeline-item:nth-child(5)::after {
  border: 4px solid #b580ff;
}
.timeline-item:nth-child(6)::after {
  border: 4px solid #fba223;
}

.timeline-content {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 25px;
  width: 45%;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-content.left {
  flex-direction: row-reverse;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(45deg);
}

.timeline-item:nth-child(1) .timeline-content::before {
  background: #fba223;
}

.timeline-item:nth-child(2) .timeline-content::before {
  background: #44c10e;
}

.timeline-item:nth-child(3) .timeline-content::before {
  background: #10a7cf;
}

.timeline-item:nth-child(4) .timeline-content::before {
  background: #ff884d;
}

.timeline-item:nth-child(5) .timeline-content::before {
  background: #b580ff;
}

.timeline-item:nth-child(6) .timeline-content::before {
  background: #fba223;
}

.timeline-content.left::before {
  right: -10px;
}

.timeline-content.right::before {
  left: -10px;
}

.icon-box {
  width: 150px;
  height: 175px;
  background: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  margin-right: 20px;
  flex-shrink: 0;
}

@media only screen and (max-width:375px) {
  .icon-box {
    width: 100px;
    height: 100px;
  }
}

.timeline-img {
  width: 100px;
  height: 100px;
}

.timeline-content.left .icon-box {
  margin-left: 20px;
  margin-right: 0;
  border-radius: 25px;
}

.content {
  flex: 1;
}

.content h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #fff;
}

.content ul {
  padding: 0px 25px;
}

.content ul li {
  list-style: circle;
  color: #fff;
  font-weight: 500;
}

/* Colors for each step */

.step1 {
  background: #fba223;
}

.step2 {
  background: #44c10e;
}

.step3 {
  background: #10a7cf;
}

.step4 {
  background: #ff884d;
}

.step5 {
  background: #b580ff;
}

.step6 {
  background: #fba223;
}

.step1 .icon-box {
  color: #fba223;
}
.step2 .icon-box {
  color: #44c10e;
}
.step3 .icon-box {
  color: #10a7cf;
}
.step4 .icon-box {
  color: #ff884d;
}
.step5 .icon-box {
  color: #b580ff;
}
.step6 .icon-box {
  color: #fba223;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    align-items: center;
  }

  .timeline-content,
  .timeline-content.left {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
  }

  .timeline::before {
    left: 8px;
  }

  .timeline-item::after {
    left: 8px;
    transform: translateY(-50%);
  }

  .timeline-content::before,
  .timeline-content.left::before {
    display: none;
  }

  .timeline-content.left .icon-box {
    margin-left: 0;
    margin-right: 20px;
  }
}

/* Timeline Section End */

.contact-details {
  margin: 15px 0px;
}

.cnct-details {
  margin: 12px 0px;
}

.info-content p:hover {
  /* color: var(--primary-color) !important; */
}

.info-content a {
  color: var(--secondary-color);
}


.info-content a:hover {
  color: var(--primary-color);
}

.single-contact-info ul {
  width: 75%;
}

@media only screen and (max-width:425px) {
  .single-contact-info ul {
    width: 100%;
  }
}

@media screen and (200px <= width <= 425px) {
  .about-img-wrap {
    margin: 12px 0px;
  }

  .about-img-big img {
    width: 100% !important;
    height: 100% !important;
  }

  .about-img-sm {
    width: 125px !important;
    height: 125px !important;
    top: 55% !important;
    left: 10px;
  }

  .about-img-sm-1 {
    width: 125px !important;
    height: 125px !important;
    top: 55% !important;
    left: 10px;
  }

  .contact-map iframe {
    height: 250px;
    width: 100%;
  }
}

.section-title3 .sub-title::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 2px;
  background-color: var(--primary-color-2);
  bottom: 0;
  left: 0;
}

.section-title3 .st::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 2px;
  background-color: var(--primary-color-2);
  bottom: 0;
  justify-self: anchor-center;
}

/* Contact Details Section Start */

.contact-details-area {
  position: relative;
}

.cd-area {
  width: 100%;
  height: 150px;
  border-radius: 5px;
  word-break: break-word;
  border: 1px solid #000;
  align-content: center;
}

.cd-head {
  color: var(--primary-color);
  margin: 12px 0px;
}

.cd-text {
  margin: 10px 0px;
}

.row .col-lg-4:nth-child(1) .cd-area {
  background-color: #ffd9a9;
}
.row .col-lg-4:nth-child(2) .cd-area {
  background-color: #ff99ff;
}
.row .col-lg-4:nth-child(3) .cd-area {
  background-color: #66ffcc;
}

/* Contact Details Section End */

/* Specification Section Start */

.specification-area {
  position: relative;
}

.row .col-lg-4:nth-child(1) .spec-head-area {
  background-color: #ae1ea3;
}

.row .col-lg-4:nth-child(2) .spec-head-area {
  background-color: #0093cb;
}

.row .col-lg-4:nth-child(3) .spec-head-area {
  background-color: #24794a;
}

.row .col-lg-4:nth-child(4) .spec-head-area {
  background-color: #f27e00;
}

.spec-head-area {
  width: 100%;
  height: 150px;
  align-content: center;
  text-align: center;
  padding: 0px 15px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.spec-text-head {
  margin: 12px 0px;
}

.spec-head {
  color: #fff;
}

.row .col-lg-4:nth-child(1) .spec-text-area {
  background-color: #ffeafb;
}

.row .col-lg-4:nth-child(2) .spec-text-area {
  background-color: #dbf1fb;
}

.row .col-lg-4:nth-child(3) .spec-text-area {
  background-color: #e5fbeb;
}

.row .col-lg-4:nth-child(4) .spec-text-area {
  background-color: #fffbde;
}

.spec-text-area {
  width: 100%;
  padding: 25px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  color: #565656;
}

.spec-area {
  position: relative;
}

.spec-text {
  list-style-type: disc;
  margin: 0px 25px;
}

@media only screen and (992px <= width <= 1199px) {
  .spec-text-area {
    height: 1075px;
  }
}

@media only screen and (1200px <= width <= 1399px) {
  .spec-text-area {
    height: 820px;
  }
}

@media only screen and (min-width: 1400px) {
  .spec-text-area {
    height: 775px;
  }

  .row .col-lg-4:nth-child(1) .spec-text-area {
    height: 500px;
  }

  .row .col-lg-4:nth-child(2) .spec-text-area {
    height: 500px;
  }

  .row .col-lg-4:nth-child(3) .spec-text-area {
    height: 500px;
  }
}

/* Specification Section End */

/* Approved CSRI Centre Section Start */

.approved-csri-centre-area {
  position: relative;
}

.section-heading-area {
  position: relative;
  margin: 12px 0px;
  padding: 12px 0px;
}

.sub-heading {
  color: var(--primary-color);
  font-size: var(--content-font-size);
  padding-bottom: 12px;
}

.sub-heading::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 2px;
  background-color: var(--primary-color-2);
  justify-self: anchor-center;
  top: 40%;
}

.section-head {
  font-size: var(--subheading-font-size);
}

.csri-center-input {
  width: 100%;
  display: flex;
  align-items: center;
}

.csri-label {
  margin: 0px;
  text-align: center;
  color: var(--primary-color);
  font-weight: 500;
}

.csri-select {
  text-align: center;
  margin: 0px 25px;
}

.submit-btn-area {
  width: 100%;
  text-align: center;
}

.submit-btn {
  width: 25%;
  border-style: none;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 50px;
}

.approved-centres-details {
  position: relative;
  margin: 12px 0px;
  padding: 12px 0px;
}
.centre-details-list-area {
  width: 100%;
  overflow-x: scroll;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: #29303b;
  border-style: solid;
  border-width: 1px;
  padding: 10px 20px;
}

.centres-locations {
  display: flex;
  justify-content: space-between;
}

.centre-location {
  display: flex;
  align-items: center;
}

.centre-state {
  color: var(--primary-color);
}

.centre-district {
  color: var(--primary-color);
}

.selected-centre {
  color: var(--secondary-color);
  padding: 0px 0px 0px 10px;
}

.centre-list-detail {
  width: 100%;
}

.town-name {
  color: var(--text-color);
  font-weight: 500;
  padding: 5px 0px;
}

.owner-number {
  color: var(--text-color);
  font-weight: 500;
  padding: 5px 0px;
}

.owner-img-area {
  width: 75px;
  height: 75px;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #02070e;
  align-content: center;
  text-align: center;
}

.owner-img {
  width: 100%;
  height: 100%;
}

/* Approved CSRI Centre Section End */

/* Course Details Section Start */

.course-details-area {
  position: relative;
}

.cd-input-area {
  width: 100%;
  display: flex;
  align-items: center;
}

@media only screen and (max-width:768px) {
.cd-input-area {
  justify-content: space-evenly;
}
}

.cd-label {
  margin: 0px 12px 0px 0px;
  text-align: center;
  color: var(--primary-color);
  font-weight: 500;
}

.submit-btn-area-1 {
  width: 100%;
  text-align: center;
  padding: 15px 0px;
}

/* Course Details Section End */

.div-part {
  padding: 60px 0px;
}

.div-part-1 {
  padding: 50px 0px;
}

@media only screen and (max-width: 768px) {
  .div-part-1 {
    padding: 25px 0px;
  }

  .div-part {
    padding: 30px 0px;
  }

  .section-heading-area {
    margin: 10px 0px;
    padding: 10px 0px;
  }
}

/* Minimum Requirements for CSRI Approval Section Start */

.mr-csri-approval-area {
  position: relative;
}

.requirement-details-area {
  width: 100%;
}

.requirement-details-list {
  width: 100%;
}

.requirement-list-head {
  background-color: #4e4d43;
}

.requirement-head-data {
  color: #fff;
  font-weight: 600;
}

.requirement-body-row:nth-child(odd) {
  background-color: #f8d4f1;
}

.requirement-body-row:nth-child(even) {
  background-color: #effcf1;
}

.requirement-body-data {
  color: #000;
  font-weight: 500;
  align-content: start;
}

.requirement-body-data ul {
  list-style: circle;
  padding: 0px 15px;
}

.instruct-link-area {
  width: 100%;
  border-radius: 12px;
}

.app-link-area {
  width: 200px;
  height: auto;
  margin: 12px 0px;
}

.app-link-img {
  width: 100%;
}

/* Minimum Requirements for CSRI Approval Section End */

/* Apply to CSRI Approval Section Start */

.instruction-heading-area {
  margin: 10px 0px;
  padding: 10px 0px;
}
.instruction-area ul {
  list-style: circle;
  padding: 0px 10px;
}

.instruct-head {
  color: var(--primary-color);
}

.instruct-content {
  margin: 10px 0px;
}

/* Apply to CSRI Approval Section End */

/* FAQ Section Start */

.faq-bg-1 {
  background-color: #d6edfa !important;
  color: #000;
  font-weight: 600;
}

.faq-content-1 {
  color: #005faa;
}

.faq-content-1 h4 {
  color: var(--primary-color);
  padding: 10px 0px;
}

.faq-content-1 ul {
  margin: 15px 0px;
  padding: 0px 35px;
}

.faq-content-1 ul li {
  list-style: square;
}

.faq-options-area {
  width: 100%;
  justify-items: center;
}

.faq-options {
  width: 75%;
}

.faq-option {
  width: 100%;
  height: 40px;

  margin: 0px 0px 12px 0px;
}

.faq-option-link {
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  align-content: center;
  text-align: center;
  transition: 0.25s ease-in-out;
}

.act {
  background-color: var(--secondary-color);
  color: var(--optional-color);
}

.faq-option-link:hover {
  background-color: var(--secondary-color);
  color: var(--optional-color);
}

.centre-req-table-area {
  width: 100% !important;
  word-break: break-word;
}

.centre-req-table-data {
  padding: 10px 20px;
}

.centre-req-table-data ul {
  padding: 0px 5px;
}

/* FAQ Section End */

/* Gallery Section Start */

.gallery-btns-area {
  width: 100%;
  justify-items: center;
}

.gallery-btns {
  width: 85%;
}

.gallery-btn {
  width: 100%;
  height: 40px;
  margin: 0px 0px 12px 0px;
}

.gallery-btn-link {
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  align-content: center;
  text-align: center;
  transition: 0.25s ease-in-out;
}

.gallery-btn-link:hover {
  background-color: var(--secondary-color);
  color: var(--optional-color);
}

.btn-act {
  background-color: var(--secondary-color);
  color: var(--optional-color);
}

/* Gallery Section End */

/* Video Gallery Section Start */

.video-gallery-section {
  width: 100%;
}

.video-link-area {
  width: 100%;
}

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

.video-title {
  margin: 12px 0px;
  padding: 0px 12px;
  color: var(--primary-color);
}

/* Video Gallery Section End */

/* Visitor Count Section Start */

.visitor-count-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-eye {
  padding: 0px 12px;
  color: var(--optional-color);
}

.viewer-count {
  color: var(--primary-color-2);
  font-weight: 500;
}

.visitor-count {
  padding: 0px 12px;
  color: #fff;
  font-weight: 600;
}

/* Visitor Count Section End */

/* Footer Our Organization Details Area Start */

.organization-details {
  position: relative;
  z-index: 1;
  margin: 10px 0px;
}

.organization {
  color: var(--primary-color-2);
  text-transform: uppercase;
  margin: 10px 0px;
}

.organizations-logos {
  display: flex;
  align-items: center;
}

.organization-logo {
  margin: 0px 5px;
}

.org-logos {
  cursor: pointer;
  margin: 0px 5px;
}

.tcds-logo {
  width: 225px;
  cursor: pointer;
}

.ec-plaza-logo {
  width: 290px;
  cursor: pointer;
}

.nstc-logo {
  width: 210px;
  cursor: pointer;
}

/* Footer Our Organization Details Area End */

/* Contact Page Social Media Section Start */

.social-media-details {
  width: 50%;
  margin: 15px 0px;
  padding: 0px 12px;
}

@media only screen and (max-width: 768px) {
  .social-media-details {
    width: 100%;
  }
}

.social-media-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.social-media-link {
  width: 35px;
  height: 35px;
  background-color: var(--primary-color);
  align-content: center;
  text-align: center;
  border-radius: 50px;
  color: #fff;
}

/* Contact Page Social Media Section End */

/* Mail Message Section Start */

.error {
  color: #ff2c2c !important;
  margin: 12px 0px 0px !important;
  font-size: 15px;
}

.success {
  color: #5cb85c !important;
  margin: 12px 0px 0px !important;
  font-size: 15px;
}

/* Mail Message Section End */


/* Custom Style Section End */

input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Customized Margin Section Start */

.mt-10 {
  margin: 10px 0px 0px;
}

.mt-20 {
  margin: 20px 0px 0px;
}

.mt-30 {
  margin: 30px 0px 0px;
}

.mt-40 {
  margin: 40px 0px 0px;
}

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

.mt-60 {
  margin: 60px 0px 0px;
}

.mt-70 {
  margin: 70px 0px 0px;
}

.mt-80 {
  margin: 80px 0px 0px;
}

.mt-90 {
  margin: 90px 0px 0px;
}

.mt-100 {
  margin: 100px 0px 0px;
}

.mb-10 {
  margin: 0px 0px 10px;
}

.mb-20 {
  margin: 0px 0px 20px;
}

.mb-30 {
  margin: 0px 0px 30px;
}

.mb-40 {
  margin: 0px 0px 40px;
}

.mb-50 {
  margin: 0px 0px 50px;
}

.mb-60 {
  margin: 0px 0px 60px;
}

.mb-70 {
  margin: 0px 0px 70px;
}

.mb-80 {
  margin: 0px 0px 80px;
}

.mb-90 {
  margin: 0px 0px 90px;
}

.mb-100 {
  margin: 0px 0px 100px;
}

/* Customized Margin Section End */
