
@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sacramento&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  padding: 0;
  margin: 0;
  font-family: "Catamaran", sans-serif;
  font-size: 16px;
}

a {
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #1b0238;
}

a:hover, a:focus {
  color: #0085ea;
  text-decoration: none;
}

button {
  outline: 0 !important;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #6b6b84;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
}

p:last-child {
  margin-bottom: 0;
}

i {
  line-height: normal;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #1b0238;
  font-family: "Catamaran", sans-serif;
  font-weight: bold;
}

.h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

/*================================================
Default btn CSS
=================================================*/
.default-btn {
  display: inline-block;
  padding: 12px 35px;
  background-color: #0085ea;
  color: #ffffff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.default-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  /* background-color: #f5890d; */
  background-color: #418f62;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
}

.default-btn:hover {
  color: #ffffff;
}

.default-btn:hover::before {
  height: 100%;
}

.optional-btn {
  display: inline-block;
  padding: 12px 35px;
  background-color: #f5890d;
  color: #ffffff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  margin-left: 15px;
  overflow: hidden;
}

.optional-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: #0085ea;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
}

.optional-btn:hover {
  color: #ffffff;
}

.optional-btn:hover::before {
  height: 100%;
}

/*================================================
Section Title CSS
=================================================*/
.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title span {
  font-size: 26px;
  color: #0085ea;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

.section-title h2 {
  font-size: 40px;
  margin-top: 5px;
  margin-bottom: 60px;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #0085ea;
  z-index: 999999;
  height: 100%;
  overflow: hidden;
}

.preloader .loader {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 45%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  height: 50px;
  width: 180px;
  margin-left: auto;
  margin-right: auto;
}

.preloader .loader .wrapper {
  height: 50px;
  width: 180px;
}

.preloader .loader .circle {
  border-radius: 50%;
  border: 3px solid #ffffff;
  float: left;
  height: 50px;
  margin: 0 5px;
  width: 50px;
}

.preloader .loader .circle-1 {
  -webkit-animation: move 1s ease-in-out infinite;
          animation: move 1s ease-in-out infinite;
}

.preloader .loader .circle-1a {
  -webkit-animation: fade 1s ease-in-out infinite;
          animation: fade 1s ease-in-out infinite;
}

.preloader .loader .circle-2 {
  -webkit-animation: move 1s ease-in-out infinite;
          animation: move 1s ease-in-out infinite;
}

.preloader .loader .circle-1a {
  margin-left: -55px;
  opacity: 0;
}

.preloader .loader .circle-3 {
  -webkit-animation: circle-3 1s ease-in-out infinite;
          animation: circle-3 1s ease-in-out infinite;
  opacity: 1;
}

.preloader-area {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  text-align: center;
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader-area .loader {
  position: absolute;
  top: 43%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-43%);
          transform: translateY(-43%);
  text-align: center;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.preloader-area .box {
  width: 100%;
  height: 100%;
  background: #ffffff;
  -webkit-animation: animate .5s linear infinite;
          animation: animate .5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
}

.preloader-area .shadow {
  width: 100%;
  height: 5px;
  background: #000000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  -webkit-animation: shadow .5s linear infinite;
          animation: shadow .5s linear infinite;
}

.preloader-area::before, .preloader-area::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  z-index: -1;
  background: #0085ea;
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader-area::after {
  left: auto;
  right: 0;
}

.preloader-area.preloader-deactivate {
  visibility: hidden;
}

.preloader-area.preloader-deactivate::after, .preloader-area.preloader-deactivate::before {
  width: 0;
}

.preloader-area.preloader-deactivate .loader {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
  }
}

@-webkit-keyframes circle-3 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes circle-3 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes loader {
  0% {
    left: -100px;
  }
  100% {
    left: 110%;
  }
}

@keyframes loader {
  0% {
    left: -100px;
  }
  100% {
    left: 110%;
  }
}

@-webkit-keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
            transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
            transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
            transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
}

@keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
            transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
            transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
            transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
}

@-webkit-keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
            transform: scale(1.2, 1);
  }
}

@keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
            transform: scale(1.2, 1);
  }
}

/*================================================
Navbar Area CSS
=================================================*/
.main-responsive-nav {
  display: none;
}

.main-navbar {
  padding-top: 0;
}

.main-navbar .navbar {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0;
}

.main-navbar .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.main-navbar .navbar .navbar-nav {
  margin: auto;
}

.main-navbar .navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 15px;
  margin-right: 30px;
}

.main-navbar .navbar .navbar-nav .nav-item a {
  color: #1b0238;
  font-size: 16px;
  font-weight: 600;
  padding-left: 0;
  padding-right: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  font-family: "Roboto", sans-serif;
}

.main-navbar .navbar .navbar-nav .nav-item a i {
  font-size: 20px;
  position: relative;
  top: 4px;
  display: inline-block;
  margin-left: -5px;
  margin-right: -2px;
}



/* .main-navbar .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
} */



.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
  border: none;
  top: 70px;
  left: 0;
  z-index: 99;
  opacity: 0;
  width: 280px;
  display: block;
  border-radius: 0;
  padding: 10px 0;
  margin-top: 15px;
  position: absolute;
  visibility: hidden;
  background: #ffffff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li {
  margin: 0;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
  padding: 10px 20px;
  position: relative;
  display: block;
  color: #1b0238;
  font-size: 16px;
  font-weight: 600;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a i {
  margin: 0;
  position: absolute;
  top: 50%;
  font-size: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  right: -280px;
  left: auto;
  margin-top: 15px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #1b0238;
}


.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 280px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #1b0238;
}


.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -280px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #1b0238;
}


.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 280px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #1b0238;
}


.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -280px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #1b0238;
}


.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 280px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #1b0238;
}



.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}


.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}


.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}



.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}



.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}



.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.main-navbar .navbar .others-options .option-item {
  margin-right: 15px;
}

.main-navbar .navbar .others-options .option-item:last-child {
  margin-right: 0;
}

.main-navbar .navbar .others-options .option-item .language-switcher {
  position: relative;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-toggle {
  padding: 0;
  border: none;
  background-color: transparent;
  color: #1b0238;
  cursor: pointer;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-toggle::after {
  display: none;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-toggle img {
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-toggle span {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-toggle span i {
  position: relative;
  font-size: 20px;
  top: 4px;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu {
  padding: 15px;
  float: unset;
  border: none;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  display: block;
  margin-top: 12px;
  opacity: 0;
  visibility: visible;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  left: 0 !important;
  right: auto !important;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item {
  padding: 0;
  color: #1b0238;
  margin-bottom: 10px;
  font-weight: 600;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item::before {
  display: none;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item img {
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item span {
  display: inline-block;
  margin-left: 8px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 4px;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:hover, .main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:focus {
  background-color: transparent !important;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:active, .main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item.active {
  color: #1b0238;
  background-color: transparent;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.main-navbar .navbar .others-options .option-item .default-btn {
  display: block;
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background-color: #ffffff !important;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.others-option-for-responsive {
  display: none;
}

.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 9991;
  position: absolute;
  right: 60px;
  top: -28px;
}

.others-option-for-responsive .dot-menu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
}

.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #1b0238;
}

.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: #0085ea;
}

.others-option-for-responsive .container {
  position: relative;
}

.others-option-for-responsive .container .container {
  position: absolute;
  right: 0;
  top: 10px;
  max-width: 260px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}

.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.others-option-for-responsive .option-inner .others-options .option-item {
  margin-right: 15px;
}

.others-option-for-responsive .option-inner .others-options .option-item:last-child {
  margin-right: 0;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher {
  position: relative;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-toggle {
  padding: 0;
  border: none;
  background-color: transparent;
  color: #1b0238;
  cursor: pointer;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-toggle::after {
  display: none;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-toggle img {
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-toggle span {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-toggle span i {
  position: relative;
  font-size: 20px;
  top: 4px;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu {
  padding: 15px;
  float: unset;
  border: none;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  display: block;
  margin-top: 12px;
  opacity: 0;
  visibility: visible;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  left: 0 !important;
  right: auto !important;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item {
  padding: 0;
  color: #1b0238;
  margin-bottom: 10px;
  font-weight: 600;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item::before {
  display: none;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item img {
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item span {
  display: inline-block;
  margin-left: 8px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 4px;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:hover, .others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:focus {
  background-color: transparent !important;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:active, .others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item.active {
  color: #1b0238;
  background-color: transparent;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.others-option-for-responsive .option-inner .others-options .option-item .default-btn {
  display: block;
}

@media only screen and (max-width: 1199px) {
  .main-responsive-nav {
    display: block;
  }
  .main-responsive-nav .main-responsive-menu {
    position: relative;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul {
    font-size: 15px;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a.active {
    color: #f5890d;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a i {
    display: none;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 14px;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .others-options {
    display: none !important;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .navbar-nav {
    overflow-y: scroll;
    height: 300px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
  }
  .main-responsive-nav .mean-container a.meanmenu-reveal {
    color: #1b0238;
  }
  .main-responsive-nav .mean-container a.meanmenu-reveal span {
    background: #1b0238;
    position: relative;
  }
  .main-responsive-nav .logo {
    position: relative;
  }
  .main-responsive-nav .logo img {
    max-width: 100px !important;
  }
  .navbar-area {
    background-color: #ffffff;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .main-navbar {
    display: none;
  }
  .others-option-for-responsive {
    display: block;
  }
}

/*================================================
Main Banner Area CSS
=================================================*/
.main-banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.main-banner-item {
  background-image: url(../../assets/img/main-banner/main-banner-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  height: 700px;
}

.main-banner-item .container-fluid {
  padding-right: 0;
}

.main-banner-item.banner-item-two {
  background-image: unset;
  background-color: #f5edec;
}

.main-banner-item.banner-item-three {
  background-image: url(../../assets/img/main-banner/main-banner-bg-2.jpg);
  background-attachment: fixed;
}

.main-banner-item.banner-item-three .main-banner-content {
  max-width: 630px;
  margin: auto;
  text-align: center;
}

.main-banner-item.banner-item-three .main-banner-content span {
  color: #ffffff;
}

.main-banner-item.banner-item-three .main-banner-content h1 {
  color: #ffffff;
}

.main-banner-item.banner-item-three .main-banner-content p {
  color: #ffffff;
}

.main-banner-item.banner-item-four {
  background-image: unset;
  background-color: #73548f;
}

.main-banner-item.banner-item-four .main-banner-content h1 {
  margin-top: 0;
  color: #ffffff;
}

.main-banner-item.banner-item-four .main-banner-content p {
  color: #ffffff;
}

.main-banner-content {
  max-width: 630px;
  /* margin-left: 33%; */
}

.main-banner-content span {
  font-size: 16px;
  color: #0085ea;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

.main-banner-content h1 {
  font-size: 3.2vw;
  margin-top: 20px;
  margin-bottom: 20px;
}
.main-banner-content h2 {
  font-size: 3.2vw !important;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px){
  .main-banner-content h2 {
      font-size: 30px !important;
  }
}
.main-banner-content p {
  margin-bottom: 0;
}

.main-banner-content .banner-btn {
  margin-top: 25px;
  text-align: right;
  margin-right: 33%;
}

.main-banner-image-wrap {
  position: relative;
  text-align: center;
  z-index: 1;
}

.main-banner-image-wrap .banner-image-wrap-shape {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  left: 0;
  right: 0;
}

.main-banner-shape .banner-bg-shape {
  position: absolute;
  bottom: -75px;
  left: 0;
  right: 0;
  z-index: 1;
}

.main-banner-shape .banner-bg-shape-2 {
  position: absolute;
  top: -75px;
  left: 0;
  right: 0;
  z-index: 1;
}

.main-banner-shape .shape-1 {
  position: absolute;
  top: 25px;
  -webkit-transform: translateY(-25px);
          transform: translateY(-25px);
  left: 25px;
  -webkit-transform: translateX(-25px);
          transform: translateX(-25px);
  z-index: 1;
  max-width: 100px;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
}

.main-banner-shape .shape-2 {
  position: absolute;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  max-width: 100px;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
}

.main-banner-shape .shape-3 {
  position: absolute;
  bottom: 100px;
  left: 30px;
  z-index: 1;
  max-width: 100px;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
}

.main-banner-shape .shape-4 {
  position: absolute;
  bottom: 35px;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  left: 45%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  max-width: 100px;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
}

.main-banner-shape .shape-5 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-width: 210px;
}

.main-banner-shape .shape-6 {
  position: absolute;
  bottom: 0;
  left: 8%;
  z-index: 1;
  max-width: 280px;
}

.banner-child .child-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
}

.banner-child .child-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
}

@-webkit-keyframes rotateMe {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateMe {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@-webkit-keyframes moveScale {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

@keyframes moveScale {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

@-webkit-keyframes moveLeftBounce {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes moveLeftBounce {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes border-transform-default {
  0%, to {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

@keyframes border-transform-default {
  0%, to {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

/*================================================
Who We Are Area CSS
=================================================*/
.who-we-are {
  position: relative;
  z-index: 1;
}

.who-we-are-image {
  text-align: center;
  position: relative;
  z-index: 1;
}

.who-we-are-image img {
  border-radius: 50%;
  padding: 20px;
}

.who-we-are-image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #0085ea;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: border-transform-default 10s linear infinite alternate forwards;
          animation: border-transform-default 10s linear infinite alternate forwards;
}

.who-we-are-image::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #f5890d;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: border-transform-default 50s linear infinite alternate forwards;
          animation: border-transform-default 50s linear infinite alternate forwards;
}

.who-we-are-content span {
  font-size: 26px;
  color: #0085ea;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

.who-we-are-content h3 {
  font-size: 40px;
  margin-top: 5px;
  margin-bottom: 20px;
}

.who-we-are-content p {
  margin-bottom: 0;
}

.who-we-are-content .who-we-are-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.who-we-are-content .who-we-are-list li {
  list-style-type: none;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #1b0238;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  margin-top: 20px;
  padding-left: 40px;
  padding-top: 5px;
}

.who-we-are-content .who-we-are-list li span {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 16px;
  color: #ffffff;
  background-color: #0085ea;
  border-radius: 50px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.who-we-are-content .who-we-are-list li:hover span {
  /* background-color: #f5890d; */
  background-color: #418f62;
}

.who-we-are-content .who-we-are-btn {
  margin-top: 30px;
}

.who-we-are-shape {
  position: absolute;
  right: 5%;
  -webkit-transform: translateX(-5%);
          transform: translateX(-5%);
  top: 35px;
  max-width: 120px;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
}

/*================================================
Class Area CSS
=================================================*/
.class-area {
  position: relative;
  z-index: 1;
}

.class-area.bg-fdf6ed {
  background-color: #fdf6ed;
}

.single-class {
  margin-bottom: 30px;
}

.single-class .class-image {
  overflow: hidden;
}

.single-class .class-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px 5px 0 0;
}

.single-class .class-content {
  background-color: #ffffff;
  padding: 45px 30px 30px;
  position: relative;
  border-radius: 0 0 10px 10px;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
}

.single-class .class-content .price {
  position: absolute;
  display: inline-block;
  padding: 10px;
  background-color: #0085ea;
  right: 0;
  top: 0;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  border-radius: 0 0 0 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-class .class-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

.single-class .class-content h3 a {
  color: #1b0238;
}

.single-class .class-content p {
  margin-bottom: 0;
}

.single-class .class-content .class-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #0085ea;
}

.single-class .class-content .class-list li {
  list-style-type: none;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  margin-right: 15px;
}

.single-class .class-content .class-list li:last-child {
  margin-right: 0;
}

.single-class .class-content .class-list li span {
  color: #0085ea;
  font-size: 15px;
  font-weight: 500;
}

.single-class .class-content .class-btn {
  margin-top: 25px;
}

.single-class .class-content .class-btn .default-btn {
  padding: 10px 30px;
}

.single-class:hover .class-image img {
  -webkit-transform: rotate(2deg) scale(1.2);
          transform: rotate(2deg) scale(1.2);
}

.single-class:hover .class-content .price {
  background-color: #f5890d;
}

.single-class:hover .class-content h3 a {
  color: #0085ea;
}

.class-shape .shape-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.class-shape .shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/*================================================
Value Area CSS
=================================================*/
.value-area {
  position: relative;
  z-index: 1;
}

.value-item .value-content span {
  font-size: 20px;
  font-weight: 600;
  font-family: "Sacramento", cursive;
  color: #0085ea;
}

.value-item .value-content h3 {
  font-size: 45px;
  margin-top: 15px;
  margin-bottom: 0;
}

.value-item .value-inner-content {
  position: relative;
  padding-left: 75px;
  margin-top: 30px;
}

.value-item .value-inner-content .number span {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: #d3f5fe;
  text-align: center;
  font-size: 25px;
  color: #1b0238;
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.value-item .value-inner-content .number span::before {
  position: absolute;
  content: "";
  height: 70px;
  width: 70px;
  line-height: 70px;
  border: 1px solid #d3f5fe;
  border-radius: 50px;
  top: -5px;
  left: -5px;
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.value-item .value-inner-content .number .bg-2 {
  background-color: #fce0ad;
}

.value-item .value-inner-content .number .bg-2::before {
  border: 2px solid #fce0ad;
}

.value-item .value-inner-content .number .bg-3 {
  background-color: #fbc9d5;
}

.value-item .value-inner-content .number .bg-3::before {
  border: 2px solid #fbc9d5;
}

.value-item .value-inner-content h4 {
  font-size: 25px;
  margin-bottom: 10px;
}

.value-item .value-inner-content p {
  margin-bottom: 0;
}

.value-item .value-inner-content:hover .number span {
  background-color: #0085ea;
  color: #ffffff;
}

.value-item .value-inner-content:hover .number span::before {
  border: 1px solid #0085ea;
}

.value-shape .shape-1 {
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: -1;
}

.value-shape .shape-2 {
  position: absolute;
  left: 20px;
  z-index: -1;
  bottom: 30px;
}

.value-shape .shape-3 {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

/*================================================
Teacher Area CSS
=================================================*/
.teacher-area.bg-ffffff {
  background-image: url(../../assets/img/teacher-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.teacher-area .container-fluid {
  max-width: 1920px;
}

.single-teacher {
  margin-bottom: 30px;
  text-align: center;
}

.single-teacher .image {
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
  padding: 5px;
}

.single-teacher .image img {
  border-radius: 50%;
}

.single-teacher .image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #0085ea;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: border-transform-default 30s linear infinite alternate forwards;
          animation: border-transform-default 30s linear infinite alternate forwards;
}

.single-teacher .image .social {
  padding-left: 0;
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.single-teacher .image .social li {
  display: inline-block;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  margin: 0 2px;
}

.single-teacher .image .social li a {
  display: block;
  width: 33px;
  height: 33px;
  background-color: #0085ea;
  text-align: center;
  position: relative;
  font-size: 20px;
  color: #ffffff;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-teacher .image .social li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
}

.single-teacher .image .social li a:hover {
  color: #ffffff;
  background-color: #f5890d;
}

.single-teacher .content {
  margin-top: 25px;
}

.single-teacher .content h3 {
  margin-bottom: 0;
  font-size: 30px;
}

.single-teacher .content span {
  display: block;
  color: #0085ea;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 600;
}

.single-teacher:hover .image .social li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.single-teacher-box {
  margin-bottom: 30px;
  text-align: center;
}

.single-teacher-box .image {
  position: relative;
}

.single-teacher-box .image .social {
  padding-left: 0;
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.single-teacher-box .image .social li {
  display: inline-block;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  margin: 0 2px;
}

.single-teacher-box .image .social li a {
  display: block;
  width: 33px;
  height: 33px;
  background-color: #0085ea;
  text-align: center;
  position: relative;
  font-size: 20px;
  color: #ffffff;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-teacher-box .image .social li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
}

.single-teacher-box .image .social li a:hover {
  color: #ffffff;
  background-color: #f5890d;
}

.single-teacher-box .content {
  margin-top: 25px;
}

.single-teacher-box .content h3 {
  margin-bottom: 0;
  font-size: 25px;
}

.single-teacher-box .content span {
  display: block;
  color: #0085ea;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 600;
}

.single-teacher-box:hover .image .social li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.single-teacher-content span {
  font-size: 16px;
  color: #0085ea;
  font-weight: 600;
}

.single-teacher-content h3 {
  font-size: 35px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.single-teacher-content h3 a {
  color: #1b0238;
}

.single-teacher-content p {
  margin-bottom: 0;
}

.single-teacher-content .teacher-btn {
  margin-top: 25px;
}

.single-teacher-item {
  margin-bottom: 30px;
  text-align: center;
}

.single-teacher-item .image {
  position: relative;
}

.single-teacher-item .image::before {
  width: 100%;
  content: '';
  position: absolute;
  height: 100%;
  background-color: #000000;
  left: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  border-radius: 15px;
}

.single-teacher-item .image img {
  border-radius: 15px;
}

.single-teacher-item .image .content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  margin-top: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-teacher-item .image .content h3 {
  margin-bottom: 0;
  font-size: 25px;
  color: #ffffff;
}

.single-teacher-item .image .content span {
  display: block;
  color: #ffffff;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 600;
}

.single-teacher-item .image .content .social {
  padding-left: 0;
  margin-bottom: 0;
  text-align: center;
  margin-top: 15px;
}

.single-teacher-item .image .content .social li {
  display: inline-block;
  list-style: none;
  margin: 0 5px;
}

.single-teacher-item .image .content .social li a {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  text-align: center;
  position: relative;
  font-size: 20px;
  color: #0085ea;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-teacher-item .image .content .social li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
}

.single-teacher-item .image .content .social li a:hover {
  color: #ffffff;
  background-color: #f5890d;
}

.single-teacher-item:hover .image::before {
  opacity: .70;
  visibility: visible;
}

.single-teacher-item:hover .content {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}

/*================================================
Testimonials Area CSS
=================================================*/
.testimonials-item .testimonials-item-box {
  text-align: center;
  background-color: #fee9ca;
  padding: 30px;
  border-radius: 50%;
}

.testimonials-item .testimonials-item-box .icon {
  margin-bottom: 20px;
}

.testimonials-item .testimonials-item-box .icon i {
  display: inline-block;
  height: 65px;
  width: 65px;
  line-height: 65px;
  background-color: #ffffff;
  color: #0085ea;
  font-size: 30px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.testimonials-item .testimonials-item-box p {
  margin-bottom: 0;
  font-size: 15px;
  font-style: italic;
}

.testimonials-item .testimonials-item-box .info-box {
  margin-top: 20px;
}

.testimonials-item .testimonials-item-box .info-box h3 {
  margin-bottom: 0;
  font-size: 25px;
}

.testimonials-item .testimonials-item-box .info-box span {
  display: block;
  color: #0085ea;
  font-size: 15px;
  margin-top: 5px;
  font-weight: 600;
}

.testimonials-item .testimonials-item-box:hover .icon i {
  background-color: #0085ea;
  color: #ffffff;
}

.testimonials-item .testimonials-image {
  margin-top: 20px;
}

.testimonials-item .testimonials-image img {
  width: auto;
  margin: auto;
}

.testimonials-slides.owl-theme .owl-nav {
  margin-top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  line-height: .01;
}

.testimonials-slides.owl-theme .owl-nav [class*=owl-] {
  margin: 0;
  position: absolute;
  left: -50px;
  top: 40%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  padding: 0;
  background: #0085ea;
  color: #ffffff;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 50px;
  height: 50px;
  line-height: 65px;
  text-align: center;
  font-size: 45px;
}

.testimonials-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -50px;
}

/* .testimonials-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: #ffffff;
  background-color: #f5890d;
} */

.testimonials-slides.owl-theme:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.testimonials-area.bg-color {
  background-color: #fef3e6;
}

.feedback-slides .feedback-item .feedback-image {
  position: relative;
  padding: 5px;
}

.feedback-slides .feedback-item .feedback-image img {
  border-radius: 50%;
}

.feedback-slides .feedback-item .feedback-image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #0085ea;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: border-transform-default 30s linear infinite alternate forwards;
          animation: border-transform-default 30s linear infinite alternate forwards;
}

.feedback-slides .feedback-item .feedback-content p {
  font-size: 24px;
  margin-bottom: 0;
  font-style: italic;
}

.feedback-slides .feedback-item .feedback-content .feedback-info {
  margin-top: 25px;
}

.feedback-slides .feedback-item .feedback-content .feedback-info h4 {
  font-size: 25px;
  margin-bottom: 12px;
}

.feedback-slides .feedback-item .feedback-content .feedback-info span {
  font-size: 16px;
  color: #0085ea;
  font-weight: 600;
}

.feedback-slides.owl-theme .owl-nav {
  margin-top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: .01;
  position: absolute;
  right: 0;
  bottom: 0;
}

.feedback-slides.owl-theme .owl-nav [class*=owl-] {
  margin: 0;
  padding: 0;
  background: #0085ea;
  color: #ffffff;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 50px;
  height: 50px;
  line-height: 65px;
  text-align: center;
  font-size: 45px;
}

.feedback-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  position: relative;
  left: 15px;
}

/* .feedback-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: #ffffff;
  background-color: #f5890d;
} */

/*================================================
Event Area CSS
=================================================*/
.event-area.bg-ffffff {
  background-image: url(../img/Philosoph/event-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.event-area.bg-ffffff::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  left: 0;
  right: 0;
  top: 0;
  opacity: .30;
  z-index: -1;
}

.event-area .section-title span {
  color: #ffffff;
}

.event-area .section-title h2 {
  color: #ffffff;
}

.event-area.bg-color .container-fluid {
  max-width: 1450px;
}

.event-area.bg-color .event-box-item {
  padding: 35px 15px;
}

.event-area.event-item-two .container-fluid {
  max-width: 1450px;
}

.event-area.event-item-two .section-title span {
  color: #0085ea;
}

.event-area.event-item-two .section-title h2 {
  color: #1b0238;
}

.event-area.event-item-two .event-box-item {
  padding: 35px 15px;
  background-color: #fdeee9;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.event-area.event-item-two .event-box-item .event-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.event-area.event-item-two .event-box-item .event-content h3 a {
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  background-color: #fcded3;
  color: #0085ea;
}

.event-area.event-item-two .event-box-item .event-content p {
  margin-bottom: 10px;
}

.event-area.event-item-two .event-box-item .event-content span {
  color: #0085ea;
  font-size: 16px;
  font-weight: 600;
}

.event-box-item {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.event-box-item .event-content h3 {
  font-size: 25px;
  margin-bottom: 0;
}

.event-box-item .event-content h3 a {
  color: #1b0238;
}

.event-box-item .event-content .event-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 20px;
  padding-right: 20px;
}

.event-box-item .event-content .event-list li {
  list-style-type: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
}

.event-box-item .event-content .event-list li:last-child {
  margin-bottom: 0;
}

.event-box-item .event-content .event-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #0085ea;
}

.event-box-item .event-date {
  text-align: center;
}

.event-box-item .event-date h4 {
  font-size: 80px;
  color: #0085ea;
  margin-bottom: 0;
}

.event-box-item .event-date span {
  font-size: 20px;
  color: #0085ea;
  margin-top: 10px;
  font-weight: 500;
}

/*================================================
Blog Area CSS
=================================================*/
.single-blog-item {
  margin-bottom: 30px;
}

.single-blog-item .blog-image {
  overflow: hidden;
}

.single-blog-item .blog-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px 10px 0 0;
}

.single-blog-item .blog-content {
  background-color: #fdeee9;
  padding: 30px;
  border-radius: 0 0 10px 10px;
}

.single-blog-item .blog-content .post-meta {
  padding-left: 0;
  margin-bottom: 0;
}

.single-blog-item .blog-content .post-meta li {
  list-style-type: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #283d5e;
  margin-right: 15px;
}

.single-blog-item .blog-content .post-meta li:last-child {
  margin-right: 0;
}

.single-blog-item .blog-content .post-meta li span {
  color: #0085ea;
}

.single-blog-item .blog-content .post-meta li a {
  color: #283d5e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-blog-item .blog-content h3 {
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.single-blog-item .blog-content h3 a {
  color: #1b0238;
}

.single-blog-item .blog-content p {
  margin-bottom: 0;
}

.single-blog-item .blog-content .blog-btn {
  margin-top: 20px;
}

.single-blog-item:hover .blog-image img {
  -webkit-transform: rotate(2deg) scale(1.2);
          transform: rotate(2deg) scale(1.2);
}

.single-blog-item:hover .blog-content h3 a {
  color: #0085ea;
}

/*================================================
Activities Area CSS
=================================================*/
.activities-area {
  background-image: url(../../assets/img/activities-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-activities {
  position: relative;
  margin-bottom: 30px;
}

.single-activities .number span {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  font-size: 30px;
  color: #1b0238;
  background-color: #0085ea;
  border-radius: 50px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: bold;
}

.single-activities .number span::before {
  position: absolute;
  content: "";
  height: 70px;
  width: 70px;
  line-height: 70px;
  border: 1px solid #0085ea;
  border-radius: 50px;
  top: -5px;
  left: -5px;
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-activities .number .bg-2 {
  background-color: #fdbea8;
}

.single-activities .number .bg-2::before {
  border: 1px solid #fdbea8;
}

.single-activities .number .bg-3 {
  background-color: #b6fdd6;
}

.single-activities .number .bg-3::before {
  border: 1px solid #b6fdd6;
}

.single-activities .number .bg-4 {
  background-color: #fd91a8;
}

.single-activities .number .bg-4::before {
  border: 1px solid #fd91a8;
}

.single-activities .number .bg-5 {
  background-color: #fce0ad;
}

.single-activities .number .bg-5::before {
  border: 1px solid #fce0ad;
}

.single-activities .number .bg-6 {
  background-color: #cca0fe;
}

.single-activities .number .bg-6::before {
  border: 1px solid #cca0fe;
}

.single-activities .activities-content {
  padding-left: 75px;
}

.single-activities .activities-content h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.single-activities .activities-content h3 a {
  color: #1b0238;
}

.single-activities .activities-content p {
  margin-bottom: 12px;
}

.single-activities .activities-content .activities-btn {
  font-size: 16px;
  color: #0085ea;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-activities:hover .number span {
  /* background-color: #f5890d; */
  background-color: #418f62;
  color: #ffffff;
}

.single-activities:hover .number span::before {
  /* border: 1px solid #f5890d; */
  border: 1px solid #418f62;
}

.single-activities:hover .activities-content h3 a {
  /* color: #0085ea; */
  color: #418f62;
}

.single-activities:hover .activities-content .activities-btn {
  letter-spacing: 1px;
}

/*================================================
Facilities Area CSS
=================================================*/
.facilities-area {
  position: relative;
  z-index: 1;
}

.single-facilities {
  position: relative;
  margin-bottom: 30px;
}

.single-facilities .number span {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  font-size: 30px;
  color: #1b0238;
  background-color: #0085ea;
  border-radius: 50px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: bold;
}

.single-facilities .number span::before {
  position: absolute;
  content: "";
  height: 70px;
  width: 70px;
  line-height: 70px;
  border: 1px solid #0085ea;
  border-radius: 50px;
  top: -5px;
  left: -5px;
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-facilities .number .bg-2 {
  background-color: #fdbea8;
}

.single-facilities .number .bg-2::before {
  border: 1px solid #fdbea8;
}

.single-facilities .number .bg-3 {
  background-color: #b6fdd6;
}

.single-facilities .number .bg-3::before {
  border: 1px solid #b6fdd6;
}

.single-facilities .number .bg-4 {
  background-color: #fd91a8;
}

.single-facilities .number .bg-4::before {
  border: 1px solid #fd91a8;
}

.single-facilities .number .bg-5 {
  background-color: #fce0ad;
}

.single-facilities .number .bg-5::before {
  border: 1px solid #fce0ad;
}

.single-facilities .number .bg-6 {
  background-color: #cca0fe;
}

.single-facilities .number .bg-6::before {
  border: 1px solid #cca0fe;
}

.single-facilities .facilities-content {
  padding-left: 75px;
}

.single-facilities .facilities-content h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.single-facilities .facilities-content h3 a {
  color: #1b0238;
}

.single-facilities .facilities-content p {
  margin-bottom: 0;
}

.single-facilities:hover .number span {
  background-color: #f5890d;
  color: #ffffff;
}

.single-facilities:hover .facilities-content h3 a {
  color: #0085ea;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-area {
  background-color: #fdf9f4;
}

.partner-item img {
  width: auto !important;
  margin: auto;
  max-width: 170px;
}

/*================================================
Fun Facts Area CSS
=================================================*/
.fun-facts-area {
  background-image: url(../../assets/img/fun-facts-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.fun-facts-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: .50;
}

.single-fun-fact {
  margin-bottom: 30px;
  text-align: center;
  background-color: #5da7bd;
  padding: 75px 45px;
  opacity: .90;
  border-radius: 15px;
}

.single-fun-fact h3 {
  margin-bottom: 0;
  line-height: 1;
  font-size: 60px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #ffffff;
}

.single-fun-fact p {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.single-fun-fact.bg-1 {
  background-color: #e9aa52;
}

.single-fun-fact.bg-2 {
  background-color: #6a4d8d;
}

.single-fun-fact.bg-3 {
  background-color: #de5e32;
}

/*================================================
Choose Area CSS
=================================================*/
.single-choose {
  text-align: center;
  margin-bottom: 30px;
}

.single-choose .icon {
  margin-bottom: 20px;
}

.single-choose .icon i {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: #0085ea;
  color: #ffffff;
  font-size: 35px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-choose .content h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.single-choose .content p {
  margin-bottom: 0;
}

.single-choose:hover .icon i {
  background-color: #f5890d;
}

.choose-image {
  position: relative;
}

.choose-image .choose-image-shape .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
}

.choose-image .choose-image-shape .shape-2 {
  position: absolute;
  right: -10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
  z-index: -1;
}

.choose-image .choose-image-shape .shape-3 {
  position: absolute;
  bottom: 10%;
  left: 12%;
  z-index: -1;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
}

.single-choose-item span {
  font-size: 20px;
  color: #0085ea;
  font-weight: 600;
  font-family: "Sacramento", cursive;
}

.single-choose-item h3 {
  font-size: 45px;
  margin-top: 12px;
  margin-bottom: 15px;
}

.single-choose-item .choose-btn {
  margin-top: 30px;
}

/*================================================
Gallery Area CSS
=================================================*/
.single-gallery-box {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.single-gallery-box::before {
  width: 100%;
  content: '';
  position: absolute;
  height: 100%;
  background-color: #000000;
  left: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  border-radius: 15px;
}

.single-gallery-box img {
  border-radius: 15px;
}

.single-gallery-box .gallery-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  font-size: 35px;
  color: #ffffff;
  margin-top: 20px;
  opacity: 0;
  visibility: hidden;
}

.single-gallery-box:hover::before {
  opacity: .30;
  visibility: visible;
}

.single-gallery-box:hover .gallery-btn {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.view-btn {
  text-align: center;
  margin-top: 15px;
}

.view-btn .default-btn {
  color: #ffffff;
}

/*================================================
Quote Area CSS
=================================================*/
.quote-area.bg-item {
  background-image: url(../../assets/img/quote-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.quote-image {
  background-image: url(../../assets/img/quote.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.quote-item {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  padding: 50px;
}

.quote-item .content {
  margin-bottom: 30px;
}

.quote-item .content span {
  font-size: 20px;
  color: #0085ea;
  font-weight: 600;
  font-family: "Sacramento", cursive;
}

.quote-item .content h3 {
  font-size: 45px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.quote-item form .form-group {
  margin-bottom: 15px;
}

.quote-item form .form-group .form-control {
  height: 70px;
  color: #1b0238;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  border: 1px solid #eeeeee;
  background-color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
  padding: 0 0 0 15px;
  font-weight: 500;
}

.quote-item form .form-group .form-control::-webkit-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.quote-item form .form-group .form-control:-ms-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.quote-item form .form-group .form-control::-ms-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.quote-item form .form-group .form-control::placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.quote-item form .form-group .form-control:focus {
  border-color: #0085ea;
  background-color: transparent;
}

.quote-item form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.quote-item form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.quote-item form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.quote-item form .form-group .form-control:focus::placeholder {
  color: transparent;
}

.quote-item form .default-btn {
  border: none;
  width: 100%;
  cursor: pointer;
  margin-top: 10px;
  padding: 15px 30px;
}

.quote-item.item-two {
  max-width: 750px;
  margin-left: auto;
}

/*================================================
Tour Area CSS
=================================================*/
.single-tour {
  background-color: #fdeee9;
  padding: 45px 30px 30px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 30px;
}

.single-tour h3 {
  display: inline-block;
  margin-bottom: 0;
  background-color: #fccfbf;
  color: #0085ea;
  font-size: 20px;
  border-radius: 5px;
  padding: 10px 35px;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-tour h3:hover {
  background-color: #0085ea;
  color: #ffffff;
}

.single-tour .image {
  margin-top: 25px;
  margin-bottom: 25px;
}

.single-tour span {
  color: #0085ea;
  font-weight: 500;
}

.single-tour p {
  font-size: 14px;
  margin-top: 12px;
  margin-bottom: 0;
}

/*================================================
Newsletter Area CSS
=================================================*/
.newsletter-area {
  background-color: #fdeee9;
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  font-size: 35px;
  margin-bottom: 0;
}

.newsletter-form {
  position: relative;
}

.newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  height: 60px;
  padding-left: 25px;
  border-radius: 5px;
  outline: 0;
  color: #1b0238;
}

.newsletter-form .input-newsletter::-webkit-input-placeholder {
  color: #6b6b84;
}

.newsletter-form .input-newsletter:-ms-input-placeholder {
  color: #6b6b84;
}

.newsletter-form .input-newsletter::-ms-input-placeholder {
  color: #6b6b84;
}

.newsletter-form .input-newsletter::placeholder {
  color: #6b6b84;
}

.newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  background-color: #0085ea;
  color: #ffffff;
  border: none;
  height: 52px;
  padding: 0 30px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 50px;
  text-transform: capitalize;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.newsletter-form button:hover {
  background-color: #1b0238;
  color: #ffffff;
}

.newsletter-form #validator-newsletter {
  color: red;
  position: relative;
  top: 8px;
  font-size: 16px;
  font-weight: 500;
}

.newsletter-shape .shape-1 {
  position: absolute;
  left: 0;
  top: 60%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  max-width: 250px;
  z-index: -1;
}

.newsletter-shape .shape-2 {
  position: absolute;
  right: 0;
  top: 60%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  max-width: 250px;
  z-index: -1;
}

/*================================================
Support Area CSS
=================================================*/
.support-list-item {
  padding-left: 0;
  margin-bottom: 0;
  text-align: center;
}

.support-list-item li {
  display: inline-block;
  list-style-type: none;
  margin-right: 60px;
  margin-bottom: 30px;
}

.support-list-item li:last-child {
  margin-right: 0;
}

.support-list-item li img {
  margin-bottom: 25px;
}

.support-list-item li span {
  display: block;
  font-size: 25px;
  color: #1b0238;
  font-weight: 600;
}

/*================================================
Overview Area CSS
=================================================*/
.overview-area {
  background-image: url(../img/summary/overview-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.overview-content {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  padding: 40px;
  max-width: 750px;
  margin-left: auto;
  border-radius: 15px;
}

.overview-content h3 {
  font-size: 45px;
  margin-bottom: 15px;
}

.overview-content p {
  margin-bottom: 0;
}

.overview-content .overview-btn {
  margin-top: 30px;
}

/*================================================
Page Banner CSS
=================================================*/
.page-banner-area {
  position: relative;
  z-index: 1;
  background-image: url(../img/location_bg.jpg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
  background-attachment: fixed;
}

.page-banner-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: .60;
}

.page-banner-area.item-bg1 {
  background-image: url(../img/ourdacility_bg.jpg);
}

.page-banner-area.item-bg2 {
  background-image: url(../../assets/img/page-banner/page-banner-3.jpg);
}

.page-banner-area.item-bg3 {
  background-image: url(../../assets/img/page-banner/page-banner-4.jpg);
}

.page-banner-area.item-bg4 {
  background-image: url(../../assets/img/page-banner/page-banner-5.jpg);
}

.page-banner-content {
  text-align: center;
}

.page-banner-content h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 45px;
  line-height: 1;
}

.page-banner-content ul {
  text-align: center;
  padding-left: 0;
  margin-bottom: 0;
}

.page-banner-content ul li {
  display: inline-block;
  list-style-type: none;
  margin-left: 15px;
  font-weight: 600;
  color: #0085ea;
  position: relative;
}

.page-banner-content ul li::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 6px;
  height: 12px;
  width: 1px;
  background: #0085ea;
}

.page-banner-content ul li:first-child {
  margin-left: 0;
}

.page-banner-content ul li:first-child::before {
  display: none;
}

.page-banner-content ul li a {
  display: block;
  color: #ffffff;
}

/*================================================
Pricing Area CSS
=================================================*/
.pricing-table .table {
  margin-bottom: 0;
}

.pricing-table .table thead th {
  border: 1px solid #f0f0f0;
  color: #1b0238;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 20px;
  padding: 30px 25px;
  border-bottom: none;
}

.pricing-table .table tbody tr th {
  border: 1px solid #f0f0f0;
  font-weight: 400;
  color: #6b6b84;
  overflow-x: auto;
  font-family: "Roboto", sans-serif;
  padding: 30px 25px;
  font-size: 16px;
}

.pricing-table .table tbody tr td {
  border: 1px solid #f0f0f0;
  font-weight: 400;
  color: #6b6b84;
  overflow-x: auto;
  font-family: "Roboto", sans-serif;
  padding: 30px 25px;
  font-size: 16px;
}

.pricing-table .table-responsive {
  overflow-x: unset;
}

.pricing-table .table-title {
  text-align: center;
  margin-top: 20px;
}

.pricing-table .table-title p {
  margin-bottom: 0;
}

/*================================================
Apply Area CSS
=================================================*/
.apply-form {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  padding: 50px;
}

.apply-form .content {
  margin-bottom: 30px;
}

.apply-form .content h3 {
  font-size: 35px;
  margin-bottom: 0;
}

.apply-form form .form-group {
  margin-bottom: 15px;
}

.apply-form form .form-group .form-control {
  height: 60px;
  color: #1b0238;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  border: 1px solid #eeeeee;
  background-color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
  padding: 0 0 0 15px;
  font-weight: 500;
}

.apply-form form .form-group .form-control::-webkit-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.apply-form form .form-group .form-control:-ms-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.apply-form form .form-group .form-control::-ms-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.apply-form form .form-group .form-control::placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.apply-form form .form-group .form-control:focus {
  border-color: #0085ea;
  background-color: transparent;
}

.apply-form form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.apply-form form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.apply-form form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.apply-form form .form-group .form-control:focus::placeholder {
  color: transparent;
}

.apply-form form .form-group textarea {
  height: 100px !important;
  padding-top: 15px !important;
}

.apply-form form .default-btn {
  border: none;
  width: 100%;
  cursor: pointer;
  margin-top: 10px;
  padding: 15px 30px;
}

/*================================================
Enrollment Area CSS
=================================================*/
.enrollment-accordion {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  padding: 30px;
}

.enrollment-accordion .content {
  margin-bottom: 25px;
}

.enrollment-accordion .content h3 {
  font-size: 25px;
  margin-bottom: 0;
}

.enrollment-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.enrollment-accordion .accordion .accordion-item {
  display: block;
  border: 1px solid #f3f3f3;
  margin-bottom: 10px;
}

.enrollment-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.enrollment-accordion .accordion .accordion-title {
  padding: 25px 40px 20px 20px;
  color: #1b0238;
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.enrollment-accordion .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #1b0238;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.enrollment-accordion .accordion .accordion-title.active i::before {
  content: "\eace";
  color: #f5890d;
}

.enrollment-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 18px 20px;
  border-top: 1px solid #f5890d;
  color: #6b6b84;
  font-size: 15px;
}

.enrollment-accordion .accordion .accordion-content.show {
  display: block;
}

.enrollment-image {
  background-image: url(../../assets/img/enrollment.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/*================================================
Timetable Area CSS
=================================================*/
.timetable .table {
  margin-bottom: 0;
  text-align: center;
}

.timetable .table thead th {
  border: 1px solid #f0f0f0;
  color: #1b0238;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 20px;
  padding: 30px 25px;
}

.timetable .table tbody tr th {
  border: 1px solid #f0f0f0;
  font-weight: 600;
  color: #0085ea;
  overflow-x: auto;
  font-family: "Roboto", sans-serif;
  padding: 30px 25px;
  font-size: 18px;
}

.timetable .table tbody tr th span {
  display: block;
  font-size: 14px;
  margin-top: 12px;
  font-weight: 400;
  color: #6b6b84;
}

.timetable .table tbody tr td {
  border: 1px solid #f0f0f0;
  font-weight: 600;
  color: #0085ea;
  overflow-x: auto;
  font-family: "Roboto", sans-serif;
  padding: 30px 25px;
  font-size: 18px;
}

.timetable .table tbody tr td span {
  display: block;
  font-size: 14px;
  margin-top: 12px;
  font-weight: 400;
  color: #6b6b84;
}

.timetable .table-responsive {
  overflow-x: unset;
}

.timetable .table-title {
  text-align: center;
  margin-top: 20px;
}

.timetable .table-title p {
  margin-bottom: 0;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-accordion {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  padding: 30px;
}

.faq-accordion .content {
  margin-bottom: 25px;
}

.faq-accordion .content h3 {
  font-size: 25px;
  margin-bottom: 0;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
  display: block;
  border: 1px solid #f3f3f3;
  margin-bottom: 10px;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 25px 40px 20px 20px;
  color: #1b0238;
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #1b0238;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-accordion .accordion .accordion-title.active i::before {
  content: "\eace";
  color: #f5890d;
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 18px 20px;
  border-top: 1px solid #f5890d;
  color: #6b6b84;
  font-size: 15px;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

.faq-image {
  background-image: url(../../assets/img/faq.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.faq-contact-form {
  max-width: 850px;
  margin: auto;
}

.faq-contact-form #contactForm .form-group {
  margin-bottom: 15px;
}

.faq-contact-form #contactForm .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #1b0238;
  background-color: transparent;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 400;
}

.faq-contact-form #contactForm .form-group .form-control:focus {
  border-color: #0085ea;
}

.faq-contact-form #contactForm .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.faq-contact-form #contactForm .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.faq-contact-form #contactForm .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.faq-contact-form #contactForm .form-group .form-control:focus::placeholder {
  color: transparent;
}

.faq-contact-form #contactForm .form-group .form-control::-webkit-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-contact-form #contactForm .form-group .form-control:-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-contact-form #contactForm .form-group .form-control::-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-contact-form #contactForm .form-group .form-control::placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-contact-form #contactForm .form-group textarea.form-control {
  height: auto;
  padding: 15px 0 0 15px;
}

.faq-contact-form #contactForm .form-group .help-block.with-errors ul {
  color: red;
  margin-bottom: 0;
  margin-top: 10px;
}

.faq-contact-form #contactForm #msgSubmit {
  margin: 0;
  font-size: 1.3rem;
}

.faq-contact-form #contactForm #msgSubmit.text-danger, .faq-contact-form #contactForm #msgSubmit.text-success {
  margin-top: 15px;
}

.faq-contact-form #contactForm .send-btn {
  margin-top: 15px;
}

.faq-contact-form #contactForm .send-btn .default-btn {
  border: none;
  position: relative;
  z-index: 1;
}

/*================================================
Login Area CSS
=================================================*/
.login-form {
  padding: 40px 45px;
  border-radius: 5px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
  max-width: 650px;
  margin: auto;
}

.login-form h2 {
  margin-bottom: 30px;
  font-size: 36px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
}

.login-form form .form-group {
  margin-bottom: 25px;
}

.login-form form .form-group label {
  display: block;
  margin-bottom: 10px;
  color: #6b6b84;
  font-weight: 400;
  font-size: 16px;
}

.login-form form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #1b0238;
  background-color: transparent !important;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 500;
}

.login-form form .form-group .form-control:focus {
  border: 1px solid #0085ea;
}

.login-form form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.login-form form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.login-form form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.login-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.login-form form .lost-your-password {
  text-align: right;
}

.login-form form .lost-your-password a {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: #6b6b84;
}

.login-form form .lost-your-password a::before {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #eeeeee;
}

.login-form form .lost-your-password a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  bottom: 0;
  content: '';
  background-color: #f5890d;
}

.login-form form .lost-your-password a:hover::before {
  width: 0;
}

.login-form form .lost-your-password a:hover::after {
  width: 100%;
}

.login-form form .form-check {
  font-weight: 500;
  font-size: 15px;
  color: #6b6b84;
}

.login-form form .form-check-input {
  margin-top: 2px;
}

.login-form form button {
  border: none;
  margin-top: 25px;
  padding: 15px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  background-color: #0085ea;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.login-form form button:hover {
  background-color: #f5890d;
}

.login-form .important-text {
  margin-top: 15px;
}

.login-form .important-text p {
  font-size: 15px;
  color: #656565;
}

.login-form .important-text p a {
  color: #656565;
  font-weight: 600;
}

.login-form .important-text p a:hover {
  color: #0085ea;
}

/*================================================
Register Area CSS
=================================================*/
.register-form {
  padding: 40px 45px;
  border-radius: 5px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
  max-width: 650px;
  margin: auto;
}

.register-form h2 {
  margin-bottom: 30px;
  font-size: 36px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
}

.register-form form .form-group {
  margin-bottom: 25px;
}

.register-form form .form-group label {
  display: block;
  margin-bottom: 10px;
  color: #6b6b84;
  font-weight: 400;
  font-size: 16px;
}

.register-form form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #1b0238;
  background-color: transparent !important;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 500;
}

.register-form form .form-group .form-control:focus {
  border: 1px solid #0085ea;
}

.register-form form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-form form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-form form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-form form .form-check {
  font-weight: 500;
  font-size: 15px;
  color: #6b6b84;
}

.register-form form .form-check-input {
  margin-top: 2px;
}

.register-form form button {
  border: none;
  margin-top: 25px;
  padding: 15px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  background-color: #0085ea;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-form form button:hover {
  background-color: #f5890d;
}

.register-form .important-text {
  margin-top: 15px;
}

.register-form .important-text p {
  font-size: 15px;
  color: #656565;
}

.register-form .important-text p a {
  color: #656565;
  font-weight: 600;
}

.register-form .important-text p a:hover {
  color: #0085ea;
}

/*================================================
404 Error Area CSS
=================================================*/
.error-content {
  text-align: center;
  margin: 0 auto;
  max-width: 750px;
}

.error-content h3 {
  font-size: 38px;
  margin-top: 45px;
  margin-bottom: 20px;
}

.error-content p {
  max-width: 520px;
  margin: 0 auto 25px;
  font-size: 15px;
}

.error-content .default-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  background-color: #0085ea;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.error-content .default-btn:hover {
  background-color: #f5890d;
}

/*================================================
Terms of service Area CSS
=================================================*/
.terms-of-service-accordion {
  max-width: 950px;
  margin: auto;
}

.terms-of-service-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.terms-of-service-accordion .accordion .accordion-item {
  display: block;
  border: 2px solid #f3f3f3;
  margin-bottom: 10px;
}

.terms-of-service-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.terms-of-service-accordion .accordion .accordion-title {
  padding: 25px 40px 20px 20px;
  color: #1b0238;
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.terms-of-service-accordion .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #1b0238;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.terms-of-service-accordion .accordion .accordion-title.active i::before {
  content: "\eace";
  color: #f5890d;
}

.terms-of-service-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 18px 20px;
  border-top: 1px solid #f5890d;
  color: #6b6b84;
  font-size: 15px;
}

.terms-of-service-accordion .accordion .accordion-content.show {
  display: block;
}

/*================================================
Privacy policy Area CSS
=================================================*/
.privacy-policy-accordion {
  max-width: 950px;
  margin: auto;
}

.privacy-policy-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.privacy-policy-accordion .accordion .accordion-item {
  display: block;
  border: 2px solid #f3f3f3;
  margin-bottom: 10px;
}

.privacy-policy-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.privacy-policy-accordion .accordion .accordion-title {
  padding: 25px 40px 20px 20px;
  color: #1b0238;
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.privacy-policy-accordion .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #1b0238;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.privacy-policy-accordion .accordion .accordion-title.active i::before {
  content: "\eace";
  color: #f5890d;
}

.privacy-policy-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 18px 20px;
  border-top: 1px solid #f5890d;
  color: #6b6b84;
  font-size: 15px;
}

.privacy-policy-accordion .accordion .accordion-content.show {
  display: block;
}

/*================================================
Coming Soon Area CSS
=================================================*/
.coming-soon-area {
  height: 100vh;
}

.coming-soon-content {
  max-width: 1050px;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  padding: 50px 60px;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  margin: auto;
}

.coming-soon-content h2 {
  font-size: 45px;
  margin-bottom: 0;
}

.coming-soon-content #timer {
  margin-top: 40px;
}

.coming-soon-content #timer div {
  background-color: #1b0238;
  color: #ffffff;
  width: 190px;
  height: 185px;
  border-radius: 5px;
  font-size: 45px;
  font-weight: bold;
  margin-left: 10px;
  margin-right: 10px;
  font-family: "Roboto", sans-serif;
}

.coming-soon-content #timer div span {
  display: block;
  margin-top: -2px;
  font-size: 16px;
  font-weight: 500;
}

.coming-soon-content .newsletter-form {
  position: relative;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.coming-soon-content .newsletter-form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.coming-soon-content .newsletter-form .form-group .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #eeeeee;
  color: #1b0238;
  height: 45px;
  padding-bottom: 20px;
  display: block;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 400;
}

.coming-soon-content .newsletter-form .form-group .form-control::-webkit-input-placeholder {
  color: #A1A1A1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.coming-soon-content .newsletter-form .form-group .form-control:-ms-input-placeholder {
  color: #A1A1A1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.coming-soon-content .newsletter-form .form-group .form-control::-ms-input-placeholder {
  color: #A1A1A1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.coming-soon-content .newsletter-form .form-group .form-control::placeholder {
  color: #A1A1A1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.coming-soon-content .newsletter-form .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 2px solid #0085ea;
}

.coming-soon-content .newsletter-form .default-btn {
  display: inline-block;
  padding: 15px 45px;
  background-color: #0085ea;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  right: 0;
  left: 0;
  top: 0;
  line-height: unset;
  height: unset;
}

.coming-soon-content .newsletter-form .default-btn:hover {
  background-color: #f5890d;
}

.coming-soon-content .newsletter-form .validation-danger {
  margin-top: 15px;
  color: red;
}

.coming-soon-content .newsletter-form .validation-success {
  margin-top: 10px;
}

.coming-soon-content .newsletter-form p {
  margin-bottom: 0;
  margin-top: 20px;
  font-size: 15px;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-information h3 {
  margin-bottom: 25px;
  font-size: 25px;
}

.contact-information .contact-list {
  padding-left: 0;
  margin-bottom: 25px;
  list-style-type: none;
}

.contact-information .contact-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.contact-information .contact-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #0085ea;
  font-size: 20px;
}

.contact-information .contact-list li span {
  font-weight: 600;
  color: #1b0238;
}

.contact-information .contact-list li a {
  display: inline-block;
  font-weight: 600;
  position: relative;
}

.contact-information .contact-list li a:hover::before {
  width: 100%;
}

.contact-information .contact-list li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #0085ea;
}

.contact-information .contact-list li:last-child {
  margin-bottom: 0;
}

.contact-information .opening-hours {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.contact-information .opening-hours li {
  margin-bottom: 10px;
}

.contact-information .opening-hours li:last-child {
  margin-bottom: 0;
}

.contact-form h3 {
  margin-bottom: 25px;
  font-size: 25px;
}

.contact-form #contactForm .form-group {
  margin-bottom: 15px;
}

.contact-form #contactForm .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #1b0238;
  background-color: transparent;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 400;
}

.contact-form #contactForm .form-group .form-control:focus {
  border-color: #0085ea;
}

.contact-form #contactForm .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.contact-form #contactForm .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.contact-form #contactForm .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.contact-form #contactForm .form-group .form-control:focus::placeholder {
  color: transparent;
}

.contact-form #contactForm .form-group .form-control::-webkit-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-form #contactForm .form-group .form-control:-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-form #contactForm .form-group .form-control::-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-form #contactForm .form-group .form-control::placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-form #contactForm .form-group textarea.form-control {
  height: auto;
  padding: 15px 0 0 15px;
}

.contact-form #contactForm .form-group .help-block.with-errors ul {
  color: red;
  margin-bottom: 0;
  margin-top: 10px;
  padding-left: 15px;
}

.contact-form #contactForm #msgSubmit {
  margin: 0;
  font-size: 1.3rem;
}

.contact-form #contactForm #msgSubmit.text-danger, .contact-form #contactForm #msgSubmit.text-success {
  margin-top: 15px;
}

.contact-form #contactForm .default-btn {
  border: none;
  position: relative;
  z-index: 1;
  border: none;
}

#map iframe {
  border: none;
  width: 100%;
  height: 450px;
  margin-bottom: -8px;
}

/*================================================
Teacher Details  Area CSS
=================================================*/
.teacher-details-desc .teacher-desc-content h3 {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.teacher-details-desc .teacher-desc-content p {
  font-size: 15px;
  margin-bottom: 0;
}

.teacher-details-desc .teacher-desc-content .skill-bar {
  margin-top: 30px;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-title-holder {
  position: relative;
  margin-bottom: 10px;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-title {
  font-size: 16px;
  font-weight: 500;
  color: #1b0238;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-number-wrapper {
  width: 100%;
  z-index: 10;
  font-size: 11px;
  line-height: 24px;
  height: 24px;
  letter-spacing: 0px;
  font-weight: 600;
  font-style: normal;
  text-transform: none;
  color: #ffffff;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-number-mark {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 16px;
  color: #1b0238;
  font-weight: 500;
}

.teacher-details-desc .teacher-desc-content .skill-bar .down-arrow {
  display: none;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-content-outter {
  height: 6px;
  background-color: #e4e4e4;
  border-radius: 4px;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-content {
  height: 6px;
  background-color: #fdbb22;
  border-radius: 4px;
  width: 0%;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-content.two {
  background-color: #ec471a;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-content.three {
  background-color: #024982;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-content.four {
  background-color: #5dba3b;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-content.five {
  background-color: #ff0057;
}

.teacher-details-desc .teacher-desc-content .skill-bar-wrapper {
  margin-left: 30px;
  max-width: 510px;
}

.teacher-details-desc .teacher-desc-content .skill-bar-wrapper .section-title-left {
  margin-bottom: 50px;
}

.teacher-details-information {
  background-color: #ffffff;
  -webkit-box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border-top: 3px solid #0085ea;
  padding: 40px 30px;
}

.teacher-details-information h3 {
  font-size: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
  position: relative;
}

.teacher-details-information h3::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 150px;
  height: 1px;
  background-color: #0085ea;
}

.teacher-details-information ul {
  padding-left: 0;
  margin-bottom: 0;
}

.teacher-details-information ul li {
  list-style-type: none;
  color: #6b6b84;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
}

.teacher-details-information ul li:last-child {
  margin-bottom: 0;
}

.teacher-details-information ul li span {
  color: #1b0238;
  font-size: 16px;
  font-weight: 600;
}

.teacher-details-information ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #6b6b84;
}

.teacher-details-information ul li a:hover {
  color: #0085ea;
}

/*================================================
Event Details  Area CSS
=================================================*/
.event-details-desc .event-desc-content h3 {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.event-details-desc .event-desc-content p {
  font-size: 15px;
  margin-bottom: 0;
}

.event-details-desc .event-desc-content #map {
  margin-top: 30px;
}

.event-details-desc .event-desc-content #map iframe {
  border: none;
  width: 100%;
  height: 450px;
  margin-bottom: -8px;
}

.event-details-information {
  background-color: #ffffff;
  -webkit-box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border-top: 3px solid #0085ea;
  padding: 40px 30px;
}

.event-details-information h3 {
  font-size: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
  position: relative;
}

.event-details-information h3::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 150px;
  height: 1px;
  background-color: #0085ea;
}

.event-details-information ul {
  padding-left: 0;
  margin-bottom: 0;
}

.event-details-information ul li {
  list-style-type: none;
  color: #6b6b84;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
}

.event-details-information ul li:last-child {
  margin-bottom: 0;
}

.event-details-information ul li span {
  color: #1b0238;
  font-size: 16px;
  font-weight: 600;
}

.event-details-information ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #6b6b84;
}

.event-details-information ul li a:hover {
  color: #0085ea;
}

/*================================================
Class Details  Area CSS
=================================================*/
.class-details-desc .class-details-tab {
  margin-top: 30px;
}

.class-details-desc .class-details-tab .tabs {
  list-style-type: none;
  margin-bottom: -1px;
  padding-left: 0;
}

.class-details-desc .class-details-tab .tabs li {
  display: inline-block;
  line-height: initial;
  margin-right: 5px;
}

.class-details-desc .class-details-tab .tabs li a {
  display: inline-block;
  position: relative;
  color: #1b0238;
  text-decoration: none;
  background-color: #fcefea;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 35px;
  width: 100%;
}

.class-details-desc .class-details-tab .tabs li a:hover, .class-details-desc .class-details-tab .tabs li a:focus {
  color: #ffffff;
  background-color: #0085ea;
}

.class-details-desc .class-details-tab .tabs li.current a {
  color: #ffffff;
  background-color: #0085ea;
  border-color: #0085ea;
}

.class-details-desc .class-details-tab .tabs li:last-child {
  margin-right: 0;
}

.class-details-desc .class-details-tab .tab_content .tabs_item {
  display: none;
}

.class-details-desc .class-details-tab .tab_content .tabs_item:first-child {
  display: block;
}

.class-details-desc .class-details-tab .tab_content .tabs_item .class-desc-content h3 {
  font-size: 25px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.class-details-desc .class-details-tab .tab_content .tabs_item .class-desc-content p {
  font-size: 15px;
  margin-bottom: 0;
}

.class-details-desc .class-details-tab .tab_content .tabs_item .class-desc-content .requirements-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 30px;
}

.class-details-desc .class-details-tab .tab_content .tabs_item .class-desc-content .requirements-list li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #6b6b84;
}

.class-details-desc .class-details-tab .tab_content .tabs_item .class-desc-content .requirements-list li:last-child {
  margin-bottom: 0;
}

.class-details-desc .class-details-tab .tab_content .tabs_item .class-desc-content .requirements-list li i {
  color: #0085ea;
}

.class-details-information {
  background-color: #ffffff;
  -webkit-box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border-top: 3px solid #0085ea;
  padding: 40px 30px;
}

.class-details-information h3 {
  font-size: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
  position: relative;
}

.class-details-information h3::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 150px;
  height: 1px;
  background-color: #0085ea;
}

.class-details-information ul {
  padding-left: 0;
  margin-bottom: 0;
}

.class-details-information ul li {
  list-style-type: none;
  color: #6b6b84;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
}

.class-details-information ul li:last-child {
  margin-bottom: 0;
}

.class-details-information ul li span {
  color: #1b0238;
  font-size: 16px;
  font-weight: 600;
}

.class-details-information ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #6b6b84;
}

.class-details-information ul li a:hover {
  color: #0085ea;
}

.class-newsletter {
  background-color: #fcefea;
  padding: 25px;
  margin-top: 30px;
}

.class-newsletter .newsletter-content {
  text-align: center;
  margin-bottom: 25px;
}

.class-newsletter .newsletter-content h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.class-newsletter .newsletter-content p {
  font-size: 14px;
}

.class-newsletter .newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 55px;
  padding-left: 15px;
  border-radius: 0;
  outline: 0;
  color: #1b0238;
}

.class-newsletter .newsletter-form .input-newsletter:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.class-newsletter .newsletter-form .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.class-newsletter .newsletter-form .input-newsletter:focus::-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.class-newsletter .newsletter-form .input-newsletter:focus::placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.class-newsletter .newsletter-form button {
  background: #0085ea;
  color: #ffffff;
  border: none;
  height: 55px;
  padding: 0 60px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 55px;
  font-weight: 500;
  border-radius: 0;
  transition: 0.5s;
  position: relative;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 10px;
}

.class-newsletter .newsletter-form button:hover {
  background-color: #f5890d;
}

.class-newsletter .newsletter-form #validator-newsletter {
  color: red;
  margin-top: 15px;
  font-weight: 400;
  text-align: center;
  font-weight: 400;
}

.related-class {
  margin-top: 30px;
}

.related-class h3 {
  font-size: 25px;
  margin-bottom: 25px;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  text-align: center;
  margin-top: 20px;
}

.pagination-area .page-numbers {
  width: 35px;
  height: 35px;
  margin: 0 3px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 35px;
  color: #1b0238;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
          box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
}

.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
  background: #f5890d;
  color: #ffffff;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
          box-shadow: 0 2px 10px 0 #d8dde6;
}

.pagination-area .page-numbers i {
  position: relative;
  top: 4px;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-content {
  margin-top: 30px;
}

.blog-details-desc .article-content .entry-meta {
  margin-bottom: -8px;
}

.blog-details-desc .article-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.blog-details-desc .article-content .entry-meta ul li {
  position: relative;
  display: inline-block;
  color: #1b0238;
  margin-right: 20px;
}

.blog-details-desc .article-content .entry-meta ul li span {
  display: inline-block;
  color: #1b0238;
  font-weight: 500;
}

.blog-details-desc .article-content .entry-meta ul li a {
  display: inline-block;
  color: #6b6b84;
}

.blog-details-desc .article-content .entry-meta ul li a:hover {
  color: #0085ea;
}

.blog-details-desc .article-content .entry-meta ul li i {
  color: #0085ea;
  margin-right: 2px;
}

.blog-details-desc .article-content .entry-meta ul li::before {
  content: '';
  position: absolute;
  top: 12px;
  right: -15px;
  width: 6px;
  height: 1px;
  background: #0085ea;
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-right: 0;
}

.blog-details-desc .article-content .entry-meta ul li:last-child::before {
  display: none;
}

.blog-details-desc .article-content h3 {
  margin-bottom: 15px;
  margin-top: 25px;
  font-size: 25px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}

.blog-details-desc .article-content .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 30px;
}

.blog-details-desc .article-content .features-list li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 34px;
  color: #6b6b84;
}

.blog-details-desc .article-content .features-list li i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 40px;
  background-color: #faf5f5;
  color: #f5890d;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  font-size: 11px;
  position: absolute;
  left: 0;
  top: -2px;
}

.blog-details-desc .article-content .features-list li:hover i {
  background-color: #f5890d;
  color: #ffffff;
}

.blog-details-desc .article-content .features-list li:last-child {
  margin-bottom: 0;
}

.blog-details-desc .article-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

.blog-details-desc .article-footer .article-tags {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  color: #6b6b84;
}

.blog-details-desc .article-footer .article-tags span {
  display: inline-block;
  color: #1b0238;
  font-size: 20px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.blog-details-desc .article-footer .article-tags a {
  display: inline-block;
  margin-right: 2px;
  font-weight: 500;
  color: #6b6b84;
}

.blog-details-desc .article-footer .article-tags a:hover {
  color: #f5890d;
}

.blog-details-desc .article-footer .article-share {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-desc .article-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  text-align: right;
  margin-bottom: 0;
}

.blog-details-desc .article-footer .article-share .social li {
  display: inline-block;
}

.blog-details-desc .article-footer .article-share .social li span {
  display: inline-block;
  margin-right: 2px;
  font-weight: 500;
  color: #6b6b84;
}

.blog-details-desc .article-footer .article-share .social li a {
  display: block;
  color: #f5890d;
  width: 30px;
  height: 30px;
  line-height: 34px;
  border-radius: 50%;
  background-color: #eeeef0;
  text-align: center;
}

.blog-details-desc .article-footer .article-share .social li a:hover {
  color: #ffffff;
  background-color: #f5890d;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

blockquote, .blockquote {
  background-color: #fafafa;
  padding: 30px !important;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  border-left: 3px solid #f5890d;
  border-right: 3px solid #f5890d;
  border-radius: 5px;
}

blockquote p, .blockquote p {
  color: #1b0238;
  margin-bottom: 0;
  font-size: 18px !important;
  font-weight: 500;
  font-style: italic;
}

.post-navigation {
  margin-top: 30px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 20px;
  padding-bottom: 20px;
}

.post-navigation .navigation-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.post-navigation .navigation-links .nav-previous {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.post-navigation .navigation-links .nav-previous a i {
  margin-right: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 18px;
  position: relative;
  top: 2px;
}

.post-navigation .navigation-links .nav-previous a:hover i {
  margin-right: 0;
}

.post-navigation .navigation-links .nav-next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  text-align: right;
}

.post-navigation .navigation-links .nav-next a i {
  margin-left: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 18px;
  position: relative;
  top: 2px;
}

.post-navigation .navigation-links .nav-next a:hover i {
  margin-left: 0;
}

.post-navigation .navigation-links div a {
  display: inline-block;
  font-weight: 600;
}

.comments-area {
  margin-top: 30px;
}

.comments-area .comments-title {
  margin-bottom: 30px;
  font-size: 24px;
}

.comments-area ol, .comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .children {
  margin-left: 20px;
}

.comments-area .comment-body {
  border-bottom: 1px dashed #eeeeee;
  padding-left: 70px;
  color: #1b0238;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.comments-area .comment-body .reply {
  margin-top: 15px;
}

.comments-area .comment-body .reply a {
  border: 1px dashed #ded9d9;
  color: #1b0238;
  display: inline-block;
  padding: 5px 25px 5px;
  border-radius: 30px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
}

.comments-area .comment-body .reply a:hover {
  color: #ffffff;
  background-color: #f5890d;
  border-color: #f5890d;
}

.comments-area .comment-author {
  font-size: 16px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
}

.comments-area .comment-author .fn {
  font-weight: 600;
}

.comments-area .comment-metadata {
  color: #6b6b84;
  margin-bottom: 10px;
  font-size: 14px;
}

.comments-area .comment-metadata a {
  display: inline-block;
  color: #6b6b84;
}

.comments-area .comment-metadata a:hover {
  color: #f5890d;
}

.comments-area .comment-respond {
  margin-top: 30px;
}

.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 0;
  font-size: 24px;
}

.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}

.comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.comments-area .comment-respond .comment-notes {
  margin-top: 10px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-notes .required {
  color: red;
}

.comments-area .comment-respond .comment-form-comment {
  float: left;
  width: 100%;
}

.comments-area .comment-respond label {
  display: none;
}

.comments-area .comment-respond input[type="date"], .comments-area .comment-respond input[type="time"], .comments-area .comment-respond input[type="datetime-local"], .comments-area .comment-respond input[type="week"], .comments-area .comment-respond input[type="month"], .comments-area .comment-respond input[type="text"], .comments-area .comment-respond input[type="email"], .comments-area .comment-respond input[type="url"], .comments-area .comment-respond input[type="password"], .comments-area .comment-respond input[type="search"], .comments-area .comment-respond input[type="tel"], .comments-area .comment-respond input[type="number"], .comments-area .comment-respond textarea {
  display: block;
  width: 100%;
  background-color: #f4f4f4;
  border: none;
  padding: 1px 0 0 15px;
  height: 60px;
  outline: 0;
  border-radius: 2px;
  color: #1b0238;
}

.comments-area .comment-respond input[type="date"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="time"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="week"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="month"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="text"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="email"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="url"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="password"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="search"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="tel"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="number"]::-webkit-input-placeholder, .comments-area .comment-respond textarea::-webkit-input-placeholder {
  color: #6b6b84;
}

.comments-area .comment-respond input[type="date"]:-ms-input-placeholder, .comments-area .comment-respond input[type="time"]:-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]:-ms-input-placeholder, .comments-area .comment-respond input[type="week"]:-ms-input-placeholder, .comments-area .comment-respond input[type="month"]:-ms-input-placeholder, .comments-area .comment-respond input[type="text"]:-ms-input-placeholder, .comments-area .comment-respond input[type="email"]:-ms-input-placeholder, .comments-area .comment-respond input[type="url"]:-ms-input-placeholder, .comments-area .comment-respond input[type="password"]:-ms-input-placeholder, .comments-area .comment-respond input[type="search"]:-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]:-ms-input-placeholder, .comments-area .comment-respond input[type="number"]:-ms-input-placeholder, .comments-area .comment-respond textarea:-ms-input-placeholder {
  color: #6b6b84;
}

.comments-area .comment-respond input[type="date"]::-ms-input-placeholder, .comments-area .comment-respond input[type="time"]::-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]::-ms-input-placeholder, .comments-area .comment-respond input[type="week"]::-ms-input-placeholder, .comments-area .comment-respond input[type="month"]::-ms-input-placeholder, .comments-area .comment-respond input[type="text"]::-ms-input-placeholder, .comments-area .comment-respond input[type="email"]::-ms-input-placeholder, .comments-area .comment-respond input[type="url"]::-ms-input-placeholder, .comments-area .comment-respond input[type="password"]::-ms-input-placeholder, .comments-area .comment-respond input[type="search"]::-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]::-ms-input-placeholder, .comments-area .comment-respond input[type="number"]::-ms-input-placeholder, .comments-area .comment-respond textarea::-ms-input-placeholder {
  color: #6b6b84;
}

.comments-area .comment-respond input[type="date"]::placeholder, .comments-area .comment-respond input[type="time"]::placeholder, .comments-area .comment-respond input[type="datetime-local"]::placeholder, .comments-area .comment-respond input[type="week"]::placeholder, .comments-area .comment-respond input[type="month"]::placeholder, .comments-area .comment-respond input[type="text"]::placeholder, .comments-area .comment-respond input[type="email"]::placeholder, .comments-area .comment-respond input[type="url"]::placeholder, .comments-area .comment-respond input[type="password"]::placeholder, .comments-area .comment-respond input[type="search"]::placeholder, .comments-area .comment-respond input[type="tel"]::placeholder, .comments-area .comment-respond input[type="number"]::placeholder, .comments-area .comment-respond textarea::placeholder {
  color: #6b6b84;
}

.comments-area .comment-respond textarea {
  height: auto !important;
  padding-top: 15px;
}

.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 7.5px;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #6b6b84;
}

.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.comments-area .comment-respond .form-submit input {
  background: #0085ea;
  border: none;
  color: #ffffff;
  padding: 10px 30px 10px;
  display: inline-block;
  cursor: pointer;
  text-transform: capitalize;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0;
  font-weight: 600;
  border-radius: 5px;
}

/*================================================
Widget Sidebar CSS
=================================================*/
.widget-area .widget {
  margin-bottom: 30px;
}

.widget-area .widget:last-child {
  margin-bottom: 0;
}

.widget-area .widget .widget-title {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 20px;
}

.widget-area .widget .widget-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  bottom: -1px;
  background: #0085ea;
}

.widget-area .widget_search {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  border-radius: 5px;
  padding: 25px;
}

.widget-area .widget_search form {
  position: relative;
}

.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
  display: none;
}

.widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 8px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
}

.widget-area .widget_search form .search-field:focus {
  border-color: #f5890d;
}

.widget-area .widget_search form button {
  border: none;
  background-color: #eeeeee;
  color: #f5890d;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 5px;
  padding: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 5px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}

.widget-area .widget_search form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  -webkit-transform: translateY(-52%);
          transform: translateY(-52%);
}

.widget-area .widget_search form button:hover, .widget-area .widget_search form button:focus {
  background-color: #f5890d;
  color: #ffffff;
}

.widget-area .widget_ketan_posts_thumb {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  border-radius: 5px;
  padding: 25px;
}

.widget-area .widget_ketan_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 15px;
}

.widget-area .widget_ketan_posts_thumb .item:last-child {
  margin-bottom: 0;
}

.widget-area .widget_ketan_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  display: block;
  position: relative;
  width: 80px;
  margin-right: 15px;
  z-index: 1;
}

.widget-area .widget_ketan_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  border-radius: 5px;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.widget-area .widget_ketan_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../../assets/img/blog/blog-1.jpg);
}

.widget-area .widget_ketan_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../../assets/img/blog/blog-2.jpg);
}

.widget-area .widget_ketan_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../../assets/img/blog/blog-3.jpg);
}

.widget-area .widget_ketan_posts_thumb .item .thumb .fullimage.bg4 {
  background-image: url(../../assets/img/blog/blog-4.jpg);
}

.widget-area .widget_ketan_posts_thumb .item .thumb .fullimage.bg5 {
  background-image: url(../../assets/img/blog/blog-5.jpg);
}

.widget-area .widget_ketan_posts_thumb .item .thumb .fullimage.bg6 {
  background-image: url(../../assets/img/blog/blog-6.jpg);
}

.widget-area .widget_ketan_posts_thumb .item .info {
  overflow: hidden;
  margin-top: 5px;
}

.widget-area .widget_ketan_posts_thumb .item .info span {
  display: block;
  color: #f5890d;
  margin-top: -2px;
  margin-bottom: 5px;
  font-size: 14px;
}

.widget-area .widget_ketan_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 17px;
  font-weight: bold;
}

.widget-area .widget_ketan_posts_thumb .item .info .title a {
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_ketan_posts_thumb .item .info .title a:hover {
  color: #f5890d;
}

.widget-area .widget_categories {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  border-radius: 5px;
  padding: 25px;
}

.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_categories ul li {
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
  color: #1b0238;
  padding-left: 18px;
  font-size: 15px;
  font-weight: 500;
}

.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_categories ul li::before {
  background: #0085ea;
  height: 8px;
  width: 8px;
  content: '';
  border-radius: 50%;
  left: 0;
  top: 7px;
  position: absolute;
}

.widget-area .widget_categories ul li a {
  color: #1b0238;
  display: inline-block;
}

.widget-area .widget_categories ul li a:hover {
  color: #f5890d;
}

.widget-area .widget_tag_cloud {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  border-radius: 5px;
  padding: 25px;
}

.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 18px;
}

.widget-area .tagcloud a {
  background: #f5f5f5;
  display: inline-block;
  color: #1b0238;
  padding: 7px 15px;
  border: none;
  border-radius: 3px;
  font-weight: 500;
  font-size: 15px !important;
  margin-top: 8px;
  margin-right: 5px;
}

.widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
  color: #ffffff;
  background-color: #f5890d;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background-image: url(../../assets/img/footer-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.footer-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0.9;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget .logo {
  margin-bottom: 15px;
}

.single-footer-widget .logo h2 {
  font-size: 50px;
}

.single-footer-widget .logo h2 a {
  color: #ffffff;
}

.single-footer-widget p {
  margin-bottom: 0;
  color: #ffffff;
}

.single-footer-widget .social {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 0;
}

.single-footer-widget .social li {
  display: inline-block;
  margin-right: 10px;
}

.single-footer-widget .social li:last-child {
  margin-right: 0;
}

.single-footer-widget .social li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #0085ea;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
}

.single-footer-widget .social li a:hover, .single-footer-widget .social li a:focus {
  background-color: #f5890d;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.single-footer-widget h3 {
  font-size: 25px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
  color: #ffffff;
}

.single-footer-widget h3::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  height: 2px;
  width: 50px;
  background-color: #0085ea;
}

.single-footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .footer-contact-info li {
  margin-bottom: 27px;
  color: #ffffff;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

.single-footer-widget .footer-contact-info li i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 25px;
  color: #0085ea;
}

.single-footer-widget .footer-contact-info li span {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 20px;
}

.single-footer-widget .footer-contact-info li a {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  position: relative;
  font-size: 14px;
}

.single-footer-widget .footer-contact-info li a:hover {
  color: #0085ea;
}

.single-footer-widget .footer-contact-info li a:hover::before {
  width: 100%;
}

.single-footer-widget .footer-contact-info li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #0085ea;
}

.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .quick-links {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .quick-links li {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 20px;
}

.single-footer-widget .quick-links li a {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  position: relative;
}

.single-footer-widget .quick-links li a:hover {
  color: #0085ea;
}

.single-footer-widget .quick-links li a:hover::before {
  width: 100%;
}

.single-footer-widget .quick-links li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #0085ea;
}

.single-footer-widget .quick-links li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .photo-gallery-list {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0;
  margin-left: -2px;
  margin-right: -2px;
  margin-top: -5px;
}

.single-footer-widget .photo-gallery-list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333333%;
          flex: 0 0 33.333333%;
  max-width: 33.333333%;
  text-align: center;
  padding-left: 2px;
  padding-right: 2px;
  padding-top: 5px;
}

.single-footer-widget .photo-gallery-list li .box {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.single-footer-widget .photo-gallery-list li .box .link-btn {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
}

.single-footer-widget .photo-gallery-list li .box img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-footer-widget .photo-gallery-list li .box::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: #0085ea;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.single-footer-widget .photo-gallery-list li .box:hover::before {
  opacity: 0.5;
  visibility: visible;
}

.single-footer-widget .photo-gallery-list li .box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.single-footer-widget .photo-gallery-list li .box:hover i {
  opacity: 1;
  visibility: visible;
}

/*================================================
Copy Right Area CSS
=================================================*/
.copyright-area {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #091629;
}

.copyright-area .copyright-area-content {
  text-align: center;
}

.copyright-area .copyright-area-content p {
  color: #ffffff;
}

.copyright-area .copyright-area-content p a {
  display: inline-block;
  font-weight: 600;
  color: #0085ea;
}

.copyright-area .copyright-area-content p a:hover {
  color: #ffffff;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: #ffffff;
  background-color: #1b0238;
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  font-size: 22px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.go-top:hover {
  background-color: #0085ea;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
/*# sourceMappingURL=style.css.map */

/* custom */
.who-we-are-content span,
.section-title span{
  font-family: "Sacramento", cursive;
}
@media only screen and (max-width: 767px){
  .owl-carousel .owl-nav.disabled{
    /* display: none !important; */
  }
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel button.owl-dot{
    font-size: 50px !important;
    margin: 5px 0 !important;
  }
}
.main-bgbox{
  background-color: #f5edec;
    position: absolute;
    width: 100%;
    height: 60vh;
}
.main-banner-item.banner-item-two{
  background-color: transparent;
}
.owl-carousel .owl-stage-outer{
  z-index: 10;
}
.main-bg{
  position: absolute;
  z-index: 2;
}
.mainvisbox{
  /* position: absolute; */
  /* width: 100%; */
  /* height: 60vh; */
}
.mainvis{
  right: 17%;
  width: 500px !important;
  top: 4vh;
  z-index: 2;
}
.mainvis-oj01{
  right: 21%;
  width: 120px !important;
  top: 15vh;
  z-index: 2;
  animation: main01 2.5s infinite linear;
}
@keyframes main01{
  0%{
    top: 14vh; 
  }
  20%{
    top: 14.5vh;
  }
  50%{
    top: 15vh;
  }
  70%{
    top: 14.5vh;
  }
  100%{
    top: 14vh;
  }
}
.mainvis-oj02{
  right: 27.5%;
  width: 100px !important;
  top: 19vh;
  z-index: 2;
  animation: main02 3s infinite linear;
}
@keyframes main02{
  0%{
    top: 18vh; 
  }
  20%{
    top: 18.5vh;
  }
  50%{
    top: 19vh;
  }
  70%{
    top: 18.5vh;
  }
  100%{
    top: 18vh;
  }
}
.mainvis-oj03{
  right: 18.2%;
  width: 100px !important;
  top: 23vh;
  z-index: 2;
  animation: main03 3.5s infinite linear;
}
@keyframes main03{
  0%{
    top: 22vh; 
  }
  20%{
    top: 22.5vh;
  }
  50%{
    top: 23vh;
  }
  70%{
    top: 22.5vh;
  }
  100%{
    top: 22vh;
  }
}
.main-bg01{
  animation: bg01 5s infinite;
}
@keyframes bg01{
  0%{
    opacity: 0.2;
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 0.2;
  }
}
.main-bg02{
  right: 0;
  bottom: 47px;
  animation: bg02 5s infinite;
  animation-delay: 0.3s;
}
@keyframes bg02{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.2;
  }
  100%{
    opacity: 1;
  }
}
.main-bg03{
  left: 50%;
  top: 20px;
  animation: bg03 6s infinite;
  animation-delay: 1s;
}
@keyframes bg03{
  0%{
    opacity: 0.2;
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 0.2;
  }
}
.shape-kids02{
  position: absolute;
  bottom: 1vw;
  left: 18%;
  z-index: 2;
  max-width: 33vw;
  width: 100%;
}
.owl-carousel .owl-item img.kids02{
  width: 40vw;
}
.main-banner-content02 h2{
  margin-bottom: 220px;
}
.who-we-are-image-main::before{
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  background-color: #0085ea;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: border-transform-default 10s linear infinite alternate forwards;
  animation: border-transform-default 10s linear infinite alternate forwards;
}
.who-we-are-image-main::after{
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  background-color: #f5890d;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: border-transform-default 50s linear infinite alternate forwards;
  animation: border-transform-default 50s linear infinite alternate forwards;
}
.who-we-are-image-main{
  text-align: center;
  position: relative;
  z-index: 1;
  left: 6%;
}
.shape-obj{
  position: absolute;
  bottom: 60%;
  left: 87%;
  z-index: 2;
  max-width: 33vw;
  width: 100%;
}
.mainoj01{
  width: 8vw !important;
  animation: mainoj01ani 5s infinite;
}
@keyframes mainoj01ani{
  0%{
    transform: rotate(10deg);
  }
  50%{
    transform: rotate(30deg);
  }
  100%{
    transform: rotate(10deg);
  }
}
.main-content-img{
  width: 24vw !important;
}
.main-imgbox{
  position: relative;
}
.main-banner-shape .shape-6 {
  position: absolute;
  bottom: 0;
  left: 8%;
  z-index: 2;
  max-width: 12vw;
  width: 100%;
}
.main-banner-item.banner-item-two{
  /* background: url(../img/maincontent/main.png) no-repeat; */
  height: 60vh;
}
.main-banner-content{
  z-index: 3;
}
.blank{
  width: 60%;
  display: inline;
  content: "";
  padding: 0px 6%;
}
.title-name{
  text-align: right;
  width: 63.5%;
  font-weight: bold;
  color: #1b0238;
}
.section1-txt{
  font-size: 17px;
}
.navbar-nav{
  align-content: center;
  align-items: center;
}
.main-navbar{
  height: 100px;
}
.main-navbar .container, .main-navbar .container .main-navbar .navbar{
  height: 100px;
}
.main-navbar .navbar{
  height: 100px;
}
.logoimg{
  width: 400px;
}
.navbar-nav li:nth-child(1),
.navbar-nav li:nth-child(2),
.navbar-nav li:nth-child(3),
.navbar-nav li:nth-child(4),
.navbar-nav li:nth-child(5),
.navbar-nav li:nth-child(6){
  margin-top: 21px;
}
/* .navbar-nav>li:nth-child(1){
  display: none;
} */
.nav-item.contact-us{
  position: relative;
  margin-left: 30px !important;
}
.nav-item .contact-01{
  position: absolute;
  bottom: 0;
  left: -47px;
  opacity: 0;
  z-index: 1;
}
.nav-item .contact-02{
  position: relative;
  bottom: -10px;
}
.nav-item .contact-03{
  position: absolute;
  top: 20px;
  right: -13px;
  opacity: 0;
  z-index: 1;
}
.activities-area{
  background: url(../img/section2-bg.jpg) no-repeat;
  padding: 5% 0;
  background-size: cover;
}
.footer-area{
  background: url(../img/section3-bg.jpg) no-repeat;
  background-size: cover;
}
.single-footer-widget>p{
  font-size: 0.77vw;
  line-height: 2.3;
}
.single-footer-widget .logo h3::before{
  display: none;
}
.single-footer-widget .logo>h3{
  margin: 0;
  padding: 0;
}
.social svg{
  font-size: 25px;
  margin-bottom: 5px;
}
.phone-icon, .mail-icon{
  width: 25px;
  height: 19px;
  margin-right: 5%;
  margin-top: 5px;
}
.address-icon{
  width: 20px;
  height: 26px;
  margin-right: 5%;
  margin-top: 5px;
}
.footer-contact-info li{
  display: flex;
}
.address-txt{
  font-size: 14px;
}
.carousel-control-next, .carousel-control-prev{
  color: #000000 !important; 
}
.carousel-control-prev-icon{
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); 
} 
.carousel-control-next-icon{ 
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); 
}
.owl-nav.disabled{
  display: block !important;
}
.owl-dots{
  display: block;
}
.owl-theme .owl-nav.disabled+.owl-dots{
  position: absolute;
  bottom: 60px;
  z-index: 10;
  width: 100%;
}
.owl-theme .owl-nav [class*=owl-]{
  font-size: 80px !important;
}

.owl-theme .owl-nav [class*=owl-]:hover{
  background-color: unset !important;
  color: #0085ea !important;
}
/* .owl-carousel01 .owl-nav [class*=owl-]:hover{
  background: url(../img/main/prev.png) no-repeat center !important;
} */
.owl-carousel.owl-loaded{
  position: relative;
}
.owl-carousel .owl-nav.disabled{
  position: absolute;
  z-index: 50;
  top: 220px;
  width: 100%;
}
.owl-carousel01 .owl-nav button.owl-prev:hover{
  background: url(../img/main/prev-b.png) no-repeat center !important;
}
.owl-carousel01 .owl-nav button.owl-prev{
  background: url(../img/main/white-prev.png) no-repeat center !important;
}
.owl-carousel01 .owl-nav button.owl-next:hover{
  background: url(../img/main/next-b.png) no-repeat center !important;
}
.owl-carousel01 .owl-nav button.owl-next{
  background: url(../img/main/white-next.png) no-repeat center !important;
}
.owl-carousel02 .owl-nav button.owl-prev{
  background: url(../img/main/prev.png) no-repeat center !important;
}
.owl-carousel02 .owl-nav button.owl-next{
  background: url(../img/main/next.png) no-repeat center !important;
}
.owl-carousel .owl-nav button.owl-prev span{
  visibility: hidden;
}
.owl-carousel .owl-nav button.owl-next span{
  visibility: hidden;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
  position: absolute;
}
.owl-carousel .owl-nav button.owl-prev{
  left: 5%;
}
.owl-carousel .owl-nav button.owl-next{
  right: 5%;
}
.shape-4>img{
  width: 6vw !important;
}
@media (min-width: 992px){
  .main-banner-content p {
    font-size: 1.1vw;
  }
}
@media (min-width: 768px) and (max-width: 991px){
  .optional-btn{
    padding: 12px 35px !important;
  }
}
@media (min-width: 320px) and (max-width: 412px){
  .main-banner-content p {
    font-size: 15px;
  }
  .main-banner-content .banner-btn{
    margin-right: 25%;
  }
}

.contact-information .contact-list .iconify,
.event-box-item .event-content .event-list .iconify{
  position: absolute;
    left: 0;
    top: 2px;
    color: #0085ea;
    font-size: 20px;
}

@media only screen and (max-width: 991px){
  .mainvisbox{
    display: none;
  }
  .main-banner-shape, .who-we-are-image-main{
    display: none;
  }
  .main-banner-content02 h2{
    margin: 0;
  }
}
.banner-item-frist{
  height: 65vh !important;
  background-color: #fff !important;
}
.frist-table{
  height: 92% !important;
}
.frist-banner{
  position: relative;
  z-index: 10;
  /* background: url(../img/maincontent/mainvis-oj-bg.png) no-repeat; */
  /* background-size: cover; */
  /* background-position: center; */
  /* background-color: #418f62; */
  /* background-color: #fe0070; */
}
.mainvis-oj04{
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 5px;
}
.frist-banner-content{
  max-width: 100% !important;
  /* margin-left: 65% !important;  */
  position: relative;
}
.shape-line01{
  position: absolute;
  top: -75px;
  left: -120px;
  z-index: 2;
  max-width: 33vw;
  width: 100%;
}
img.mainvis-oj05{
  width: 980px !important;
}
img.mainvis-oj05-1{
  width: 980px !important;
  position: absolute;
  top: -180%;
  animation: vis05-1 3s;
  animation-fill-mode: forwards;
}
@keyframes vis05-1{
  0%{
    opacity: 0;
  }
  30%{
    opacity: 0.5;
  }
  100%{
    top: 0;
    opacity: 1;
  }
}
.shape-line02{
  position: absolute;
  bottom: 0;
  left: 20% !important;
  z-index: 2;
  max-width: 33vw;
  width: 100%;
}
img.frist-oj01{
  width: 10vw !important;
}
.shape-line03{
  position: absolute;
  bottom: 20px;
  right: -43px;
  z-index: 10;
  max-width: 33vw;
  width: 100%;
}
img.mainvis-oj06{
  width: 36vw !important;
}
@media only screen and (max-width: 1199px){
  .banner-item-frist{
    padding: 0 !important;
    border-bottom: 0 !important;
  }
}

.who-we-are-image img{
  width: 100%;
}
.event-box-item .event-content .event-list li{
  word-break: keep-all;
}
@media only screen and (max-width: 991px){
  .frist-shape{
    display: block;
  }
  .frist-banner-content{
    /* margin-left: 20% !important; */
  }
  .mainvis-oj06{
    display: none !important;
  }
  .mainvis-oj04{
    width: 55vw !important;
  }
}

/* .event-box-item{
  height: 40vh;
  margin-bottom: 70px;
  padding-top: 15px;
} */
.event-box-item{
  background-color: transparent;
  -webkit-box-shadow: 0 0 0 rgb(0 0 0 / 0%);
  box-shadow: 0 0 0 rgb(0 0 0 / 0%);
  border-radius: 10px;
  padding: 30px;
  padding-right: 10px;
  margin-bottom: 30px;
  position: relative;
}
.event-bg-box{
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgb(0 0 0 / 9%);
  box-shadow: 0 2px 28px 0 rgb(0 0 0 / 9%);
  border-radius: 10px;
  margin-bottom: 30px;
  position: absolute;
  width: 100%;
  height: 70%;
  z-index: -1;
  top: 15%;
  left: 0;
}
.event-box-item .col-md-8{
  padding-bottom: 1%;
  padding-left: 2%;
  padding-right: 0%;
}
.event-title-box01{
  width: 83%;
}
.event-title-box02{
  width: 30%;
}
.event-title-box03{
  width: 30%;
}
.event-title-box04{
  width: 78%;
}
.event-box-item .col-md-8 h3{
  font-size: 50px;
  color: #2ea059;
  font-style: italic;
}
.event-box-item .col-md-8 span{
  display: block;
  text-align: left;
  font-weight: bold;
  font-size: 26px;
  color: #7a7a7a;
}
.event-list li:nth-child(1){
  color: #2ea059;
  font-weight: 600 !important;
  font-size: 0.95vw !important;
  letter-spacing: 0.5px;
}
.event-list li:nth-child(2){
  color: #7a7a7a;
  font-weight: 600 !important;
  font-size: 0.83vw !important;
  letter-spacing: 0.4px;
}
.event-list{
  line-height: 1.4;
}
.event-box-item .col-md-8 .event-content .event-list li{
  padding-left: 0;
}

.overview-area01 {
  background-image: url(../img/summary-bg01.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.overview-area02 {
  background-image: url(../img/summary-bg02.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.overview-area03 {
  background-image: url(../img/summary-bg03.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.overview-area04 {
  background-image: url(../img/summary-bg04.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
/* .overview-area05 {
  background-image: url(../img/summary-bg04.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
} */
.overview-area05{
  display: none;
}

.overview-area02 .overview-content,
.overview-area04 .overview-content{
  margin-left: unset;
}
.section-title {
  margin-bottom: 15px;
}
.end-content{
  max-width: 100%;
  margin-left: unset;
  margin: 3% 0;
  display: none;
}
.end-content p{
  font-size: 1vw;
  color: #fff;
}
.overview-area01 .page-banner-content{
  margin-bottom: 5%;
}
.start-content{
  max-width: 100%;
  margin-left: unset;
  margin: 0 0 3%;
  display: none;
}
.start-content p{
  font-size: 1vw;
  color: #fff;
}
.start-content-box{
  margin-top: 5%;
}
.start-list{
  list-style: none;
  color: #fff;
  font-size: 0.92vw;
  font-weight: 600;
  padding: 0;
}
.overview01{
  max-width: 590px;
}
.overview02{
  max-width: 590px;
}
.overview03{
  max-width: 500px;
}
.overview04{
  max-width: 740px;
}
.overview-title-box01{
  width: 91%;
}
.overview-title-box02{
  width: 100%;
}
.overview-title-box03{
  width: 100%;
}
.overview-title-box04{
  width: 100%;
}
.overview-title-box01 h3,
.overview-title-box02 h3,
.overview-title-box03 h3,
.overview-title-box04 h3{
  font-size: 50px;
  color: #7a7a7a;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.1;
}
.overview-title-box01 span,
.overview-title-box02 span,
.overview-title-box03 span,
.overview-title-box04 span{
  display: block;
  text-align: left;
  font-weight: bold;
  font-size: 24px;
  color: #0085ea;
  margin-bottom: 10px;
}
.overview-content p:nth-child(3){
  margin-bottom: 15px;
}
.overview-content p:nth-child(2),
.overview-content p:nth-child(3){
  color: #7a7a7a;
  font-weight: 600 !important;
  font-size: 0.9vw !important;
  line-height: 1.7;
}
.overview-content p:nth-child(4),
.overview-content p:nth-child(5){
  color: #0085ea;
  font-weight: 600 !important;
  font-size: 0.9vw !important;
  line-height: 1.7;
}
.overview04 p:nth-child(2),
.overview04 p:nth-child(3){
  letter-spacing: -0.6px;
  font-size: 0.8vw !important;
}
.overview04 p:nth-child(4),
.overview04 p:nth-child(5){
  font-size: 0.8vw !important;
}
.overview-title-box04 h3{
  letter-spacing: -1px;
}
@media (min-width: 320px) and (max-width: 575px){
  .owl-carousel .owl-nav.disabled{
    position: absolute;
    z-index: 50;
    top: 200px;
    width: 100%;
  }
  .navbar-nav{
    overflow-x: hidden;
  }
  .frist-banner-content{
    /* margin-left: 0% !important; */
  }
  .mainvis-oj04{
    width: 90vw !important;
  }
  .who-we-are-content .who-we-are-list{
    flex-direction: column;
  }
  .single-activities .activities-content p{
    font-size: 13px;
    word-break: keep-all;
  }
  .single-footer-widget p{
    font-size: 13px !important;
  }
  .copyright-area .copyright-area-content p{
    font-size: 13px !important;
  }
  .nav-item .contact-02{
    bottom: 0;
    left: -20px;
  }
  .start-list{
    font-size: 4vw !important;
    padding-left: 0;
    word-break: keep-all;
  }
  .who-we-are-image{
    width: 80%;
    text-align: center;
    display: inline-block;
    margin-bottom: 0 !important;
  }
  .event-box-item{
    padding: 30px !important;
  }
  .event-title-box01,
  .event-title-box02,
  .event-title-box03,
  .event-title-box04{
    width: 100% !important;
  }
  .event-title-box02 span{
    width: 69%;
  }
  .event-title-box03 span{
    width: 69%;
  }
  .event-title-box04 span{
    width: 97%;
  }
  .event-bg-box{
    height: 90% !important;
  }
  .event-box-item .event-content .event-list li{
    font-size: 4vw !important;
    text-align: left;
  }
  .imagelightbox-arrow{
    display: none !important;
  }
  .event-box-item .col-md-8 span{
    text-align: center;
    width: 100% !important;
    font-size: 20px !important;
  }
  .contact-form #contactForm .form-group .form-control{
    font-size: 3vw;
  }
  .overview-title-box01{
    width: 100%;
  }
  .overview-title-box01 span, 
  .overview-title-box02 span, 
  .overview-title-box03 span, 
  .overview-title-box04 span{
    font-size: 3.5vw !important;
    display: inline-block;
    text-align: center;
    width: 100% !important;
  }
  .overview-title-box01 h3,
  .overview-title-box02 h3,
  .overview-title-box03 h3,
  .overview-title-box04 h3{
    margin-bottom: 0;
  }
  .overview-content h3{
    font-size: 5vw !important;
    text-align: center;
  }
  .overview-title-box01 span{
    width: 100%;
    text-align: center !important;
  }
  .overview-title-box03 span{
    width: 90%;
  }
  .overview-title-box04 span{
    width: 91%;
  }
  .overview-content p:nth-child(2), 
  .overview-content p:nth-child(3),
  .overview-content p:nth-child(4), 
  .overview-content p:nth-child(5){
    font-size: 2.8vw !important;
    letter-spacing: -0.4px;
  }
  .contact-information .contact-list li span{
    font-size: 2.8vw;
  }
  .main-responsive-nav .logo img{
    max-width: 160px !important;
  }
  .navbar-area{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mean-container a.meanmenu-reveal{
    padding: 10px 20px 0 0 !important;
  }
  .overview-area01,
  .overview-area02,
  .overview-area03,
  .overview-area04,
  .event-area.bg-ffffff,
  .page-banner-area.item-bg1,
  .page-banner-area{
    background-attachment: unset;
  }
  .gallery-area .row .col-md-6{
    width: 50%;
  }
  .who-we-are-content h3{
    text-align: center;
  }
}

.start-list>li{
  text-align: justify !important;
  width: 100%;
  line-height: 1.3;
}
@media (min-width: 320px) and (max-width: 575px){
  .owl-theme .owl-nav.disabled+.owl-dots{
    position: absolute;
    bottom: 40px;
    z-index: 10;
    width: 100%;
  }
  .event-box-item .event-content .event-list{
    padding-right: 0;
  }
  .navbar-nav li:nth-child(1), 
  .navbar-nav li:nth-child(2), 
  .navbar-nav li:nth-child(3), 
  .navbar-nav li:nth-child(4), 
  .navbar-nav li:nth-child(5),
  .navbar-nav li:nth-child(6){
    margin: 0;
  }
  .mean-container .mean-nav{
    position: absolute;
    top: 55px;
    margin: 0 !important;
    width: 100%;
  }
  .main-responsive-nav .container{
    padding: 0;
  }
  .main-responsive-nav .logo{
    padding-left: 20px;
  }
  .nav-item .contact-02{
    width: 35%;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .navbar-nav{
    height: 283px;
  }
  .mean-container .mean-nav ul li a.mean-expand{
    margin-right: 20px;
  }
  .footer-area .container div:nth-child(3),
  .footer-area .container div:nth-child(4){
    display: none;
  }
  .single-footer-widget .logo{
    width: 23%;
    float: left;
    margin-right: 25px;
  }
  .logo h3{
    font-size: 5vw;
  }
  .footer-area .col-lg-4 p{
    font-size: 2.8vw !important;
    letter-spacing: -0.5px;
  }
  .single-footer-widget .social{
    margin-top: 2%;
    text-align: right;
  }
  .footer-contact-info{
    display: flex;
    flex-flow: row wrap;
  }
  .single-footer-widget .footer-contact-info li{
    width: 45%;
  }
  .address-txt{
    width: 170%;
    display: block;
  }
}
.overview-content .iconify{
  width: 20px;
  height: 20px;
  line-height: 25px;
  text-align: center;
  border-radius: 40px;
  /* background-color: #faf5f5; */
  color: #f5890d;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  font-size: 11px;
  position: relative;
  left: 0;
  top: -1px;
  margin-right: 7px;
}
.overview-content .iconify:hover{
  background-color: #f5890d;
  color: #faf5f5;
}
.overview-content p:hover .iconify{
  background-color: #f5890d;
  color: #faf5f5;
}
.event-area .container div:nth-child(4) .event-bg-box{
  height: 75%;
  top: 12%;
}
.event-area .container div:nth-child(7) .event-bg-box{
  height: 77%;
  top: 11%;
}
.ft-title{
  /* display: none; */
  position: absolute;
  font-size: 10px;
  color: transparent;
}
.mainvis-oj04{
  position: relative;
  z-index: 2;
}

/* 풍림철강 custom */
.logoimg{
  width: 100%;
}
.navbar-nav li:nth-child(1), 
.navbar-nav li:nth-child(2), 
.navbar-nav li:nth-child(3), 
.navbar-nav li:nth-child(4), 
.navbar-nav li:nth-child(5), 
.navbar-nav li:nth-child(6){
  margin-top: 1px;
}
.main-navbar .navbar{
  justify-content: space-between;
}
.navbar-collapse{
  width: 75%;
}
.main-navbar .navbar .navbar-nav .nav-item{
  margin: 0 40px;
}
.main-navbar .navbar .navbar-nav .nav-item a{
  color: #000000;
  font-weight: bold;
}
.main-navbar .navbar .navbar-nav .nav-item a:hover, 
.main-navbar .navbar .navbar-nav .nav-item a:focus, 
.main-navbar .navbar .navbar-nav .nav-item a.active{
  color: #0085ea;
  font-weight: bold;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #0085ea;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li{
  margin-bottom: 10px;
}
.main-navbar .navbar .navbar-nav .nav-item:hover a,
.main-navbar .navbar .navbar-nav .nav-item.active a {
  /* color: #000000; */
  font-weight: bold;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu{
  border: none;
  top: 90px;
  left: -145px;
  z-index: 99;
  opacity: 0;
  width: 400px;
  display: block;
  border-radius: 0;
  padding: 10px 0;
  margin: 0;
  position: absolute;
  visibility: hidden;
  background: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  display: flex;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu::after{
  content: "";
  position: absolute;
  border: 1px solid #0085ea;
  width: 40px;
  left: -50px;
  top: -7px;
  right: 0;
  margin: auto;
}
.dropdown-menu-bg01{
  opacity: 1;
  visibility: unset;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  z-index: 0;
  width: 515%;
  height: 100%;
  background: #ffffff;
  border-top: 1px solid #dddddd;
  left: -212.5%;
  top: -5px;
}
.dropdown-menu-bg02{
  opacity: 1;
  visibility: unset;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  z-index: 0;
  width: 529%;
  height: 100%;
  background: #ffffff;
  border-top: 1px solid #dddddd;
  left: -273.7%;
  top: -5px;
}
.dropdown-menu-bg03{
  opacity: 1;
  visibility: unset;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  z-index: 0;
  width: 493.3%;
  height: 100%;
  background: #ffffff;
  border-top: 1px solid #dddddd;
  left: -251.4%;
  top: -5px;
}
.dropdown-menu-bg04{
  opacity: 1;
  visibility: unset;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  z-index: 0;
  width: 507.3%;
  height: 100%;
  background: #ffffff;
  border-top: 1px solid #dddddd;
  left: -306.4%;
  top: -5px;
}
.dropdown-menu-bg05{
  opacity: 1;
  visibility: unset;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  z-index: 0;
  width: 507%;
  height: 100%;
  background: #ffffff;
  border-top: 1px solid #dddddd;
  left: -379.7%;
  top: -5px;
}
.mainvistxt{
  position: absolute;
  top: 170px;
  left: 300px;
  z-index: 2;
}
.mainvistxt h2,
.mainvistxt h3,
.mainvistxt p{
  color: #ffffff;
}
.mainvis-oj04-bg{
  width: 3000px;
  height: 600px;
  background: url(../img/main/banner01.jpg) no-repeat;
  background-position: right;
  background-size: 65%;
  transform: scaleX(-1);
}
.mainvis-oj04-bg-01{
  width: 100%;
  height: 600px;
  transform: scaleX(-1);
}
.mainvis-oj04-bg-01 iframe{
  width: 100%;
  height: 100%;
  transform: scaleX(-1);
}
.owl-dots{
  display: none !important;
}
.owl-carousel01 button.owl-prev{
  color: #fff !important;
  top: -60px;
}
/* .owl-carousel01 .owl-nav [class*=owl-]:hover{
  background-color: transparent !important;
  color: #bbb !important;
} */
.owl-carousel01 button.owl-next{
  color: #fff !important;
  top: -60px;
}
.owl-theme .owl-nav [class*=owl-]{
  font-size: 150px !important;
}
.who-we-are-content{
  text-align: center;
}
.who-we-are-content h3{
  color: #0085ea;
  margin: 0;
}
.who-we-are-content span{
  width: 40px;
  height: 3px;
  background: #0085ea;
  display: block;
  margin: 10px auto;
}
.who-we-are-content p{
  margin-top: 20px;
}
.owl-carousel02 button.owl-prev{
  color: #000 !important;
  top: -60px;
  left: -7% !important;
}
.owl-carousel02 .owl-nav [class*=owl-]:hover{
  background-color: transparent !important;
  color: #bbb !important;
}
.owl-carousel02 button.owl-next{
  color: #000 !important;
  top: -60px;
  right: -7% !important;
}
div.product{
  border: 1px solid #ececec;
  box-sizing: border-box;
  padding: 30px;
  width: 90%;
}
.product img.product{
  width: 100% !important;
  max-width: 100% !important;
  height: 250px;
}
.product h3{
  text-align: center;
  margin-top: 30px;
  font-size: 25px;
}
.product a{
  text-align: center;
  display: block;
  color: #0085ea;
  font-weight: bold;
  /* transform: scaleY(1.2); */
}
.product a span{
  color: #0085ea;
  letter-spacing: -1px;
}
.who-we-are{
  padding-bottom: 0;
  margin-bottom: -50px;
}
.activities-area{
  position: relative;
}
.section2-bg{
  width: 100%;
  height: 550px;
  position: absolute;
  left: 0;
  top: 50px;
  background: #ebebeb;
  z-index: -1;
}
.business-tit{
  margin-bottom: 50px;
}
img.business{
  width: 100%;
  height: 250px;
}
.single-activities .activities-content h3{
  text-align: center;
  font-size: 20px;
}
.activities-content{
  border: 1px solid #999999;
  padding: 0 !important;
  margin: 0 auto;
  width: 90%;
  position: relative;
}
.business-txt{
  background-color: #ffffff;
  padding: 30px 10px;
}
.single-activities .activities-content p{
  margin: 0;
  text-align: center;
  font-size: 15px;
  letter-spacing: -0.7px;
}
.business-bg{
  opacity: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  position: absolute;
  transition: all 0.3s;
}
.activities-content:hover .business-bg{
  opacity: 1;
}
.business-bg a{
  color: #0085ea;
  text-align: center;
  display: block;
  margin: 215px 0;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}
.business-bg a::after{
  content: '';
  position: absolute;
  width: 50%;
  height: 50px;
  left: 0;
  right: 0;
  top: -13px;
  border: 2px solid;
  border-radius: 30px;
  margin: 0 auto;
}
.qi-qna h3{
  color: #0085ea;
}
.qi-qna span{
  width: 40px;
  height: 3px;
  background: #0085ea;
  display: block;
  margin: 10px 0;
}
.single-icon{
  display: flex;
  justify-content: space-between;
}
.single-icon .email,.single-icon .phone{
  width: 49%;
  display: flex;
}
.single-icon .email img{
  width: 80px;
  height: 70px;
  padding: 10px;
}
.single-icon .phone img{
  width: 70px;
  height: 70px;
  height: auto;
  margin: 0;
  padding: 10px;
}
.single-icon>span{
  width: 2px;
  height: 55px;
  background: #999999;
  display: block;
  margin: 10px 0;
}
.icontxt span{
  font-size: 13px;
}
.icontxt p{
  font-size: 16px;
}
.icontxt{
  padding: 10px;
}
/* .form-cont01,.form-cont03{
  float: left;
} */
#qna{
  width: 84.5%;
  height: 120px;
}
.single-form form{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.form-cont label{
  margin-right: 30px;
}
.form-cont{
  margin-bottom: 20px;
}
#name{
  margin-left: 15px;
}
.form-cont05{
  width: 100%;
  height: 120px;
}
.form-cont05 label{
  position: relative;
  top: -100px;
}
.form-cont input{
  height: 35px !important;
}
p.section1-txt {
  margin-bottom: 0px;
}
.single-form button{
  display: block;
  margin-left: 76%;
  padding: 20px 40px;
  background: #0085ea;
  color: #ffffff;
  border: 0;
}
.footer-area,.copyright-area{
  background: #333333;
}
.copyright-area{
  border-top: 1px solid #666666;
}
.footer-text p{
  color: #999999;
  font-size: 15px;
}
.footer-text span{
  color: #999999;
  margin: 0 10px;
  font-size: 15px;
}
.single-footer-widget{
  text-align: center;
}
.footer-text{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 50%;
  margin: 0 auto;
}
.footer-hef{
  margin: 10px;
}
.footer-hef a{
  margin: 0 10px;
  color: #ffffff;
}
.copyright-area{
  padding: 10px 0;
}
.copyright-area .copyright-area-content p{
  font-size: 13px;
  letter-spacing: 1px;
  color: #999999;
}
.go-top{
  display: none;
}
.dropdown-menu01{
  left: -95px !important;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu01::after{
  left: -150px !important;
}
.dropdown-menu02{
  left: -50px !important;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu02::after{
  left: -235px !important;
}
.dropdown-menu03{
  width: 650px !important;
  left: -263px !important;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu03::after{
  left: -60px !important;
}
.dropdown-menu04{
  left: -120px !important;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu04::after{
  left: -90px !important;
}
.dropdown-menu05{
  left: 30px !important;
}
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu05::after{
  left: -295px !important;
}

.sub-banner01-wrap{
  position: relative;
  width: 100%;
  height: 318px;
  background: url(../img/sub/sub1-top.jpg) no-repeat;
  background-size: cover;
}
.sub-banner-greetings{
  background: url(../img/sub/sub03.jpg) no-repeat !important;
}
.sub-banner-business{
  background: url(../img/sub/sub01.jpg) no-repeat !important;
}
.sub-banner-product{
  background: url(../img/sub/sub02.jpg) no-repeat !important;
}
.sub-banner01-wrap img{
  position: absolute;
  z-index: -1;
  display: none;
}
.sub-banner01-txt{
  padding-top: 115px;
  padding-left: 300px;
}
.sub-banner01-txt p{
  color: #ffffff;
  margin: 0;
  font-size: 20px;
  letter-spacing: 2px;
}
.sub-banner01-txt h3{
  color: #ffffff;
  font-size: 45px;
  letter-spacing: 5px;
}
.sub-top-nav{
  width: 100%;
  height: 65px;
  border-bottom: 1px solid #dddddd;
  display: flex;
}
.top-nav-home{
  margin-left: 16%;
  width: 4%;
  text-align: center;
  padding: 17px;
  border-left: 1px solid #dddddd;
}
.top-nav-menu{
  width: 10%;
  border-left: 1px solid #dddddd;
  padding: 20px 15px;
  position: relative;
}
.top-nav-menu a{
  color: #555555;
  font-weight: bold;
  display: block;
}
.top-nav-menu img{
  position: absolute;
  right: 15px;
  top: 42%;
}
.top-nav-sub-menu{
  width: 10%;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  padding: 20px 15px;
  position: relative;
}
.top-nav-sub-menu a{
  color: #555555;
  font-weight: bold;
  display: block;
}
.top-nav-sub-menu img{
  position: absolute;
  right: 15px;
  top: 43%;
  transform: rotate(90deg);
}
.top-nav-sub-menu:hover ul{
  opacity: 1;
  visibility: unset;
  transition: all 0.5s;
}
.top-nav-sub-menu ul{
  padding: 10px 17px;
  position: absolute;
  right: 0;
  z-index: 1;
  background: #ffffff;
  border: 1px solid #dddddd;
  margin-top: 20px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.top-nav-sub-menu ul li{
  list-style: none;
  line-height: 2.5;
}
.top-nav-sub-menu ul li a:hover{
  color: #0085ea;
}
.sub-left-nav{
  position: relative;
  top: -150px;
}
.left-nav-title{
  padding: 13px;
  border-bottom: 1px solid #999999;
  margin-bottom: 13px;
}
.left-nav-menu ul li{
  list-style: none;
  padding: 5px 0;
}
.left-nav-menu ul{
  margin-top: 10px;
  height: 0;
  opacity: 0;
}
.left-nav-menu.active ul{
  height: auto;
  opacity: 1;
  transition: all 0.5s;
}
.left-nav-menu{
  padding: 5px 13px;
  position: relative;
}
.left-nav-menu a{
  display: block;
  position: relative;
  font-weight: bold;
  color: #000000;
}
.left-nav-menu a img{
  position: absolute;
  right: 0;
  top: 6px;
}
.left-nav-menu.active a img{
  transform: rotate(270deg);
  transition: all 0.3s;
}
.left-nav-menu ul li a{
  display: block;
  font-weight: bold;
  color: #999999;
}
.left-nav-menu ul li a:hover{
  font-weight: bold;
  color: #000000;
}
.left-nav-menu ul li a.on{
  color: #000000;
}
.history-txt{
  text-align: center;
}
.history-txt h3{
  font-size: 80px;
  font-weight: 900;
  font-family: Montserrat;
  color: #2a2a2a;
  margin: 0;
}
.history-txt h3 span{
  font-size: 40px;
  font-weight: 700;
}
.history-txt p{
  font-family: Noto Sans CJK KR;
  font-size: 20px;
}
.history-tit,
.greetings-tit,
.product-tit{
  margin-bottom: 50px;
  margin-left: 220px;
}
.single-history{
  margin-top: 50px;
}
.history-line-content{
  display: flex;
  width: 600px;
}
.history-line-content img{
  height: 600px;
}
.history-line-content ul li{
  display: flex;
  margin-bottom: 60px;
  position: relative;
}
.history-line-content ul li::after{
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #0085ea;
  border-radius: 10px;
  left: -25px;
  top: 10px;
}
.history-line-content ul li::before{
  content: '';
  position: absolute;
  width: 2px;
  height: 100px;
  background: #cccccc;
  left: -21px;
  top: 10px;
}
.history-line-content ul li:last-child:before{
  display: none;
}
.history-line-content ul li h3{
  font-size: 25px;
  display: block;
  width: 80px;
}
.history-line-content ul li p{
  font-size: 18px;
}
.history-title-content{
  padding-top: 180px;
}
.greetings-wrap{
  margin-left: 100px;
}
.greetings-title-content{
  display: flex;
  position: relative;
  margin-top: 30px;
}
.ceoimg{
  position: absolute;
  right: 0;
  top: 85px;
  width: 40%;
}
.ceoimg img{
  width: 100%;
}
.greetings-txt h3{
  font-size: 38px;
  margin-bottom: 40px;
  font-weight: 300;
  font-family: Noto Sans CJK KR;
}
.greetings-txt p{
  font-size: 18px;
  font-weight: 300;
  font-family: Noto Sans CJK KR;
  color: #666666;
}
p,h1,h2,h3,h4,h5,a,span{
  font-family: Noto Sans CJK KR;
}

.dropdown-menu-bg01,
.dropdown-menu-bg02,
.dropdown-menu-bg03,
.dropdown-menu-bg04,
.dropdown-menu-bg05{
  border-bottom: 1px solid #dddddd;
}

.history-line-content ul li:nth-child(1) h3{
  position: relative;
  top: 20px;
  opacity: 0;
  animation: history01 0.5s 0.1s both;
}
.history-line-content ul li:nth-child(1) p{
  position: relative;
  top: 20px;
  opacity: 0;
  animation: history01 0.5s 0.1s both;
}
@keyframes history01{
  form{
    opacity: 0;
  }
  to{
    opacity: 1;
    top: 0px;
  }
}
.history-line-content ul li:nth-child(2) h3{
  position: relative;
  top: 20px;
  opacity: 0;
  animation: history02 0.5s 0.3s both;
}
.history-line-content ul li:nth-child(2) p{
  position: relative;
  top: 20px;
  opacity: 0;
  animation: history02 0.5s 0.3s both;
}
@keyframes history02{
  form{
    opacity: 0;
  }
  to{
    opacity: 1;
    top: 0px;
  }
}
.history-line-content ul li:nth-child(3) h3{
  position: relative;
  top: 20px;
  opacity: 0;
  animation: history03 0.5s 0.6s both;
}
.history-line-content ul li:nth-child(3) p{
  position: relative;
  top: 20px;
  opacity: 0;
  animation: history03 0.5s 0.6s both;
}
@keyframes history03{
  form{
    opacity: 0;
  }
  to{
    opacity: 1;
    top: 0px;
  }
}
.history-line-content ul li:nth-child(4) h3{
  position: relative;
  top: 20px;
  opacity: 0;
  animation: history04 0.5s 0.9s both;
}
.history-line-content ul li:nth-child(4) p{
  position: relative;
  top: 20px;
  opacity: 0;
  animation: history04 0.5s 0.9s both;
}
@keyframes history04{
  form{
    opacity: 0;
  }
  to{
    opacity: 1;
    top: 0px;
  }
}
.history-line-content ul li:nth-child(5) h3{
  position: relative;
  top: 20px;
  opacity: 0;
  animation: history05 0.5s 1.2s both;
}
.history-line-content ul li:nth-child(5) p{
  position: relative;
  top: 20px;
  opacity: 0;
  animation: history05 0.5s 1.2s both;
}
@keyframes history05{
  form{
    opacity: 0;
  }
  to{
    opacity: 1;
    top: 0px;
  }
}
.history-line-content ul li:nth-child(6) h3{
  position: relative;
  top: 20px;
  opacity: 0;
  animation: history06 0.5s 1.5s both;
}
.history-line-content ul li:nth-child(6) p{
  position: relative;
  top: 20px;
  opacity: 0;
  animation: history06 0.5s 1.5s both;
}
@keyframes history06{
  form{
    opacity: 0;
  }
  to{
    opacity: 1;
    top: 0px;
  }
}
.history-line-content ul li:nth-child(7) h3{
  position: relative;
  top: 20px;
  opacity: 0;
  animation: history07 0.5s 1.8s both;
}
.history-line-content ul li:nth-child(7) p{
  position: relative;
  top: 20px;
  opacity: 0;
  animation: history07 0.5s 1.8s both;
}
@keyframes history07{
  form{
    opacity: 0;
  }
  to{
    opacity: 1;
    top: 0px;
  }
}
.greetings-txt span{
  color: #0085ea;
  font-weight: 700;
}
.greetings-txt strong{
  font-size: 25px;
  font-weight: 700;
}
.greetings-txt{
  position: relative;
  left: -100px;
  opacity: 0;
  animation: greetingstext 0.5s 0.3s both;
}
@keyframes greetingstext{
  form{
    opacity: 0;
  }
  to{
    opacity: 1;
    left: 0px;
  }
}
.qna-wrap{
  margin-left: 60px;
}
.product-btn{
  text-align: center;
  word-break: keep-all;
  width: 100%;
  margin: auto;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.product-btn a{
  font-size: 20px;
  margin: 10px 20px;
  border: 2px solid #dddddd;
  padding: 14px;
  display: block;
  width: 160px;
  box-sizing: border-box;
}
.product-btn a:hover{
  color: #ffffff;
  background: #0085ea;
  /* padding: 9px; */
  box-sizing: border-box;
}
.product-btn a.on{
  color: #ffffff;
  background: #0085ea;
  box-sizing: border-box;
  border: 0;
}
.product-section-tit{
  text-align: center;
  margin-bottom: 20px;
}
.product-section-tit img{
  width: 40%;
  border: 1px solid #dddddd;
  margin: 20px 0;
}
.cm-prd-tbl table{
  width: 100%;
  border: 1px solid #ddd;
}
.cm-prd-tbl tr{
  border-bottom: 1px solid #ddd;
}
.cm-prd-tbl tr th{
  font-size: 16px;
  color: #000;
  text-align: center;
  font-weight: 500;
  background: #f4f4f4;
  padding: 15px 10px;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.cm-prd-tbl tr th small{
  display: block;
  font-size: 13px;
  font-weight: 400;
}
.cm-prd-tbl tr td{
  font-size: 14px;
  color: #333;
  text-align: center;
  padding: 8px 0px;
  border-right: 1px solid #ddd;
}
.cm-prd-tbl{
  overflow-x: auto;
}
.cm-prd-tbl .spec{
  float: right;
  font-size: 14px;
  color: #000;
  font-weight: 400;
}
.product-section{
  display: none;
  opacity: 0;
  transition: all 0.5s;
}
.product-section.active{
  display: block;
  opacity: 1;
  transition: all 0.5s;
}
input:focus,
input:active{
  border-color: #0085ea;
}
.dropdown-menu-bg01, .dropdown-menu-bg02, .dropdown-menu-bg03, .dropdown-menu-bg04, .dropdown-menu-bg05{
  display: none;
}
.dropdown-menu::before{
  content: '';
  opacity: 1;
  visibility: unset;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: fixed;
  z-index: 0;
  width: 100vw;
  height: 8%;
  background: #ffffff;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  left: 0;
  top: 98px;
}


/* main 반응형 custom */
@media (max-width: 1399px) {
  .owl-theme .owl-nav [class*=owl-]{
    font-size: 100px !important;
  }
  .owl-carousel02 button.owl-prev{
    left: -4% !important;
  }
  .owl-carousel02 button.owl-next{
    right: -3% !important;
  }
  .main-navbar .navbar .navbar-nav .nav-item a{
    font-size: 12px;
  }
  .product img.product{
    height: 220px;
  }
  img.business{
    height: 220px;
  }
  .single-icon .email img{
    width: 70px;
    height: 50px;
  }
  .single-icon .phone img{
    width: 60px;
    height: 60px;
  }
  .icontxt p{
    font-size: 13px;
  }
  .form-cont{
    width: 50%;
  }
  #name{
    margin-left: 0;
  }
  .form-cont05 label{
    top: 0px;
  }
  .form-cont05{
    width: 100%;
  }
  .single-form button{
    margin-left: 65%;
    margin-top: 5%;
    padding: 10px 20px;
  }
  .mainvistxt{
    left: 160px;
  }
}
@media (max-width: 1199px){
  .menu {
    position: absolute;
    top: 40px;
    right: 0;
    width: 200px;
    height: 100vh;
    max-height: 0;
    transition: 0.5s ease;
    z-index: 5;
    background-color: #fff;
    overflow: hidden;
  }
  
  .burger-icon {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    z-index: 5;
    padding: 8px 0;
    top: 4px;
    right: 4px;
    user-select: none;
    width: auto;
    margin: 0;
  }
  
  .burger-icon .burger-sticks {
    background: #333;
    display: block;
    height: 3px;
    position: relative;
    transition: background .2s ease-out;
    width: 25px;
  }
  
  .burger-icon .burger-sticks:before,
  .burger-icon .burger-sticks:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .burger-icon .burger-sticks:before {
    top: 7px;
  }
  
  .burger-icon .burger-sticks:after {
    top: -7px;
  }
  
  .burger-check {
    display: none;
  }
  
  .burger-check:checked~.menu {
    max-height: 100vh;
    border: 1px solid #dddddd;
    border-top: 0;
  }

  .navbar-nav .nav-link{
    border-bottom: 1px solid #dddddd;
  }
  .navbar-nav .dropdown{
    padding-left: 1rem;
  }
  
  .burger-check:checked~.burger-icon .burger-sticks {
    background: transparent;
  }
  
  .burger-check:checked~.burger-icon .burger-sticks:before {
    transform: rotate(-45deg);
  }
  
  .burger-check:checked~.burger-icon .burger-sticks:after {
    transform: rotate(45deg);
  }
  
  .burger-check:checked~.burger-icon:not(.steps) .burger-sticks:before,
  .burger-check:checked~.burger-icon:not(.steps) .burger-sticks:after {
    top: 0;
  }
  .navbar-nav{
    align-content: unset;
    align-items: unset;
    padding: 0 30px;
    font-size: 13px;
  }
  .dropdown li{
    list-style: none;
  }
  .navbar-nav .nav-link:hover{
    color: #0085ea;
  }
  .owl-theme .owl-nav [class*=owl-]{
    display: none;
  }
  .owl-carousel01.owl-theme .owl-nav [class*=owl-]{
    display: block;
  }
  .single-icon{
    flex-direction: column;
  }
  .single-icon>span{
    display: none;
  }
  .product img.product{
    height: 180px;
  }
  img.business{
    height: 180px;
  }
  .single-activities .activities-content p{
    font-size: 12px;
  }
  .business-tit{
    margin: 50px 0;
  }
  #qna{
    width: 92%;
  }
}
@media (max-width: 991px){
  .mainvistxt{
    left: 0px;
    width: 29.5%;
  }
  .main-banner-content p{
    font-size: 2vw;
  }
  .product img.product{
    height: 120px;
  }
  img.business{
    height: 120px;
  }
  .who-we-are-content{
    z-index: 2;
    margin-bottom: -60px;
    position: relative;
  }
  .business-tit{
    margin-bottom: 50px !important;
  }
  .business-bg a{
    margin: 180px 0;
    font-size: 13px;
  }
  .business-bg a::after{
    height: 40px;
    top: -10px;
  }
  .section1-txt{
    font-size: 12px;
  }
  .single-icon .email, .single-icon .phone{
    width: 80%;
  }
  .single-icon .email img{
    width: 60px;
  }
  .form-cont{
    width: 100%;
  }
  .form-cont03 label{
    margin-right: 14px;
  }
  .form-cont input{
    width: 70%;
  }
  #qna{
    width: 94%;
  }
  .single-form button{
    padding: 5px 15px;
  }
  .ptb-100{
    padding-bottom: 0 !important;
  }
  .footer-text{
    width: 90%;
  }
  .footer-text span:nth-child(6){
    display: none;
  }
}
@media (max-width: 575px){
  .qna-wrap{
    margin: 0;
  }
  .mainvistxt h2, .mainvistxt h3, .mainvistxt p{
    width: 100vw;
    display: block;
  }
  .mainvistxt h2, .mainvistxt h3{
    font-size: 5vw !important;
  }
  .mainvistxt{
    width: unset;
    left: 10px;
  }
  .mainvis-oj04-bg{
    height: 500px;
  }
  .burger-icon{
    top: 8px;
    right: 20px;
  }
  div.product{
    padding: 10px;
  }
  .product img.product{
    height: 60px;
  }
  .product h3{
    font-size: 15px;
  }
  .product a{
    font-size: 11px;
  }
  .product a span{
    display: none;
  }
  .product-banner{
    height: 60% !important;
  }
  .who-we-are{
    height: 400px;
    position: relative;
    z-index: -1;
  }
  p.section1-txt{
    font-size: 10px;
  }
  .section2-bg{
    display: none;
  }
  img.business{
    height: 190px;
  }
  .single-footer-widget .logo{
    width: unset;
    float: unset;
  }
  .footer-text span:nth-child(6){
    display: unset;
  }
  #qna{
    width: 96%;
  }
  .single-form button{
    margin: 5% auto
  }
  .copyright-area .copyright-area-content p{
    font-size: 10px !important;
  }
  .single-footer-widget p{
    font-size: 10px !important;
  }
  .footer-text span{
    font-size: 10px !important;
  }
}
/* 인사말 반응형 custom */
@media (max-width: 1399px){
  .sub-banner01-txt{
    padding-top: 45px;
    padding-left: 80px;
  }
  .sub-banner01-wrap{
    height: 200px;
  }
  .top-nav-home{
    margin-left: 5%;
    width: 60px;
  }
  .top-nav-sub-menu,.top-nav-menu{
    width: 190px;
  }
  .left-nav-menu ul{
    padding-left: 1rem;
  }
  .greetings-wrap{
    width: 60%;
  }
  .ceoimg{
    right: -145px;
    width: 40%;
  }
  .ceoimg img{
    width: 100%;
  }
  .greetings-txt h3{
    font-size: 30px;
  }
  .greetings-txt p{
    font-size: 15px;
  }
}
@media (max-width: 1199px){
  .greetings-txt h3{
    font-size: 28px;
  }
  .greetings-txt p{
    font-size: 13px;
  }
  .ceoimg{
    right: -75px;
    width: 35%;
  }
  .left-nav-menu a{
    font-size: 13px;
  }
  .left-nav-menu ul{
    padding-left: 0.5rem;
  }
  .top-nav-sub-menu:hover ul{
    z-index: 3;
  }
}
@media (max-width: 991px){
  .sub-left-nav{
    width: 150px;
    top: -85px;
  }
  .who-we-are-content{
    margin-bottom: 0;
  }
  .greetings-txt h3{
    font-size: 21px;
  }
  .greetings-txt p{
    font-size: 12px;
  }
  .greetings-wrap{
    margin-left: 65px;
  }
  .ceoimg {
    right: -115px;
    width: 35%;
  }
}
@media (max-width: 767px){
  .sub-left-nav{
    width: 100px;
    top: 20px;
    position: absolute;
  }
  .left-nav-menu ul li a{
    word-break: keep-all;
  }
  .greetings-wrap{
    margin-left: 120px;
    width: 80%;
  }
  .history-tit, .greetings-tit, .product-tit{
    margin-left: 120px;
  }
  .ceoimg{
    display: none;
  }
}
@media (max-width: 575px){
  .sub-left-nav{
    display: none;
  }
  .greetings-wrap{
    margin: 0 auto;
  }
  .history-tit, .greetings-tit, .product-tit{
    margin: 0 auto;
  }
  .greetings-txt h3{
    font-size: 7vw;
    word-break: keep-all;
    text-align: center;
  }
  .greetings-txt p{
    font-size: 4vw;
    word-break: keep-all;
    text-align: center;
  }
  .top-nav-home{
    margin-left: 0;
    width: 70px;
  }
  .top-nav-sub-menu, .top-nav-menu{
    width: 150px;
  }
}
/* 연혁 반응형 custom */
@media (max-width: 1399px){
  .history-txt h3{
    font-size: 60px;
  }
  .history-txt p{
    font-size: 17px;
  }
  .history-ft{
    width: 40%;
  }
  .history-line-content ul li h3{
    font-size: 20px;
    width: 60px;
  }
  .history-line-content ul li p{
    font-size: 16px;
  }
  .history-line-content{
    width: 420px;
  }
}
@media (max-width: 1199px){
  .history-txt h3{
    font-size: 45px;
  }
  .history-txt p{
    font-size: 14px;
  }
  .history-line-content ul li p{
    font-size: 13px;
  }
}
@media (max-width: 991px){
  .history-txt h3{
    font-size: 30px;
  }
  .history-txt h3 span{
    font-size: 20px;
  }
  .history-txt p{
    font-size: 10px;
  }
  .history-line-content ul li p{
    font-size: 11px;
  }
  .history-line-content ul li h3{
    font-size: 16px;
    width: 45px;
  }
  .history-line-content{
    width: 304px;
  }
  .history-txt{
    padding-left: 60px;
  }
}
@media (max-width: 767px){
  .single-history{
    margin: 0;
  }
  .history-title-content{
    padding-top: 50px;
  }
  .history-ft{
    width: 100%;
  }
  .history-txt h3{
    font-size: 40px;
  }
  .history-txt h3 span{
    font-size: 30px;
  }
  .history-txt p{
    font-size: 12px;
  }
  .history-tit{
    margin-left: 70px;
  }
  .history-line-content{
    width: 60%;
    display: block;
    margin-top: 40px;
    margin-left: 170px;
  }
}
@media (max-width: 575px){
  .history-tit{
    margin-left: unset;
  }
  .history-txt{
    padding-left: unset;
  }
  .history-line-content{
    width: 100%;
    margin-left: 0px;
  }
}
/* 제품정보 반응형 custom */
@media (max-width: 1199px){
  .product-tit{
    margin-left: 170px;
  }
}
@media (max-width: 991px){
  .product-tit{
    margin-left: 130px;
    margin-bottom: 20px;
  }
  .cm-prd-tbl tr th{
    font-size: 13px;
    word-break: keep-all;
  }
}
@media (max-width: 767px){
  .product-btn{
    margin-left: 175px;
    width: 55%;
  }
  .product-section.active{
    width: 77%;
    margin-left: 120px;
  }
}
@media (max-width: 575px){
  .product-tit{
    margin-left: unset;
  }
  .product-btn{
    margin-left: unset;
    width: 100%;
  }
  .product-section.active{
    width: 100%;
    margin-left: unset;
  }
}


/* 사업소개 custom */
.business-ft{
  margin: 30px auto;
}
.business-top{
  width: 100%;
  height: 150px;
  background: url(../img/sub/business01.jpg) no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.business-top h3{
  text-align: center;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 300;
}
.business-top h3 span{
  font-weight: 700;
}
.business-mid{
  display: flex;
}
.business-md{
  margin: 0 auto;
  margin-bottom: 50px;
}
.cr{
  text-align: center;
  width: 33.33%;
}
.cr div{
  width: 130px;
  height: 130px;
  margin: 20px auto;
  border-radius: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cr div h3{
  font-size: 20px;
  color: #ffffff;
}
.cr>h3{
  font-size: 15px;
}
.cr>h3 span{
  color: #aaaaaa;
}
.cr>p{
  font-size: 13px;
  margin: 0 auto;
  word-break: keep-all;
  width: 80%;
  color: #666666;
}
.cr01 div{
  background: #c4e6ff;
}
.cr02 div{
  background: #64b7f6;
}
.cr03 div{
  background: #0085ea;
}
.business-bt {
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: 100px;
}
.business-bottom-title{
  text-align: center;
  margin-bottom: 70px;
}
.business-bottom-title h3{
  color: #333333;
}
.business-bottom-title h3 span{
  color: #0085ea;
}
.business-bottom-cont{
  display: flex;
  justify-content: space-between;
}
.business-bottom-cont .left{
  width: 52%;
}
.business-bottom-cont .right{
  width: 45%;
}
.right-cont:nth-child(1){
  border-top: 1px solid #eaeaea;
}
.right-cont{
  border-bottom: 1px solid #eaeaea;
  padding: 12px 20px;
  overflow: hidden;
  height: 45px;
  transition: all 0.5s;
  cursor: pointer;
}
.right-cont div{
  display: flex;
  justify-content: space-between;
  position: relative;
}
.right-cont div h3{
  font-size: 17px;
  color: #666666;
}
.right-cont div span{
  font-size: 17px;
  color: #666666;
  visibility: hidden;
}
.right-cont .cont-title-rg::after{
  content: '+';
  position: absolute;
  font-size: 17px;
  color: #666666;
  right: 0;
}
.right-cont.active .cont-title-rg::after{
  content: '-';
  position: absolute;
  font-size: 30px;
  color: #666666;
  right: 0;
  top: -10px;
}
.right-cont div p{
  font-size: 15px;
  color: #777777;
}
.right-cont.active h3{
  color: #0085ea;
}
.right-cont.active{
  height: 80px;
}

@media (max-width: 1645px){
  .top-nav-sub-menu {
    width: 12%;
  }
}
@media (max-width: 1399px){
  .top-nav-sub-menu {
    width: 15%;
  }
  .business-top h3 {
    font-size: 22px;
  }
  .business-tit{
    margin-left: 165px;
  }
}
@media (max-width: 1199px){
  .top-nav-sub-menu {
    width: 17%;
  }
  .business-top h3 {
    font-size: 18px;
  }
  .cr div {
    width: 110px;
    height: 110px;
  }
  .cr>h3 {
    font-size: 12px;
  }
  .cr>p {
    font-size: 12px;
    margin: 0 auto;
    word-break: keep-all;
    width: 80%;
    color: #666666;
  }
  .business-bottom-title h3{
    font-size: 22px;
  }
  .right-cont div p {
    font-size: 11px;
    color: #777777;
  }
  .right-cont.active {
    height: 70px;
  }
}
@media (max-width: 991px){
  .top-nav-sub-menu {
    width: 23%;
  }
  .business-top {
    width: 120%;
  }
  .business-mid{
    width: 120%;
  }
  .cr>h3{
    width: 80%;
    margin: 0 auto;
    margin-bottom: 0.5rem;
  }
  .business-bottom{
    width: 120%;
  }
}
@media (max-width: 767px){
  .sub-left-nav{
    display: none;
  }
  .top-nav-sub-menu {
    width: 27%;
  }
  .business-tit,.history-tit, .greetings-tit, .product-tit {
    width: 100%;
    margin: 30px auto;
  }
  .container.container-bu {
    max-width: 100%;
    width: 90%;
  }
  .container{
    max-width: 100%;
    width: 90%;
  }
  .history-txt {
    padding-left: 0;
  }
  .business-top {
    width: 100%;
  }
  .business-mid {
    width: 100%;
  }
  .cr>h3 {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0.5rem;
  }
  .business-bottom {
    width: 100%;
  }
  .product-btn {
    margin-left: 0;
    width: 100%;
  }
  .product-section.active {
    width: 100%;
    margin-left: 0;
  }
  .product h3 {
    text-align: center;
    margin-top: 30px;
    font-size: 2.5vw;
  }
  .product a {
    font-size: 1.9vw;
  }
  .section1-txt {
    font-size: 16px;
  }
  img.business {
    height: 50vw;
  }
  .business-bg a {
    margin: 46vw 0;
    font-size: 13px;
  }
  .qna-wrap {
    margin-left: 0;
    margin-bottom: 40px;
  }
  .single-form button {
    margin: 0 auto;
    margin-top: 5%;
  }
  .owl-carousel .owl-nav.disabled{
    top: 280px;
  }
  .mainvistxt {
    left: 0px;
    width: 100vw;
  }
  .owl-carousel01 .owl-nav button.owl-prev {
    background: url(../img/main/white-prev.png) no-repeat center !important;
    background-size: 100% !important;
  }
  .owl-carousel01 .owl-nav button.owl-next {
    background: url(../img/main/white-next.png) no-repeat center !important;
    background-size: 100% !important;
  }
  .owl-carousel01 .owl-nav button.owl-prev:hover{
    background: url(../img/main/prev-b.png) no-repeat center !important;
    background-size: 100% !important;
  }
  .owl-carousel01 .owl-nav button.owl-next:hover{
    background: url(../img/main/next-b.png) no-repeat center !important;
    background-size: 100% !important;
  }
}
@media (max-width: 625px){
  .top-nav-sub-menu {
    width: 30%;
  }
  .business-mid {
    display: flex;
    flex-direction: column;
  }
  .cr {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }
  .cr>h3 {
    font-size: 20px;
  }
  .cr>p {
    font-size: 17px;
    width: 70%;
  }
  .business-bottom-cont {
    flex-direction: column;
  }
  .business-bottom-cont .left {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .business-bottom-cont .right {
    width: 100%;
  }
  .right-cont div p {
    font-size: 3vw;
    color: #777777;
  }
  .right-cont.active {
    height: 80px;
  }
  .business-bottom-title h3 {
    font-size: 22px;
    word-break: keep-all;
  }
  .business-top h3{
    word-break: keep-all;
    line-height: unset;
    display: block;
  }
}
@media (max-width: 555px){
  .top-nav-sub-menu {
    width: 35%;
  }
  .business-bg a {
    margin: 40vw 0;
    font-size: 13px;
  }
}
@media (max-width: 480px){
  .top-nav-sub-menu {
    width: 40%;
  }
  .product-btn a {
    font-size: 3.5vw;
    margin: 10px 20px;
    /* border: 1px solid; */
    padding: 14px;
    display: block;
    width: 27vw;
    box-sizing: border-box;
  }
  .business-bg a {
    margin: 42vw 0;
    font-size: 13px;
  }
}
@media (max-width: 415px){
  .top-nav-sub-menu {
    width: 45%;
  }
  .top-nav-sub-menu a {
    color: #555555;
    font-weight: bold;
    display: block;
    word-break: keep-all;
  }
  .business-bg a {
    margin: 50vw 0;
    font-size: 13px;
  }
}
@media (max-width: 363px){
  .top-nav-sub-menu a {
    color: #555555;
    font-weight: bold;
    display: block;
    word-break: keep-all;
    font-size: 3.7vw;
    line-height: 1.9;
  }
  .business-bg a {
    margin: 54vw 0;
    font-size: 13px;
  }
}
.business-tit-main{
  margin-left: 0 !important;
}
video{
  width: 100%;
  height: 57vw;
  transform: inherit;
  position: relative;
  top: -13vw;
}
@media (max-width: 1399px){
  video{
    width: 100%;
    height: 57vw;
    transform: inherit;
    position: relative;
    top: -10vw;
  }
}
@media (max-width: 1199px){
  video{
    width: 100%;
    height: 57vw;
    transform: inherit;
    position: relative;
    top: -6vw;
  }
}
@media (max-width: 991px){
  video{
    width: 100%;
    height: 62vw;
    transform: inherit;
    position: relative;
    top: -3vw;
  }
}
@media (max-width: 500px){
  video{
    width: 100%;
    height: 62vw;
    transform: inherit;
    position: relative;
    top: -3vw;
  }
  .owl-stage-outer{
    height: 55vw;
  }
  .mainvis-oj04-bg {
    background-position: top right;
    background-size: 17%;
  }
  .mainvistxt {
    left: 0;
    top: 15vw;
    width: 100vw;
  }
  .mainvistxt h2, .mainvistxt h3, .mainvistxt p{
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    word-break: keep-all;
  }
  .mainvistxt p{
    display: none;
  }
  .activities-area {
    padding: 16% 0;
  }
  .owl-carousel .owl-stage {
    height: 58vw;
  }
  body{
    height: 50vw;
  }
  .owl-carousel02 .owl-stage-outer{
    height: 150vw;
  }
  .owl-carousel .owl-nav.disabled {
    top: 50%;
  }
}
/* 오시는길 커스텀 */
.single-address{
  width: 90%;
  margin: 0 auto;
}
.single-address ul{
  display: flex;
  justify-content: space-between;
}
.single-address ul li{
  list-style: none;
  padding: 20px 40px;
  border: 1px solid #efefef;
  text-align: center;
  width: 48%;
}
.single-address ul li h3{
  font-size: 23px;
}
.single-address ul li p{
  font-size: 15px;
  margin-top: 20px;
}
.address-ko{
  margin-top: 40px !important;
}
.single-address iframe{
  width: 96.8%;
  height: 50vh;
  margin-left: 3.3%;
}
@media (max-width: 1199px){
  .single-address ul li h3{
    font-size: 20px;
  }
  .single-address ul li p{
    font-size: 13px;
    margin-top: 20px;
  }
  .single-address iframe {
    width: 95.8%;
    height: 50vh;
    margin-left: 4.3%;
  }
}
@media (max-width: 991px){
  .single-address ul li h3{
    font-size: 20px;
  }
  .single-address ul li p{
    font-size: 13px;
    margin-top: 20px;
    word-break: keep-all;
  }
  .single-address iframe {
    width: 94.8%;
    height: 50vh;
    margin-left: 6%;
  }
  .single-address ul li{
    list-style: none;
    padding: 20px 20px;
  }
  .address-tit{
    margin-left: 150px;
  }
}
@media (max-width: 767px){
  .single-address ul{
    padding-left: 0;
  }
  .single-address ul li h3{
    font-size: 20px;
  }
  .single-address ul li p{
    font-size: 13px;
    margin-top: 20px;
    word-break: keep-all;
  }
  .single-address iframe {
    width: 100%;
    height: 50vh;
    margin-left: 0;
  }
  .single-address ul li{
    list-style: none;
    padding: 20px 20px;
  }
  .address-tit{
    margin-left: 0px;
  }
}
@media (max-width: 500px){
  .single-address ul{
    padding-left: 0;
    flex-direction: column;
  }
  .single-address ul li h3{
    font-size: 20px;
  }
  .single-address ul li p{
    font-size: 13px;
    margin-top: 20px;
    word-break: keep-all;
  }
  .single-address iframe {
    width: 100%;
    height: 50vh;
    margin-left: 0;
  }
  .single-address ul li{
    list-style: none;
    padding: 20px 20px;
    width: 100%;
    margin-bottom: 20px;
  }
  .address-tit{
    margin-left: 0px;
  }
  .address-ko{
    margin-top: 20px !important;
  }
  .mainvis-oj04-bg-01 iframe {
    width: 100%;
    height: 56vw;
    transform: scaleX(-1);
}
}