/*
==============================
Default CSS
==============================
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");

body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

ul li {
  list-style: none;
}

:focus {
  outline: 0 !important;
}

p {
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 23px;
  color: #666666;
  font-size: 15px;
}

a {
  color: #222222;
  text-decoration: none;
  -webkit-transition: .4s;
  transition: .4s;
}

a:hover,
a:focus {
  color: #fca20b;
  text-decoration: none;
}

.btn-check:focus+.btn,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(253, 193, 13, 0.25);
}

img {
  max-width: 100%;
}

.ptb-80 {
  padding-bottom: 80px;
  padding-top: 80px;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.text-justify {
  text-align: justify;
}

.bg-f6f6f6 {
  background: #f6f6f6;
}

/*Btn Btn-Primary*/
.btn {
  padding: 10px 40px;
  font-size: 16px;
  border-radius: 30px;
  -webkit-transition: .4s;
  transition: .4s;
  text-transform: uppercase;
}

.btn-primary {
  color: #fff;
  background-color: #fca20b;
  border-color: #fca20b;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.disabled:hover,
.btn-primary.disabled:focus {
  color: #fca20b;
  background-color: #fff;
  border-color: #fca20b;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #fca20b;
  border-color: #fca20b;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-primary.focus,
.btn-primary:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #fca20b;
  border-color: #fca20b;
  opacity: 1;
}

.btn-primary-outlined {
  border: 2px solid #fca20b;
  background: transparent;
  color: #fca20b;
  min-width: 200px;
}

.btn-primary-outlined:hover {
  background: #fca20b;
  color: #fff;
}

.btn-black-outlined {
  border: 2px solid #000000;
  background: transparent;
  color: #000000;
  min-width: 200px;
}
.btn-black-outlined:hover{
  background: #000000;
  color: #fff;
}
/* Section Title */
.section-title {
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}

.section-title::before,
.section-title::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  left: 10px;
  top: 0;
  background: #fca20b;
  -webkit-transition: .4s;
  transition: .4s;
}

.section-title::after {
  left: 0;
  height: 50%;
}

.section-title:hover::before {
  height: 50%;
}

.section-title:hover::after {
  height: 100%;
}

.section-title h2 {
  font-size: 35px;
  font-weight: 200;
  margin-bottom: 20px;
}

.section-title h2 span {
  color: #fca20b;
  font-weight: 600;
}

.section-title p {
  margin-top: -7px;
}

.section-title h4 {
  font-size: 18px;
  font-weight: 300;
  color: #fca20b;
  margin-bottom: 17px;
  text-transform: capitalize;
}

/* Form Control */
.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 45px;
  padding: 10px;
  font-size: 15px;
  background-color: #ffffff;
  border: 1px solid #bcbbbb;
  border-radius: 0;
}

.form-control:focus {
  border-color: #dddddd;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}


textarea.form-control {
  min-height: 125px;
}

/* Owl Carousel Button */
.owl-theme .owl-controls {
  margin-top: 50px;
  line-height: 0;
}

.owl-theme .owl-nav {
  margin-top: 0;
}

.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 4px;
  background: transparent;
  border-radius: 50%;
  border: 2px solid #dddddd;
  -webkit-transition: .4s;
  transition: .4s;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #869791;
  border-radius: 5px;
  width: 35px;
  height: 10px;
  border-color: #fca20b;
  background: #fca20b;
}

.owl-theme .owl-dots .owl-dot:hover span {
  background: #fca20b;
  border-color: #fca20b;
}

.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  left: 40px;
  top: 50%;
  margin-top: -20px;
  background: rgba(255, 255, 255, 0.33);
  width: 60px;
  text-align: center;
  height: 60px;
  line-height: 54px;
  border-radius: 50%;
  font-size: 30px;
  color: #ffffff;
  -webkit-transition: .4s;
  transition: .4s;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #fca20b;
  color: #ffffff;
}

.owl-theme .owl-nav .owl-next {
  left: auto;
  right: 40px;
}

/*
==============================
Preloader CSS
==============================
*/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 99999;
}

.preloader .folding-cube {
  left: 0;
  width: 60px;
  height: 60px;
  position: absolute;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  top: 50%;
  right: 0;
  margin: -60px auto 0;
}

.preloader .folding-cube .cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.preloader .folding-cube .cube::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fca20b;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.preloader .folding-cube .cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.preloader .folding-cube .cube2::before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.preloader .folding-cube .cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.preloader .folding-cube .cube3::before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.preloader .folding-cube .cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.preloader .folding-cube .cube4::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {

  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {

  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

/*
==============================
Main Header CSS
==============================
*/
.top-header {
  background: #1e6568;
}

.vwrap,
.vitem {
  height: 30px;
  line-height: 30px;
}

.vwrap {
  overflow: hidden;
}

.hmove {
  display: flex;
}

.vitem {
  text-align: center;
  color: #fcc00b;
  font-size: 15px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

/* CHANGE KEYFRAMES IF YOU ADD/REMOVE ITEMS */
.vmove {
  display: flex;
}

@keyframes tickerh {
  0% {
    transform: translate3d(100%, 0, 0);
  }

  100% {
    transform: translate3d(-400%, 0, 0);
  }
}

.vmove {
  animation: tickerh linear 40s infinite;
}

.vmove:hover {
  animation-play-state: paused;
}

.navbar {
  position: fixed;
  /*top: 30px;*/
  left: 0;
  width: 100%;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(0, 0, 0, 0.2) !important;
}

.header-sticky.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  padding-top: 0;
  padding-bottom: 0;
  background: #fff !important;
}

.navbar-light .navbar-brand {
  color: #ffffff;
  font-weight: 600;
  max-width: 140px;
  text-transform: uppercase;
}

.navbar-light .navbar-brand span {
  color: #fca20b;
  font-size: 35px;
  font-weight: 700;
  text-transform: lowercase;
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: #ffffff;
}

.navbar-brand.logo-dark {
  display: none;
}

.header-sticky.is-sticky .navbar-brand.logo-dark {
  display: block;
}

.header-sticky.is-sticky .navbar-brand.logo-light {
  display: none;
}

.navbar-light .navbar-nav .nav-item:last-child {
  padding-right: 0;
}

.navbar-light .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  padding: 10px 15px;
  line-height: 60px;
  position: relative;

}


.navbar-light .navbar-nav .nav-item .nav-link.active::before {
  content: '';
  width: 100%;
  height: 8px;
  background: #FCA20B;
  background-repeat: repeat;
  background-size: auto;
  bottom: -8px;
  position: absolute;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.navbar-light .navbar-nav .nav-item .nav-link.active::after {
  content: '';
  width: 0;
  height: 0;
  background: transparent;
  border-top: 8px solid #c07e11;
  border-left: 10px solid transparent;
  position: absolute;
  bottom: -8px;
  left: -10px;
}

.navbar-light .navbar-nav .nav-item .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link.show,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link:focus {
  color: #fff;
  background: #fca20b;
}

.navbar-light .navbar-nav .active .nav-link,
.navbar-light .navbar-nav.show .nav-link {
  color: #fca20b;
}

.header-sticky.is-sticky .navbar-light .navbar-brand {
  color: #000000;
}

.header-sticky.is-sticky .navbar-light .navbar-nav .nav-link {
  color: #000000;
}

.header-sticky.is-sticky .navbar.navbar-light {
  background: #fff !important;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.header-sticky.is-sticky .navbar-light .navbar-nav .nav-link.active,
.header-sticky.is-sticky .navbar-light .navbar-nav .nav-link.show,
.header-sticky.is-sticky .navbar-light .navbar-nav .nav-link:hover,
.header-sticky.is-sticky .navbar-light .navbar-nav .nav-link:focus {
  color: #fff;
}

.header-sticky.is-sticky .navbar-light .navbar-nav .active .nav-link,
.header-sticky.is-sticky .navbar-light .navbar-nav .show .nav-link {
  color: #fca20b;
}

/*
==============================
Main Banner CSS
==============================
*/
.home-slides {
  position: relative;
}

.home-slides::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 90px;
  background: url(../img/slider-bottom.png);
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0;
  left: 0;
  right: 0;
}

.home-slides .main-banner {
  position: relative;
}

.home-slides .main-banner::before {
  content: '';
  top: 0;
  bottom: 0;
  position: absolute;
  background: none;
  opacity: 0.7;
  width: 100%;
  height: 100%;
}

.main-banner {
  height: 700px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.main-banner-text {
  text-align: center;
  position: relative;
  z-index: 1;
}

.main-banner-text h4 {
  color: #fff;
  font-weight: 200;
  font-size: 24px;
  letter-spacing: 1px;
}

.main-banner-text h1 {
  color: #fff;
  font-size: 70px;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-banner-text h1 span {
  color: #fca20b;
  font-weight: 600;
}

.main-banner-text p {
  color: #fff;
  max-width: 850px;
  margin: auto;
  margin-bottom: auto;
  margin-bottom: auto;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
}

.main-banner-text .btn:hover,
.main-banner-text .btn:focus {
  border-color: #ffffff;
}

/*.main-banner-text .view-work {*/
/*  margin-top: 10px;*/
/*}*/

.main-banner-text .view-work:hover,
.main-banner-text .view-work:focus {
  border-color: #fca20b;
  background: #fca20b;
  color: #ffffff;
}

.home-slides .owl-controls {
  margin-top: 0;
}

/*
==============================
Video Banner CSS
==============================
*/
.video-background {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  z-index: -100;
}

/*
==============================
Creative Banner CSS
==============================
*/
.creative-banner-one {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-width: 10rem 100vw 0 0;
  border-color: transparent #ffffff #ffffff transparent;
  border-style: solid;
}

.creative-banner-two {
  position: relative;
  top: 100%;
  width: 100%;
  height: 0;
  z-index: 9;
}

.creative-banner-two::before {
  content: "";
  border-right: 50vw solid #ffffff;
  border-top: 160px solid transparent;
  bottom: 0;
  right: 0;
  position: absolute;
  height: 0;
  width: 0;
}

.creative-banner-two::after {
  content: '';
  position: absolute;
  border-left: 50vw solid #ffffff;
  border-top: 160px solid transparent;
  bottom: 0;
  height: 0;
  left: 0;
  width: 0;
}

.creative-banner-three {
  position: relative;
  top: 100%;
  width: 100%;
  height: 0;
}

.creative-banner-three::before {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  background-image: url(../img/shape.png);
  height: 150px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*
==============================
Particles Banner CSS
==============================
*/
#particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

#particles-js-two {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/*
==============================
Welcome Area CSS
==============================
*/
.single-author .pic {
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 300px;
  margin: auto;
}

.single-author {
  position: relative;
  max-width: 300px;
  margin: auto;
}

.single-author .author-quote {
  position: absolute;
  top: 0;
  color: #fff;
  bottom: 0;
  margin: 25px;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
}

.single-author .author-quote .auth-name {
  color: #fca20b;
  font-size: 12px;
  font-weight: 600;
}

.single-author .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
==============================
Diagnosis Area CSS
==============================
*/
.diagnosis-area {
  background-image: url(../img/patt.png);
  background-position: center center;
  background-color: #fefefe;
  background-attachment: fixed;
}

.diagnosis-content {
  margin-top: 12px;
}

.diagnosis-content .section-title {
  margin-bottom: 20px;
  padding-left: 0;
}

.diagnosis-content .section-title::before,
.diagnosis-content .section-title::after {
  display: none;
}

.diagnosis-content .section-title h2 {
  font-size: 22px;
}

.diagnosis-content ul {
  margin-bottom: 30px;
}

.diagnosis-content ul li {
  margin-bottom: 10px;
  font-weight: 300;
  color: #666666;
}

.diagnosis-content ul li i {
  color: #fca20b;
  margin-right: 5px;
}

.diagnosis-content ul li:last-child {
  margin-bottom: 0;
}

.diagnosis-content .pull-left {
  margin-right: 45px;
}

@-webkit-keyframes float_left_right {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0.40;
  }

  100% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 1;
  }
}

@keyframes float_left_right {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0.40;
  }

  100% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 1;
  }
}

/**diagnosis page**/
.diag-step,
.diag-step-1 {
  position: relative;
  padding: 60px 0;
}

.diag-img-1 {
  position: absolute;
  right: auto;
  right: 0;
  z-index: -1;
  text-align: right;
  max-width: 50%;
}

.single-diag-item {
  background: rgba(240, 240, 240, 0.9);
  padding: 30px;
  margin-top: 40px;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.single-diag-item h4 {
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: 600;
}

.diag-img-2 {
  position: absolute;
  right: auto;
  left: 0;
  z-index: -1;
  text-align: left;
  max-width: 50%;
}

.flaws-wrap {
  padding: 40px 0;
}

.flaws-wrap h3 {
  text-align: center;
  margin: 30px 0;
}

.flaws-wrap .f-text {
  position: relative;
  padding: 30px;
  text-align: justify;
}

.flaw-content {
  max-width: 900px;
  margin: auto;
  background: #f8f8f8;
  position: relative;
}

.flaws-wrap .f-text h4 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #fca20b;
  font-weight: 600;
}

.flaw-content::before {
  content: '';
  position: absolute;
  background: #eee;
  bottom: 0;
  right: 0;
  top: 0;
  width: 50%;
}

/*
==============================
ideology CSS
==============================
*/
.ideology-section {
  padding-bottom: 90px;
}

.single-ideology {
  border-radius: 10px;
  margin-bottom: 40px;
  position: relative;
  -webkit-box-shadow: 0 20px 40px 0 rgba(28, 30, 35, 0.2);
  box-shadow: 0 20px 40px 0 rgba(28, 30, 35, 0.2);
  background: #ffffff;
  padding: 20px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.single-ideology:hover {
  background: #fca20b;
  color: #ffffff;
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.single-ideology i {
  transition: .4s;
  width: 40px;
  height: 40px;
  background: #fca20b;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: -20px;
  padding-left: 5px;
}

.single-ideology:hover i {
  background: #ffffff;
  color: #fca20b;
}

.single-ideology h4 {
  margin-bottom: 20px;
  margin-top: 0px;
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
}

.single-ideology p {
  -webkit-transition: .4s;
  transition: .4s;
}

.single-ideology:hover p {
  color: #ffffff;
}

.single-ideology span {
  bottom: 20px;
  color: rgba(0, 0, 0, 0.03);
  font-size: 200px;
  line-height: 180px;
  position: absolute;
  right: 0;
  -webkit-transition: .4s;
  transition: .4s;
}

.single-ideology:hover span {
  color: rgba(255, 255, 255, 0.2);
}

/*--ideology page--*/
.single-ideology-item {
  padding: 40px;
}

.coun-num {
  font-weight: 600;
  width: 60px;
  height: 60px;
  background: #fca20b;
  color: #fff;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  margin-top: -25px;
  margin-bottom: 40px;
  border: 2px solid #fff;
  box-shadow: 0px 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.ideo-step {
  padding-bottom: 30px;
}

.single-ideology-item h4 {
  margin-bottom: 40px;
}

/*
==============================
CTR Area CSS
==============================
*/
.ctr-area {
  text-align: center;
  background-image: url(../img/ctr-bg.jpg);
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.ctr-inner-wrap {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 1000px;
  margin: auto;
}

.ctr-area .section-title {
  padding-left: 0;
}

.ctr-area .section-title::after,
.ctr-area .section-title::before {
  display: none;
}

.ctr-area .section-title h2 {
  margin-top: 30px;
}

.ctr-area .section-title p {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

.single-cate {
  width: 165px;
  display: inline-block;
  margin: 6px;
  margin-bottom: 6px;
  border-radius: 5px;
  margin-bottom: 35px;
}

.single-cate:hover h4 {
  background: #fca20b;
  color: #fff;
}

.cate-img {
  display: block;
  width: 164px;
  height: 145px;
  overflow: hidden;
  border-radius: 5px;
}

.single-cate:hover .cate-img {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}

.cate-img img {

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-cate h4 {
  background: rgba(255, 255, 255, 0.9);
  line-height: 20px;
  position: relative;
  max-width: 90%;
  margin: -15px auto;
  padding: 5px;
  font-size: 14px;
  border-radius: 2px;
  transition: 0.4s;
}

/****** curriculum area****/
.curriculum-area {
  position: relative;
}

.curriculum-area::before {
  background-image: url(../img/curriculum-bg.png);
  background-repeat: no-repeat;
  background-position: top left;
  z-index: -1;
  content: '';
  position: absolute;
  width: 40%;
  right: 0;
  top: 0;
  bottom: 0;

}

.curr-item {
  padding: 40px;
  background: #ddd;
}

.curr-item h2 {
  margin-bottom: 20px;
}

.curr-item.yellow-bg {
  background: #fdf9ba;
  padding-right: 50px;
}

.curr-item.blue-bg {
  background: #e4fdf6;
  margin-left: -50px;
  z-index: 2;
  margin-top: 60px;
  box-shadow: 0 3px 16px 3px rgba(0, 0, 0, 0.2);
}

.curr-btn {
  margin-top: -30px;
}

/*
==============================
Books Slider Area CSS
==============================
*/
.books-slider.owl-theme .owl-nav [class*="owl-"] {
  top: 30%;
}

.single-book .pic {
  height: 200px;
  max-width: 200px;
  margin: auto;
  overflow: hidden;
}

.single-book .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-book .title {
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 25px;
}

.single-book .book-info {
  padding: 15px 0;
}

.single-book .book-info .price {
  color: #FCA20B;
  font-weight: 600;
  font-size: 20px;
  margin-top: 5px;
  display: block;
}

/*
==============================
Fun Facts Area CSS
==============================
*/
.funFacts-area {
  background-image: url(../img/funfact-bg.jpg);
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.funFacts-area::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: .77;
}

.funFact {
  position: relative;
  padding-left: 65px;
}

.funFact i {
  font-size: 50px;
  color: #fca20b;
  position: absolute;
  left: 0;
  top: 2px;
}

.funFact .fa.fa-users {
  left: -10px;
}

.funFact h2 {
  color: #ffffff;
  margin-bottom: 5px;
  font-size: 45px;
  font-weight: 600;
}

.funFact p {
  color: #ffffff;
  font-size: 18px;
}

/*
==============================
Team Area CSS
==============================
*/
.our-team {
  text-align: center;
  position: relative;
  max-width: 270px;
  margin: 0 auto 50px;
}

.our-team .team-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92%;
  background: #ffffff;
  margin-left: 15px;
  padding-top: 20px;
  z-index: 1;
  -webkit-transition: .4s;
  transition: .4s;
}

.our-team .pic {
  width: 100%;
  height: 350px;
}

.our-team .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-team .team-content .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  -webkit-transition: .4s;
  transition: .4s;
}

.our-team .team-content .post {
  color: #666666;
  -webkit-transition: .4s;
  transition: .4s;
}

.our-team:hover .team-content .title {
  color: #ffffff;
}

.our-team:hover .team-content .post {
  color: #ffffff;
}

.our-team:hover .team-content {
  bottom: 36%;
  background: transparent;
}

.our-team .social {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, rgba(0, 0, 0, 0.9)), color-stop(80%, rgba(0, 0, 0, 0.3)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.3) 80%);
  -webkit-transition: .4s;
  transition: .4s;
  opacity: 0;
  visibility: hidden;
}

.our-team .social ul {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -50px;
  -webkit-transform: translateY(-35px);
  transform: translateY(-35px);
  -webkit-transition: .4s;
  transition: .4s;
}

.our-team .social ul li {
  display: inline-block;
}

.our-team .social ul li a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50%;
}

.our-team .social ul li a:hover {
  border-color: #fca20b;
  background: #fca20b;
}

.our-team:hover .social {
  opacity: 1;
  visibility: visible;
}

.our-team:hover .social ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/*
==============================
How We Work CSS
==============================
*/
.how-work {
  background-image: url(../img/dott.jpg);
  background-position: center;
  background-size: contain;
  background-repeat: repeat;
}

.single-how-work {
  -webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
  box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
  background: #ffffff;
  padding: 35px;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.single-how-work:hover {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.single-how-work h3 {
  color: #fca20b;
  font-size: 45px;
  font-weight: 700;
}

.single-how-work h4 {
  margin-top: 25px;
  margin-bottom: 18px;
  font-size: 22px;
}

/*
==============================
Services Area CSS
==============================
*/
.services-area {
  padding-bottom: 50px;
  background: url(../img/service-bg.jpg) repeat;
}

.services-area .single-box {
  margin-bottom: 30px;
}

.single-services {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  -webkit-transition: .4s;
  transition: .4s;
}

.single-services:hover {
  -webkit-box-shadow: unset;
  box-shadow: unset;
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.single-services::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-bottom: 2px solid #fca20b;
  opacity: 0;
  -webkit-transition: .4s;
  transition: .4s;
}

.single-services:hover::before {
  opacity: 1;
  width: 100%;
  height: 50%;
}

.single-services .services-img {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: 290px;
  height: 280px;
  text-align: center;
  margin: auto;
  padding: 45px;
}

@-webkit-keyframes rotateme {
  0% {
    -webkit-transform: rotate(0deg);
    opacity: 1;
  }

  50% {
    -webkit-transform: rotate(180deg);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: rotate(360deg);
    opacity: 1;
  }
}

@-moz-keyframes rotateme {
  0% {
    -moz-transform: rotate(0deg);
    opacity: 1;
  }

  50% {
    -moz-transform: rotate(180deg);
    opacity: 0.7;
  }

  100% {
    -moz-transform: rotate(360deg);
    opacity: 1;
  }
}

@-o-keyframes rotateme {
  0% {
    -o-transform: rotate(0deg);
    opacity: 1;
  }

  50% {
    -o-transform: rotate(180deg);
    opacity: 0.7;
  }

  100% {
    -o-transform: rotate(360deg);
    opacity: 1;
  }
}

@keyframes rotateme {

  0% {
    transform: rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}

.services-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.2);
}

.single-services .services-img .icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -30px;
}

.single-services i {
  width: 70px;
  height: 70px;
  line-height: 71px;
  border: 1px solid #ffffff;
  font-size: 30px;
  color: #ffffff;
  border-radius: 50%;
  -webkit-transition: .4s;
  transition: .4s;
}

.single-services:hover i {
  background: #ffffff;
  color: #fca20b;
}

.single-services .services-content {
  padding: 30px 25px;
  position: relative;
}

.single-services .services-content h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 18px;
}

.single-services.sec-ser {
  padding-top: 70px;
}

.services-text {
  padding: 40px;
  text-align: justify;
}

.services-text h3 {
  margin-bottom: 20px;
}

/*
==============================
Why We Are Different CSS
==============================
*/
.tabset input[type="radio"] {
  display: none;
}

.tabset .tab-panel {
  display: none;
}

.tabset input:first-child:checked~.tab-panels .tab-panel:first-child {
  display: block;
}

.tabset input:nth-child(3):checked~.tab-panels .tab-panel:nth-child(2) {
  display: block;
}

.tabset input:nth-child(5):checked~.tab-panels .tab-panel:nth-child(3) {
  display: block;
}

.tabset input:nth-child(7):checked~.tab-panels .tab-panel:nth-child(4) {
  display: block;
}

.tabset input:nth-child(9):checked~.tab-panels .tab-panel:nth-child(5) {
  display: block;
}

.tabset input:nth-child(11):checked~.tab-panels .tab-panel:nth-child(6) {
  display: block;
}

.tabset label {
  position: relative;
  display: inline-block;
  padding: 15px 32px;
  margin-right: 6px;
  margin-bottom: 0;
  cursor: pointer;
  background: transparent;
  -webkit-transition: background ease 0.2s;
  transition: background ease 0.2s;
  border: 1px solid #dddddd;
  border-radius: 5px;
  font-size: 18px;
}

.tabset input:checked+label {
  border-color: #fca20b;
  background: #fca20b;
  color: #ffffff;
}

.tab-panel {
  margin-top: 35px;
}

.tab-panel .why-we-different-text h4 {
  font-size: 35px;
  font-weight: 200;
  margin-bottom: 20px;
}

.tab-panel .why-we-different-text p {
  max-width: 635px;
  margin-top: -7px;
}

.tab-panel .why-we-different-text ul {
  margin-top: 25px;
  margin-bottom: 30px;
}

.tab-panel .why-we-different-text ul li {
  margin-bottom: 10px;
  font-weight: 300;
  color: #666666;
}

.tab-panel .why-we-different-text ul li:last-child {
  margin-bottom: 0;
}

.tab-panel .why-we-different-text ul li i {
  color: #fca20b;
  margin-right: 5px;
}

.why-we-different-img img {
  width: 100%;
}

/*
==============================
Work Area CSS
==============================
*/
.shorting-menu {
  display: inline-block;
  -webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
  box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
  padding: 18px 20px;
  border-radius: 50px;
}

.shorting-menu .filter {
  border: none;
  background: #f4f4f4;
  padding: 9px 24px;
  text-transform: capitalize;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 30px;
  color: #000000;
}

.shorting-menu .filter.active,
.shorting-menu .filter:hover {
  background: #fca20b;
  color: #ffffff;
}

.shorting {
  margin-top: 40px;
}

.shorting .mix {
  display: none;
}

.single-work {
  overflow: hidden;
  position: relative;
  padding: 5px;
}

.single-work img {
  width: 100%;
}

.single-work::before {
  content: '';
  position: absolute;
  top: 15px;
  width: 95%;
  height: 93%;
  background: #000000;
  left: 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .4s;
  transition: .4s;
}

.single-work:hover::before {
  top: 21px;
  width: 93%;
  height: 91%;
  left: 21px;
  opacity: .66;
  visibility: visible;
}

.single-work .work-content {
  position: absolute;
  bottom: 20px;
  width: 86%;
  background: #ffffff;
  left: 40px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .4s;
  transition: .4s;
}

.single-work .work-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.single-work .work-content ul li {
  display: inline-block;
  font-size: 14px;
}

.single-work:hover .work-content {
  bottom: 35px;
  opacity: 1;
  visibility: visible;
}

.single-work .popup-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 45px;
  text-align: center;
  height: 45px;
  line-height: 46px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  border: 1px solid #ffffff;
  -webkit-transition: .4s;
  transition: .4s;
}

.single-work .popup-btn:hover {
  background: #fca20b;
  border-color: #fca20b;
}

.single-work:hover .popup-btn {
  top: 36px;
  opacity: 1;
  visibility: visible;
}

/*
==============================
Shop page CSS
==============================
*/


.my-filter-title {
  font-size: 18px;
  margin: 20px 0 10px;
}

.filters-div label {
  color: #555;
  font-weight: 400;
  font-size: 14px;
}

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
}

.sidebar a {
  padding: 8px 8px 8px 8px;
  text-decoration: none;
  font-size: 10px;
  display: block;
  transition: 0.3s;
}


.sidebar .closebtn {
  position: absolute;
  top: 0;
  left: 155px;
  font-size: 26px;
  margin-left: 55px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border: none;
}


#main {
  transition: margin-left .5s;
  padding: 16px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {
    padding-top: 15px;
  }

  .sidebar a {
    font-size: 18px;
  }
}

.bookory-sorting {
  margin-bottom: 30px;
}

.bookory-sorting {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.filter-toggle {
  display: inline-block;
  align-items: center;
  font-size: 14px;
  background: 0 0;
  margin-right: 20px;
  outline: none;
  text-align: center;
  line-height: 18px;
  font-weight: 600;
  color: var(--accent);
}

.gridlist-toggle {
  display: inline-flex;
  margin-right: auto;
  margin-left: -4px;
}

.gridlist-toggle a.active,
.gridlist-toggle a:hover {
  color: var(--accent);
}

.gridlist-toggle a {
  font-size: 12px;
  display: inline-block;
  color: var(--light);
  padding: 4px;
  line-height: 0;
}

.bookory-sorting .woocommerce-ordering {
  position: relative;
  margin-left: auto;
}

select:not([size]):not([multiple]) {
  color: var(--text);
  background-color: #fff;
  border: 1px solid;
  border-color: var(--border);
  max-width: 100%;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
  width: 100%;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNic+PHBhdGggZmlsbD0nbm9uZScgc3Ryb2tlPScjMzQzYTQwJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1saW5lam9pbj0ncm91bmQnIHN0cm9rZS13aWR0aD0nMicgZD0nTTIgNWw2IDYgNi02Jy8+PC9zdmc+);
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  border-radius: 0;
}

.bookory-sorting .woocommerce-ordering select {
  font-size: 12px;
  line-height: 24px;
  border: none;
  padding: 0 18px 0 0;
  background-position: 100% center;
  background-size: 10px 10px;
  text-align: right;
  color: var(--accent);
  background-color: var(--background);
}

.bookory-products-per-page {
  font-size: 12px;
  color: var(--accent);
  padding-left: 19px;
  margin-left: 14px;
  position: relative;
  display: flex;
  align-items: center;
}

.bookory-products-per-page select:not([size]):not([multiple]) {
  margin-left: 3px;
  padding: 0 18px 0 0;
  border: none;
  width: auto;
  background-position: 100% center;
  background-size: 10px 10px;
  color: var(--accent);
  background-color: var(--background);
}

.cant-find-what-div {
  background: #f6f6f6;
  border-radius: 5px;
  display: block;
  text-align: center;
  padding: 0 3% 50px;
  margin: 10% 0;
}

.my-cant-find-what-title {
  display: inline-block;
  font-size: 30px !important;
  font-weight: bolder !important;
  letter-spacing: 0;
  color: #333533 !important;
  margin: 40px 0 30px 1% !important;
  width: 100%;
  padding-bottom: 0;
  font-family: playfair display, serif !important;
  line-height: 35px;
}

.filters-div {
  background: #f7f7f7;
  padding: 15px;
}

.books-listing .single-book .pic {
  height: 240px;
  max-width: 200px;
  margin: auto;
  overflow: hidden;
  background: #f2f2f2;
}

.books-listing .single-book {
  margin-bottom: 20px;
}

.books-listing .single-book .price {
  font-size: 14px;
  color: #262626;
  line-height: 25px;
  font-weight: 700;
}

.books-listing .single-book .price-new {
  position: relative;
  display: inline-block;
}

.books-listing .single-book .price-old {
  color: #d22129;
  text-decoration: line-through;
  margin-left: 5px;
  display: inline-block;
  font-size: 12px;
}

.books-listing .author {
  color: #383838;
  font-size: 13px;
  letter-spacing: 0;
  margin-bottom: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 5px;
  line-height: 18px;
  width: calc(100% - 45px);
}

.books-listing .single-book .pic img {
  object-fit: contain;
}

/*
==============================
FAQ Area CSS
==============================
*/
.faq-area .image {
  background-image: url(../img/faq-img.jpg);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.card {
  background-color: transparent;
  border-radius: 10px !important;
  margin-bottom: 6px;
  border: none;
  -webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
  box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
}

.card .card-header {
  padding: 0;
  margin-bottom: 0;
  border: none;
  background: transparent;
}

.card .card-header:first-child {
  border-radius: 0;
}

.card .card-header a {
  display: block;
}

.card .card-header a:hover {
  background: #fca20b;
}

.card .card-header a h5 {
  font-size: 17px;
  overflow: hidden;
  padding: 20px;
  color: #ffffff;
  line-height: 16px;
  background: #fca20b;
}

.card .card-header a.collapsed h5 {
  color: #000000;
  background: transparent;
  -webkit-transition: .4s;
  transition: .4s;
}

.card .card-header a.collapsed h5:hover {
  color: #ffffff;
}

.card .card-header a i {
  float: right;
  font-size: 16px;
}

.card .card-header a.collapsed .fa.fa-plus::before {
  content: "\f067";
}

.card .card-header a .fa.fa-plus::before {
  content: "\f068";
}

.card .card-body {
  line-height: 1.9;
  background: transparent;
  color: #666666;
}

/*
==============================
Testimonials Area CSS
==============================
*/
.testimonials-area {
  padding-bottom: 50px;
}

.single-feedback {
  -webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
  box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
  background-image: url(../img/patt.png);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.single-feedback .client-info {
  position: relative;
  margin-bottom: 35px;
  padding-left: 100px;
  padding-top: 15px;
}

.single-feedback .client-info .client-pic {
  max-width: 80px;
  position: absolute;
  left: 0;
  top: 0;
}

.single-feedback .client-info .client-pic img {
  border-radius: 50%;
}

.single-feedback .client-info .client-title h4 {
  font-size: 19px;
  font-weight: 500;
  -webkit-transition: .4s;
  transition: .4s;
}

.single-feedback .client-info .client-title h5 {
  font-size: 15px;
  margin-top: 13px;
  color: #666666;
  -webkit-transition: .4s;
  transition: .4s;
}

.single-feedback p {
  -webkit-transition: .4s;
  transition: .4s;
}

.single-feedback span {
  font-size: 175px;
  position: absolute;
  bottom: 0;
  right: 0;
  color: rgba(0, 0, 0, 0.03);
  -webkit-transition: .4s;
  transition: .4s;
  line-height: 0;
}

.single-feedback:hover {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
  background: #fca20b;
}

.single-feedback:hover .client-title h4,
.single-feedback:hover .client-title h5 {
  color: #ffffff;
}

.single-feedback:hover p {
  color: #ffffff;
}

.single-feedback:hover span {
  color: rgba(255, 255, 255, 0.2);
}

/*
==============================
Blog Area CSS
==============================
*/
.single-blog-item {
  position: relative;
  padding: 20px;
  border: 1px solid #eeeeee;
  overflow: hidden;
  margin-bottom: 40px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.single-blog-item span {
  position: absolute !important;
  margin-top: -30px;
  background: orange;
  color: #fff;
  padding: 5px 10px;
  font-size: 10px;
  border-radius: 0 8px 8px 0;
}

.bot-pagination .page-link {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50% !important;
  margin: 7px;
  padding: 0 !important;
  color: #666;
  border: 1px solid #666;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #fca20b;
  border-color: #fca20b;
}

.single-blog-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: .4s;
  transition: .4s;
}

.single-blog-item span,
.single-blog-item p,
.single-blog-item h4 {
  position: relative;
  -webkit-transition: .4s;
  transition: .4s;
}

.single-blog-item h4 {
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 500;
}

.single-blog-item h4 a:hover {
  color: #fca20b !important;
}

.single-blog-item .link-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45px;
  height: 40px;
  line-height: 44px;
  text-align: center;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 27, 103, 0.3);
  box-shadow: 0px 0px 25px 0px rgba(0, 27, 103, 0.3);
  border-radius: 50% 0 0 0;
}

.single-blog-item:hover::before {
  background: #000000;
  opacity: .66;
}

.single-blog-item:hover span,
.single-blog-item:hover p,
.single-blog-item:hover h4 a {
  color: #ffffff;
}

.single-blog-item:hover .link-btn {
  background: #fca20b;
  color: #ffffff;
}

/*
==============================
Partner Area CSS
==============================
*/
.partner-area {
  text-align: center;
}

.partner-area .owl-carousel .owl-item img {
  width: 140px;
}

/*
==============================
Subscribe Area CSS
==============================
*/

.subscribe-area {
  background-color: #2d7a7d;
  position: relative;
}

.subscribe-area::before {
  content: '';
  background: url(../img/newsletter-bg.jpg);
  width: 50%;
  position: absolute;
  top: 0;
  background-position: left bottom;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
}

.subscribe-area:after {
  content: '';
  background: url(../img/newsletter-top.png);
  width: 100%;
  height: 200px;
  background-size: cover;
  position: absolute;
  top: 0;
  background-position: bottom center;
}

.newsletter {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding: 35px;
  border-radius: 5px;
}

.newsletter h4 {
  text-transform: capitalize;
  margin-bottom: 30px;
  color: #fff;
  font-size: 30px;
}

.newsletter p {
  color: #fff;
}

.newsletter form {
  position: relative;
}

.newsletter form .form-control {
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
  height: 60px;
  border-radius: 50px;
  padding-left: 20px;
  font-size: 15px;
}

.newsletter form .btn {
  position: absolute;
  right: 7px;
  top: 5px;
  height: 50px;
  width: 140px;
}

.newsletter form .validation-danger {
  margin-top: 20px;
  color: red;
}

.newsletter form .validation-success {
  margin-top: 20px;
}

/*
==============================
Contact Area CSS
==============================
*/
#map iframe {
  width: 100%;
  height: 400px;
  margin-bottom: -10px;
}

.contact-info {
  -webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
  box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
  background: #ffffff;
  padding: 30px;
  border-top: 3px solid #fca20b;
  border-bottom: 3px solid #fca20b;
}

.contact-info ul li {
  position: relative;
  padding-left: 60px;
  font-size: 16px;
  margin-bottom: 34px;
  color: #151515;
}

.contact-info ul li:last-child {
  margin-bottom: 0;
}

.contact-info ul li i {
  position: absolute;
  left: 0;
  top: -11px;
  color: #fca20b;
  font-size: 19px;
  background: #f6f6f6;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
}

.contact-info .follow-us {
  text-align: right;
  margin-top: 40px;
}

.contact-info .follow-us li {
  padding-left: 0;
  display: inline-block;
  margin-bottom: 0;
}

.contact-info .follow-us li:first-child {
  font-size: 18px;
  font-weight: 400;
  margin-right: 5px;
}

.contact-info .follow-us li a {
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border: 1px solid #000000;
  border-radius: 50%;
}

.contact-info .follow-us li a:hover,
.contact-info .follow-us li a:focus {
  background: #fca20b;
  color: #ffffff;
  border-color: #fca20b;
}

.contact-form {
  -webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
  box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
  padding: 40px 30px;
  border-top: 3px solid #fca20b;
  border-bottom: 3px solid #fca20b;
  background: #ffffff;
}

.contact-form h4 {
  color: #fca20b;
  margin-bottom: 25px;
  font-size: 22px;
}

.contact-form .list-unstyled li {
  color: red;
}

.contact-form .form-control {
  border-radius: 30px;
}

.contact-form .btn {
  margin-top: 20px;
}

.contact-form #message {
  height: auto;
  padding: 15px;
}

/*
==============================
Page Title CSS
==============================
*/
.page-title {
  height: 330px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow: hidden;
  text-align: center;
}

.page-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: .6;
}

.page-title h1 {
  margin-bottom: 35px;
  margin-top: 65px;
  color: #ffffff;
  font-size: 45px;
  font-weight: 600;
}

.page-title ul li {
  display: inline-block;
  margin: 0 3px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
}

.page-title ul li.active {
  color: #cccccc;
}

.page-title ul li a {
  color: #ffffff;
}

.page-title ul li a:hover {
  color: #fca20b;
}

.page-title .container {
  position: relative;
  z-index: 1;
}

/*
==============================
Blog Details Area CSS
==============================
*/
.blog-details-area {
  background-image: url(../img/pattern.png);
  background-attachment: fixed;
}

.blog-details-area .title {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 27px;
}

.blog-details {
  -webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
  box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
  background: #ffffff;
}

.blog-details .article-img {
  position: relative;
}

.blog-details .article-img img {
  width: 100%;
}

.blog-details .article-img .date {
  position: absolute;
  bottom: 15px;
  width: 100px;
  left: 15px;
  height: 100px;
  text-align: center;
  font-size: 25px;
  font-style: italic;
  background: #fca20b;
  color: #ffffff;
  border-radius: 5px;
  padding-top: 19px;
  line-height: 32px;
}

.blog-details .article-text {
  padding: 30px;
}

.blog-details .article-text ul li {
  display: inline-block;
}

.blog-details .article-text .category a {
  background: #fca20b;
  color: #ffffff;
  padding: 3px 15px;
  display: inline-block;
  border-radius: 3px;
  font-weight: 400;
}

.blog-details .article-text p {
  margin-bottom: 20px;
}

.blog-details .article-text .blockquote {
  margin-bottom: 25px;
  margin-top: 25px;
  background: #f4f4f4;
  padding: 30px;
  font-size: 17px;
  border-left: 4px solid #fca20b;
}

.blog-details .article-text .blockquote p {
  color: #000000;
}

.blog-details .article-text .author-share {
  margin-top: 40px;
}

.blog-details .article-text .author-share .social-share {
  text-align: right;
  margin-top: 28px;
}

.blog-details .article-text .author-share .social-share a {
  background: #fca20b;
  color: #ffffff;
  width: 35px;
  display: inline-block;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
}

.blog-details .article-text .article-author {
  overflow: hidden;
}

.blog-details .article-text .article-author .author-img {
  float: left;
  width: 27%;
}

.blog-details .article-text .article-author .author-img img {
  border-radius: 50%;
  max-width: 100%;
  width: auto !important;
}

.blog-details .article-text .article-author .author-title {
  float: left;
  width: 73%;
  padding-left: 10px;
  margin-top: 18px;
}

.blog-details .article-text .article-author .author-title h4 {
  font-size: 20px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.blog-details .article-text .article-author .author-title span {
  color: #666666;
  font-size: 15px;
}

.post-controls-buttons {
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 70px;
  padding-right: 70px;
}

.post-controls-buttons div {
  display: inline-block;
}

.post-controls-buttons div a {
  -webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
  box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
  padding: 10px 20px;
  border-radius: 5px;
  background: #ffffff;
  color: #fca20b;
  display: inline-block;
}

.post-controls-buttons div a:hover {
  background: #fca20b;
  color: #ffffff;
}

.post-controls-buttons .controls-right {
  float: right;
}

.post-comments .single-comment {
  -webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
  box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
  padding: 25px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.post-comments .single-comment.left-m {
  margin-left: 30px;
}

.post-comments .single-comment .comment-img {
  float: left;
  width: 13%;
}

.post-comments .single-comment .comment-img img {
  border-radius: 50%;
}

.post-comments .single-comment .comment-content {
  float: left;
  width: 80%;
  padding-left: 10px;
}

.post-comments .single-comment .comment-content h4 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.post-comments .single-comment .comment-content p {
  margin-bottom: 15px;
}

.post-comments .single-comment .comment-content a {
  position: absolute;
  right: 25px;
  bottom: 25px;
  color: #fca20b;
  text-transform: uppercase;
  font-size: 17px;
}

.leave-a-reply {
  -webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
  box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
  padding: 25px;
  background: #ffffff;
  margin-top: 50px;
}

.leave-a-reply .btn {
  margin-top: 0px;
}

/*
==============================
Go Top CSS
==============================
*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 30px;
  right: 20px;
  font-size: 25px;
  color: #ffffff;
  background-color: #000000;
  z-index: 1;
  display: none;
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 39px;
  border-radius: 50%;
  -webkit-transition: .4s;
  transition: .4s;
}

.go-top:hover {
  color: #ffffff;
  background: #fca20b;
}