@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700|Roboto+Condensed:400,500,600,700');
@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Raleway);

/*-----------------------
    Animation
-------------------------*/
.contact-desc a:hover {
  color: #fcd032;
}
.service{
  color:#00bcd4;
}
.points{
  color:#00bcd4;
  padding: 10px 0px 10px 0px;
  font-size:28px;
}
[class*='rs-animation-'] {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.rs-animation-fade {
  -webkit-animation-name: rs-fade;
  animation-name: rs-fade;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: linear !important;
  animation-timing-function: linear !important;
}
.rs-animation-slide-top {
  -webkit-animation-name: rs-fade-top;
  animation-name: rs-fade-top;
}
.rs-animation-slide-bottom {
  -webkit-animation-name: rs-fade-bottom;
  animation-name: rs-fade-bottom;
}
.rs-animation-slide-left {
  -webkit-animation-name: rs-fade-left;
  animation-name: rs-fade-left;
}
.rs-animation-slide-right {
  -webkit-animation-name: rs-fade-right;
  animation-name: rs-fade-right;
}
.rs-animation-scale-up {
  -webkit-animation-name: rs-animation-scale-up;
  animation-name: rs-animation-scale-up;
}
.rs-animation-scale-down {
  -webkit-animation-name: rs-animation-scale-down;
  animation-name: rs-animation-scale-down;
}
.rs-animation-shake {
  -webkit-animation-name: rs-shake;
  animation-name: rs-shake;
}
.rs-animation-rotate {
  -webkit-animation-name: rs-rotate;
  animation-name: rs-rotate;
}
.rs-animation-scale {
  -webkit-animation-name: rs-scale;
  animation-name: rs-scale;
}
.rs-animation-hover:not(:hover),
.rs-animation-hover:not(:hover) [class*='rs-animation-'] {
  -webkit-animation-name: none;
  animation-name: none;
}
.rs-animation-reverse {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
.rs-image-effect-shine {
  position: relative;
  overflow: hidden;
}
.rs-image-effect-shine::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.rs-image-effect-shine:hover::before {
  -webkit-animation: img-shine 1s;
  animation: img-shine 1s;
}
@-webkit-keyframes img-shine {
  100% {
    left: 125%;
  }
}
@keyframes img-shine {
  100% {
    left: 125%;
  }
}
/*-------------------------
    Fade
---------------------------*/
@-webkit-keyframes rs-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rs-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*---------------------------
    Fade Top
------------------------------*/
@-webkit-keyframes rs-fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-60%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes rs-fade-top {
  0% {
    opacity: 0;
    transform: translateY(-60%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*---------------------------
    Fade Bottom
------------------------------*/
@-webkit-keyframes rs-fade-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes rs-fade-bottom {
  0% {
    opacity: 0;
    transform: translateY(60%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*---------------------------
    Fade Left
------------------------------*/
@-webkit-keyframes rs-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-60%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes rs-fade-left {
  0% {
    opacity: 0;
    transform: translateX(-60%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*---------------------------
    Fade Right
------------------------------*/
@-webkit-keyframes rs-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(60%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes rs-fade-right {
  0% {
    opacity: 0;
    transform: translateX(60%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*------------------------------
   Scale Up
--------------------------------*/
@-webkit-keyframes rs-animation-scale-up {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes rs-animation-scale-up {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*---------------------------
    Scale Down
------------------------------*/
@-webkit-keyframes rs-animation-scale-down {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.6);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes rs-animation-scale-down {
  0% {
    opacity: 0;
    transform: scale(1.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*---------------------------
    Rotate
------------------------------*/
@-webkit-keyframes rs-rotate {
  0% {
    -webkit-transform: rotate(280deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rs-rotate {
  0% {
    transform: rotate(280deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*---------------------------
    Shake
------------------------------*/
@-webkit-keyframes rs-shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(-9px);
  }
  20% {
    -webkit-transform: translateX(8px);
  }
  30% {
    -webkit-transform: translateX(-7px);
  }
  40% {
    -webkit-transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-5px);
  }
  60% {
    -webkit-transform: translateX(4px);
  }
  70% {
    -webkit-transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
  }
  90% {
    -webkit-transform: translateX(-1px);
  }
}
@keyframes rs-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-9px);
  }
  20% {
    transform: translateX(8px);
  }
  30% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(4px);
  }
  70% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
}
/*-------------------
    Scale
---------------------*/
@-webkit-keyframes rs-scale {
  0% {
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes rs-scale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* -----------------------------------
    01. General CSS
-------------------------------------*/
html,
body {
  font-size: 16px;
  color: #505050;
  font-family: 'Roboto Condensed', sans-serif;
  vertical-align: baseline;
  line-height: 26px;
  font-weight: 400;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
p {
  margin: 0 0 26px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed', sans-serif;
  color: #212121;
  margin: 0 0 26px;
  font-weight: 700;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
}
a {
  color: #ff3115;
  transition: all 0.3s ease 0s;
  text-decoration: none !important;
  outline: none !important;
}
a:active,
a:hover {
  text-decoration: none;
  outline: 0 none;
  color: #e41f05;
}
ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.clear {
  clear: both;
}
::-moz-selection {
  background: #ff3115;
  text-shadow: none;
  color: #ffffff;
}
::selection {
  background: #ff3115;
  text-shadow: none;
  color: #ffffff;
}
.sec-spacer {
  padding: 70px 0;
}
.sec-color {
  background-color: #f9f9f9;
}
.drak-color {
  background-color: #252525;
}
.gray-color {
  background-color: #f0f0f0;
}
.primary-color {
  color: #ff3115;
}
.primary-bg {
  background: #ff3115;
}
.sec-black {
  background: #212121;
}
.bg-fixed {
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.relative {
  position: relative;
}
/*-- Readon Button Css --*/
.readon2 {
  font-size: 14px;
  border: 1px solid #ff3115;
  background: #ff3115;
  display: inline-block;
  padding: 0 35px;
  height: 45px;
  line-height: 45px;
  position: relative;
  color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  border-radius: 35px;
}
.readon2.transparent {
  border: 1px solid #ff3115;
  color: #ff3115;
  background: transparent;
}
.readon2.transparent:hover {
  background: #ff3115;
  color: #ffffff;
}
.readon2:hover {
  background: #e41f05;
  color: #ffffff;
}
/********************************/
/*       Slides backgrounds     */
/********************************/
.bg1 {
  background-image: url(images/bg/bg1.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
}
.bg2 {
  background-image: url(images/bg/bg2.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
}
.bg3 {
  background-image: url(images/bg/counter-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
}
.bg4 {
  background-image: url(images/bg/cta-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
}
.bg5 {
  background-image: url(images/bg/testimonial-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
}
.bg6 {
  background-image: url(images/slider/home1/slide2.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
}
.bg7 {
  background-image: url(images/bg/bg3.webp);
  background-size: cover;
  background-position: center;
  background-position: center top;
}
.bg8 {
  background-image: url(images/bg/bg-8.jpg);
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
.bg9 {
  background-image: url(images/bg/video-bg2.jpg);
  background-attachment: fixed;
  background-position: center top;
}
.bg10 {
  background-image: url(images/bg/counter-bg-style2.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
}
.bg11 {
  background-image: url(images/bg/home7-style.jpg);
  background-position: center top;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 130px;
}
.bg12 {
  background-image: url(images/bg/countdown.jpg);
  background-position: center top;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}
.bg13 {
  background-image: url(images/bg/home8-style.jpg);
  background-position: center;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 250px;
}
.bg14 {
  background-size: cover;
  background-position: center top;
  padding-bottom: 100px !important;
  background-color: whitesmoke;
}
.bg15 {
  background-image: url(images/bg/about-home8-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
.uppercase {
  text-transform: uppercase;
}
/* ------------------------------------
    02. Global Class
---------------------------------------*/
.drak-color .owl-nav .owl-prev,
.drak-color .owl-nav .owl-next,
.drak-color .sec-title h3 {
  color: #ffffff;
}
.sec-title2 h2 {
  font-size: 30px;
  text-transform: uppercase;
  color: #212121;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
}
.sec-title2 span {
  display: block;
  font-size: 18px;
  line-height: 34px;
  color: #ff3115;
  font-weight: 600;
}
.sec-title {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 10px;
}
.sec-title h2 {
  font-size: 30px;
  line-height: 24px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.sec-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100px;
  background: #ff3115;
}
.sec-title.text-center:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.sec-title.text-right:after {
  left: auto;
  right: 0;
}
.sec-title.text-right .view-more {
  right: auto;
  left: 0;
}
.sec-title p {
  margin-bottom: 0;
  font-size: 16px;
}
.sec-title .view-more {
  position: absolute;
  right: 0;
}
.sec-title .view-more a {
  font-weight: 600;
  font-size: 15px;
}
.sec-title.white-text h2 {
  color: #ffffff;
}
.sec-title.white-text p {
  color: rgba(255, 255, 255, 0.6);
}
.home5 .sec-title h2 {
  color: #00bcd4;
}
.home5 .sec-title:after {
  background: #00bcd4;
}
.home5 .sec-title.white-text p {
  color: #ffffff;
}
.sec-title-2 {
  position: relative;
}
.sec-title-2 h2 {
  position: relative;
  font-size: 30px;
  line-height: 24px;
  margin-bottom: 25px;
  padding-bottom: 26px;
  text-transform: uppercase;
}
.sec-title-2 h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100px;
  background: #273c8d;
}
.sec-title-2 .view-more {
  position: absolute;
  right: 0;
  bottom: 0;
}
.sec-title-2 .view-more a {
  font-weight: 700;
  font-size: 14px;
}
.sec-title-2.text-center h2:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.sec-title-2.text-right h2:after {
  left: auto;
  right: 0;
}
.sec-title-2.text-right .view-more {
  right: auto;
  left: 0;
}
.sec-title-2 p {
  margin-bottom: 0;
  font-size: 16px;
}
.primary-btn {
  display: inline-block;
  height: 40px;
  line-height: 35px;
  text-align: center;
  min-width: 136px;
  padding: 0 20px;
  border: 2px solid #ff3115;
  color: #212121;
  transition: all 0.3s ease 0s;
  font-weight: 600;
}
.primary-btn:hover {
  background: #ff3115;
  color: #ffffff;
}
.readon {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  line-height: normal;
  background: #ff3115;
  color: #fff;
  transition: all 0.3s ease 0s;
  border-radius: 2px;
}
.readon:hover,
.readon:focus {
  background: #e41f05;
  color: rgba(255, 255, 255, 0.8);
}
.readon.border {
  background: transparent;
  border: 1px solid #ff3115;
  color: #ff3115;
}
.readon.border:hover {
  color: #fff;
  background: #ff3115;
}
.readon.border.white {
  border-color: #fff;
  color: #fff;
}
.readon.border.white:hover {
  color: #ff3115;
  background: #fff;
}
/*overly border*/
.overly-border::before,
.overly-border::after {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  z-index: 1;
}
.blue-bg {
  position: relative;
}
.blue-bg .blue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url(images/bg/counter-bg.jpg); */
  background: rgba(0, 188, 212, 0.9);
  background-attachment: fixed;
}
.about-img .overly-border::before,
.about-img .overly-border::after {
  top: 50px;
  right: 50px;
  bottom: 50px;
  left: 50px;
}
.overly-border::before {
  border-top: 5px solid #ff3115;
  border-bottom: 5px solid #ff3115;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.rs-blog .blog-item.slick-current .team-content {
  opacity: 1;
  top: 0;
}
.overly-border::after {
  border-right: 5px solid #ff3115;
  border-left: 5px solid #ff3115;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
.single-member-area figure .overly-border:before,
.single-member-area figure .overly-border:after,
.rs-blog .blog-item.slick-current .overly-border:before,
.rs-blog .blog-item.slick-current .overly-border:after,
.single-member-area:hover .overly-border:before,
.single-member-area:hover .overly-border:after,
.team-content:hover .overly-border:before,
.team-content:hover .overly-border:after,
.blog-content:hover .overly-border:before,
.blog-content:hover .overly-border:after,
.project-content:hover .overly-border:before,
.project-content:hover .overly-border:after,
.about-img:hover .overly-border:before,
.about-img:hover .overly-border:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.right_menu_togle .search-wrap button {
  color: #ff3115;
}
.padding-0 {
  padding: 0 !important;
}
.pt-45 {
  padding-top: 45px !important;
}
.pt-70 {
  padding-top: 70px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
.pt-80 {
  padding-top: 80px !important;
}
.pt-100 {
  padding-top: 100px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pb-45 {
  padding-bottom: 45px !important;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}
.pb-170 {
  padding-bottom: 170px !important;
}
.mt-5 {
  margin-top: 5px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.sparator-15 {
  height: 15px;
  clear: both;
}
.ml-15 {
  margin-left: 15px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-45 {
  margin-top: 45px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mt-70 {
  margin-top: 70px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.mt-100 {
  margin-top: 100px !important;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-45 {
  margin-bottom: 45px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.mb-70 {
  margin-bottom: 70px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}
.mr-25 {
  margin-right: 25px !important;
}
.mr-30 {
  margin-right: 30px !important;
}
.margin-remove {
  margin: 0 !important;
}
.display-table {
  display: table;
  height: 100%;
  width: 100%;
}
.display-table-cell {
  display: table-cell;
  vertical-align: middle;
}
.white-color {
  color: #fff !important;
}
.rs-vertical-middle .logo-area {
  line-height: 95px;
}
.rs-vertical-middle {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.rs-vertical-bottom {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
/* -. Owl Carousel -*/
.owl-nav > div {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: #444;
  color: #fff;
  transform: translateY(-50%);
  font-size: 22px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.owl-nav > div:hover {
  background-color: #ff3115;
}
.owl-nav .owl-prev {
  left: -60px;
}
.owl-nav .owl-next {
  right: -60px;
}
.rs-carousel:hover .owl-nav > div {
  opacity: 1;
}
.rs-navigation-2 {
  padding-bottom: 80px;
}
.rs-navigation-2 .owl-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.rs-navigation-2 .owl-nav > div {
  position: initial;
  display: inline-block;
  transform: none;
  opacity: 1 !important;
}
.rs-navigation-2 .owl-nav .owl-next {
  margin-left: 12px;
}
.rs-navigation-2 .owl-stage-outer {
  padding-bottom: 0 !important;
}
/* ------------------------------------
    03. Header Section  
---------------------------------------*/
.rs-toolbar {
  padding: 4px 0 5px;
  background-color: #111111;
}
.rs-toolbar .rs-toolbar-left .welcome-message {
  font-size: 14px;
}
.rs-toolbar .rs-toolbar-left .welcome-message i {
  color: #ff3115;
  margin-right: 8px;
}
.welcome-message a:hover{
  color: #000;
}
.rs-toolbar .rs-toolbar-left .welcome-message span {
  font-weight: 500;
  color: #ffffff;
  line-height: 34px;
  font-size: 15px;
}
.rs-toolbar .rs-toolbar-right {
  text-align: right;
}
.rs-toolbar .rs-toolbar-right .toolbar-share-icon {
  display: inline-block;
  margin-right: 30px;
}
.rs-toolbar .rs-toolbar-right .toolbar-share-icon ul li {
  display: inline-block;
}
.rs-toolbar .rs-toolbar-right .toolbar-share-icon ul li + li {
  margin-left: 8px;
}
.rs-toolbar .rs-toolbar-right .toolbar-share-icon ul li a {
  font-size: 14px;
  color: #888888;
}
.rs-toolbar .rs-toolbar-right .toolbar-share-icon ul li a:hover,
.rs-toolbar .rs-toolbar-right .toolbar-share-icon ul li a:active,
.rs-toolbar .rs-toolbar-right .toolbar-share-icon ul li a:focus {
  color: #ffffff;
}
.rs-toolbar .rs-toolbar-right .apply-btn {
  font-weight: 500;
  font-size: 14px;
}
/* ------------------------------------
    02. Header Start
---------------------------------------*/
.rs-header .rs-header-top {
  padding: 25px 0 20px;
}
.rs-header .rs-header-top .header-contact {
  float: right;
}
.rs-header .rs-header-top .header-contact .widget-text {
  position: relative;
  padding-left: 55px;
}
.rs-header .rs-header-top .header-contact .widget-text i {
  position: absolute;
  border-radius: 2px;
  text-align: center;
  left: 0;
  line-height: 40px;
  color: #ff3115;
  font-size: 35px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  font-weight: 700;
}
.rs-header .rs-header-top .header-contact .widget-text .info-text a {
  color: #505050;
  font-weight: 400;
  font-size: 16px;
}
.rs-header .rs-header-top .header-contact .widget-text .info-text a:hover {
  color: #ff3115;
}
.rs-header .rs-header-top .header-contact .widget-text .info-text span {
  display: block;
  font-weight: 700;
  color: #101010;
  line-height: 18px;
}
.rs-header .rs-menu-toggle {
  color: #fff !important;
}
.rs-header .rs-menu-toggle:hover {
  color: #ff3115 !important;
}
.rs-header .menu-area .rs-menu li.current_page_item > a,
.rs-header-2 .menu-area .rs-menu li.current_page_item > a,
.rs-header-3 .menu-area .rs-menu li.current_page_item > a,
.rs-header-4 .menu-area .rs-menu li.current_page_item > a,
.rs-header .menu-area .rs-menu li.current-menu-item > a,
.rs-header-2 .menu-area .rs-menu li.current-menu-item > a,
.rs-header-3 .menu-area .rs-menu li.current-menu-item > a,
.rs-header-4 .menu-area .rs-menu li.current-menu-item > a,
.rs-header .menu-area .rs-menu li.active > a,
.rs-header-2 .menu-area .rs-menu li.active > a,
.rs-header-3 .menu-area .rs-menu li.active > a,
.rs-header-4 .menu-area .rs-menu li.active > a,
.rs-header .menu-area .rs-menu li a:hover,
.rs-header-2 .menu-area .rs-menu li a:hover,
.rs-header-3 .menu-area .rs-menu li a:hover,
.rs-header-4 .menu-area .rs-menu li a:hover {
  color: #ff3115 !important;
}
.rs-header-2 {
  position: absolute;
  width: 100%;
  z-index: 999;
}
.rs-header-2 .menu-area {
  padding: 30px 0;
}
.rs-header-2 .menu-area .rs-menu .nav-menu {
  text-align: right;
}
.rs-header-2 .menu-area .rs-menu .nav-menu > li > a {
  color: #ffffff;
}
.rs-header-2 .menu-area .rs-menu .nav-menu > li > a:hover {
  color: #ff3115;
}
@-moz-document url-prefix() {
  .home2 .right-bar-icon .nav-expander {
    position: relative;
    top: -1px;
  }
}
/* ----- Menu -------*/
.nav-menu > li > a {
  font-weight: 500;
  font-size: 16px;
}
.home1 .logo-area {
  padding-top: 3px;
}
.home1 .rs-menu li i {
  margin-right: 0;
  color: #ff3115;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
}
.home1 .rs-menu li i:hover {
  color: #e41f05;
}
.home1 .menu-area .rs-menu > ul > li > a {
  color: #bbbbbb;
}
.home1 .menu-area .rs-menu > ul > li > a:hover,
.home1 .menu-area .rs-menu li.current_page_item > a {
  color: #ff3115 !important;
}
.home1 .menu-area {
  background: #212121;
}
.home1 .searce-box {
  position: absolute;
  top: 0;
  right: 23%;
  top: 16px;
}
.home1 .searce-box a.rs-search i {
  color: #ff3115;
}
.home1 .searce-box a.rs-search i:hover {
  color: #ffffff;
}
.home1 .rs-header .rs-header-top .col-md-4:first-child .header-contact {
  float: left;
}
.inner-page .searce-box {
  position: absolute;
  top: 0;
  right: 16px;
  top: 15px;
}
.inner-page .searce-box a.rs-search i {
  color: #ff3115;
}
.home2 .rs-header-top {
  padding: 20px 0 50px;
}
.home2 .menu-area .container {
  position: relative;
}
.home2 .menu-area .main-menu {
  background: #111111;
  position: absolute;
  top: -30px;
  border-radius: 0;
  width: 100%;
  z-index: 999;
  left: 0;
  max-width: 1170px;
  margin: 0 auto;
}
.home2 .menu-area .rs-menu ul > li > a {
  color: #bbbbbb;
}
.home2 .menu-area .rs-menu ul > li > a:hover {
  color: #ff3115;
}
.home2 .menu-area .rs-menu ul > li ul.sub-menu a {
  color: #bbbbbb;
}
.home2 .menu-area.sticky .main-menu {
  position: static;
}
.home2 #rs-slider .container {
  margin-bottom: 100px;
}
.home2 .rs-search {
  position: absolute;
  right: 0;
  z-index: 99;
  top: 0;
  color: #fff;
  font-size: 18px;
  display: inline-block;
  height: 55px;
  width: 60px;
  line-height: 55px;
  padding: 0;
  text-align: center;
  background: #ff3115;
}
.home2 .rs-search:hover {
  background-color: #e41f05;
  color: rgba(255, 255, 255, 0.7);
}
.home2 .sticky .rs-search {
  right: 12px;
}
.home1 .right-bar-icon,
.home2 .right-bar-icon {
  position: absolute;
  right: 0;
}
.home1 .right-bar-icon a,
.home2 .right-bar-icon a {
  display: inline-block;
  height: 55px;
  width: 45px;
  line-height: 55px;
  text-align: center;
  color: #fff;
}
.home1 .right-bar-icon a:hover,
.home2 .right-bar-icon a:hover {
  color: #fff;
}
.home1 .right-bar-icon .rs-search,
.home2 .right-bar-icon .rs-search {
  position: static;
  color: #fff;
  background-color: #ff3115;
  margin-right: -4px;
}
.home1 .right-bar-icon .rs-search:hover,
.home2 .right-bar-icon .rs-search:hover {
  background: #e41f05;
}
.home1 .right-bar-icon .nav-expander,
.home2 .right-bar-icon .nav-expander {
  background: #e41f05;
}
.home1 .right-bar-icon .nav-expander:hover,
.home2 .right-bar-icon .nav-expander:hover {
  background: #ff3115;
}
.home1 .sticky .right-bar-icon,
.home2 .sticky .right-bar-icon {
  right: 12px;
}
.home1 .rs-courses .cource-item {
  border: none;
  background: #fff;
}
.university-home .search-modal .modal-content,
.inner-page .search-modal .modal-content,
.instructor-home .search-modal .modal-content,
.home1 .search-modal .modal-content,
.home2 .search-modal .modal-content,
.home5 .search-modal .modal-content,
.home3 .search-modal .modal-content {
  background: transparent;
  position: initial;
  border: 0;
}
.university-home .search-modal .search-block input,
.inner-page .search-modal .search-block input,
.instructor-home .search-modal .search-block input,
.home1 .search-modal .search-block input,
.home2 .search-modal .search-block input,
.home5 .search-modal .search-block input,
.home3 .search-modal .search-block input {
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
  background: transparent;
  border-width: 0 0 1px 0;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
}
.university-home .search-modal .close,
.inner-page .search-modal .close,
.instructor-home .search-modal .close,
.home1 .search-modal .close,
.home2 .search-modal .close,
.home5 .search-modal .close,
.home3 .search-modal .close {
  color: #ffffff;
  margin-top: 20px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.4);
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  opacity: 1;
  outline: none;
  transition: all 0.3s ease 0s;
}
.university-home .search-modal .close:hover,
.inner-page .search-modal .close:hover,
.instructor-home .search-modal .close:hover,
.home1 .search-modal .close:hover,
.home2 .search-modal .close:hover,
.home5 .search-modal .close:hover,
.home3 .search-modal .close:hover {
  background-color: #ff3115;
}
.university-home .modal-backdrop,
.inner-page .modal-backdrop,
.instructor-home .modal-backdrop,
.home1 .modal-backdrop,
.home2 .modal-backdrop,
.home5 .modal-backdrop,
.home3 .modal-backdrop {
  opacity: 0.95;
}
.home3 .rs-header {
  position: absolute;
  width: 100%;
  z-index: 999;
}
#rs-header.rs-transfarent-header-style {
  position: absolute;
  width: 100%;
  z-index: 999;
}
#rs-header.rs-transfarent-header-style .logo-area {
  padding-top: 0;
}
#rs-header.rs-transfarent-header-style .menu-sticky.sticky {
  background: #212121;
  padding-top: 10px;
  padding-bottom: 10px;
}
#rs-header.rs-transfarent-header-style .menu-area {
  background: transparent;
}
#rs-header.rs-transfarent-header-style .menu-area .rs-menu .nav-menu > li > a {
  color: #ffffff;
}
#rs-header.rs-transfarent-header-style .rs-right-btn-inner {
  position: relative;
}
#rs-header.rs-transfarent-header-style .rs-right-btn-inner .searce-box {
  position: absolute;
  top: 0;
  right: 90%;
  top: 7px;
}
#rs-header.rs-transfarent-header-style .rs-right-btn-inner .searce-box .rs-search i {
  color: #ff3115;
}
#rs-header.rs-transfarent-header-style .rs-right-btn-inner .apply-box {
  margin-left: 35px;
}
#rs-header.rs-transfarent-header-style .rs-right-btn-inner .apply-box a {
  padding: 0 28px;
  border-radius: 35px;
  line-height: 40px;
  height: auto;
  color: #ffffff;
  background: #ff3115;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
#rs-header.rs-transfarent-header-style .rs-right-btn-inner .apply-box a:hover {
  color: #ffffff;
  background: #e41f05;
}
.home3 .rs-header .menu-area {
  background-color: rgba(37, 37, 37, 0.8);
}
.home3 .rs-header .menu-area .rs-menu .nav-menu > li > a {
  color: #ffffff;
  line-height: 105px;
  height: 105px;
}
.home3 .rs-header .menu-area .rs-menu .nav-menu > li > a:hover {
  color: #ff3115;
}
.home3 .rs-header .menu-area .toggle-btn {
  position: absolute;
  right: 16px;
  top: 44px;
  background-color: transparent;
  cursor: pointer;
}
.home3 .rs-header .menu-area .toggle-btn .border-icon {
  display: block;
  height: 2px;
  margin-bottom: 5px;
  width: 25px;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  background: #ffffff;
  z-index: 11;
}
.home3 .rs-header .menu-area .toggle-btn .border-icon:last-child {
  margin-bottom: 0;
}
.home3 .rs-header .menu-area .toggle-btn.active {
  top: 40px;
}
.home3 .rs-header .menu-area .toggle-btn.active .border-icon {
  background: #ff3115;
}
.home3 .rs-header .menu-area .toggle-btn.active .border-icon:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.home3 .rs-header .menu-area .toggle-btn.active .border-icon:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.home3 .rs-header .menu-area .toggle-btn.active .border-icon:nth-child(3) {
  top: -5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.home3 .rs-header .menu-sticky.sticky {
  background-color: #212121;
}
.home3 .rs-header .menu-sticky.sticky .rs-menu .nav-menu > li > a {
  line-height: 80px;
  height: 80px;
}
.home3 .rs-header .menu-sticky.sticky .rs-menu .nav-menu > li > a:hover {
  color: #ff3115;
}
.home3 .rs-header .menu-sticky.sticky .searce-box {
  top: 26px;
}
.home3 .rs-header .menu-sticky.sticky .toggle-btn {
  top: 32px;
}
.home3 .rs-header .searce-box {
  position: absolute;
  top: 0;
  right: 8%;
  top: 38px;
}
.home3 .rs-header .searce-box a.rs-search i {
  color: #ff3115;
}
.home3 .rs-header .rs-menu ul {
  text-align: right;
  margin-right: 70px;
}
.home3 .rs-header .searce-box,
.home3 .rs-header .rs-menu > ul {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.home3.hidden-menu .rs-header .searce-box,
.home3.hidden-menu .rs-header .rs-menu > ul {
  opacity: 1;
  visibility: visible;
}
.home3 .rs-toolbar .rs-toolbar-left .welcome-message,
.home5 .rs-toolbar .rs-toolbar-left .welcome-message,
.instructor-home .rs-toolbar .rs-toolbar-left .welcome-message {
  float: left;
  margin-right: 25px;
}
.home3 .rs-toolbar .rs-toolbar-left .welcome-message:last-child,
.home5 .rs-toolbar .rs-toolbar-left .welcome-message:last-child,
.instructor-home .rs-toolbar .rs-toolbar-left .welcome-message:last-child {
  margin-right: 0;
}
.home3 .rs-toolbar .rs-toolbar-left .welcome-message a,
.home5 .rs-toolbar .rs-toolbar-left .welcome-message a,
.instructor-home .rs-toolbar .rs-toolbar-left .welcome-message a {
  color: #ffffff;
}
.home3 .rs-toolbar .rs-toolbar-left .welcome-message a:hover,
.home5 .rs-toolbar .rs-toolbar-left .welcome-message a:hover,
.instructor-home .rs-toolbar .rs-toolbar-left .welcome-message a:hover {
  color: #ff3115;
}
.home5 .rs-toolbar {
  background: #00bcd4;
}
.home5 .rs-toolbar .toolbar-share-icon {
  margin-right: 15px;
  line-height: 33px;
}
.home5 .rs-toolbar .toolbar-share-icon ul li a {
  color: #fff;
  font-size: 14px;
}
.home5 .rs-toolbar .toolbar-share-icon ul li a:hover {
  color: #273c8d;
}
.home5 .rs-toolbar .rs-search {
  color: #fff;
  font-size: 14px;
}
.home5 .rs-toolbar .rs-search:hover {
  color: #273c8d;
}
.home5 .rs-header .logo-area {
  padding-top: 10px;
    width: 261px;
}
.home5 .rs-header .main-menu .rs-menu ul {
  text-align: right;
  margin-right: 162px;
}
.home5 .rs-header .main-menu .rs-menu > ul > li > a {
  color: #273c8d;
}
.home5 .rs-header .main-menu .rs-menu ul li a:hover,
.home5 .rs-header .main-menu .rs-menu ul li.active a,
.home5 .rs-header .main-menu .rs-menu ul li.current-menu-item > a {
  color: #000000 !important;
}
.rs-toolbar-left .welcome-message a:hover{
  color: #00bcd4;
}
.home5 .rs-header .main-menu .nav-expander {
  font-size: 20px;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: block;
  color: #273c8d;
  position: absolute;
  right: 15px;
  top: 26px;
}
.home5 .rs-header .main-menu .nav-expander:hover {
  transform: scale(1.1);
  color: #ff3115;
}
/* .home5 .rs-header .sticky {
  background-image: url(images/sticky-banner.webp);
} */
.rs-latest-news{
  background-image: url(images/bottom-banner.webp);
  background-size:cover;
}
.home5 .rs-header .apply-box {
  position: absolute;
  right: 0;
  min-width: 130px;
  text-align: center;
  line-height: 46px;
  background: #273c8d;
  margin-top: 17px;
  border-radius: 30px;
}
.home5 .rs-header .apply-box a {
  color: #fff;
  display: block;
  text-transform: uppercase;
}
.home5 .rs-header .apply-box a:hover {
  color: #00bcd4;
}
.instructor-home .rs-header .logo-area {
  padding-top: 23px;
}
.instructor-home .rs-header .main-menu .rs-menu ul {
  text-align: right;
  margin-right: 110px;
}
.instructor-home .rs-header .main-menu .rs-menu > ul > li > a {
  color: #505050;
}
.instructor-home .rs-header .main-menu .rs-menu ul li a:hover,
.instructor-home .rs-header .main-menu .rs-menu ul li.active a,
.instructor-home .rs-header .main-menu .rs-menu ul li.current-menu-item > a {
  color: #ff3115 !important;
}
.instructor-home .rs-header .main-menu .nav-expander {
  font-size: 20px;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: block;
  color: #273c8d;
  position: absolute;
  right: 15px;
  top: 26px;
}
.instructor-home .rs-header .main-menu .nav-expander:hover {
  transform: scale(1.1);
  color: #ff3115;
}
.instructor-home .rs-header .sticky {
  background: #fff;
}
.instructor-home .rs-header .apply-box {
  position: absolute;
  right: 0;
  min-width: 130px;
  text-align: center;
  line-height: 46px;
  background: #ff3115;
  margin-top: 17px;
  border-radius: 30px;
  transition: 0.4s;
}
.instructor-home .rs-header .apply-box:hover {
  background: #e41f05;
}
.instructor-home .rs-header .apply-box a {
  color: #fff;
  display: block;
  text-transform: uppercase;
}
.instructor-home .searce-box {
  padding-top: 28px;
}
.instructor-home .searce-box i {
  color: #ff3115;
}
.university-home .menu-area {
  padding: 16px 0;
}
.university-home .menu-area .rs-menu ul {
  text-align: right;
}
.university-home .rs-header .menu-area .rs-menu .nav-menu > li > a {
  color: #ffffff;
}
.university-home .rs-header .menu-area .rs-menu .searce-box {
  padding-top: 15px;
}
.university-home .rs-header .menu-area .rs-menu .searce-box a {
  position: relative;
}
.university-home .rs-header .menu-area .rs-menu .searce-box a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 1px;
  background: #ffffff;
}
.home5 .overly-border::before,
.university-home .overly-border::before {
  border-top: 5px solid #273c8d;
  border-bottom: 5px solid #273c8d;
}
.home5 .overly-border::after,
.university-home .overly-border::after {
  border-right: 5px solid #273c8d;
  border-left: 5px solid #273c8d;
}
.home5 .rs-footer .footer-share ul li a,
.university-home .rs-footer .footer-share ul li a,
.home5 .rs-footer .footer-share ul li a:hover,
.university-home .rs-footer .footer-share ul li a:hover,
.home5 .rs-footer .footer-title:after,
.university-home .rs-footer .footer-title:after,
.home5 .rs-footer .footer-top .news-form button,
.university-home .rs-footer .footer-top .news-form button,
.home5 .rs-footer .footer-top .recent-post-widget .post-item .post-date,
.university-home .rs-footer .footer-top .recent-post-widget .post-item .post-date,
.home5 .rs-footer .footer-contact-desc,
.university-home .rs-footer .footer-contact-desc,
.home5 .rs-latest-news .news-normal-block .news-btn a,
.university-home .rs-latest-news .news-normal-block .news-btn a,
.home5 .owl-nav > div:hover,
.university-home .owl-nav > div:hover,
.home5 .rs-team .team-item .team-img .normal-text,
.university-home .rs-team .team-item .team-img .normal-text,
.home5 .rs-team .team-item .team-title:after,
.university-home .rs-team .team-item .team-title:after,
.home5 #scrollUp i,
.university-home #scrollUp i {
  background: #273c8d;
}
.home5 .rs-footer .footer-bottom,
.university-home .rs-footer .footer-bottom,
.home5 .rs-footer .footer-top .recent-post-widget .post-item + .post-item,
.university-home .rs-footer .footer-top .recent-post-widget .post-item + .post-item,
.home5 .rs-footer .footer-top .news-form input,
.university-home .rs-footer .footer-top .news-form input {
  border-color: #273c8d;
}
.home5 .searce-box i,
.university-home .searce-box i,
.home5 #rs-slider .slide-content .slider-desc,
.university-home #rs-slider .slide-content .slider-desc,
.home5 .copyright a,
.university-home .copyright a,
.home5 .rs-footer .footer-top .sitemap-widget li a:hover,
.university-home .rs-footer .footer-top .sitemap-widget li a:hover,
.home5 .rs-footer .footer-title,
.university-home .rs-footer .footer-title,
.home5 .rs-latest-news .news-list-block .news-list-item .news-title a,
.university-home .rs-latest-news .news-list-block .news-list-item .news-title a,
.home5 .rs-latest-news .news-normal-block .news-title a,
.university-home .rs-latest-news .news-normal-block .news-title a,
.home5 .rs-events .event-item .event-btn a,
.university-home .rs-events .event-item .event-btn a,
.home5 .rs-events .event-item .event-title a,
.university-home .rs-events .event-item .event-title a {
  color: #273c8d;
}
.home5 .copyright a:hover,
.university-home .copyright a:hover,
.home5 .rs-footer .footer-top .recent-post-widget .post-item .post-title a:hover,
.university-home .rs-footer .footer-top .recent-post-widget .post-item .post-title a:hover {
  color: #5d0b5b;
}
.home5 .rs-footer .footer-top .news-form button:hover,
.university-home .rs-footer .footer-top .news-form button:hover {
  background: #5d0b5b;
}
.home5 .rs-footer .footer-share ul li a:hover,
.university-home .rs-footer .footer-share ul li a:hover {
  color: #00bcd4;
}
.home5 .rs-footer .footer-contact-desc .contact-inner i,
.university-home .rs-footer .footer-contact-desc .contact-inner i {
  color: #91bf52;
}
.home5 .rs-footer,
.university-home .rs-footer {
  color: #505050;
}
.home5 .rs-footer .footer-top .sitemap-widget li a,
.university-home .rs-footer .footer-top .sitemap-widget li a,
.home5 .rs-footer .footer-top .recent-post-widget .post-item .post-title a,
.university-home .rs-footer .footer-top .recent-post-widget .post-item .post-title a {
  color: #fff;
}
.home5 .slider-overlay-2 .slide-content:after,
.university-home .slider-overlay-2 .slide-content:after {
  display: none;
}
.home5 .rs-footer .footer-top .news-form input,
.university-home .rs-footer .footer-top .news-form input {
  color: #000;
}
.home5 .rs-footer .footer-contact-desc,
.university-home .rs-footer .footer-contact-desc {
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}
.home5 .rs-footer .footer-bottom,
.university-home .rs-footer .footer-bottom {
  background: #269aa9;
}
.home5 .rs-toolbar .rs-toolbar-left .welcome-message i,
.university-home .rs-toolbar .rs-toolbar-left .welcome-message i {
  color: #fff;
}
.university-home .searce-box i {
  color: #ff3115;
}
.university-home #scrollUp i,
.university-home .owl-nav > div:hover {
  background: #ff3115;
}
/* ------------------------------------
    04. Sticky Menu
---------------------------------------*/
.menu-sticky.sticky {
  background: #fff;
  position: fixed !important;
  top: 0px;
  z-index: 999;
  margin: 0 auto !important;
  padding: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-name: sticky-animation;
  animation-name: sticky-animation;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.menu-sticky.sticky .main-menu {
  position: static ;
}
.rs-header-2 .menu-sticky1.sticky1 .nav-menu > li > a {
  height: 80px;
  line-height: 80px;
}
#nav-close {
  transition: all 0.3s ease 0s;
}
#nav-close:hover {
  background-color: #ff3115;
  border-color: #ff3115;
  color: #fff;
}
@-webkit-keyframes sticky-animation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes sticky-animation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ------------------------------------
    05. Slider
---------------------------------------*/
#rs-slider {
  position: relative;
}
#rs-slider .slide-content {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  width: 100%;
  height: 100%;
  z-index: 8;
}
#rs-slider .slide-content .slider-title {
  font-size: 60px;
  color: #fff;
  margin-bottom: 15px;
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
  text-transform: uppercase;
}
#rs-slider .slide-content .slider-desc {
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 20px;
}
#rs-slider .slide-content .sl-readmore-btn {
  border: 2px solid #101010;
  background: #101010;
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease 0s;
}
#rs-slider .slide-content .sl-readmore-btn:hover {
  background-color: #e41f05;
  border-color: #e41f05;
  color: rgba(255, 255, 255, 0.8);
}
#rs-slider .slide-content .sl-get-started-btn {
  background-color: #ff3115;
  border: 2px solid #ff3115;
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease 0s;
}
#rs-slider .slide-content .sl-get-started-btn:hover {
  background-color: #e41f05;
  border-color: #e41f05;
  color: rgba(255, 255, 255, 0.8);
}
#rs-slider .owl-nav {
  display: none;
}
#rs-slider .owl-dots {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}
#rs-slider .owl-dots .owl-dot {
  height: 15px;
  width: 5px;
  background-color: #ffffff;
}
#rs-slider .owl-dots .owl-dot + .owl-dot {
  margin-top: 8px;
}
#rs-slider .owl-dots .owl-dot.active {
  background-color: #ff3115;
}
.slider-overlay-1 .slide-content:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.slider-overlay-2 .slide-content:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 109, 0, 0.3);
  z-index: -1;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(255, 109, 0, 0.3) 100%);
  background: linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(255, 109, 0, 0.3) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(255, 109, 0, 0.3) 100%);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(255, 109, 0, 0.3) 100%);
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
  background: -webkit-gradient(linear, right top, right bottom, color-stop(0%, rgba(0, 0, 0, 0.55)), color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(100%, rgba(0, 0, 0, 0.3)));
  opacity: 0.95;
}
.home5 span.red-color {
  color: #fff;
}
.home5 span.orange-color {
  color: #fff;
}
.home5 #rs-slider {
  position: relative;
}
.home5 #rs-slider .slide-content .slider-title {
  color: #273c8d;
}
.home5 #rs-slider .slide-content .slider-title,
.home5 #rs-slider .slide-content .slider-desc,
.home5 #rs-slider .slide-content .sl-get-started-btn {
  position: relative;
  z-index: 11;
  color: #fff;
}
.home5 #rs-slider .slide-content .sl-get-started-btn {
  border: none;
  background: #273c8d;
  border-radius: 30px;
  font-weight: 700;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 18px;
}
.home5 #rs-slider .slide-content .sl-get-started-btn:hover {
  background: #550b53;
}
.home5 #rs-slider .owl-dots {
  display: none !important;
}
.rs-banner-section {
  position: relative;
  overflow: hidden;
}
.rs-banner-section img.banner-image {
  width: 100%;
}
.rs-banner-section .banner-inner {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.rs-banner-section .banner-inner .sl-sub-title {
  margin-bottom: 2px;
  font-size: 56px;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 70px;
  color: #fff;
  font-weight: 600;
  font-style: italic;
}
.rs-banner-section .banner-inner .banner-title {
  font-size: 75px;
  line-height: 75px;
  margin: 0 0 25px;
  font-weight: 700;
  color: #fff;
}
.rs-banner-section .banner-inner .banner-title span {
  display: block;
  color: #ff3115;
}
.rs-banner-section .banner-inner .content {
  color: #ffffff;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 40px;
}
.rs-banner-section .banner-inner .readon {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 16px;
  padding: 15px 25px;
}
.rs-banner-section .banner-text {
  max-width: 700px;
}
.rs-banner-section2 {
  position: relative;
  overflow: hidden;
}
.rs-banner-section2 img.banner-image {
  width: 100%;
}
.rs-banner-section2 .banner-inner {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.rs-banner-section2 .banner-inner .sl-sub-title,
.rs-banner-section2 .banner-inner .banner-title,
.rs-banner-section2 .banner-inner .banner-title2 {
  color: #fff;
}
.rs-banner-section2 .banner-inner .sl-sub-title {
  font-size: 30px;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 50px;
  font-weight: 400;
}
.rs-banner-section2 .banner-inner .banner-title {
  margin: 0 0 6px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 90px;
  line-height: 1.1;
  letter-spacing: 5px;
}
.rs-banner-section2 .banner-inner .banner-title span {
  display: block;
  line-height: 1;
}
.rs-banner-section2 .banner-inner .content {
  color: #ffffff;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 40px;
}
.rs-banner-section2 .banner-inner .readon {
  text-transform: uppercase;
  font-size: 17px;
  padding: 15px 45px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 30px;
  font-weight: 600;
}
.rs-banner-section2 .banner-inner .readon:hover {
  background: #ffffff;
  color: #ff3115;
}
.rs-banner-section2 .animate .circle1 {
  position: absolute;
  right: 40%;
  bottom: 50px;
  height: 150px;
  animation: swing-anim 2s alternate-reverse infinite;
  -webkit-animation: swing-anim 2s alternate-reverse infinite;
}
.rs-banner-section2 .animate .circle2 {
  position: absolute;
  right: 25%;
  top: 300px;
  text-align: right;
  width: 150px;
  animation: swing-anim2 2s alternate-reverse infinite;
  -webkit-animation: swing-anim2 2s alternate-reverse infinite;
}
.rs-banner-section3 {
  background: url(images/bg/home8-banner-bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 180px;
  padding-bottom: 100px;
  background-size: cover;
}
.rs-banner-section3 .countdown-part .sub-title {
  display: block;
  font-size: 18px;
  line-height: 34px;
  color: #ff3115;
  font-weight: 600;
}
.rs-banner-section3 .countdown-part .title {
  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
}
.rs-banner-section3 .countdown-part .counter-wrap {
  max-width: 550px;
}
.rs-banner-section3 .countdown-part .counter-wrap .timecounter-inner .time_circles {
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
}
.rs-banner-section3 .countdown-part .counter-wrap .timecounter-inner .time_circles canvas {
  opacity: 1;
}
.rs-banner-section3 .countdown-part .counter-wrap .timecounter-inner .time_circles div {
  position: absolute;
  text-align: left;
  padding-right: 0;
}
.rs-banner-section3 .countdown-part .counter-wrap .timecounter-inner .time_circles div span {
  padding: 0;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 40px !important;
  margin: 0 0 9px 0;
  color: #ff3115;
}
.rs-banner-section3 .countdown-part .counter-wrap .timecounter-inner .time_circles div h4 {
  color: #ffffff;
  margin: 0;
  padding: 0;
  text-align: center;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 17px;
  font-size: 12px !important;
}
.rs-banner-section3 .register-form {
  background: rgba(255, 255, 255, 0.6);
}
.rs-banner-section3 .register-form .form-title {
  position: relative;
  padding: 30px 65px 36px;
  margin-bottom: 50px;
}
.rs-banner-section3 .register-form .form-title .title {
  font-weight: 400;
  color: #fff;
  position: relative;
  z-index: 10;
  line-height: 1.4;
  font-size: 22px;
}
.rs-banner-section3 .register-form .form-title:after {
  position: absolute;
  height: 100%;
  width: 100%;
  clip-path: polygon(-115.5% 0, 113% 0, 76% 100%);
  left: 0;
  background-color: #ff3115;
  top: 0;
  content: "";
}
.rs-banner-section3 .register-form .form-group {
  padding: 0 50px 5px;
}
.rs-banner-section3 .register-form .form-group .from-control {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 3px;
  height: 50px;
  line-height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 15px;
  padding: 10px 14px;
  border: 1px solid rgba(54, 54, 54, 0.1);
  outline: 0;
}
.rs-banner-section3 .register-form .form-group input[type=submit] {
  width: 100%;
  margin-bottom: 50px;
  border-radius: 3px;
  height: 50px;
  line-height: 50px;
  -webkit-appearance: button;
  cursor: pointer;
  background: #ff3115;
  border: 0;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  outline: 0;
  transition: 0.4s;
  font-weight: 600;
}
.rs-banner-section3 .register-form .form-group input[type=submit]:hover {
  color: #ffffff;
  background: #e41f05;
}
.rs-banner-section3 .register-form .form-group .select-option {
  position: relative;
}
.rs-banner-section3 .register-form .form-group .select-option select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: #b1b1b1;
  opacity: 1;
  z-index: 11;
  position: relative;
}
.rs-banner-section3 .register-form .form-group .select-option:after {
  content: '\f107';
  font-family: FontAwesome;
  color: #b1b1b1;
  right: 15px;
  position: absolute;
  top: 11px;
  z-index: 12;
  font-size: 22px;
  pointer-events: none;
}
/* ------------------------------------
    06. Breadcrumbs
---------------------------------------*/
.rs-breadcrumbs {
  padding: 100px 0 35px;
}
.rs-breadcrumbs .page-title {
  margin: 80px 0 100px;
  font-size: 36px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.rs-breadcrumbs ul {
  padding: 0;
}
.rs-breadcrumbs ul li {
  color: #00bcd4;
  display: inline-block;
  font-weight: 400;
}
.rs-breadcrumbs ul li a {
  position: relative;
  padding-right: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #ffffff;
}
.rs-breadcrumbs ul li a:before,
.rs-breadcrumbs ul li a:after {
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  height: 15px;
  width: 2px;
  position: absolute;
  right: 7px;
  top: 2px;
  transform: rotate(26deg);
}
.rs-breadcrumbs ul li a:before {
  right: 13px;
}
.rs-breadcrumbs ul li a:hover {
  color: #ff3115;
}
.breadcrumbs-overlay {
  position: relative;
  z-index: 1;
}
.breadcrumbs-overlay:after {
  content: '';
  position: absolute;
  background-color: rgba(17, 17, 17, 0.8);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* ------------------------------------
    07. Services
---------------------------------------*/
.rs-services-style7 .Services-wrap .Services-item {
  position: relative;
  overflow: hidden;
}
.rs-services-style7 .Services-wrap .Services-item:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease 0s;
  border-radius: 8px;
}
.rs-services-style7 .Services-wrap .Services-item .Services-icon img {
  border-radius: 8px;
}
.rs-services-style7 .Services-wrap .Services-item .Services-desc {
  position: absolute;
  bottom: 25px;
  left: 0;
  text-align: center;
  width: 100%;
  transition: all .5s ease 0s;
  z-index: 10;
}
.rs-services-style7 .Services-wrap .Services-item .Services-desc i {
  webkit-animation-name: rs-animation-scale-up;
  animation-name: rs-animation-scale-up;
  display: none;
}
.rs-services-style7 .Services-wrap .Services-item .Services-desc i:before {
  color: #ff3115;
  font-size: 40px;
}
.rs-services-style7 .Services-wrap .Services-item .Services-desc .services-title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin: 0;
}
.rs-services-style7 .Services-wrap .Services-item .Services-desc .services-title a {
  color: #ffffff;
}
.rs-services-style7 .Services-wrap .Services-item:hover:before {
  opacity: 1;
  visibility: visible;
}
.rs-services-style7 .Services-wrap .Services-item:hover .Services-desc {
  bottom: 50%;
  transform: translateY(50%);
}
.rs-services-style7 .Services-wrap .Services-item:hover .Services-desc i {
  display: block;
}
.rs-services-style7 .content-part .sub-text {
  display: block;
  font-size: 18px;
  line-height: 34px;
  color: #ff3115;
  font-weight: 600;
}
.rs-services-style7 .content-part .title {
  font-size: 30px;
  line-height: 40px;
  color: #212121;
  font-weight: 700;
  margin: 0;
}
.rs-services-style7 .content-part p {
  font-size: 16px;
  line-height: 27px;
  color: #505050;
  margin: 0;
}
/* ------------------------------------
    07. Services
---------------------------------------*/
.rs-services-style1 .services-item {
  background-color: #212121;
  padding: 25px 17px 17px;
  box-shadow: 0 4px 2px -2px #000000;
  z-index: 111;
  position: relative;
  top: -30px;
  transition: all 0.3s ease 0s;
}
.rs-services-style1 .services-item:hover {
  background-color: #ff3115;
}
.rs-services-style1 .services-item:hover .services-icon {
  background-color: #ff3115;
}
.rs-services-style1 .services-item:hover .services-icon,
.rs-services-style1 .services-item:hover .services-desc p {
  color: #fff;
}
.rs-services-style1 .services-desc {
  text-align: center;
  margin-top: 6px;
}
.rs-services-style1 .services-desc p {
  color: #cccccc;
  margin-bottom: 0;
}
.rs-services-style1 .services-desc .services-title {
  position: relative;
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 7px;
  z-index: 10;
}
.rs-services-style1 .services-icon {
  height: 130px;
  width: 130px;
  background-color: #212121;
  line-height: 88px;
  text-align: center;
  position: absolute;
  top: -50px;
  z-index: -1;
  font-size: 40px;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ff3115;
  transition: all 0.3s ease 0s;
}
.rs-services-style1 .services-icon i {
  display: inline-block;
}
.home5 .rs-services-style1 .services-item {
  margin-top: 0;
  padding-bottom: 20px;
  border-radius: 0 0 10px 10px;
}
.home5 .rs-services-style1 .services-item.blue-color {
  box-shadow: 0px 4px 13px #046875;
}
.home5 .rs-services-style1 .services-item.blue-color,
.home5 .rs-services-style1 .services-item.blue-color .services-icon {
  background: #00bcd4;
  height: 100px;
}
.home5 .rs-services-style1 .services-item.orange-color {
  box-shadow: 0px 4px 13px #9c510b;
}
.home5 .rs-services-style1 .services-item.orange-color,
.home5 .rs-services-style1 .services-item.orange-color .services-icon {
  background: #fcd032;
  height: 100px;
}
.home5 .rs-services-style1 .services-item.purple-color {
  box-shadow: 0px 4px 13px #50154f;
}
.home5 .rs-services-style1 .services-item.purple-color,
.home5 .rs-services-style1 .services-item.purple-color .services-icon {
  background: #273c8d;
  height: 100px;
}
.home5 .rs-services-style1 .services-item.red-color {
  box-shadow: 0px 4px 13px #75231a;
}
.home5 .rs-services-style1 .services-item.red-color,
.home5 .rs-services-style1 .services-item.red-color .services-icon {
  background: #91bf52;
  height: 100px;
}
.home5 .rs-services-style1 .services-item .services-icon {
  color: #fff;
  top: -50px;
  line-height: 90px;
  font-size: 40px;
}
.home5 .rs-services-style1 .services-item .services-desc {
  position: relative;
  z-index: 111;
  margin-top: 6px;
}
.home5 .rs-services-style1 .services-item .services-desc .services-title {
  margin-bottom: 6px;
  position: relative;
}
.home5 .rs-services-style1 .services-item .services-desc p {
  color: #eee;
}
/* ------------------------------------
    34. About Us Style8
---------------------------------------*/
.rs-about-style8 ul {
  list-style: none;
  margin: 0;
  flex-wrap: wrap;
  display: flex;
  padding-top: 0;
}
.rs-about-style8 ul li {
  flex-basis: 34%;
  position: relative;
  padding-left: 24px;
  padding-bottom: 7px;
}
.rs-about-style8 ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: "\f05d";
  font-family: FontAwesome;
  color: #ff3115;
  transition: all .5s ease;
}
.rs-about-style8 .author-section .course-author {
  display: flex;
  align-items: center;
}
.rs-about-style8 .author-section .align-img {
  margin-right: 20px;
}
.rs-about-style8 .author-section .align-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0;
}
.rs-about-style8 .author-section .author-content h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #212121;
}
.rs-about-style8 .author-section .author-content p {
  margin-bottom: 0;
}
/* ------------------------------------
    08. About Us Style
---------------------------------------*/
.rs-about-style7 .content-part .play-btn {
  position: relative;
}
.rs-about-style7 .content-part .play-btn .pulse-btn {
  position: absolute;
  background: #e41f05;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  font-size: 30px;
  color: #ffffff;
  z-index: 1;
}
.rs-about-style7 .content-part .play-btn .pulse-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: transparent;
  border: 2px solid #e41f05;
  border-radius: 50%;
  transition: all 200ms;
  animation: pulse-border 1500ms ease-out infinite;
}
.rs-about-style7 .content-part .play-btn .pulse-btn:after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: transparent;
  border-radius: 50%;
  transition: all 200ms;
  border: 2px solid #e41f05;
}
.rs-about-style7 .content-part .sub-title {
  display: block;
  font-size: 18px;
  color: #ff3115;
  font-weight: 600;
}
.rs-about-style7 .content-part .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: #ffffff;
  margin: 0;
}
.rs-about-style7 .content-part p {
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  color: #ffffff;
  margin: 0;
}
.rs-about-style8 .content-part .play-btn {
  position: relative;
}
.rs-about-style8 .content-part .play-btn .pulse-btn {
  position: absolute;
  background: #e41f05;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: #ffffff;
  z-index: 1;
}
.rs-about-style8 .content-part .play-btn .pulse-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: transparent;
  border: 2px solid #e41f05;
  border-radius: 50%;
  transition: all 200ms;
  animation: pulse-border 1500ms ease-out infinite;
}
.rs-about-style8 .content-part .play-btn .pulse-btn:after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: transparent;
  border-radius: 50%;
  transition: all 200ms;
  border: 2px solid #e41f05;
}
.rs-about-style8 .content-part .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: #ffffff;
  margin: 0;
}
/* ------------------------------------
    08. About Us
---------------------------------------*/
.rs-about .about-img {
  position: relative;
}
.rs-about .about-img:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(33, 33, 33, 0.5);
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.rs-about .about-img:hover:after {
  opacity: 1;
}
.rs-about .about-img .popup-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.rs-about .about-img .popup-youtube:after {
  position: absolute;
  font-family: FontAwesome;
  content: "\f04b";
  font-size: 36px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s ease 0s;
  display: inline-block;
  height: 80px;
  line-height: 80px;
  width: 80px;
  text-align: center;
  background: #ff3115;
  border-radius: 50%;
  padding-left: 8px;
  color: #fff;
}
.rs-about .about-desc {
  margin-bottom: 30px;
}
.rs-about .about-desc h2 {
  font-size: 30px;
  line-height: normal;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}
.rs-about .about-desc p {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 0;
}
.vision-desc p:last-child,
.about-desc p:last-child {
  margin-bottom: 0;
}
.home5 .sec-title {
  margin-bottom: 20px;
}
.home5 .sec-title h3:after {
  left: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.home5 .acdn-title {
  color: #00bcd4;
}
.home5 #accordion .card .card-header .acdn-title:not(.collapsed) {
  background: #00bcd4;
}
.rs-about-2 .sec-title h3 {
  font-size: 30px;
}
.rs-about-2 .about-signature h4 {
  margin-bottom: 0;
  font-size: 20px;
}
.rs-about-2 .about-signature span {
  font-size: 14px;
}
#rs-about {
  margin-top: -30px;
}
/* ------------------------------------
    30. Course Categories
---------------------------------------*/
.rs-courses-style7 .item {
  text-align: center;
  margin-bottom: 50px;
  border-radius: 8px;
  position: relative;
}
.rs-courses-style7 .item .cource-img img {
  border-radius: 8px;
}
.rs-courses-style7 .item .content-part {
  position: absolute;
  bottom: 30px;
  left: 0;
  text-align: center;
  width: 100%;
  transition: all .5s ease 0s;
  z-index: 10;
}
.rs-courses-style7 .item .content-part .btn-part {
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.rs-courses-style7 .item .content-part .btn-part i:before {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #ff3115;
  color: #ffffff;
  border-radius: 50%;
  font-size: 30px;
}
.rs-courses-style7 .item .content-part .cource-title {
  font-size: 23px;
  margin-bottom: 0;
  margin-top: 12px;
  font-weight: 600;
}
.rs-courses-style7 .item .content-part .cource-title a {
  color: #ffffff;
  transition: all 0.3s ease 0s;
}
.rs-courses-style7 .item .content-part .courses-sub {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.rs-courses-style7 .item:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  opacity: 0;
  visibility: hidden;
  border-radius: 8px;
  transition: all 0.3s ease 0s;
}
.rs-courses-style7 .item:hover .content-part .btn-part {
  opacity: 1 !important;
}
.rs-courses-style7 .item:hover .content-part .cource-title a {
  color: #212121;
}
.rs-courses-style7 .item:hover .content-part .courses-sub {
  color: #505050;
}
.rs-courses-style7 .item:hover:after {
  opacity: 0.8;
  visibility: visible;
}
/* ------------------------------------
    09. rs courses style
---------------------------------------*/
.rs-courses .cource-item {
  border: 1px solid #dddddd;
}
.rs-courses .cource-item .cource-img {
  position: relative;
  margin-bottom: 22px;
}
.rs-courses .cource-item .cource-img img {
  width: 100%;
  transition: all 0.3s ease 0s;
}
.rs-courses .cource-item .cource-img .course-value {
  position: absolute;
  bottom: -25px;
  right: 25px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #ff3115;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50%;
  z-index: 1;
}
.rs-courses .cource-item .course-body {
  text-align: center;
  padding: 0 20px;
}
.rs-courses .cource-item .course-body .course-category {
  display: inline-block;
}
.rs-courses .cource-item .course-body .course-title {
  font-size: 20px;
  margin-bottom: 7px;
}
.rs-courses .cource-item .course-body .course-title a {
  color: #212121;
}
.rs-courses .cource-item .course-body .course-title a:hover {
  color: rgba(33, 33, 33, 0.6);
}
.rs-courses .cource-item .course-body .review-wrap .rating {
  display: inline-block;
  color: #ff3115;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #ddd;
  line-height: 10px;
}
.rs-courses .cource-item .course-body .review-wrap .review {
  line-height: 10px;
  display: inline-block;
}
.rs-courses .cource-item .course-body .course-desc {
  margin-top: 10px;
}
.rs-courses .cource-item .course-body .course-desc p {
  margin: 0 0 22px;
}
.rs-courses .cource-item .course-footer {
  padding: 15px 20px;
  background-color: #f0f0f0;
  text-align: center;
}
.rs-courses .cource-item .course-footer div {
  display: inline-block;
  text-align: center;
  position: relative;
  line-height: 19px;
}
.rs-courses .cource-item .course-footer div span {
  display: block;
  font-size: 14px;
  color: #212121;
  font-weight: 500;
}
.rs-courses .cource-item .course-footer div span.label {
  font-weight: 700;
}
.rs-courses .cource-item .course-footer div div {
  padding-left: 8px;
  margin-left: 8px;
  border-left: 1px solid #ccc;
}
.rs-courses .cource-item.blue-color .course-footer {
  background: #00bcd4;
}
.rs-courses .cource-item.orange-color .course-footer {
  background: #fcd032;
}
.rs-courses .cource-item.purple-color .course-footer {
  background: #273c8d;
}
.rs-courses .cource-item.red-color .course-footer {
  background: #91bf52;
  box-shadow: 0 12px 20px #f4f5ff;
}
.rs-courses.rs-courses-style6 .cource-item {
  margin-bottom: 30px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.06) !important;
  background: #ffffff !important;
  min-height: 375px;
  border-radius: 8px;
}
.rs-courses.rs-courses-style6 .cource-item .cource-img img {
  border-radius: 8px;
}
.rs-courses.rs-courses-style6 .cource-item .cource-img .course-value {
  bottom: 0;
  right: 0;
  top: 20px;
  height: 30px;
  width: 85px;
  line-height: 30px;
  text-align: center;
  background-color: #ff3115;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 5px 0 0 5px;
}
.rs-courses.rs-courses-style6 .cource-item .cource-img .img-part img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ff3115;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.rs-courses.rs-courses-style6 .cource-item .course-body {
  background: #ffffff !important;
}
.rs-courses.rs-courses-style6 .cource-item .course-body span {
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
}
.rs-courses.rs-courses-style6 .cource-item .course-body span a {
  color: #505050;
}
.rs-courses.rs-courses-style6 .cource-item .course-body span a:hover {
  color: #ff3115;
}
.rs-courses.rs-courses-style6 .cource-item .course-body .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin: 0;
}
.rs-courses.rs-courses-style6 .cource-item .course-body .title a {
  color: #212121;
}
.rs-courses.rs-courses-style6 .cource-item .course-body .title a:hover {
  color: #ff3115;
}
.rs-courses.rs-courses-style6 .cource-item .course-footer {
  background: none;
}
.rs-courses.rs-courses-style6 .cource-item .course-footer .courses-seats {
  margin-right: 30px;
}
.rs-courses.rs-courses-style6 .cource-item .course-footer .courses-seats i:before {
  color: #505050;
  font-size: 18px;
  padding-right: 5px;
}
.rs-courses.rs-courses-style6 .cource-item .course-footer .review-wrap .rating li {
  color: #ff3115;
  font-size: 18px;
}
.rs-courses.rs-courses-style7-new2 .cource-item {
  margin-bottom: none;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.06) !important;
  background: #ffffff !important;
  min-height: 345px;
  border-radius: 0 0 8px 4px !important;
}
.rs-courses.rs-courses-style7-new2 .cource-item .cource-img .course-value {
  bottom: 0;
  right: 0;
  height: 30px;
  width: 85px;
  line-height: 30px;
  text-align: center;
  background-color: #ff3115;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 5px 0 0 5px;
}
.rs-courses.rs-courses-style7-new2 .cource-item .cource-img .img-part img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ff3115;
  position: absolute;
  bottom: -20px;
  left: 45px;
  transform: translateX(-50%);
  z-index: 1;
}
.rs-courses.rs-courses-style7-new2 .cource-item .course-body {
  background: #ffffff !important;
  text-align: left;
}
.rs-courses.rs-courses-style7-new2 .cource-item .course-body span {
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
}
.rs-courses.rs-courses-style7-new2 .cource-item .course-body span a {
  color: #505050;
}
.rs-courses.rs-courses-style7-new2 .cource-item .course-body span a:hover {
  color: #ff3115;
}
.rs-courses.rs-courses-style7-new2 .cource-item .course-body .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin: 0;
}
.rs-courses.rs-courses-style7-new2 .cource-item .course-body .title a {
  color: #212121;
}
.rs-courses.rs-courses-style7-new2 .cource-item .course-body .title a:hover {
  color: #ff3115;
}
.rs-courses.rs-courses-style7-new2 .cource-item .course-footer {
  background: none;
  text-align: left;
  padding-bottom: 20px;
}
.rs-courses.rs-courses-style7-new2 .cource-item .course-footer .courses-seats {
  margin-right: 30px;
}
.rs-courses.rs-courses-style7-new2 .cource-item .course-footer .courses-seats i:before {
  color: #505050;
  font-size: 18px;
  padding-right: 5px;
}
.rs-courses.rs-courses-style7-new2 .cource-item .course-footer .review-wrap .rating li {
  color: #ff3115;
  font-size: 18px;
}
.rs-courses.rs-courses-style7-new2 .cource-item .course-footer .desc {
  font-size: 15px;
  color: #505050;
  line-height: 27px;
  margin: 0;
}
.event-item .events-details {
  margin-top: -20px;
  padding: 15px;
}
.event-item .events-details.white-bg {
  background: #fff;
}
.event-item .event-img,
.cource-item .event-img,
.event-item .cource-img,
.cource-item .cource-img {
  position: relative;
}
.event-item .event-img:after,
.cource-item .event-img:after,
.event-item .cource-img:after,
.cource-item .cource-img:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
}
.event-item .event-img .image-link,
.cource-item .event-img .image-link,
.event-item .cource-img .image-link,
.cource-item .cource-img .image-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  -webkit-transform: translate(-50%, -50%) !important;
  -ms-transform: translate(-50%, -50%) !important;
  color: #0d6efd;
  z-index: 11;
}
.event-item .event-img .image-link:hover,
.cource-item .event-img .image-link:hover,
.event-item .cource-img .image-link:hover,
.cource-item .cource-img .image-link:hover {
  color: #fff;
}
.event-item .event-img .image-link i,
.cource-item .event-img .image-link i,
.event-item .cource-img .image-link i,
.cource-item .cource-img .image-link i {
  font-size: 22px;
  font-weight: 400;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  transition: all 0.3s ease 0s;
}
.event-item:hover .event-img:after,
.cource-item:hover .event-img:after,
.event-item:hover .cource-img:after,
.cource-item:hover .cource-img:after {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.event-item:hover .event-img .image-link i,
.cource-item:hover .event-img .image-link i,
.event-item:hover .cource-img .image-link i,
.cource-item:hover .cource-img .image-link i {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.home5 .rs-courses .cource-item {
  border-color: #eee;
  background: #eee;
  border-radius: 0 0 30px 30px;
}
.home5 .rs-courses .cource-item .cource-img {
  margin-bottom: 0;
}
.home5 .rs-courses .cource-item .course-body {
  padding-top: 30px;
  background: #eee;
}
.home5 .rs-courses .cource-item .course-body .course-title a {
  color: #00bcd4;
}
.home5 .rs-courses .cource-item .course-footer {
  border-radius: 30px;
}
.home5 .rs-courses .cource-item .course-footer > div span {
  color: #fff;
}
.rs-courses-2 {
  padding-bottom: 70px;
}
.rs-courses-2 .cource-item {
  margin-bottom: 30px;
  border: 1px solid #dddddd;
}
.rs-courses-2 .cource-item .cource-img {
  position: relative;
  overflow: hidden;
}
.rs-courses-2 .cource-item .cource-img img {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 100%;
}
.rs-courses-2 .cource-item .cource-img .course-value {
  position: absolute;
  bottom: -25px;
  right: 25px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #ff3115;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 50%;
}
.rs-courses-2 .cource-item .course-body {
  padding: 20px 25px 25px;
  transition: all 0.5s ease 0s;
}
.rs-courses-2 .cource-item .course-body .course-category {
  display: inline-block;
}
.rs-courses-2 .cource-item .course-body .course-title {
  font-size: 20px;
  margin-bottom: 7px;
}
.rs-courses-2 .cource-item .course-body .course-title a {
  color: #212121;
  transition: all 0.35s ease 0s;
}
.rs-courses-2 .cource-item .course-body .course-title a:hover {
  color: rgba(33, 33, 33, 0.6);
}
.rs-courses-2 .cource-item .course-body .course-desc {
  margin-top: 12px;
}
.rs-courses-2 .cource-item .course-body .course-desc p {
  margin-bottom: 0;
  transition: all 0.35s ease 0s;
}
.rs-courses-2 .cource-item .cource-btn {
  background-color: #ff3115;
  border: 2px solid #ff3115;
  display: inline-block;
  margin-top: 20px;
  padding: 2px 10px;
  font-size: 11px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.3s ease 0s;
}
.rs-courses-2 .cource-item .cource-btn:hover {
  background-color: #e41f05;
  border-color: #e41f05;
}
.rs-courses-2 .cource-item:hover .course-body {
  background-color: #212121;
}
.rs-courses-2 .cource-item:hover .course-body .course-title a {
  color: #fff;
}
.rs-courses-2 .cource-item:hover .course-body p {
  color: rgba(255, 255, 255, 0.7);
}
.rs-courses-2 .cource-item:hover .cource-btn {
  background-color: #fff;
  border-color: #fff;
  color: #ff3115;
}
.rs-courses-2 .cource-item:hover .cource-btn:hover {
  background-color: #e41f05;
  border-color: #e41f05;
  color: #fff;
}
.rs-courses-2 .cource-item:hover .cource-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.8;
}
.rs-courses-2 .view-more {
  bottom: auto;
}
.rs-courses-2 .container {
  overflow: hidden;
}
.rs-courses-2 .row.grid {
  min-height: 500px !important;
}
.rs-courses-3 .row.grid {
  min-height: 500px;
  overflow: hidden;
}
.rs-courses-3 .course-item {
  margin-bottom: 30px;
  border: 1px solid #dddddd;
  transition: all 0.35s ease 0s;
}
.rs-courses-3 .course-item .course-img {
  position: relative;
  margin: -1px -1px 0 -1px;
}
.rs-courses-3 .course-item .course-img:before {
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.rs-courses-3 .course-item .course-img img {
  width: 100%;
}
.rs-courses-3 .course-item .course-img .course-value {
  position: absolute;
  bottom: -30px;
  right: 22px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #ff3115;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50%;
}
.rs-courses-3 .course-item .course-toolbar {
  position: absolute;
  width: 100%;
  bottom: 15px;
  padding: 0 20px;
}
.rs-courses-3 .course-item .course-toolbar .course-category {
  margin-bottom: 3px;
}
.rs-courses-3 .course-item .course-toolbar .course-category a {
  font-size: 24px;
  color: #ffffff;
}
.rs-courses-3 .course-item .course-toolbar .course-category a:hover {
  color: #ff3115;
}
.rs-courses-3 .course-item .course-toolbar .course-date,
.rs-courses-3 .course-item .course-toolbar .course-duration {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
}
.rs-courses-3 .course-item .course-toolbar .course-date i,
.rs-courses-3 .course-item .course-toolbar .course-duration i {
  margin-right: 3px;
}
.rs-courses-3 .course-item .course-toolbar .course-duration {
  margin-left: 12px;
}
.rs-courses-3 .course-item .course-body .course-title {
  font-size: 20px;
  margin-bottom: 7px;
}
.rs-courses-3 .course-item .course-body .course-title a {
  color: #212121;
}
.rs-courses-3 .course-item .course-body .course-title a:hover {
  color: rgba(33, 33, 33, 0.6);
}
.rs-courses-3 .course-item .course-body .course-desc {
  padding: 20px;
}
.rs-courses-3 .course-item .course-body .course-desc p {
  margin-bottom: 0;
  transition: all 0.35s ease 0s;
}
.rs-courses-3 .course-item:hover {
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.1);
}
.rs-courses-3 .course-item:hover .course-img:before {
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.rs-courses-3 .course-footer {
  padding: 15px 20px;
  background-color: #f0f0f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-weight: 600;
  font-size: 15px;
}
.rs-courses-3 .course-footer .course-button a {
  color: #505050;
  display: inline-block;
  position: relative;
  padding-right: 12px;
}
.rs-courses-3 .course-footer .course-button a:hover {
  color: #ff3115;
}
.rs-courses-3 .course-footer .course-button a:after {
  font-family: fontAwesome;
  content: "\f101";
  position: absolute;
  right: 0;
}
.rs-courses-3 .view-more {
  bottom: auto;
}
.rs-courses-list .course-item {
  margin-bottom: 40px;
}
.rs-courses-list .course-item .course-img {
  position: relative;
}
.rs-courses-list .course-item .course-img:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.8);
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.rs-courses-list .course-item .course-img .image-link {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  line-height: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: #ff3115;
  color: #ffffff;
  font-size: 18px;
  transform: translateX(-50%) translateY(-50%) scale(0.7);
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.rs-courses-list .course-item .course-img .image-link:hover {
  background-color: #e41f05;
}
.rs-courses-list .course-item .course-img:hover:before {
  opacity: 1;
}
.rs-courses-list .course-item .course-img:hover .image-link {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%) scale(1);
}
.rs-courses-list .course-category {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
}
.rs-courses-list .course-category a {
  color: #505050;
}
.rs-courses-list .course-title {
  font-size: 24px;
  margin-bottom: 7px;
}
.rs-courses-list .course-title a {
  color: #212121;
}
.rs-courses-list .course-title a:hover {
  color: #ff3115;
}
.rs-courses-list .course-date,
.rs-courses-list .course-value {
  display: inline-block;
  font-size: 14px;
  color: #777777;
  font-weight: 600;
}
.rs-courses-list .course-value {
  margin-left: 12px;
}
.rs-courses-list .course-value span {
  color: #ff3115;
}
.rs-courses-list .course-body {
  margin-top: 12px;
}
.rs-courses-list .course-button a {
  display: inline-block;
  height: 42px;
  line-height: 42px;
  text-align: center;
  min-width: 170px;
  padding: 0 20px;
  background-color: #ff3115;
  color: #fff;
  transition: all 0.3s ease 0s;
  font-weight: 500;
}
.rs-courses-list .course-button a:hover {
  background-color: #e41f05;
}
.gridFilter {
  margin-bottom: 35px;
}
.gridFilter button {
  background: transparent;
  border: 0;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  color: #505050;
  cursor: pointer;
}
.gridFilter button.active {
  color: #ff3115;
}
.gridFilter button + button {
  margin-left: 20px;
}
.rs-courses-categories .container {
  overflow: hidden;
}
.rs-courses-categories .container .col-lg-3 {
  margin-bottom: 30px;
}
.rs-courses-categories .courses-item {
  text-align: center;
  background-color: #f0f0f0;
  padding: 30px 30px 22px;
}
.rs-courses-categories .courses-item .courses-title {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 18px;
}
.rs-courses-categories .courses-item .courses-title a {
  color: #212121;
}
.rs-courses-categories .courses-item .courses-title a:hover {
  color: #ff3115;
}
.rs-courses-categories .courses-item .courses-amount {
  font-size: 13px;
  font-weight: 600;
  color: #505050;
}
.rs-courses-categories .courses-item i {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #273c8d;
  color: #ffffff;
  border-radius: 50%;
  font-size: 36px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
}
.rs-courses-categories .courses-item:hover {
  background-color: #d0d0d0;
}
.rs-courses-categories .courses-item:hover i {
  background-color: #212121;
  color: #273c8d;
  transform: rotate(360deg);
}
.rs-learning-objectives .container {
  overflow: hidden;
}
.rs-learning-objectives .container .col-lg-3 {
  margin-bottom: 30px;
}
.rs-learning-objectives .courses-item {
  text-align: center;
  padding: 65px 15px 15px;
  transition: 0.4s;
  padding: 65px 15px 15px;
  margin-bottom: 30px;
  transition: 0.4s;
  background-color: #FFFFFF;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0 2px 7px 0 rgba(0,0,0,0.5);
}
.rs-learning-objectives .courses-item:hover {
  text-align: center;
  padding: 65px 15px 15px;
  transition: 0.4s;
  padding: 65px 15px 15px;
  margin-bottom: 30px;
  transition: 0.4s;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0 2px 7px 0 rgba(0,0,0,0.5);
}
.rs-learning-objectives .courses-item .courses-title {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 18px;
}
.rs-learning-objectives .courses-item .courses-title a {
  color: #212121;
}
.rs-learning-objectives .courses-item .courses-title a:hover {
  color: #00bcd4;
}
.rs-learning-objectives .courses-item i {
  color: #00bcd4;
  font-size: 60px;
}
.rs-learning-objectives .courses-item:hover {
  border-color: #00bcd4;
}
.sidebar-area .title {
  font-size: 20px;
  color: #212121;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 25px;
}
.sidebar-area .search-box {
  margin-bottom: 45px;
}
.sidebar-area .search-box .form-control {
  border-radius: 0;
  box-shadow: none;
  color: #101010;
  padding: 5px 15px;
  height: 45px;
}
.sidebar-area .search-box .box-search {
  position: relative;
}
.sidebar-area .search-box .btn {
  position: absolute;
  right: 3px;
  background: transparent;
  border: none;
  box-shadow: none;
  top: 50%;
  outline: none;
  transform: translateY(-50%);
}
.sidebar-area .cate-box {
  margin-bottom: 45px;
}
.sidebar-area .cate-box ul {
  padding: 0;
  margin: 0;
}
.sidebar-area .cate-box ul li {
  list-style: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  cursor: pointer;
}
.sidebar-area .cate-box ul li a {
  color: #505050;
  padding: 0 0 0 5px;
}
.sidebar-area .cate-box ul li a span {
  float: right;
}
.sidebar-area .cate-box ul li:first-child {
  padding-top: 0;
}
.sidebar-area .cate-box ul li:hover i,
.sidebar-area .cate-box ul li:hover a {
  color: #ff3115;
}
.sidebar-area .latest-courses {
  margin-bottom: 45px;
}
.sidebar-area .latest-courses .post-item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}
.sidebar-area .latest-courses .post-item .post-img {
  width: 33.33%;
  transition: all 0.3s ease 0s;
  float: left;
}
.sidebar-area .latest-courses .post-item .post-desc {
  width: 66.66%;
  padding-left: 20px;
  float: left;
}
.sidebar-area .latest-courses .post-item .post-desc h4 {
  margin-bottom: 5px;
}
.sidebar-area .latest-courses .post-item .post-desc h4 a {
  font-size: 16px;
  color: #212121;
}
.sidebar-area .latest-courses .post-item .post-desc h4 a:hover {
  color: #ff3115;
}
.sidebar-area .latest-courses .post-item .post-desc .duration {
  font-weight: 600;
  color: #777777;
}
.sidebar-area .latest-courses .post-item .post-desc .price {
  margin-left: 8px;
  font-weight: 600;
  color: #777777;
}
.sidebar-area .latest-courses .post-item .post-desc .price span {
  color: #ff3115;
}
.sidebar-area .latest-courses .post-item + .post-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #ddd;
}
.sidebar-area .latest-courses .post-item:hover .post-img {
  opacity: 0.7;
}
.sidebar-area .tags-cloud {
  margin-bottom: 39px;
}
.sidebar-area .tags-cloud ul {
  padding: 0;
  margin: 0;
}
.sidebar-area .tags-cloud ul li {
  float: left;
  list-style: none;
}
.sidebar-area .tags-cloud ul li a {
  border: 1px solid #d7d7d7;
  padding: 5px 13px;
  margin: 0 6px 6px 0;
  display: block;
  color: #505050;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 28px;
}
.sidebar-area .tags-cloud ul li a:hover {
  background-color: #ff3115;
  border-color: #ff3115;
  color: #ffffff;
}
.sidebar-area .newsletter {
  background: #f0f0f0;
  text-align: center;
  padding: 30px 40px;
}
.sidebar-area .newsletter h4 {
  font-size: 20px;
  color: #212121;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin: 0;
}
.sidebar-area .newsletter p {
  font-size: 15px;
  color: #505050;
  margin: 7px 0 20px;
}
.sidebar-area .newsletter .box-newsletter {
  position: relative;
}
.sidebar-area .newsletter .box-newsletter .form-control {
  border-radius: 0;
  box-shadow: none;
  color: #212121;
  padding: 5px 20px;
  height: 50px;
  border-color: #ff3115;
}
.sidebar-area .newsletter .box-newsletter .btn {
  position: absolute;
  right: 3px;
  background: #ff3115;
  border: none;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color: #ffffff;
  display: block;
  padding: 11px 17px;
  border-radius: 0;
  text-align: center;
}
.sidebar-area .newsletter .box-newsletter .btn:hover {
  background: #e41f05;
}
.sidebar-area .course-features-info {
  margin-bottom: 20px;
  background: #212121;
  padding: 15px;
  color: #fff;
}
.sidebar-area .course-features-info .desc-title {
  color: #ff3115;
  margin: 10px 0 8px;
}
.sidebar-area .course-features-info ul li {
  display: block;
  overflow: hidden;
  padding: 10px 0;
}
.sidebar-area .course-features-info ul li + li {
  border-top: 1px solid #414141;
}
.sidebar-area .course-features-info ul li i {
  color: #ff3115;
}
.sidebar-area .course-features-info ul li .label {
  padding-left: 10px;
}
.sidebar-area .course-features-info ul li .value {
  float: right;
  padding-right: 5px;
}
.space-bt30 {
  margin-bottom: 30px;
}
.space-bt30 .event-item {
  margin-bottom: 0 !important;
}
.rs-search-courses {
  padding: 70px 0;
  position: relative;
  margin-top: -100px;
  z-index: 10;
}
.rs-search-courses:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  background-color: #212121;
  z-index: -1;
  display: block;
}
.rs-search-courses select,
.rs-search-courses button,
.rs-search-courses input {
  width: 100%;
  height: 60px;
  padding: 0 15px;
  color: #777;
  border: none;
}
.rs-search-courses ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */

  color: #000;
  opacity: 1 !important;
}
.rs-search-courses ::-moz-placeholder {
  /* Firefox 19+ */

  color: #777;
  opacity: 1 !important;
}
.rs-search-courses :-ms-input-placeholder {
  /* IE 10+ */

  color: #777;
  opacity: 1 !important;
}
.rs-search-courses :-moz-placeholder {
  /* Firefox 18- */

  color: #777;
  opacity: 1 !important;
}
.rs-search-courses select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
.rs-search-courses .categories,
.rs-search-courses .level {
  position: relative;
}
.rs-search-courses .categories:before,
.rs-search-courses .level:before {
  position: absolute;
  font-family: FontAwesome;
  content: "\f0d7";
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.rs-search-courses .search-btn button {
  background-color: #ff3115;
  border-color: #ff3115;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.rs-search-courses .search-btn button:hover,
.rs-search-courses .search-btn button:focus {
  background-color: #e41f05;
}
/* ------------------------------------
    10. Courses Details
---------------------------------------*/
.rs-courses-details .detail-img {
  position: relative;
  margin-bottom: 40px;
}
.rs-courses-details .detail-img img {
  transition: all 0.3s ease 0s;
}
.rs-courses-details .detail-img:hover img {
  opacity: 0.9;
}
.rs-courses-details .detail-img .course-seats {
  position: absolute;
  bottom: 25px;
  right: 25px;
  font-size: 15px;
  width: 78px;
  height: 78px;
  line-height: 21px;
  border-radius: 50%;
  text-align: center;
  background-color: #ff3115;
  color: #fff;
  font-weight: 600;
  padding-top: 18px;
}
.rs-courses-details .detail-img .course-seats span {
  display: block;
}
.rs-courses-details .detail-img .course-seats.price {
  right: auto;
  left: 25px;
  padding-top: 0;
  line-height: 78px;
}
.rs-courses-details .course-title {
  font-size: 24px;
  margin-bottom: 30px;
}
.rs-courses-details .course-instructor {
  padding: 20px 25px 16px;
  background-color: #f9f9f9;
  position: relative;
}
.rs-courses-details .course-instructor p {
  margin-bottom: 0;
}
.rs-courses-details .course-instructor .instructor-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
}
.rs-courses-details .instructor-inner {
  display: -webkit-flex;
  display: flex;
}
.rs-courses-details .instructor-inner .instructor-img img {
  height: 100px;
  width: 100px;
  transition: all 0.3s ease 0s;
}
.rs-courses-details .instructor-inner .instructor-img:hover img {
  opacity: 0.8;
}
.rs-courses-details .instructor-inner .instructor-body {
  padding-left: 18px;
}
.rs-courses-details .instructor-inner .instructor-body .name {
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 0;
}
.rs-courses-details .instructor-inner .instructor-body .designation {
  font-size: 14px;
  font-weight: 600;
}
.rs-courses-details .instructor-inner .instructor-body .social-icon {
  margin-top: 15px;
}
.rs-courses-details .instructor-inner .instructor-body .social-icon a i {
  font-size: 17px;
  margin-right: 6px;
}
.rs-courses-details .short-desc {
  margin-top: 15px;
}
.rs-courses-details .info-list {
  font-weight: 600;
  font-size: 15px;
}
.rs-courses-details .info-list ul li {
  color: #777777;
  margin-bottom: 6px;
}
.rs-courses-details .info-list ul li span {
  color: #212121;
}
.rs-courses-details .apply-btn {
  position: absolute;
  right: 16px;
  bottom: 10px;
}
.rs-courses-details .apply-btn a {
  display: inline-block;
  height: 42px;
  line-height: 42px;
  text-align: center;
  min-width: 147px;
  padding: 0 20px;
  background-color: #ff3115;
  color: #fff;
  transition: all 0.3s ease 0s;
  font-weight: 600;
}
.rs-courses-details .apply-btn a:hover {
  background-color: #e41f05;
}
.rs-courses-details .course-desc {
  margin-top: 30px;
}
.rs-courses-details .course-desc .desc-title {
  font-size: 19px;
  margin-bottom: 12px;
}
.rs-courses-details .course-desc .desc-text p {
  margin-bottom: 18px;
}
.rs-courses-details .course-desc .share-area {
  padding: 15px;
  border: 1px solid #ccc;
}
.rs-courses-details .course-desc .share-area h3 {
  margin-bottom: 0;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
}
.rs-courses-details .course-desc .share-area .share-inner {
  text-align: right;
}
.rs-courses-details .course-desc .share-area .share-inner a {
  display: inline-block;
  min-width: 88px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 13px;
  color: #505050;
  padding: 0 12px;
  font-weight: 600;
}
.rs-courses-details .course-desc .share-area .share-inner a + a {
  margin-left: 8px;
}
.rs-courses-details .course-desc .share-area .share-inner a:hover {
  border-color: #ff3115;
  color: #ff3115;
}
.rs-courses-details .course-desc .course-syllabus {
  padding: 15px 0 35px;
}
.rs-courses-details .course-desc .course-syllabus h3.desc-title {
  padding-bottom: 10px;
}
.rs-courses-details .course-desc .course-syllabus ul.syllabus {
  padding-left: 15px;
}
.rs-courses-details .course-desc .course-syllabus ul.syllabus li {
  display: block;
  padding-top: 6px;
}
.rs-courses-details .course-desc .course-syllabus ul.syllabus li strong {
  padding-right: 5px;
  display: block;
}
.rs-courses-details .course-desc .course-syllabus ul.syllabus li span {
  padding-left: 20px;
  position: relative;
}
.rs-courses-details .course-desc .course-syllabus ul.syllabus li span:before {
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 10px;
  left: 0;
  position: absolute;
  color: #505050;
  top: 0;
}
.rs-courses-details .rs-testimonial .testimonial-item {
  text-align: center;
}
.rs-courses-details .rs-testimonial .testimonial-item .testi-desc:after,
.rs-courses-details .rs-testimonial .testimonial-item .testi-desc:before {
  display: none;
}
.rs-courses-details .rs-testimonial .testimonial-item .cl-client-rating i {
  color: #ffaa30;
}
.rs-courses-details ul.course-meta-style li {
  float: left;
  padding-right: 30px;
  position: relative;
}
.rs-courses-details ul.course-meta-style li:before {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  width: 1px;
  height: 40px;
  background: #e1e1e1;
}
.rs-courses-details ul.course-meta-style li:last-child {
  padding-right: 0;
}
.rs-courses-details ul.course-meta-style li:last-child:before {
  display: none;
}
.rs-courses-details ul.course-meta-style li.author {
  overflow: hidden;
}
.rs-courses-details ul.course-meta-style li.author .author-name,
.rs-courses-details ul.course-meta-style li.author .image {
  float: left;
}
.rs-courses-details ul.course-meta-style li.author .author-name {
  padding-left: 15px;
}
.rs-courses-details ul.course-meta-style li a {
  color: #212121;
  font-weight: 600;
}
.rs-courses-details ul.course-meta-style li i {
  color: #ffaa30;
}
.rs-courses-details .btn-area {
  text-align: right;
}
.rs-courses-details .btn-area a {
  background: #ff3115;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  padding: 10px 20px;
}
.rs-courses-details .btn-area a:hover {
  background: #e41f05;
}
.rs-courses-details .course-des-tabs {
  margin-top: 15px;
}
.rs-courses-details .course-des-tabs .tab-btm .tabs-cyan {
  margin: 0;
  border: 0;
}
.rs-courses-details .course-des-tabs .tab-btm .tabs-cyan .nav-item {
  width: 25%;
}
.rs-courses-details .course-des-tabs .tab-btm .tabs-cyan .nav-item a {
  border: 1px solid #eee;
  background: #f9f9f9;
  border-right: 0;
  color: #212121;
  font-weight: 600;
}
.rs-courses-details .course-des-tabs .tab-btm .tabs-cyan .nav-item a.active {
  position: relative;
  background: #fff;
  border-bottom: none;
  color: #ff3115;
}
.rs-courses-details .course-des-tabs .tab-btm .tabs-cyan .nav-item a.active:before {
  content: '';
  position: absolute;
  left: 0;
  right: 3px;
  top: 0;
  height: 2px;
  z-index: 10;
  width: 100%;
  background: #ff3115;
}
.rs-courses-details .course-des-tabs .tab-btm .tabs-cyan .nav-item:last-child a {
  border-right: 1px solid #eee;
}
.rs-courses-details .course-des-tabs .tab-content {
  border-radius: 0;
  border: 1px solid #eee;
  border-top: 0;
  padding: 60px 30px;
}
.rs-courses-details .course-des-tabs .tab-content .tab-pane h4.desc-title {
  padding-bottom: 15px;
  position: relative;
}
.rs-courses-details .course-des-tabs .tab-content .tab-pane h4.desc-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
  background: #ff3115;
}
.rs-courses-details .course-des-tabs .tab-content .tab-pane ul.requirements-list li {
  position: relative;
  padding-left: 20px;
}
.rs-courses-details .course-des-tabs .tab-content .tab-pane ul.requirements-list li:before {
  border: none;
  color: #ff3115;
  content: "\f101";
  font-family: fontawesome;
  font-size: 14px !important;
  font-size: 9px;
  margin-right: 10px;
  padding: 0;
  left: 0;
  position: absolute;
  top: 1px;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list {
  overflow: hidden;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .image {
  float: left;
  padding-right: 20px;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .author-name {
  overflow: hidden;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .author-name h4 {
  margin: 0 0 5px;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .author-name span {
  margin: 0 0 10px;
  display: block;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .author-name i {
  color: #ffaa30;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list p.dsc {
  display: block;
  clear: both;
  padding-top: 15px;
  margin-bottom: 0;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .social-icon li {
  display: inline-block;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .social-icon li a {
  display: block;
  background: #ff3115;
  padding: 3px 0;
  width: 40px;
  text-align: center;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .social-icon li a i {
  color: #fff;
}
.rs-courses-details .course-des-tabs .tab-content .instructor-list .social-icon li a:hover {
  background: #ff3115;
}
/* ------------------------------------
    11. Rs-counter
---------------------------------------*/
.rs-counter-style7 .rs-counter-list {
  display: flex;
  text-align: left;
}
.rs-counter-style7 .rs-counter-list .icon-part {
  margin-top: 30px;
  margin-right: 25px;
}
.rs-counter-style7 .rs-counter-list .icon-part i:before {
  font-size: 60px;
  color: #ff3115;
}
.rs-counter-style7 .rs-counter-list .text-part .counter-number {
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 6px;
}
.rs-counter-style7 .rs-counter-list .text-part .counter-desc {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0;
  font-size: 20px;
  text-transform: uppercase;
}
.rs-counter-style8 .rs-counter-list {
  display: flex;
  text-align: left;
}
.rs-counter-style8 .rs-counter-list .icon-part {
  margin-top: 30px;
  margin-right: 20px;
}
.rs-counter-style8 .rs-counter-list .icon-part i:before {
  font-size: 60px;
  color: #ff3115;
}
.rs-counter-style8 .rs-counter-list .text-part .counter-number {
  font-size: 45px;
  color: #212121;
  margin: 0;
  padding-bottom: 10px;
}
.rs-counter-style8 .rs-counter-list .text-part .counter-desc {
  font-size: 20px;
  color: #505050;
}
/* ------------------------------------
    11. OUR BEST
---------------------------------------*/
.rs-our-best .rs-calltoaction .sub-title {
  display: block;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ff3115;
}
.rs-our-best .rs-calltoaction .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: #212121;
  margin: 0;
}
.rs-our-best .rs-calltoaction .desc {
  font-size: 15px;
  line-height: 27px;
  color: #505050;
  margin: 0;
}
/* ------------------------------------
    11. Rs-counter
---------------------------------------*/
.rs-counter .rs-counter-list {
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
  text-align: center;
  padding: 23px;
  transition: .3s all ease;
}
.rs-counter .rs-counter-list .counter-number {
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 6px;
}
.rs-counter .rs-counter-list .counter-desc {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0;
  font-size: 20px;
  text-transform: uppercase;
}
.rs-counter .rs-counter-list:hover {
  border-color: #ff3115;
}
.rs-counter .counter-title {
  color: #fff;
  font-size: 30px;
  line-height: 28px;
  margin-bottom: 25px;
}
.rs-counter .counter-text p {
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.6);
}
.rs-counter .counter-img {
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}
.rs-counter .counter-img img {
  border-radius: 8px;
}
.rs-counter-style2 .rs-counter-list {
  border: none;
  padding: 0;
}
.rs-counter-style2 .count-icon i {
  font-size: 60px;
  color: #ff3115;
}
.home5 .rs-counter .rs-counter-list {
  border-radius: 30px;
  border: none;
  background: #273c8d;
}
.home5 .rs-counter .rs-counter-list .counter-number {
  color: #fff;
}
.home5 .rs-counter .rs-counter-list:hover {
  border-color: #273c8d;
}
.home5 .rs-counter .rs-counter-list.blue-color {
  background: #269aa9;
}
.home5 .rs-counter .rs-counter-list.orange-color {
  background: #fcd032;
}
.home5 .rs-counter .rs-counter-list.red-color {
  background: #91bf52;
}
/* ------------------------------------
    12. Upcoming Events
---------------------------------------*/
.rs-events .event-item .event-img {
  margin-bottom: 20px;
}
.rs-events .event-item .event-date {
  font-size: 14px;
  font-weight: 500;
}
.rs-events .event-item .event-date i {
  font-size: 13px;
  display: inline-block;
  margin-right: 5px;
  color: #ff3115;
}
.rs-events .event-item .event-date span {
  color: #505050;
}
.rs-events .event-item .event-title {
  font-size: 20px;
  margin-bottom: 8px;
  margin-top: 4px;
}
.rs-events .event-item .event-title a {
  color: #212121;
}
.rs-events .event-item .event-title a:hover {
  color: #ff3115;
}
.rs-events .event-item .event-meta {
  font-size: 14px;
}
.rs-events .event-item .event-meta > div {
  display: inline-block;
}
.rs-events .event-item .event-meta > div i {
  font-size: 14px;
  display: inline-block;
  margin-right: 3px;
  color: #ff3115;
}
.rs-events .event-item .event-meta .event-time {
  margin-right: 10px;
}
.rs-events .event-item .event-btn {
  margin-top: 18px;
}
.rs-events .event-item .event-btn a {
  font-weight: 500;
}
.rs-events-2 .event-item {
  margin-bottom: 30px;
  background: #f9f9f9;
  border: none;
}
.rs-events-2 .event-item .row {
  margin: 0;
}
.rs-events-2 .event-item [class*="col-"] {
  padding: 0;
}
.rs-events-2 .event-item .event-content {
  padding: 15px 20px 20px 0;
}
.rs-events-2 .event-item .event-img {
  margin: -1px 0 -1px -1px;
  margin-right: 20px;
  transition: all 0.3s ease 0s;
}
.rs-events-2 .event-item .event-img:hover {
  opacity: 0.8;
}
.rs-events-2 .event-item .event-location {
  font-size: 13px;
}
.rs-events-2 .event-item .event-location i {
  font-size: 14px;
  display: inline-block;
  margin-right: 5px;
  color: #ff3115;
}
.rs-events-2 .event-item .event-location span {
  color: #505050;
}
.rs-events-2 .event-item .event-title {
  font-size: 18px;
  margin-bottom: 4px;
  margin-top: 1px;
  line-height: 25px;
  font-weight: 600;
  text-transform: capitalize;
}
.rs-events-2 .event-item .event-title a {
  color: #212121;
}
.rs-events-2 .event-item .event-meta {
  font-size: 13px;
}
.rs-events-2 .event-item .event-meta > div {
  display: inline-block;
}
.rs-events-2 .event-item .event-meta > div i {
  font-size: 15px;
  display: inline-block;
  margin-right: 3px;
  color: #ff3115;
}
.rs-events-2 .event-item .event-meta .event-time {
  margin-left: 10px;
}
.rs-events-2 .event-item .event-desc {
  margin-top: 7px;
}
.rs-events-2 .event-item .event-desc p {
  margin-bottom: 15px;
}
.rs-events-2 .event-item .event-btn a {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  min-width: 130px;
  padding: 0 15px;
  background: #ff3115;
  color: #fff;
  transition: all 0.3s ease 0s;
  font-weight: 600;
}
.rs-events-2 .event-item .event-btn a:hover {
  background-color: #e41f05;
  color: #fff;
}
.home5 .event-item .event-date {
  max-width: 170px;
  margin: 0 auto;
  height: 30px;
  background: #273c8d;
  margin-top: -32px;
  position: relative;
  top: -13px;
  border-radius: 15px 15px 0 0;
  padding-top: 2px;
  text-align: center;
}
.home5 .event-item .event-date i,
.home5 .event-item .event-date span {
  color: #fff;
}
.home5 .red-color .event-date {
  background: #91bf52;
}
.home5 .orange-color .event-date {
  background: #fcd032;
}
.home5 .blue-color .event-date {
  background: #00bcd4;
}
.rs-event-details #googleMap {
  height: 270px;
  margin-bottom: 30px;
}
.rs-event-details .event-title {
  font-size: 24px;
  margin-bottom: 6px;
}
.rs-event-details .event-title a {
  color: #212121;
}
.rs-event-details .event-title a:hover {
  color: #ff3115;
}
.rs-event-details .event-meta {
  margin-top: 10px;
  margin-bottom: 30px;
}
.rs-event-details .event-meta > div {
  display: inline-block;
  color: #666;
}
.rs-event-details .event-meta > div + div {
  margin-left: 14px;
}
.rs-event-details .event-meta > div i {
  margin-right: 3px;
  color: #ff3115;
}
.rs-event-details .event-img {
  margin-bottom: 25px;
}
.rs-event-details .share-area .share-inner {
  text-align: right;
}
.rs-event-details .share-area .share-inner span {
  display: inline-block;
  margin-right: 5px;
  color: #101010;
  font-weight: 600;
}
.rs-event-details .share-area .share-inner a i {
  border: 1px solid #ddd;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #212121;
  transition: all 0.3s ease 0s;
}
.rs-event-details .share-area .share-inner a i:hover {
  border-color: #ff3115;
  color: #ff3115;
}
.rs-event-details .share-area .book-btn a {
  display: inline-block;
  height: 40px;
  line-height: 36px;
  text-align: center;
  min-width: 147px;
  padding: 0 20px;
  border: 2px solid #ff3115;
  color: #212121;
  transition: all 0.3s ease 0s;
  font-weight: 600;
}
.rs-event-details .share-area .book-btn a:hover {
  background-color: #ff3115;
  color: #ffffff;
}
/* ------------------------------------
    14. Countdown
---------------------------------------*/
.rs-latest-news-style7 .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: #212121;
  margin: 0;
}
.rs-latest-news-style7 .rs-latest-list {
  padding: 50px;
  background: #fff;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.rs-latest-news-style7 .rs-latest-list .latest-wrap .news-list-block .news-list-item {
  display: flex;
  align-items: center;
}
.rs-latest-news-style7 .rs-latest-list .latest-wrap .news-list-block .news-list-item .news-img {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 30px;
}
.rs-latest-news-style7 .rs-latest-list .latest-wrap .news-list-block .news-list-item .news-img img {
  border-radius: 6px;
}
.rs-latest-news-style7 .rs-latest-list .latest-wrap .news-list-block .news-list-item .news-content .news-date span {
  font-size: 15px;
  color: #505050;
  font-weight: 500;
  line-height: 26px;
  display: block;
  padding-bottom: 8px;
}
.rs-latest-news-style7 .rs-latest-list .latest-wrap .news-list-block .news-list-item .news-content .news-title {
  font-size: 20px;
  margin-bottom: 0px;
  font-weight: 600;
  padding-bottom: 18px;
}
.rs-latest-news-style7 .rs-latest-list .latest-wrap .news-list-block .news-list-item .news-content .news-title a {
  color: #212121;
}
.rs-latest-news-style7 .rs-latest-list .latest-wrap .news-list-block .news-list-item .news-content .news-title a:hover {
  color: #ff3115;
}
.rs-latest-news-style7 .rs-latest-list .event-item-new {
  display: flex;
}
.rs-latest-news-style7 .rs-latest-list .event-item-new .event-date {
  margin-right: 30px;
  min-width: 125px;
  border-radius: 10px;
  height: 110px;
  background: #f2f2f2;
  text-align: center;
  display: table;
}
.rs-latest-news-style7 .rs-latest-list .event-item-new .event-date .vertical-align {
  display: table-cell;
  vertical-align: middle;
}
.rs-latest-news-style7 .rs-latest-list .event-item-new .event-date .vertical-align .day {
  font-size: 50px;
  font-weight: 600;
  color: #ff3115;
  margin: 0 0 6px;
  line-height: 40px;
  display: block;
}
.rs-latest-news-style7 .rs-latest-list .event-item-new .event-date .vertical-align .month {
  font-size: 20px;
  color: #505050;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
}
.rs-latest-news-style7 .rs-latest-list .event-item-new .event-des .title {
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 15px;
}
.rs-latest-news-style7 .rs-latest-list .event-item-new .event-des .title a {
  color: #212121;
}
.rs-latest-news-style7 .rs-latest-list .event-item-new .event-des .title a:hover {
  color: #ff3115;
}
.rs-latest-news-style7 .rs-latest-list .event-item-new .event-des p {
  font-size: 15px;
  color: #505050;
  line-height: 27px;
  margin: 0;
}
/* ------------------------------------
    14. PUBLICATION
---------------------------------------*/
.rs-our-publication .owl-stage-outer {
  padding-bottom: 30px;
}
.rs-our-publication .inner-shadow {
  padding: 0 2px;
}
.rs-our-publication .inner-shadow .product-item {
  box-shadow: 0 0 3px #ccc;
  text-align: center;
  transition: all .3s ease 0s;
  background-color: #fff;
  padding-bottom: 40px;
}
.rs-our-publication .inner-shadow .product-item .img-box {
  overflow: hidden;
  margin-bottom: 32px;
}
.rs-our-publication .inner-shadow .product-item .img-box img {
  transform: scale(1);
  transition: all 0.3s ease 0s;
}
.rs-our-publication .inner-shadow .product-item .content-part .product-title {
  font-size: 20px;
  margin-bottom: 3px;
}
.rs-our-publication .inner-shadow .product-item .content-part .product-title a {
  color: #212121;
}
.rs-our-publication .inner-shadow .product-item .content-part .product-title a:hover {
  color: #ff3115;
}
.rs-our-publication .inner-shadow .product-item .content-part .product-price {
  margin-bottom: 20px;
  font-size: 16px;
  color: #444;
  display: block;
}
.rs-our-publication .inner-shadow .product-item .content-part .product-btn a {
  background: #ff3115;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 30px;
  text-transform: uppercase;
}
.rs-our-publication .inner-shadow .product-item .content-part .product-btn a:hover {
  color: #ffffff;
  background: #e41f05;
}
.rs-our-publication .inner-shadow:hover .product-item {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.rs-our-publication .inner-shadow:hover .product-item .img-box img {
  transform: scale(1.1);
}
/* ------------------------------------
    14. Countdown
---------------------------------------*/
.rs-countdown-part .countdown-part .sub-title {
  display: block;
  font-size: 18px;
  line-height: 34px;
  color: #ff3115;
  font-weight: 600;
}
.rs-countdown-part .countdown-part .title {
  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
  color: #ffffff;
}
.rs-countdown-part .countdown-part .description {
  font-size: 15px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
}
.rs-countdown-part .countdown-part .counter-wrap {
  max-width: 550px;
}
.rs-countdown-part .countdown-part .counter-wrap .timecounter-inner .time_circles {
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
}
.rs-countdown-part .countdown-part .counter-wrap .timecounter-inner .time_circles canvas {
  opacity: 1;
}
.rs-countdown-part .countdown-part .counter-wrap .timecounter-inner .time_circles div {
  position: absolute;
  text-align: left;
  padding-right: 0;
}
.rs-countdown-part .countdown-part .counter-wrap .timecounter-inner .time_circles div span {
  padding: 0;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 40px !important;
  margin: 0 0 9px 0;
  color: #ff3115;
}
.rs-countdown-part .countdown-part .counter-wrap .timecounter-inner .time_circles div h4 {
  color: #ffffff;
  margin: 0;
  padding: 0;
  text-align: center;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 17px;
  font-size: 12px !important;
}
.rs-countdown-part .register-form {
  background: #fff;
}
.rs-countdown-part .register-form .form-title {
  position: relative;
  padding: 30px 65px 36px;
  margin-bottom: 50px;
}
.rs-countdown-part .register-form .form-title .title {
  font-weight: 400;
  color: #fff;
  position: relative;
  z-index: 10;
  line-height: 1.4;
  font-size: 22px;
}
.rs-countdown-part .register-form .form-title:after {
  position: absolute;
  height: 100%;
  width: 100%;
  clip-path: polygon(-115.5% 0, 113% 0, 76% 100%);
  left: 0;
  background-color: #ff3115;
  top: 0;
  content: "";
}
.rs-countdown-part .register-form .form-group {
  padding: 0 50px 5px;
}
.rs-countdown-part .register-form .form-group .from-control {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 3px;
  height: 50px;
  line-height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 15px;
  padding: 10px 14px;
  border: 1px solid rgba(54, 54, 54, 0.1);
  outline: 0;
}
.rs-countdown-part .register-form .form-group input[type=submit] {
  width: 100%;
  margin-bottom: 50px;
  border-radius: 3px;
  height: 50px;
  line-height: 50px;
  -webkit-appearance: button;
  cursor: pointer;
  background: #ff3115;
  border: 0;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  outline: 0;
}
.rs-countdown-part .register-form .form-group input[type=submit]:hover {
  color: #ffffff;
  background: #e41f05;
}
.rs-countdown-part .register-form .form-group .select-option {
  position: relative;
}
.rs-countdown-part .register-form .form-group .select-option select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: #b1b1b1;
  opacity: 1;
  z-index: 11;
  position: relative;
}
.rs-countdown-part .register-form .form-group .select-option:after {
  content: '\f107';
  font-family: FontAwesome;
  color: #b1b1b1;
  right: 15px;
  position: absolute;
  top: 11px;
  z-index: 12;
  font-size: 22px;
  pointer-events: none;
}
/* ------------------------------------
    13. Team Member
---------------------------------------*/
.rs-team-style7 .owl-stage-outer {
  padding-bottom: 30px;
}
.rs-team-style7 .item .item-team .team-img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  position: relative;
}
.rs-team-style7 .item .item-team .team-img:after {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: .3s all ease;
  position: absolute;
  opacity: 0;
}
.rs-team-style7 .item .item-team .team-img .social-icon {
  width: 240px;
  height: 55px;
  background: #ff3115;
  line-height: 58px;
  text-align: center;
  border-radius: 5px 5px 0 0;
  bottom: -50px;
  position: absolute;
  margin: 0 auto;
  visibility: hidden;
  transition: 0.3s;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.rs-team-style7 .item .item-team .team-img .social-icon a {
  background: #ff3115;
  line-height: 58px;
  text-align: center;
  border-radius: 5px 5px 0 0;
  margin: 0 15px;
}
.rs-team-style7 .item .item-team .team-img .social-icon a i {
  color: #ffffff;
  margin: 4px;
}
.rs-team-style7 .item .item-team .team-img .social-icon a i:hover {
  color: #212121;
}
.rs-team-style7 .item .item-team .team-content {
  border-radius: 0 0 10px 10px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.06);
  text-align: center;
}
.rs-team-style7 .item .item-team .team-content .team-name {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
}
.rs-team-style7 .item .item-team .team-content .team-name a {
  color: #212121;
}
.rs-team-style7 .item .item-team .team-content .team-name a:hover {
  color: #ff3115;
}
.rs-team-style7 .item .item-team .team-content .sub-title {
  font-size: 14px;
  line-height: 27px;
  font-weight: 400;
  color: #505050;
  display: block;
}
.rs-team-style7 .item .item-team:hover .team-img:after {
  opacity: 1;
}
.rs-team-style7 .item .item-team:hover .team-img .social-icon {
  bottom: 0;
  visibility: visible;
}
/* ------------------------------------
    13. Team Member
---------------------------------------*/
.rs-team-style8 .owl-stage-outer {
  padding-bottom: 10px;
}
.rs-team-style8 .item .item-team .team-img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  position: relative;
}
.rs-team-style8 .item .item-team .team-img:after {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: .3s all ease;
  position: absolute;
  opacity: 0;
}
.rs-team-style8 .item .item-team .team-img .social-icon {
  width: 240px;
  height: 55px;
  line-height: 58px;
  text-align: center;
  border-radius: 5px 5px 0 0;
  bottom: -50px;
  position: absolute;
  margin: 0 auto;
  visibility: hidden;
  transition: 0.3s;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.rs-team-style8 .item .item-team .team-img .social-icon a {
  margin: 4px;
  color: #fff;
}
.rs-team-style8 .item .item-team .team-img .social-icon a i {
  color: #ffffff;
  margin: 4px;
}
.rs-team-style8 .item .item-team .team-img .social-icon a i:hover {
  color: #212121;
}
.rs-team-style8 .item .item-team .team-content {
  border-radius: 0 0 10px 10px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.06);
  text-align: center;
}
.rs-team-style8 .item .item-team .team-content .team-name {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
}
.rs-team-style8 .item .item-team .team-content .team-name a {
  color: #212121;
}
.rs-team-style8 .item .item-team .team-content .team-name a:hover {
  color: #ff3115;
}
.rs-team-style8 .item .item-team .team-content .sub-title {
  font-size: 14px;
  line-height: 27px;
  font-weight: 600;
  color: #505050;
  display: block;
}
.rs-team-style8 .item .item-team:hover .team-img:after {
  opacity: 1;
}
.rs-team-style8 .item .item-team:hover .team-img .social-icon {
  bottom: 0;
  visibility: visible;
}
/* ------------------------------------
    13. Experienced Staffs
---------------------------------------*/
.rs-team .team-item {
  position: relative;
  overflow: hidden;
}
.rs-team .team-item .team-img {
  position: relative;
}
.rs-team .team-item .team-img .normal-text {
  position: absolute;
  bottom: 0;
  padding: 10px 20px;
  min-width: 175px;
  background-color: rgba(34, 34, 34, 0.8);
  transition: .3s ease all;
}
.rs-team .team-item .team-img .normal-text .team-name {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  display: block;
}
.rs-team .team-item .team-img .normal-text .subtitle {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  display: block;
}
.rs-team .team-item .team-img img {
  width: 100%;
}
.rs-team .team-item .team-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10%;
  left: 0;
  text-align: center;
  z-index: 11;
  padding: 30px;
  opacity: 0;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}
.rs-team .team-item .team-content:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
  -webkit-transition: .25s opacity ease;
  transition: .25s opacity ease;
}
.rs-team .team-item .team-name {
  margin-bottom: 2px;
}
.rs-team .team-item .team-name a {
  margin-bottom: 6px;
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  position: relative;
  z-index: 111;
}
.rs-team .team-item .team-name a:hover {
  color: #fff;
}
.rs-team .team-item .team-title {
  position: relative;
  z-index: 111;
  font-size: 14px;
  color: #fff;
  padding-bottom: 12px;
}
.rs-team .team-item .team-title:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #ff3115;
  content: "";
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.rs-team .team-item .team-desc {
  color: #fff;
  margin-bottom: 0;
  padding-top: 12px;
  margin-top: 15px;
}
.rs-team .team-item .team-social {
  position: relative;
  width: 100%;
  text-align: center;
  z-index: 111;
  opacity: 0;
  margin-top: 25px;
  -webkit-transition: .4s all ease;
  transition: .4s all ease;
}
.rs-team .team-item .team-social .social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #ff3115;
  margin-right: 6px;
  border-radius: 50%;
}
.rs-team .team-item .team-social .social-icon i {
  font-size: 14px;
  color: #fff;
}
.rs-team .team-item .team-social .social-icon:hover {
  background-color: #e41f05;
}
.rs-team .team-item:hover .team-content {
  opacity: 1;
  top: 0;
}
.rs-team .team-item:hover .team-social {
  opacity: 1;
}
.rs-team .team-item:hover .normal-text {
  opacity: 0;
  visibility: hidden;
}
.rs-team-2 .team-item {
  margin-bottom: 30px;
}
.rs-team-2 .team-item .team-img {
  position: relative;
  overflow: hidden;
}
.rs-team-2 .team-item .team-img .social-icon {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: .8s all ease;
}
.rs-team-2 .team-item .team-img .social-icon a i {
  margin-right: 8px;
  font-size: 20px;
}
.rs-team-2 .team-item .team-img:before {
  content: '';
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: transparent;
  border: 5px solid rgba(255, 255, 255, 0.7);
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: .5s all ease;
}
.rs-team-2 .team-item .team-img:hover .social-icon {
  opacity: 1;
  visibility: visible;
}
.rs-team-2 .team-item .team-img:hover .social-icon a:hover {
  color: #fff;
}
.rs-team-2 .team-item .team-img:hover:before {
  transform: translateX(-50%) translateY(-50%) rotate(-270deg);
  border: 0;
  background: rgba(33, 33, 33, 0.8);
}
.rs-team-2 .team-item .team-body {
  padding: 18px;
  text-align: center;
  background-color: #f0f0f0;
}
.rs-team-2 .team-item .team-body .name {
  font-size: 20px;
  margin-bottom: 2px;
  color: #212121;
  transition: all 0.3s ease 0s;
}
.rs-team-2 .team-item .team-body .name:hover {
  color: #ff3115;
}
.rs-team-2 .team-item .team-body .designation {
  font-size: 15px;
}
.rs-team-2.team-page {
  padding-top: 93px;
}
.rs-team-2 .row.grid {
  min-height: 400px !important;
  overflow: hidden;
}
.team-all .row {
  margin-bottom: 30px;
}
.team-all .row .team-item {
  margin-bottom: 0;
}
.home5 .rs-team .team-item {
  margin-bottom: 30px;
  overflow: inherit;
}
.home5 .rs-team .team-item .team-desc {
  font-size: 14px;
  line-height: 22px;
}
.home5 .rs-team .team-item .team-social .social-icon {
  background: #273c8d;
}
.home5 .rs-team .team-item .team-social .social-icon:hover {
  background: #5d0b5b;
}
.home5 .rs-team .team-item .team-img .normal-text {
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  text-align: center;
  border-radius: 30px;
  width: 200px;
  padding: 15px 0 0;
  height: 70px;
  bottom: -30px;
}
.pagination {
  margin-top: 25px;
}
.pagination .page-item > * {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  padding: 0;
  font-weight: 600;
  color: #505050;
  outline: none;
}
.pagination .page-item > *:hover,
.pagination .page-item > *.active {
  color: #ff3115;
}
.pagination .page-item > *.dotted {
  line-height: 40px;
}
/* ------------------------------------
    14. Staffs Single
---------------------------------------*/
.rs-team-single .team-name {
  font-size: 30px;
  margin-bottom: 10px;
}
.rs-team-single .team-title {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 5px;
}
.rs-team-single .team-title span {
  display: block;
}
.rs-team-single .team-contact {
  margin-bottom: 15px;
}
.rs-team-single .team-icons {
  padding: 30px;
  text-align: center;
}
.rs-team-single .team-icons a {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #f0f0f0;
  margin-right: 15px;
  border-radius: 2px;
  transition: all 0.3s ease 0s;
}
.rs-team-single .team-icons a:hover {
  background-color: #ff3115;
  color: #fff;
}
.rs-team-single .rs-progress {
  height: 8px;
  border: 1px solid #ff3115;
  border-radius: 0;
  overflow: visible;
  padding: 1px;
  background: #fff;
  margin-top: 25px;
}
.rs-team-single .rs-progress + .rs-progress {
  margin-top: 50px;
}
.rs-team-single .rs-progress .progress-bar {
  position: relative;
  text-align: left;
  line-height: 4px;
  border-radius: 0;
  box-shadow: none;
  background-color: #ff3115;
}
.rs-team-single .rs-progress .progress-bar .pb-label {
  position: absolute;
  left: 0px;
  top: -24px;
  color: #666;
  font-size: 15px;
  font-weight: 600;
}
.rs-team-single .rs-progress .progress-bar .pb-percent {
  position: absolute;
  right: -13px;
  font-weight: 500;
  color: #fff;
  font-size: 10px;
  top: -30px;
  background: #ff3115;
  padding: 8px 5px;
}
.rs-team-single .rs-progress .progress-bar .pb-percent:after {
  content: '';
  position: absolute;
  border: 5px solid transparent;
  left: 50%;
  border-top-color: #ff3115;
  top: 20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
/* ------------------------------------
    15. Calltoaction
---------------------------------------*/
.rs-calltoaction .cta-content .cta-subtitle {
  margin-bottom: 10px;
  color: #ff3115;
}
.rs-calltoaction .cta-content .cta-title {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 32px;
}
.rs-calltoaction .cta-content p {
  color: #ffffff;
}
.rs-calltoaction .cta-button {
  display: inline-block;
  text-decoration: none;
  background-color: #ff3115;
  color: #ffffff;
  font-weight: 500;
  min-width: 170px;
  line-height: 45px;
  height: 45px;
  text-align: center;
  text-transform: uppercase;
}
.rs-calltoaction .cta-button:hover,
.rs-calltoaction .cta-button:focus,
.rs-calltoaction .cta-button:active {
  background-color: #e41f05;
  color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.04);
}
.rs-webdevelopment-course .cta-subtitle {
  margin-bottom: 10px;
  color: #ff3115;
}
.rs-webdevelopment-course .cta-title {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 32px;
}
.rs-webdevelopment-course .cta-button {
  display: inline-block;
  text-decoration: none;
  background-color: #ff3115;
  color: #ffffff;
  font-weight: 500;
  min-width: 170px;
  line-height: 45px;
  height: 45px;
  text-align: center;
  text-transform: uppercase;
}
.rs-webdevelopment-course .cta-button:hover,
.rs-webdevelopment-course .cta-button:focus,
.rs-webdevelopment-course .cta-button:active {
  background-color: #e41f05;
  color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.04);
}
/* ------------------------------------
    16. Latest News
---------------------------------------*/
.rs-latest-news .news-normal-block {
  padding: 15px;
  border: 1px solid rgba(34, 34, 34, 0.1);
  transition: all 0.3s ease 0s;
}
.rs-latest-news .news-normal-block:hover {
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.rs-latest-news .news-normal-block .news-img {
  margin-bottom: 20px;
}
.rs-latest-news .news-normal-block .news-img img {
  width: 100%;
}
.rs-latest-news .news-normal-block .news-date {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}
.rs-latest-news .news-normal-block .news-date i {
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-right: 4px;
  color: #ff3115;
}
.rs-latest-news .news-normal-block .news-date span {
  color: #505050;
}
.rs-latest-news .news-normal-block .news-title {
  font-size: 32px;
  margin-bottom: 12px;
  text-align: center;

}
.rs-latest-news .news-normal-block .news-title a {
  color: #212121;
}
.rs-latest-news .news-normal-block .news-title a:hover,
.rs-latest-news .news-normal-block .news-title a:focus {
  color: #ff3115;
}
.rs-latest-news .news-normal-block .news-desc p {
  margin-bottom: 20px;
}
.rs-latest-news .news-normal-block .news-btn a {
  display: inline-block;
  margin-left: auto;
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  background-color: #ff3115;
  color: #fff;
}
.rs-latest-news .news-normal-block .news-btn a:hover {
  background-color: #e41f05;
}
.rs-latest-news .news-list-block {
  overflow: hidden;
}
.rs-latest-news .news-list-block .news-list-item {
  overflow: hidden;
  padding: 15px;
  border: 1px solid rgba(34, 34, 34, 0.1);
  transition: all 0.3s ease 0s;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.rs-latest-news .news-list-block .news-list-item:hover {
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.rs-latest-news .news-list-block .news-list-item + .news-list-item {
  margin-top: 23px;
}
.rs-latest-news .news-list-block .news-list-item .news-img {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-right: 15px;
  float: left;
}
.rs-latest-news .news-list-block .news-list-item .news-content {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  float: left;
}
.rs-latest-news .news-list-block .news-list-item .news-date {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.rs-latest-news .news-list-block .news-list-item .news-date i {
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-right: 4px;
  color: #ff3115;
}
.rs-latest-news .news-list-block .news-list-item .news-date span {
  color: #505050;
}
.rs-latest-news .news-list-block .news-list-item .news-title {
  font-size: 16px;
  margin-bottom: 7px;
}
.rs-latest-news .news-list-block .news-list-item .news-title a {
  color: #212121;
}
.rs-latest-news .news-list-block .news-list-item .news-title a:hover,
.rs-latest-news .news-list-block .news-list-item .news-title a:focus {
  color: #ff3115;
}
.rs-latest-news .news-list-block .news-list-item .news-btn a {
  display: inline-block;
  margin-left: auto;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background-color: #ff3115;
  color: #fff;
}
.rs-latest-news .news-list-block .news-list-item .news-btn a:hover {
  background-color: #e41f05;
}
.rs-latest-news .news-list-block .news-list-item .news-desc p {
  margin-bottom: 0;
}
.latest-news-slider .slick-arrow {
  position: absolute;
  z-index: 11;
  bottom: 0;
  right: -104px;
  height: 42px;
  width: 42px;
  font-size: 0;
  border: 0;
  background-color: rgba(0, 0, 0, 0.1);
  color: #ff3115;
  cursor: pointer;
  outline: 0;
  border-radius: 50%;
  transition: all 0.3s ease 0s;
  line-height: 0;
}
.latest-news-slider .slick-arrow:after {
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 22px;
}
.latest-news-slider .slick-arrow.slick-prev:after {
  content: "\f104";
}
.latest-news-slider .slick-arrow.slick-next {
  right: -160px;
}
.latest-news-slider .slick-arrow.slick-next:after {
  content: "\f105";
}
.latest-news-slider .slick-arrow:hover {
  background-color: #ff3115;
  color: #fff;
}
.latest-news-nav .slick-track {
  width: 100% !important;
}
.latest-news-nav .slick-slide {
  width: 100% !important;
  margin-bottom: 12px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid rgba(34, 34, 34, 0.1);
  padding: 8px;
  transition: all 0.3s ease 0s;
}
.latest-news-nav .slick-slide.slick-current,
.latest-news-nav .slick-slide:hover {
  background-color: #ff3115;
  border-color: #ff3115;
}
.latest-news-nav .slick-slide.slick-current img,
.latest-news-nav .slick-slide:hover img {
  opacity: 0.8;
}
/* ------------------------------------
    17. Our Publications
---------------------------------------*/
.rs-products .owl-stage-outer {
  padding-bottom: 30px;
}
.rs-products .product-item {
  text-align: center;
  transition: all 0.3s ease 0s;
  background-color: #ffffff;
}
.rs-products .product-item:hover {
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.rs-products .product-item .product-img {
  margin-bottom: 17px;
  overflow: hidden;
}
.rs-products .product-item .product-img img {
  width: 100%;
  transition: all 0.3s ease 0s;
}
.rs-products .product-item .product-img:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.rs-products .product-item .product-title {
  font-size: 20px;
  margin-bottom: 3px;
}
.rs-products .product-item .product-title a {
  color: #212121;
}
.rs-products .product-item .product-title a:hover,
.rs-products .product-item .product-title a:focus,
.rs-products .product-item .product-title a:active {
  color: #ff3115;
}
.rs-products .product-item .product-price {
  font-size: 16px;
  color: #444;
  display: block;
}
.rs-products .product-item .product-btn {
  margin-top: 20px;
  padding-bottom: 25px;
}
.rs-products .product-item .product-btn a {
  display: inline-block;
  margin-left: auto;
  padding: 2px 15px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #212121;
  color: #212121;
}
.rs-products .product-item .product-btn a:hover {
  border-color: #ff3115;
  background-color: #ff3115;
  color: #fff;
}
.rs-products .view-btn {
  text-align: center;
  margin-top: 20px;
}
.rs-products .view-btn a {
  display: inline-block;
  margin-left: auto;
  min-width: 170px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background-color: #ff3115;
  color: #fff;
}
.rs-products .view-btn a:hover {
  background-color: #e41f05;
}
/* ------------------------------------
    18. Testimonial
---------------------------------------*/
.rs-testimonial .owl-stage-outer {
  padding-top: 50px;
  padding-bottom: 55px;
}
.rs-testimonial .testimonial-item {
  padding: 35px;
  background-color: #ffffff;
}
.rs-testimonial .testimonial-item .testi-img {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 110px;
  height: 110px;
  padding: 5px;
  background: #fff;
  border-radius: 50%;
}
.rs-testimonial .testimonial-item .testi-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.rs-testimonial .testimonial-item .testi-desc {
  padding: 42px 0;
  position: relative;
}
.rs-testimonial .testimonial-item .testi-desc .testi-name {
  font-size: 20px;
  margin-bottom: 10px;
}
.rs-testimonial .testimonial-item .testi-desc p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}
.rs-testimonial .testimonial-item .testi-desc:before,
.rs-testimonial .testimonial-item .testi-desc:after {
  position: absolute;
  font-family: FontAwesome;
  font-size: 26px;
  color: #ff3115;
}
.rs-testimonial .testimonial-item .testi-desc:before {
  content: "\f10d";
  top: 0;
  left: 0;
}
.rs-testimonial .testimonial-item .testi-desc:after {
  content: "\f10e";
  bottom: 0;
  right: 0;
}
.rs-testimonial .owl-dots {
  position: absolute;
  left: 50%;
  bottom: -8px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.rs-testimonial .owl-dots .owl-dot {
  height: 6px;
  width: 22px;
  background-color: #fff;
  display: inline-block;
  transition: all 0.3s ease 0s;
}
.rs-testimonial .owl-dots .owl-dot + .owl-dot {
  margin-left: 8px;
}
.rs-testimonial .owl-dots .owl-dot.active {
  background-color: #ff3115;
}
.rs-testimonial .owl-dots .owl-dot:first-child {
  border-radius: 3px 0 0 3px;
}
.rs-testimonial .owl-dots .owl-dot:last-child {
  border-radius: 0 3px 3px 0;
}
.rs-testimonial-2 .owl-stage-outer {
  padding-top: 55px;
  padding-bottom: 30px;
}
.rs-testimonial-2 .testimonial-item {
  padding: 35px;
  background-color: #f0f0f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin: 0 3px;
}
.rs-testimonial-2 .testimonial-item .testi-img {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 110px;
  height: 110px;
  padding: 5px;
  background: #fff;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
.rs-testimonial-2 .testimonial-item .testi-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.rs-testimonial-2 .testimonial-item .testi-desc {
  padding: 42px 0;
  position: relative;
}
.rs-testimonial-2 .testimonial-item .testi-desc .testi-name {
  font-size: 20px;
  margin-bottom: 15px;
}
.rs-testimonial-2 .testimonial-item .testi-desc p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}
.rs-testimonial-2 .testimonial-item .testi-desc:before,
.rs-testimonial-2 .testimonial-item .testi-desc:after {
  position: absolute;
  font-family: FontAwesome;
  font-size: 26px;
  color: #ff3115;
}
.rs-testimonial-2 .testimonial-item .testi-desc:before {
  content: "\f10d";
  top: 0;
  left: 0;
}
.rs-testimonial-2 .testimonial-item .testi-desc:after {
  content: "\f10e";
  bottom: 0;
  right: 0;
}
.rs-testimonial-2 .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.rs-testimonial-2 .owl-dots .owl-dot {
  height: 6px;
  width: 22px;
  background-color: #fff;
  display: inline-block;
  transition: all 0.3s ease 0s;
}
.rs-testimonial-2 .owl-dots .owl-dot + .owl-dot {
  margin-left: 8px;
}
.rs-testimonial-2 .owl-dots .owl-dot.active {
  background-color: #ff3115;
}
.rs-testimonial-2 .owl-dots .owl-dot:first-child {
  border-radius: 3px 0 0 3px;
}
.rs-testimonial-2 .owl-dots .owl-dot:last-child {
  border-radius: 0 3px 3px 0;
}
.rs-testimonial-3 .testimonial-style3 {
  padding-top: 70px;
  margin: 50px 0 0;
  border: 1px solid #e0e0e0;
  text-align: center;
  position: relative;
  transition: all 0.7s ease 0s;
  background: #e0e0e0;
}
.rs-testimonial-3 .testimonial-style3:hover {
  border-color: #ff3115;
}
.rs-testimonial-3 .testimonial-style3:hover .image {
  border-color: #ff3115;
}
.rs-testimonial-3 .testimonial-style3:hover .testimonial-content {
  background-color: #ff3115;
}
.rs-testimonial-3 .testimonial-style3:hover .testimonial-content .testimonial-profile .name {
  color: #fff;
}
.rs-testimonial-3 .testimonial-style3:hover .testimonial-content .testimonial-profile .post {
  color: lightblue;
}
.rs-testimonial-3 .testimonial-style3:hover .testimonial-content .social-links li {
  background-color: #fff;
}
.rs-testimonial-3 .testimonial-style3:hover .testimonial-content .social-links li a {
  color: #ff3115;
}
.rs-testimonial-3 .testimonial-style3 .image {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
  transition: all 0.7s ease 0s;
  border: 5px solid #f2f2f2;
}
.rs-testimonial-3 .testimonial-style3 .image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.rs-testimonial-3 .testimonial-style3 .title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
.rs-testimonial-3 .testimonial-style3 .description {
  font-size: 15px;
  color: #000;
  line-height: 25px;
  padding: 0 25px 15px;
  margin: 0;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content {
  padding: 15px 25px;
  border-top: none;
  text-align: center;
  transition: all 500ms ease 0s;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .testimonial-profile .name {
  font-size: 16px;
  font-weight: bold;
  color: #ff3115;
  text-transform: uppercase;
  margin-bottom: 5px;
  margin-top: 0;
  transition: all 700ms ease 0s;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .testimonial-profile .post {
  font-size: 14px;
  color: #000;
  margin-bottom: 5px;
  text-transform: capitalize;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .rating {
  display: inline-block;
  margin-bottom: 14px;
  margin-top: 0;
  list-style: none;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .rating li {
  display: inline-block;
  font-size: 14px;
  color: #debe0f;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .social-links {
  padding: 0;
  margin: 0;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .social-links li {
  list-style: none;
  margin-right: 5px;
  display: inline-block;
  background-color: #7f352f;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .social-links li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  text-align: center;
}
.rs-testimonial-3 .testimonial-style3 .testimonial-content .social-links li a:hover {
  text-decoration: none;
  color: #150504;
}
.rs-testimonial-3 .owl-theme .owl-controls {
  width: 100%;
  position: absolute;
  top: 50%;
}
.rs-testimonial-3 .owl-theme .owl-controls .owl-buttons div {
  width: 45px;
  height: 40px;
  line-height: 37px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #ececec;
  padding: 0;
  opacity: 1;
  transition: all 0.4s ease-in-out 0s;
}
.rs-testimonial-3 .owl-theme .owl-controls .owl-buttons div:hover {
  background: #eabd44;
  border-color: #eabd44;
}
.rs-testimonial-3 .owl-prev,
.rs-testimonial-3 .owl-next {
  position: absolute;
  left: -3%;
}
.rs-testimonial-3 .owl-next {
  left: auto;
  right: -3%;
}
.rs-testimonial-3 .owl-prev:before {
  content: "\f104";
  font-family: "fontAwesome";
  font-size: 25px;
  color: #ececec;
}
.rs-testimonial-3 .owl-next:before {
  content: "\f105";
  font-family: "fontAwesome";
  font-size: 25px;
  color: #ececec;
}
.rs-testimonial-3 .owl-stage-outer {
  padding-top: 50px;
  padding-bottom: 60px;
}
.rs-testimonial-5 .testimonial-item {
  background: #273c8d;
  border-radius: 30px;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 45px 35px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}
.rs-testimonial-5 .testimonial-item .testi-img {
  top: -125px;
}
.rs-testimonial-5 .testimonial-item .testi-desc {
  padding: 0 30px;
}
.rs-testimonial-5 .testimonial-item .testi-desc .testi-name {
  font-size: 20px;
  margin-top: 4px;
}
.rs-testimonial-5 .testimonial-item .testi-desc .testi-name span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  padding-top: 5px;
}
.rs-testimonial-5 .testimonial-item .testi-desc:before,
.rs-testimonial-5 .testimonial-item .testi-desc .testi-name,
.rs-testimonial-5 .testimonial-item .testi-desc .testi-name span,
.rs-testimonial-5 .testimonial-item .testi-desc p {
  color: #fff;
}
.rs-testimonial-5 .testimonial-item .testi-desc:before {
  display: none;
}
.rs-testimonial-5 .testimonial-item .testi-desc:after {
  display: none;
}
.rs-testimonial-5 .owl-stage-outer {
  padding-top: 125px;
  padding-bottom: 35px;
}
.rs-testimonial-5 .owl-dots .owl-dot.active {
  background: #273c8d;
}
/* ------------------------------------
    19. Newsletter
---------------------------------------*/
.rs-newslatter .newslatter-title {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 30px;
}
.rs-newslatter .newslatter-form .form-input {
  width: calc(69% - 25px);
  height: 50px;
  padding: 0 17px;
  border: 0;
  font-size: 16px;
  margin-right: 25px;
}
.rs-newslatter .newslatter-form .form-button {
  width: 30%;
  height: 50px;
  border: 0;
  background-color: #ff3115;
  color: #ffffff;
  cursor: pointer;
  font-weight: 500;
}
.rs-newslatter .newslatter-form .form-button:hover {
  background-color: #e41f05;
}
/* ------------------------------------
    20. Rs-video
---------------------------------------*/
.rs-video {
  padding: 150px 0;
  position: relative;
}
.rs-video:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.rs-video .video-content {
  text-align: center;
  position: relative;
  z-index: 11;
}
.rs-video .video-content a {
  display: inline-block;
  color: #ffffff;
  z-index: 99;
  border: 2px solid #ff3115;
  border-radius: 50%;
  width: 124px;
  height: 124px;
  margin: 0 auto;
  padding: 5px;
  margin-bottom: 30px;
}
.rs-video .video-content a i {
  font-size: 50px;
  line-height: 110px;
  border: 2px solid #fff;
  height: 110px;
  width: 110px;
  border-radius: 50%;
  text-align: center;
  color: #ff3115;
  display: block;
  background: #fff;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  margin-bottom: 24px;
  padding-left: 4px;
}
.rs-video .video-content a:hover i {
  border-color: #ff3115;
  background: transparent;
}
.rs-video .video-content span {
  display: block;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}
/* ------------------------------------
    21. Why Choose Us
---------------------------------------*/
.rs-why-choose .sec-title {
  margin-bottom: 44px;
}
.rs-why-choose .choose-item {
  text-align: center;
}
.rs-why-choose .choose-item .choose-title {
  font-size: 15px;
  margin-bottom: 0;
  margin-top: 25px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.rs-why-choose .choose-item i {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #19c3d8;
  color: #ffffff;
  border-radius: 50%;
  font-size: 36px;
}
/* ------------------------------------
    22. Pricing Table
---------------------------------------*/
.rs-pricing .pricing-plan {
  text-align: center;
  margin-bottom: 30px;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}
.rs-pricing .pricing-plan .pricing-head {
  background-color: #f0f0f0;
  padding: 35px;
  border-radius: 4px 4px 0px 0px;
}
.rs-pricing .pricing-plan .pricing-head .name {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  line-height: normal;
  margin-bottom: 10px;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
}
.rs-pricing .pricing-plan .pricing-head .price {
  color: #444;
}
.rs-pricing .pricing-plan .pricing-head .price sup {
  font-size: 20px;
  line-height: 40px;
  top: -3px;
  margin-right: -7px;
  vertical-align: top;
  font-weight: 700;
}
.rs-pricing .pricing-plan .pricing-head .price .duration {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.rs-pricing .pricing-plan .pricing-head .value {
  font-size: 60px;
  line-height: 60px;
}
.rs-pricing .pricing-plan .pricing-body ul {
  padding-left: 0;
  list-style: none;
  font-size: 13px;
  color: #444;
  margin: 0;
}
.rs-pricing .pricing-plan .pricing-body ul li {
  padding: 15px 0;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #303030;
}
.rs-pricing .pricing-plan .pricing-body ul li:nth-child(even) {
  background-color: #f0f0f0;
  padding: 20px 0;
}
.rs-pricing .pricing-plan .pricing-footer .pricing-btn {
  display: block;
  padding: 20px;
  background-color: #212121;
  color: #fff;
  font-size: 15px;
  border-radius: 0 0 4px 4px;
  font-weight: 600;
}
.rs-pricing .pricing-plan:hover .pricing-head .price,
.rs-pricing .pricing-plan.featured .pricing-head .price,
.rs-pricing .pricing-plan:hover .pricing-head .name,
.rs-pricing .pricing-plan.featured .pricing-head .name {
  color: #ff3115;
}
.rs-pricing .pricing-plan:hover .pricing-footer .pricing-btn,
.rs-pricing .pricing-plan.featured .pricing-footer .pricing-btn {
  background-color: #ff3115;
}
.rs-pricing .pricing-plan:hover .pricing-footer .pricing-btn:hover,
.rs-pricing .pricing-plan.featured .pricing-footer .pricing-btn:hover {
  background-color: #e41f05;
}
/* ------------------------------------
    23. Instagram
---------------------------------------*/
.rs-instagram {
  position: relative;
}
.rs-instagram .instagram-desc {
  max-width: 630px;
  background: #ff3115;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 70px 0;
  z-index: 10;
  text-align: center;
}
.rs-instagram .instagram-desc .title {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 10px;
}
.rs-instagram .instagram-desc .sub-title {
  font-size: 30px;
  color: #101010;
  margin-bottom: 0;
}
.rs-instagram .instagram-item {
  margin-left: -1px;
}
.rs-instagram .instagram-item a {
  display: block;
  position: relative;
}
.rs-instagram .instagram-item a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.5);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.rs-instagram .instagram-item:hover a:after {
  opacity: 0;
}
.rs-instagram .rs-carousel:last-child {
  margin-top: -1px;
}
/* ------------------------------------
    24. About Us Page
---------------------------------------*/
.abt-title h2 {
  font-size: 30px;
  line-height: normal;
  margin-bottom: 20px;
  padding-bottom: 16px;
  text-transform: uppercase;
  position: relative;
  color: #00bcd4;
}
.abt-title h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 100px;
  background-color: #00bcd4;
}
.abt-title.text-center h2:after {
  left: 50%;
  transform: translateX(-50%);
}
.rs-vision .vision-img {
  position: relative;
}
.rs-vision .vision-img:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(33, 33, 33, 0.5);
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.rs-vision .vision-img:hover:after {
  opacity: 1;
}
.rs-vision .vision-img .popup-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.rs-vision .vision-img .popup-youtube:after {
  position: absolute;
  font-family: FontAwesome;
  content: "\f04b";
  font-size: 36px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s ease 0s;
  display: inline-block;
  height: 80px;
  line-height: 80px;
  width: 80px;
  text-align: center;
  border: 3px solid #fff;
  border-radius: 50%;
  padding-left: 8px;
  color: #fff;
}
.rs-branches .branches-item {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.rs-branches .branches-item img {
  margin-bottom: 15px;
}
.rs-branches .branches-item h3 {
  font-size: 20px;
  margin-bottom: 7px;
}
.rs-branches .branches-item h3 span {
  display: block;
}
.rs-branches .branches-item p {
  margin-bottom: 0;
}
.rs-branches [class*="col-"] + [class*="col-"] .branches-item:after {
  position: absolute;
  content: '';
  width: 64%;
  height: 2px;
  background-color: #ff3115;
  left: -38%;
  top: 70px;
}
/* ------------------------------------
    25. Rs Timeline
---------------------------------------*/
.rs-timeline .rs-timeline-icon i {
  color: #ff3115;
}
.rs-timeline .rs-timeline-content .rs-read-more {
  border-color: #ff3115;
  color: #ff3115;
}
.rs-timeline .rs-timeline-content .rs-read-more:hover {
  background-color: #ff3115;
  color: #ffffff;
}
.rs-timeline .rs-timeline-content .rs-date {
  color: #ff3115;
}
.rs-timeline-2 {
  position: relative;
  padding-bottom: 40px;
}
.rs-timeline-2 .arrows {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.rs-timeline-2 .arrows button {
  height: 42px;
  width: 42px;
  font-size: 0;
  margin: 0 5px;
  border: 0;
  background-color: #212121;
  color: #ff3115;
  cursor: pointer;
  outline: 0;
  border-radius: 50%;
  transition: all 0.3s ease 0s;
}
.rs-timeline-2 .arrows button:hover {
  background-color: #ff3115;
  color: #fff;
}
.rs-timeline-2 .arrows button:after {
  font-family: FontAwesome;
  font-size: 22px;
  margin-top: 5px;
  display: inline-block;
}
.rs-timeline-2 .arrows button.arrow__prev:after {
  content: "\f104";
}
.rs-timeline-2 .arrows button.arrow__next:after {
  content: "\f105";
}
.rs-timeline-2 ol li:not(:last-child)::after {
  background: #ff3115;
}
/* ------------------------------------
    26. Elements
---------------------------------------*/
.rs-accordion-style1 .card {
  border: 0;
}
.rs-accordion-style1 .card .card-header {
  padding: 0;
  border: 0;
  margin-bottom: 10px;
  background: transparent;
}
.rs-accordion-style1 .card .card-header .acdn-title {
  background-color: rgba(240, 240, 240, 0.8);
  position: relative;
  margin-bottom: 0;
  font-size: 18px;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.2px;
  -webkit-transition: 0.2s background-color ease-in-out;
  transition: 0.2s background-color ease-in-out;
}
.rs-accordion-style1 .card .card-header .acdn-title:after {
  position: absolute;
  font-family: FontAwesome;
  content: "\f0da";
  right: 20px;
  transition: all 0.3s ease 0s;
}
.rs-accordion-style1 .card .card-header .acdn-title:not(.collapsed) {
  background-color: #ff3115;
  color: #ffffff;
}
.rs-accordion-style1 .card .card-header .acdn-title:not(.collapsed):after {
  transform: rotate(90deg);
  color: #ffffff;
}
.rs-accordion-style1 .card .card-body {
  padding: 5px 15px 18px;
}
/* ------------------------------------
    27. Blog Pages
---------------------------------------*/
.blog-page-area .blog-inner {
  overflow: hidden;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
}
.blog-page-area .blog-inner .blog-content {
  margin-top: 6px;
}
.blog-page-area .blog-inner .blog-content .date {
  font-size: 13px;
  font-weight: 600;
}
.blog-page-area .blog-inner .blog-content ul.blog-meta {
  margin: 0 0 10px;
}
.blog-page-area .blog-inner .blog-content ul.blog-meta li {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #ff3115;
  padding-right: 10px;
}
.blog-page-area .blog-inner .blog-content ul.blog-meta li:last-child {
  padding-right: 0;
}
.blog-page-area .blog-inner .blog-content ul.blog-meta li i {
  font-size: 13px;
}
.blog-page-area .blog-inner .blog-content ul.blog-meta li a {
  display: block;
}
.blog-page-area .blog-inner .blog-content p {
  font-size: 15px;
}
.blog-page-area .blog-inner .blog-content h4 {
  margin: 0 0 8px;
}
.blog-page-area .blog-inner .blog-content h4 a {
  font-size: 20px;
  font-weight: 700;
  color: #212121;
}
.blog-page-area .blog-inner .blog-content a.primary-btn {
  margin-top: 12px;
}
.blog-page-area .blog-inner .blog-images {
  overflow: hidden;
  position: relative;
}
.blog-page-area .blog-inner .blog-images i {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  /* IE 9 */

  -webkit-transform: translate(-50%, -50%);
  /* Safari */

  transform: translate(-50%, -50%);
  z-index: 99;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 100%;
  border: 1px solid #ff3115;
  color: #ff3115;
  opacity: 0;
}
.blog-page-area .blog-inner .blog-images:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  transform: scale(0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
}
.blog-page-area .blog-inner .blog-images img {
  transform: scale(1);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  width: 100%;
}
.blog-page-area .blog-inner:hover .blog-images i {
  opacity: 1;
}
.blog-page-area .blog-inner:hover .blog-images img {
  transform: scale(1.1);
  transition: all 0.3s ease 0s;
}
.blog-page-area .blog-inner:hover .blog-images:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  transform: scale(1) !important;
  -webkit-transform: scale(1) !important;
  ms-transform: scale(1) !important;
}
.blog-page-area .blog-inner:hover .blog-content h4 a {
  color: #ff3115;
}
.blog-page-area .pagination {
  margin-top: 0;
}
/* ------------------------------------
    28 .Blog Details 
---------------------------------------*/
.single-blog-details .single-image {
  margin-bottom: 25px;
  overflow: hidden;
}
.single-blog-details .single-image img {
  filter: grayscale(0%);
  transition: all 0.8s ease-in-out 0s;
}
.single-blog-details .single-image img:hover {
  filter: grayscale(100%);
  transform: scale(1.1);
}
.single-blog-details .like-section h5,
.single-blog-details h5.top-title {
  font-size: 16px;
  color: #212121;
  margin: 20px 0 15px;
  padding: 0;
  line-height: 25px;
}
.single-blog-details .like-section h5 a {
  color: #212121;
}
.single-blog-details .like-section h5 a:hover {
  color: #ff3115;
}
.single-blog-details h3.top-title,
.single-blog-details .like-section h3.title-bg {
  font-size: 20px;
}
.single-blog-details .like-section span.date {
  font-size: 12px;
}
.single-blog-details blockquote {
  background: #f0f0f0;
  border: medium none;
  margin: 25px 0 25px;
  padding: 24px 25px 24px 63px;
  font-size: 16px;
  color: #212121;
  font-style: italic;
  position: relative;
  font-weight: 400;
}
.single-blog-details blockquote i {
  position: absolute;
  left: 22px;
  font-size: 25px;
  top: 21px;
}
.single-blog-details h2 {
  font-size: 20px;
  margin: 0 0 25px;
}
.single-blog-details .share-section {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  padding-bottom: 20px;
}
.single-blog-details .share-section .share-link1 {
  padding: 0;
  margin: 0;
  float: right;
}
.single-blog-details .share-section .share-link1 li {
  float: left;
  list-style: none;
}
.single-blog-details .share-section .share-link1 li:first-child a {
  margin-left: 0;
}
.single-blog-details .share-section .share-link1 li a {
  padding: 7px 8px;
  border: 1px solid #ddd;
  font-size: 13px;
  font-weight: 400;
  color: #505050;
  border-radius: 4px;
  margin-left: 14px;
}
.single-blog-details .share-section .share-link1 li a:hover {
  background: #ff3115;
  color: #212121;
  border: 1px solid #ff3115;
}
.single-blog-details .share-section .share-link1 li:first-child a {
  background: #ff3115;
  color: #212121;
  border: 1px solid #ff3115;
}
.single-blog-details .share-section .life-style span {
  font-size: 13px;
  font-weight: 400;
  color: #505050;
  margin-right: 12px;
}
.single-blog-details .share-section .life-style span:last-child {
  margin-right: 0;
}
.single-blog-details .share-section .life-style span i {
  margin-right: 4px;
}
.single-blog-details .share-section .life-style span a {
  font-size: 13px;
  font-weight: 400;
  color: #505050;
}
.single-blog-details .share-section .life-style span a i {
  font-size: 13px;
  margin-right: 4px;
}
.single-blog-details .share-section .life-style span a:hover {
  color: #ff3115;
}
.single-blog-details .share-section .life-style span.author a {
  color: #777777;
}
.single-blog-details .share-section .life-style span.author a:hover {
  color: #ff3115;
}
.single-blog-details .share-section2 {
  border: 1px solid #ddd;
  padding: 15px 15px 15px 15px;
}
.single-blog-details .share-section2 span {
  font-size: 15px;
  font-weight: 400;
  color: #212121;
}
.single-blog-details .share-section2 .share-link {
  float: right;
}
.single-blog-details .share-section2 .share-link li {
  float: left;
  list-style: none;
}
.single-blog-details .share-section2 .share-link li:first-child a {
  margin-left: 0;
}
.single-blog-details .share-section2 .share-link li a {
  font-size: 13px;
  font-weight: 400;
  color: #505050;
  padding: 7px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-left: 14px;
}
.single-blog-details .share-section2 .share-link li a:hover {
  background: #ff3115;
  color: #fff;
  border: 1px solid #ff3115;
}
.single-blog-details .like-section .col-xs-12 h3 {
  margin: 14px 0 6px;
}
.single-blog-details .like-section .col-xs-12 h3 a {
  font-size: 15px;
  font-weight: 400;
  color: #212121;
}
.single-blog-details .like-section .col-xs-12 span {
  font-size: 13px;
  font-weight: 400;
}
.single-blog-details .like-section .col-xs-12 span i {
  font-size: 13px;
}
.single-blog-details .like-section .col-xs-12 .popular-post-img img {
  transition: all 0.3s ease 0s;
}
.single-blog-details .like-section .col-xs-12:hover a {
  color: #ff3115;
}
.single-blog-details .like-section .col-xs-12:hover .popular-post-img img {
  opacity: .5;
}
.single-blog-details .next-pre-section {
  padding: 23px 0 15px;
  margin: 0;
  overflow: hidden;
}
.single-blog-details .next-pre-section li {
  margin: 0;
}
.single-blog-details .next-pre-section li a {
  font-size: 15px;
  color: #505050;
}
.single-blog-details .next-pre-section li a i {
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  color: #212121;
}
.single-blog-details .next-pre-section li a:hover {
  color: #ff3115;
}
.single-blog-details .next-pre-section li a:hover i {
  color: #ff3115;
}
.single-blog-details .next-pre-section li.left-arrow {
  float: left;
  width: 50%;
}
.single-blog-details .next-pre-section li.left-arrow a {
  font-size: 15px;
  font-weight: 500;
  color: #505050;
}
.single-blog-details .next-pre-section li.left-arrow a i {
  padding-right: 5px;
}
.single-blog-details .next-pre-section li.right-arrow {
  float: right;
  width: 50%;
  text-align: right;
}
.single-blog-details .next-pre-section li.right-arrow a {
  font-size: 15px;
  font-weight: 500;
}
.single-blog-details .next-pre-section li.right-arrow a i {
  padding-left: 5px;
}
.single-blog-details .author-comment h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 42px 0 6px;
}
.single-blog-details .author-comment span {
  font-size: 13px;
  font-weight: 500;
}
.single-blog-details .author-comment span a {
  font-size: 13px;
  font-weight: 500;
}
.single-blog-details .author-comment span i {
  font-size: 13px;
}
.single-blog-details .author-comment h4 {
  font-size: 15px;
  font-weight: 700;
}
.single-blog-details .author-comment ul {
  padding: 0;
  margin: 0;
}
.single-blog-details .author-comment ul li {
  margin: 0 0 2px;
  padding: 20px 22px;
  border-bottom: 1px solid #ddd;
}
.single-blog-details .author-comment ul li:nth-child(2) {
  margin-left: 100px;
}
.single-blog-details .author-comment ul li:nth-child(2) .col-sm-2 {
  padding: 0;
}
.single-blog-details .author-comment ul li:last-child {
  border-bottom: none;
}
.single-blog-details .author-comment ul li .image-comments {
  margin-top: 0;
}
.single-blog-details .author-comment ul li .image-comments img {
  width: 90px;
  border-radius: 100%;
}
.single-blog-details .author-comment ul li .reply {
  display: block;
  position: absolute;
  text-align: right;
  width: 95%;
}
.single-blog-details .author-comment ul li .reply a {
  color: #212121;
}
.single-blog-details .author-comment ul li .reply a:hover {
  color: #ff3115;
}
.single-blog-details .author-comment ul li .reply i {
  color: #212121;
}
.single-blog-details .author-comment ul li .dsc-comments h4 {
  margin: 0 0 12px;
}
.single-blog-details .author-comment ul li .dsc-comments a {
  color: #ff3115;
}
.single-blog-details .author-comment ul li .dsc-comments p {
  margin: 6px 0 0;
}
.single-blog-details .leave-comments-area {
  padding-top: 20px;
}
.single-blog-details .leave-comments-area .form-group {
  margin-bottom: 20px;
}
.single-blog-details .leave-comments-area h4 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 19px;
  font-family: 'Roboto Condensed', sans-serif;
}
.single-blog-details .leave-comments-area label {
  color: #505050;
  font-weight: normal;
  letter-spacing: 1px;
}
.single-blog-details .leave-comments-area input,
.single-blog-details .leave-comments-area textarea {
  background: transparent;
  border: 1px solid #ddd;
  box-shadow: none;
  border-radius: 0;
  height: 45px;
  width: 100%;
}
.single-blog-details .leave-comments-area textarea {
  height: 150px;
  width: 100%;
  max-width: 100%;
}
.single-blog-details .leave-comments-area .btn-send {
  background: #ff3115;
  font-weight: 600;
  color: #ffffff;
  font-size: 15px;
  line-height: 24px;
  border: none;
  border-radius: 0px;
  padding: 14px 23px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 14px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.single-blog-details .leave-comments-area .btn-send:hover {
  background: #212121;
  color: #ffffff;
}
/* ------------------------------------
    29. Shop Page Start Here 
---------------------------------------*/
.shop-page-area.single-product-page {
  padding: 100px 0 0;
}
.shop-page-area .single-details {
  padding: 0 0 35px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease 0s;
  margin-bottom: 15px;
}
.shop-page-area .single-details .triangle_left {
  width: 0;
  height: 0;
  border-top: 70px solid transparent;
  border-right: 140px solid #ff3115;
  border-bottom: 70px solid transparent;
  position: absolute;
  top: -75px;
  left: -117px;
  transform: rotate(48deg);
  opacity: 0;
}
.shop-page-area .single-details:hover {
  background: #f5f5f5;
}
.shop-page-area .single-details:hover .triangle_left {
  opacity: 1;
}
.shop-page-area .single-details:hover h3 a {
  color: #ff3115;
}
.shop-page-area .single-details:hover .add-to-cart {
  background: #ff3115;
  color: #fff !important;
}
.shop-page-area .single-details:hover .images .overley {
  opacity: 1;
  transform: scaleY(1);
}
.shop-page-area .single-details .images {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}
.shop-page-area .single-details .images a {
  display: block;
}
.shop-page-area .single-details .images a img {
  transition: all 0.3s ease-out;
  width: 100%;
}
.shop-page-area .single-details .images .overley {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  transform: scaleY(0);
  transform-origin: 0 1 0;
  opacity: 0;
  transition: all 0.3s ease 0s;
  padding: 30px;
}
.shop-page-area .single-details .images .overley .winners-details {
  padding: 20% 0;
}
.shop-page-area .single-details .images .overley .winners-details h4 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  color: #ffffff;
  font-size: 18px;
  position: relative;
}
.shop-page-area .single-details .images .overley .winners-details h4:after {
  display: none;
}
.shop-page-area .single-details .images .overley .winners-details .product-info {
  margin: 0;
  padding: 0px;
  list-style: none;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  transition: all .9s;
  text-align: center;
  left: 0;
  right: 0;
}
.shop-page-area .single-details .images .overley .winners-details .product-info li {
  display: inline-block;
}
.shop-page-area .single-details .images .overley .winners-details .product-info li a {
  color: #ffffff;
  text-transform: capitalize;
  text-decoration: none;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #ffffff;
  text-align: center;
  transition: all 0.3s ease 0s;
}
.shop-page-area .single-details .images .overley .winners-details .product-info li a:hover {
  color: #ff3115;
  border: 1px solid #ff3115;
}
.shop-page-area .single-details .images .overley .winners-details .product-info li a i {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  transition: all 0.3s ease 0s;
}
.shop-page-area .single-details .images .overley .winners-details .product-info li a i:hover {
  color: #ff3115;
}
.shop-page-area .single-details .images .overley .winners-details p {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 13px;
}
.shop-page-area .single-details .images .overley .winners-details p i {
  color: #ffffff;
  margin-right: 8px;
}
.shop-page-area .single-details h4 {
  margin-bottom: 10px !important;
  margin-left: 0;
  font-weight: 700;
}
.shop-page-area .single-details h4 a {
  color: #212121;
  transition: all 0.3s ease 0s;
  font-size: 20px;
  margin: 0;
}
.shop-page-area .single-details h4 a:hover {
  color: #ff3115;
}
.shop-page-area .single-details .price-details ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
.shop-page-area .single-details .price-details ul li {
  display: block;
}
.shop-page-area .single-details .price-details ul li:first-child {
  font-weight: 600;
  font-size: 15px;
}
.shop-page-area .single-details .price-details ul li:first-child del {
  margin-right: 5px;
  font-weight: 400;
  font-size: 15px;
}
.shop-page-area .single-details .price-details ul li .add-to-cart {
  border: 1px solid #ff3115;
  padding: 8px 18px;
  color: #212121;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
}
.shop-page-area .topbar-area {
  overflow: hidden;
  padding-bottom: 54px;
}
.shop-page-area .topbar-area .showing-Short .seclec-box {
  float: right;
}
.shop-page-area .topbar-area .showing-result ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.shop-page-area .topbar-area .showing-result ul li {
  display: inline-block;
  font-weight: 400;
  color: #505050;
  margin-right: 0;
  font-size: 14px;
  height: 25px;
}
.shop-page-area .topbar-area .showing-result ul li .form-group {
  margin: 0;
}
.shop-page-area .topbar-area .showing-result ul li .form-group.seclect-box select.form-control {
  display: inline-block;
  border: 0;
  background: transparent;
  border-radius: 0px;
}
.shop-page-area .pagination {
  margin-top: 0;
}
.shop-page-area .classic-tabs.tabs-cyan {
  display: block;
}
/* ------------------------------------
    30.Shop Single Page Start Here 
---------------------------------------*/
.shop-single-page-area .shop-single-btm-page-area {
  padding-bottom: 74px;
  overflow: hidden;
  padding-top: 60px;
}
.shop-single-page-area .shop-single-btm-page-area .sec-title {
  font-size: 30px;
}
.shop-single-page-area .shop-single-btm-page-area .sec-title:after {
  height: 5px;
}
.shop-single-page-area .shop-single-btm-page-area .sec-sub-title {
  margin-bottom: 42px;
  margin-top: 10px;
  font-size: 30px;
}
.shop-single-page-area .inner-single-product-slider .inner {
  background: #f5f5f5;
  margin-bottom: 26px;
}
.shop-single-page-area .inner-single-product-slider .single-product-nav {
  max-width: 300px;
  margin: 0 auto;
}
.shop-single-page-area .inner-single-product-slider .single-product-nav .slick-slide {
  position: relative;
  margin: 0 5px;
  cursor: pointer;
}
.shop-single-page-area .inner-single-product-slider .single-product-nav .slick-slide:after {
  background: rgba(0, 0, 0, 0.7);
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.shop-single-page-area .inner-single-product-slider .single-product-nav .slick-current:after {
  opacity: 0;
}
.shop-single-page-area .inner-single-product-slider .slick-prev:before {
  content: "\f104";
}
.shop-single-page-area .inner-single-product-slider .slick-prev:before,
.shop-single-page-area .inner-single-product-slider .slick-next:before {
  font-family: FontAwesome;
  opacity: 1;
  transition: all 0.5s ease 0s;
  font-size: 16px;
  line-height: 20px;
  color: #212121;
}
.shop-single-page-area .inner-single-product-slider .slick-prev:hover:before,
.shop-single-page-area .inner-single-product-slider .slick-next:hover:before {
  color: #ff3115;
}
.shop-single-page-area .inner-single-product-slider .slick-next:before {
  content: "\f105";
}
.shop-single-page-area .left-area h4 {
  margin: 0 0 12px;
  color: #212121;
  font-size: 20px;
}
.shop-single-page-area .left-area .cat,
.shop-single-page-area .left-area .tag {
  font-size: 13px;
  margin: 0 0 5px;
}
.shop-single-page-area .left-area .cat strong,
.shop-single-page-area .left-area .tag strong {
  font-weight: 500;
}
.shop-single-page-area .left-area .cat {
  margin-top: 27px;
}
.shop-single-page-area .tab-btm {
  margin-top: 20px;
  vertical-align: top;
}
.shop-single-page-area .tab-btm .nav-item {
  position: relative;
  display: block;
  width: 100%;
}
.shop-single-page-area .tab-btm .nav-item a {
  font-size: 15px;
  color: #505050;
}
.shop-single-page-area .tab-btm .nav-item .active {
  background: #eee;
}
.shop-single-page-area .tab-btm .nav-item .active:before {
  content: "\f105";
  font-family: FontAwesome;
  opacity: 1;
  transition: all 0.5s ease 0s;
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  top: 14px;
  z-index: 99;
  right: 5px;
}
.shop-single-page-area .tab-btm .tab-content.card {
  border: none;
}
.shop-single-page-area .tab-btm h4 {
  margin: 15px 0 19px;
  font-weight: 500;
  color: #505050;
}
/*-----------------------------------
    25. Check Out css Start Here
-------------------------------------*/
.rs-check-out .title-bg {
  font-size: 24px;
  margin-bottom: 30px;
}
.rs-check-out .check-out-box {
  padding: 0 0 40px 0;
}
.rs-check-out .check-out-box label {
  color: #505050;
  font-weight: 400;
}
.rs-check-out .check-out-box textarea,
.rs-check-out .check-out-box input {
  border-color: #bfbfbf;
}
.rs-check-out .check-out-box input {
  height: 40px;
  padding: 0 15px;
}
.rs-check-out .check-out-box select {
  width: 100%;
  min-height: 40px;
  display: block;
  padding: 10px 15px;
  color: #505050;
}
.rs-check-out .check-out-box .checkbox input {
  height: auto;
  margin-top: 7px;
}
.rs-check-out .shipping-box h3.title {
  font-size: 24px;
  margin: 0 0 30px;
}
.rs-check-out .shipping-box .form-group input {
  height: 80px;
}
.rs-check-out .shipping-box input,
.rs-check-out .checkbox input {
  margin-right: 15px;
}
.rs-check-out .product-demo {
  width: 100%;
  display: inline-block;
  padding-bottom: 20px;
  padding-top: 8px;
}
.rs-check-out .product-demo h5 {
  margin: 0;
  font-size: 15px;
  color: #505050;
}
.rs-check-out .product-demo .product-image {
  width: 15%;
  float: left;
}
.rs-check-out .product-demo .product-name {
  width: 30%;
  float: left;
  transform: translateY(100%);
}
.rs-check-out .product-demo .product-quantity {
  width: 25%;
  float: left;
  text-align: center;
  transform: translateY(100%);
}
.rs-check-out .product-demo .product-ititial-price {
  width: 30%;
  float: left;
  text-align: center;
  transform: translateY(100%);
}
.rs-check-out .product-price table {
  border: 1px solid #b2b2b2;
  margin-bottom: 25px;
}
.rs-check-out .product-price table tr td {
  padding: 15px 25px;
  border-bottom: 1px solid #b2b2b2;
}
.rs-check-out .product-price table tr td input {
  margin-right: 5px;
}
.rs-check-out .product-price table tr td:last-child {
  text-align: right;
}
.rs-check-out .product-price table tr td.no-border {
  border: none;
}
.rs-check-out .rs-payment-system .payment-radio-btn1 {
  padding: 15px 25px;
  border: 1px solid #b2b2b2;
}
.rs-check-out .rs-payment-system .payment-radio-btn1 p {
  margin: 0;
  padding: 15px 0 15px 25px;
  font-size: 13px;
}
.rs-check-out .rs-payment-system .payment-radio-btn2 {
  padding: 15px 25px;
  border: 1px solid #b2b2b2;
  border-top: none;
}
.rs-check-out .rs-payment-system input {
  margin-right: 10px;
}
.rs-check-out .rs-payment-system input.btn-send {
  width: 100%;
  margin-top: 25px;
  background-color: #ff3115;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  height: 50px;
  line-height: 50px;
  text-align: c center;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -ms-transition: 0.4s;
  cursor: pointer;
}
.rs-check-out .rs-payment-system input.btn-send:hover {
  background: #212121;
}
/*-----------------------------------
    32. Shipping Area Start Here
------------------------------------*/
.shipping-area .button-area ul li a {
  display: block;
  padding: 15px;
  background: #f8f8f8;
  color: #646464;
  font-size: 18px;
}
.shipping-area .button-area ul li.active a {
  background: #ff3115;
  color: #fff;
}
.shipping-area .product-list table {
  margin: 0 0 30px;
}
.shipping-area .product-list table tr {
  border: 1px solid #e7e7e7;
  padding: 25px;
  display: block;
  margin-bottom: -1px;
}
.shipping-area .product-list table tr td {
  padding-right: 52px;
}
.shipping-area .product-list table tr td img {
  width: 100%;
  display: block;
  max-width: 80px;
}
.shipping-area .product-list table tr td .des-pro {
  display: block;
  padding-right: 50px;
  width: 210px;
}
@media screen and (max-width: 991px) {
  .shipping-area .product-list table tr td .des-pro {
    width: auto;
  }
}
.shipping-area .product-list table tr td .des-pro h4 {
  margin: 0 0 10px;
  font-size: 20px;
}
.shipping-area .product-list table tr td .des-pro p {
  color: #646464;
  margin: 0;
}
.shipping-area .product-list table tr td strong {
  font-size: 20px;
  display: block;
  padding-right: 100px;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .shipping-area .product-list table tr td strong {
    padding-right: 10px;
  }
}
.shipping-area .product-list table tr td .order-pro {
  position: relative;
  display: block;
  margin-right: 100px;
}
.shipping-area .product-list table tr td .order-pro input {
  width: 110px;
  height: 46px;
  box-shadow: none;
  border: 1px solid #ccc;
  text-align: center;
  padding-right: 10px;
  color: #888888;
  font-size: 18px;
}
.shipping-area .product-list table tr td .order-pro div {
  position: absolute;
  top: 12px;
  right: 0;
  z-index: 999;
  cursor: pointer;
}
.shipping-area .product-list table tr td .order-pro div.btn-plus {
  right: 40px;
}
.shipping-area .product-list table tr td .order-pro div.btn-minus {
  right: 20px;
}
.shipping-area .product-list table tr td .prize {
  color: #ff3115;
  font-size: 18px;
  font-weight: 500;
  padding-right: 50px;
}
.shipping-area .product-list table tr td i {
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid #cccccc;
  text-align: center;
  line-height: 28px;
  font-size: 15px;
  cursor: pointer;
  color: #ccc;
}
.shipping-area .product-list table tr td i:hover {
  background: #ff3115;
  color: #fff;
}
.shipping-area .product-list .total span {
  font-size: 20px;
  padding-right: 10px;
}
.shipping-area .product-list .total strong {
  font-size: 28px;
  font-weight: 400;
}
.shipping-area .next-step {
  text-align: right;
}
.shipping-area .next-step a {
  padding: 10px 30px;
  border: 1px solid #ff3115;
  background: #ff3115 !important;
  color: #fff;
  text-transform: capitalize;
  font-size: 18px;
  background: transparent;
  margin-top: 25px;
  transition: all 0.3s ease 0s;
  display: inline-block;
}
.shipping-area .next-step a:hover {
  background: #212121 !important;
  color: #fff;
  border: 1px solid #212121 !important;
}
.shipping-area .form-area h3 {
  font-weight: 500;
  padding: 15px 15px;
  font-size: 22px;
}
.shipping-area .form-area form fieldset {
  margin: 0 0 15px;
}
.shipping-area .form-area form fieldset label {
  display: block;
  width: 100%;
  color: #333333;
  font-weight: 400;
  margin: 0 0 10px;
  font-size: 14px;
}
.shipping-area .form-area form fieldset input {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  height: 40px;
  border-radius: 0;
  padding: 0 15px;
  border: 1px solid #ccc;
}
.shipping-area .form-area form fieldset select {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  height: 40px;
  border-radius: 0;
  padding: 0 15px;
  color: #646464;
  font-size: 13px;
  border: 1px solid #ccc;
}
.shipping-area .order-list h3 {
  padding: 15px 0;
  font-size: 24px;
}
.shipping-area .order-list table {
  width: 100%;
}
.shipping-area .order-list table tr {
  width: 100%;
  display: block;
}
.shipping-area .order-list table tr th {
  font-weight: bold;
  width: 50%;
}
.shipping-area .order-list table tr td {
  border: 1px solid #dedede;
  padding: 15px 15px;
  font-weight: normal;
}
.shipping-area .order-list table tr td:first-child {
  width: 400px;
}
@media screen and (max-width: 480px) {
  .call {
    background-color: #00bcd4 !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}
  .shipping-area .order-list table tr td:first-child {
    width: 65%;
  }
}
.shipping-area .order-list table tr td:last-child {
  width: 150px;
  text-align: center;
}
.shipping-area .order-list table .row-bold td {
  border: 1px solid #dedede;
  font-weight: 700;
}
.shipping-area .panel-group .panel {
  border-radius: 0;
  margin: 0;
}
.shipping-area .panel-group .panel-body {
  padding-left: 40px;
  padding-right: 100px;
}
.shipping-area .panel-group a .checkbox {
  margin: 0;
  padding: 10px 0;
}
.shipping-area .panel-group a .checkbox .cr {
  position: relative;
  display: inline-block;
  background: #cccccc;
  border-radius: 100%;
  float: left;
  margin-top: 0px;
  margin-right: .5em;
  width: 15px;
  height: 15px;
}
.shipping-area .panel-group a .checkbox label {
  margin: 0 !important;
  padding: 0 !important;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 700;
}
.shipping-area .panel-group a .checkbox label input[type="checkbox"] {
  display: none;
}
.shipping-area .panel-group a .checkbox label input[type="checkbox"] + .cr > .cr-icon {
  opacity: 1;
  display: block;
  color: #ff3115;
  width: 15px;
  height: 15px;
}
.shipping-area .panel-group a .checkbox label input[type="checkbox"] + .cr > .cr-icon {
  opacity: 0;
  transition: all 0.3s ease-in;
  display: block;
  padding: 5px;
  color: #2962ff;
}
.shipping-area .panel-group .panel-default > .panel-heading {
  background: transparent;
}
.order-pro input[type=number]::-webkit-inner-spin-button,
.order-pro input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}
.coupon-fields .input-text {
  padding: 5px 8px;
  width: 75%;
  margin-right: 10px;
  margin-bottom: 25px;
}
.coupon-fields .apply-coupon {
  background: #ff3115;
  border: none;
  color: #fff;
  padding: 6px 8px;
  border: 1px solid #ff3115;
  transition: all 0.3s ease 0s;
}
.coupon-fields .apply-coupon:hover {
  background: #212121 !important;
  border: 1px solid #212121;
  color: #fff;
}
/*-------------------------------------
    32. Contact Page Section Start Here
--------------------------------------*/
.contact-page-section #googleMap {
  height: 490px;
}
.contact-page-section .map-text {
  padding-bottom: 22px;
}
.contact-page-section .map-text h3 {
  font-size: 20px;
  margin: 0;
  padding: 25px 0 10px;
  font-weight: 600;
}
.contact-page-section .map-text p {
  font-size: 15px;
  margin: 0;
  padding: 0;
}
.contact-page-section .contact-address-section {
  text-align: center;
  margin: 50px 0;
}
.contact-page-section .contact-address-section .contact-info {
  background: #f0f0f0;
  border: 1px solid #e1e1e1;
  padding: 25px 0 23px;
}
.contact-page-section .contact-address-section .contact-info .contact-pd {
  padding: 0 10px;
}
.contact-page-section .contact-address-section .contact-info i {
  color: #00bcd4;
  font-size: 36px;
  margin: 0;
  padding: 0;
}
.contact-page-section .contact-address-section .contact-info h4 {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  color: #00bcd4;
  margin: 0;
  padding: 15px 0;
}
.contact-page-section .contact-address-section .contact-info a {
  color: #505050;
  display: block;
}
.contact-page-section .contact-address-section .contact-info a:hover {
  color: #ff3115;
}
.contact-page-section .contact-address-section .contact-info p {
  color: #575757;
  margin: 0;
  padding: 0;
  font-size: 23px;
  font-weight: 500;
}
.contact-page-section .contact-comment-section h3 {
  font-size: 20px;
  margin: 0;
  padding-bottom: 30px;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-page-section .contact-comment-section form .form-group input {
  height: 43px;
  padding: 0 15px;
}
.contact-page-section .contact-comment-section form .form-group input,
.contact-page-section .contact-comment-section form .form-group textarea {
  border: none;
  background: #f5f5f5;
  border-radius: 0;
  box-shadow: none;
}
.contact-page-section .contact-comment-section form .form-group label {
  color: #505050;
  font-weight: 400;
}
.contact-page-section .contact-comment-section form .form-group input.btn-send {
  text-transform: uppercase;
  color: #ffffff;
  background-color: #00bcd4;
  margin-top: 15px;
  border: none;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: 600;
  padding: 0 50px;
  cursor: pointer;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -ms-transition: 0.4s;
}
.contact-page-section .contact-comment-section form .form-group input.btn-send:hover {
  background: #212121;
}
/* ------------------------------------
    33. Rs Gallery
---------------------------------------*/
.rs-gallery .gallery-item {
  position: relative;
}
.rs-gallery .gallery-item .gallery-desc {
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 25px;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.rs-gallery .gallery-item .gallery-desc h3 {
  margin-bottom: 12px;
  font-size: 24px;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  opacity: 0;
}
.rs-gallery .gallery-item .gallery-desc h3 a {
  color: #ffffff;
}
.rs-gallery .gallery-item .gallery-desc p {
  color: #e1e1e1;
  margin-bottom: 30px;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}
.rs-gallery .gallery-item .gallery-desc .image-popup {
  display: inline-block;
  width: 50px;
  line-height: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: #ff3115;
  color: #ffffff;
  font-size: 18px;
  -webkit-transform: translateY(35px);
  transform: translateY(35px);
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.rs-gallery .gallery-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.8);
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.rs-gallery .gallery-item:hover:before {
  opacity: 1;
}
.rs-gallery .gallery-item:hover h3,
.rs-gallery .gallery-item:hover p,
.rs-gallery .gallery-item:hover .image-popup {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}
.rs-gallery .row {
  margin-bottom: 30px;
}
.rs-gallery-section .single-gallery {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.rs-gallery-section .single-gallery:after {
  content: "";
  width: 80%;
  height: 80%;
  background: #273c8d;
  position: absolute;
  top: 10%;
  left: 10%;
  display: block;
  overflow: hidden;
  opacity: 0.8;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -ms-transition: 0.4s;
}
.rs-gallery-section .single-gallery .popup-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.rs-gallery-section .single-gallery .popup-icon a {
  font-size: 20px;
  display: inline-block;
  margin: 0 8px;
  color: #fff;
}
.rs-gallery-section .single-gallery:hover:after {
  opacity: 0.8;
  visibility: visible;
  transform: scale(1);
}
.rs-gallery-section .single-gallery:hover .popup-icon {
  opacity: 1;
  visibility: visible;
}
/* ------------------------------------
    34. ScrollUp
---------------------------------------*/
#scrollUp {
  text-align: center;
  bottom: 40px;
  cursor: pointer;
  display: none;
  position: fixed;
  right: 40px;
  z-index: 999;
}
#scrollUp i {
  background-color: #ff3115;
  height: 40px;
  font-size: 24px;
  width: 42px;
  color: #ffffff;
  line-height: 36px;
  transition: all 0.3s ease 0s;
  margin-left: 2px;
}
#scrollUp i:hover {
  background-color: #e41f05;
  color: rgba(255, 255, 255, 0.7);
}
/* ------------------------------------
    35.404 Page Area Start Here 
---------------------------------------*/
.error-page-area {
  text-align: center;
}
.error-page-area .error-page {
  background: #f0f0f0;
  background-position: center center;
  background-size: cover;
  padding: 60px 0 100px;
}
.error-page-area .error-page h1 {
  font-size: 250px;
  color: #212121;
  line-height: 230px;
  margin: 0;
}
.error-page-area .error-page p {
  font-size: 18px;
  color: #212121;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 50px;
}
.error-page-area .error-page-message {
  margin-top: 0;
}
.error-page-area .error-page-message p {
  font-size: 20px;
  color: #212121;
}
.error-page-area .error-page-message .home-page a {
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  color: #ffffff;
  background: #ff3115;
  padding: 15px 35px;
  transition: all 0.3s ease 0s;
  font-weight: 700;
}
.error-page-area .error-page-message .home-page a:hover {
  background: #212121;
}
/*-------------------------
    36.Preloader css
---------------------------*/
.book_preload {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #ff3115;
  z-index: 999999;
}
.book {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  margin: 0 auto;
  border: 5px solid #ecf0f1;
  width: 100px;
  height: 60px;
}
.book__page {
  position: absolute;
  left: 50%;
  top: -5px;
  margin: 0 auto;
  border-top: 5px solid #ecf0f1;
  border-bottom: 5px solid #ecf0f1;
  border-right: 5px solid #ecf0f1;
  background: #e41f05;
  width: 50px;
  height: 60px;
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-animation: flip 1.2s infinite linear;
  animation: flip 1.2s infinite linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.book__page:nth-child(1) {
  z-index: -1;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.book__page:nth-child(2) {
  z-index: -2;
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s;
}
.book__page:nth-child(3) {
  z-index: -3;
  -webkit-animation-delay: 4.2s;
  animation-delay: 4.2s;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(600px) rotateY(0deg);
    transform: perspective(600px) rotateY(0deg);
  }
  20% {
    background: #ff3115;
  }
  29.9% {
    background: #ff3115;
  }
  30% {
    -webkit-transform: perspective(200px) rotateY(-90deg);
    transform: perspective(200px) rotateY(-90deg);
    background: #e41f05;
  }
  54.999% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  60% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: #e41f05;
  }
  100% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: #e41f05;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(600px) rotateY(0deg);
    transform: perspective(600px) rotateY(0deg);
  }
  20% {
    background: #ff3115;
  }
  29.9% {
    background: #ff3115;
  }
  30% {
    -webkit-transform: perspective(200px) rotateY(-90deg);
    transform: perspective(200px) rotateY(-90deg);
    background: #e41f05;
  }
  54.999% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  60% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: #e41f05;
  }
  100% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: #e41f05;
  }
}
/* ------------------------------------
    37. Rs Footer
---------------------------------------*/
.rs-footer {
  color: #e8e8e8;
  margin-top: 98px;
}
.rs-footer .footer-title {
  margin-bottom: 40px;
  padding-bottom: 5px;
  color: #ffffff;
  font-size: 16px;
  position: relative;
  font-weight: 600;
}
.rs-footer .footer-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 50px;
  background-color: #ff3115;
}
.rs-footer .container {
  position: relative;
}
.rs-footer .footer-contact-desc {
  margin: 0;
  background: #222;
  text-align: center;
  padding: 35px;
  position: absolute;
  left: 0;
  right: 0;
  margin: -100px auto 0;
  z-index: 111;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}
.rs-footer .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner {
  border-left: 1px solid #e2e2e2;
}
.rs-footer .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:before,
.rs-footer .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:after {
  content: '';
  position: absolute;
  height: calc(100% - 40px);
  width: 1px;
  background-color: #e2e2e2;
  top: 50%;
  transform: translateY(-50%);
}
.rs-footer .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:before {
  left: 3px;
}
.rs-footer .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:after {
  left: -5px;
}
.rs-footer .footer-contact-desc .contact-inner {
  position: relative;
}
.rs-footer .footer-contact-desc .contact-inner i {
  font-size: 28px;
  margin-bottom: 12px;
  color: #ff3115;
}
.rs-footer .footer-contact-desc .contact-inner .contact-title {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 20px;
}
.rs-footer .footer-contact-desc .contact-inner .contact-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
}
.contact-desc a{
  color: #fff;
}
.rs-footer .footer-top {
  padding-top: 140px;
}
.rs-footer .footer-top .recent-post-widget .post-item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-date {
  width: 70px;
  height: 65px;
  flex: 0 0 70px;
  text-align: center;
  float: left;
  background-color: #ff3115;
  color: #ffffff;
  margin-right: 15px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-date span {
  display: block;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-date span:first-child {
  margin-top: 10px;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-date span:last-child {
  font-size: 15px;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-title {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-title a {
  font-family: 'Montserrat', sans-serif;
  color: #e8e8e8;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-title a:hover,
.rs-footer .footer-top .recent-post-widget .post-item .post-title a:focus {
  color: #bbbbbb;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-category {
  font-size: 15px;
}
.rs-footer .footer-top .recent-post-widget .post-item .post-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(102, 102, 102, 0.5);
}
.rs-footer .footer-top .sitemap-widget li {
  width: 50%;
  float: left;
  line-height: 33px;
}
.rs-footer .footer-top .sitemap-widget li a {
  color: #e8e8e8;
  display: inline-block;
  position: relative;
}
.rs-footer .footer-top .sitemap-widget li a:hover,
.rs-footer .footer-top .sitemap-widget li a:focus {
  color: #ff3115;
}
.rs-footer .footer-top .sitemap-widget li a i {
  padding-right: 10px;
}
.rs-footer .footer-top .flickr-feed li {
  display: inline-block;
  margin: 2px 3px;
  overflow: hidden;
  position: relative;
  width: 76px;
}
.rs-footer .footer-top .flickr-feed li img {
  -webkit-transition: .3s ease all;
  transition: .3s ease all;
}
.rs-footer .footer-top .flickr-feed li:hover img {
  opacity: 0.7;
}
.rs-footer .footer-top .news-form {
  position: relative;
}
.rs-footer .footer-top .news-form input {
  background: rgba(0, 0, 0, 0);
  border: 1px solid #ff3115;
  color: #ffffff;
  height: 50px;
  outline: 0 none;
  padding: 5px 15px;
  width: 100%;
}
.rs-footer .footer-top .news-form button {
  background: #ff3115;
  border: none;
  color: #ffffff;
  font-size: 18px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.rs-footer .footer-top .news-form button:hover {
  background: #e41f05;
}
.rs-footer .footer-top .about-widget img {
  margin-bottom: 25px;
}
.rs-footer .footer-share {
  text-align: center;
  margin-top: 50px;
}
.rs-footer .footer-share ul li {
  display: inline-block;
}
.rs-footer .footer-share ul li a {
  font-size: 13px;
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  line-height: 44px;
  text-align: center;
  color: #fff;
  transition: all .3s ease 0s;
  background: rgba(255, 255, 255, 0.15);
}
.rs-footer .footer-share ul li a:hover {
  background-color: #ff3115;
  color: #ffffff;
}
.rs-footer .footer-share ul li + li {
  margin-left: 5px;
}
.rs-footer .footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 0;
  margin-top: 35px;
}
.rs-footer .footer-bottom .copyright p {
  opacity: 0.95;
  margin-bottom: 0;
  font-size: 15px;
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item {
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item:last-child {
  border: none;
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-date {
  width: 70px;
  height: 65px;
  flex: 0 0 70px;
  text-align: center;
  color: #fff;
  margin-right: 15px;
  transition: all .3s ease 0s;
  background: #ff3115 !important;
  line-height: 27px;
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-date span {
  display: block;
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-date span:first-child {
  margin-top: 10px;
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-date span:last-child {
  font-size: 15px;
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-title {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-title a {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
}
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-title a:hover,
.rs-footer.rs-footer-style8 .footer-top .recent-post-widget .post-item .post-title a:focus {
  color: #ff3115 !important;
}
.rs-footer.rs-footer-style8 .footer-top .form-inner {
  position: relative;
  max-width: 280px;
}
.rs-footer.rs-footer-style8 .footer-top .form-inner:before {
  content: "\f1d9";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  text-decoration: inherit;
  position: absolute;
  right: 30px;
  top: 10px;
  color: #fff;
  pointer-events: none;
  z-index: 11;
  font-size: 20px;
}
.rs-footer.rs-footer-style8 .footer-top .form-inner input[type=email] {
  font-size: 14px;
  padding: 12px 0 12px 16px;
  border: none;
  border-radius: 25px!important;
  height: 46px;
  position: relative;
  display: block;
  line-height: 1.428571429;
  color: #555;
  background-color: #fff;
  outline: 0;
  width: 100%;
}
.rs-footer.rs-footer-style8 .footer-top .form-inner input[type=submit] {
  position: absolute;
  border-radius: 25px;
  top: 2px;
  right: 2px;
  background: #ff3115;
  color: #fff;
  padding: 10px 16px;
  border: 0;
  transition: .2s;
  font-size: 0;
  height: 42px;
  width: 74px;
  min-width: auto!important;
}
.rs-footer.rs-footer-style7 {
  position: relative;
  background: #f2f2f2;
}
.rs-footer.rs-footer-style7 .footer-top {
  padding-top: 70px !important;
}
.rs-footer.rs-footer-style7 .footer-top .footer-title {
  color: #212121;
}
.rs-footer.rs-footer-style7 .footer-top .footer-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 50px;
  background: #ff3115;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item {
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px solid #e9e2e2;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item:last-child {
  border: none;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-date {
  width: 70px;
  height: 65px;
  flex: 0 0 70px;
  text-align: center;
  color: #fff;
  margin-right: 15px;
  transition: all .3s ease 0s;
  background: #ff3115 !important;
  line-height: 27px;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-date span {
  display: block;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-date span:first-child {
  margin-top: 10px;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-date span:last-child {
  font-size: 15px;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-title {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-title a {
  font-family: 'Montserrat', sans-serif;
  color: #505050;
}
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-title a:hover,
.rs-footer.rs-footer-style7 .footer-top .recent-post-widget .post-item .post-title a:focus {
  color: #ff3115 !important;
}
.rs-footer.rs-footer-style7 .footer-top .sitemap-widget li {
  width: 50%;
  float: left;
  line-height: 33px;
}
.rs-footer.rs-footer-style7 .footer-top .sitemap-widget li a {
  color: #505050;
  display: inline-block;
  position: relative;
}
.rs-footer.rs-footer-style7 .footer-top .sitemap-widget li a:hover,
.rs-footer.rs-footer-style7 .footer-top .sitemap-widget li a:focus {
  color: #ff3115 !important;
}
.rs-footer.rs-footer-style7 .footer-top .sitemap-widget li a i {
  padding-right: 10px;
}
.rs-footer.rs-footer-style7 .footer-top .flickr-feed li {
  display: inline-block;
  margin: 2px 3px;
  overflow: hidden;
  position: relative;
  width: 76px;
}
.rs-footer.rs-footer-style7 .footer-top .flickr-feed li img {
  -webkit-transition: .3s ease all;
  transition: .3s ease all;
}
.rs-footer.rs-footer-style7 .footer-top .flickr-feed li:hover img {
  opacity: 0.7;
}
.rs-footer.rs-footer-style7 .footer-top .form-inner {
  position: relative;
  max-width: 280px;
}
.rs-footer.rs-footer-style7 .footer-top .form-inner:before {
  content: "\f1d9";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  text-decoration: inherit;
  position: absolute;
  right: 30px;
  top: 10px;
  color: #fff;
  pointer-events: none;
  z-index: 11;
  font-size: 20px;
}
.rs-footer.rs-footer-style7 .footer-top .form-inner input[type=email] {
  font-size: 14px;
  padding: 12px 0 12px 16px;
  border: none;
  border-radius: 25px!important;
  height: 46px;
  position: relative;
  display: block;
  line-height: 1.428571429;
  color: #555;
  background-color: #fff;
  outline: 0;
  width: 100%;
}
.rs-footer.rs-footer-style7 .footer-top .form-inner input[type=submit] {
  position: absolute;
  border-radius: 25px;
  top: 2px;
  right: 2px;
  background: #ff3115;
  color: #fff;
  padding: 10px 16px;
  border: 0;
  transition: .2s;
  font-size: 0;
  height: 42px;
  width: 74px;
  min-width: auto!important;
}
.rs-footer.rs-footer-style7 .footer-top .about-widget img {
  margin-bottom: 25px;
}
.rs-footer.rs-footer-style7 .footer-share {
  text-align: center;
  margin-top: 50px;
}
.rs-footer.rs-footer-style7 .footer-share ul li {
  display: inline-block;
}
.rs-footer.rs-footer-style7 .footer-share ul li a {
  background: none !important;
  color: #212121 !important;
}
.rs-footer.rs-footer-style7 .footer-share ul li a:hover {
  color: #ff3115 !important;
}
.rs-footer.rs-footer-style7 .footer-share ul li li {
  margin-left: 5px;
}
.rs-footer.rs-footer-style7:before {
  background: #f2f2f2;
  transform: skewY(175deg);
  content: "";
  height: 100%;
  right: 0;
  position: absolute;
  top: -100px;
  width: 100%;
  z-index: -1;
}
.rs-footer.rs-footer-style7 .footer-contact-desc {
  padding-top: 0;
  border-bottom: 1px solid #e9e2e2;
  transform: translateY(0);
  position: static;
  border-radius: 0;
  box-shadow: none;
  margin: -100px auto 0;
  background: none;
}
.rs-footer.rs-footer-style7 .footer-contact-desc .contact-inner i:before {
  color: #ff3115;
}
.rs-footer.rs-footer-style7 .footer-contact-desc .contact-inner .contact-title {
  color: #212121;
}
.rs-footer.rs-footer-style7 .footer-contact-desc .contact-inner .contact-desc {
  color: #505050;
}
.rs-footer.rs-footer-style7 .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner {
  border-left: 1px solid #e2e2e2;
}
.rs-footer.rs-footer-style7 .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:before,
.rs-footer.rs-footer-style7 .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:after {
  content: '';
  position: absolute;
  height: calc(100% - 40px);
  width: 1px;
  background-color: #e2e2e2;
  top: 50%;
  transform: translateY(-50%);
}
.rs-footer.rs-footer-style7 .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:before {
  left: 3px;
}
.rs-footer.rs-footer-style7 .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:after {
  left: -5px;
}
.copyright_style7 {
  text-align: center;
  border-top: 1px solid #e9e2e2 !important;
  padding: 18px 0;
  margin-top: 35px;
  background: none !important;
}
.copyright_style7 .copyright p {
  opacity: 0.95;
  margin-bottom: 0;
  font-size: 15px;
}
.copyright_style7 .copyright p a {
  color: #ff3115;
}
.copyright_style7 .copyright p a:hover {
  color: #212121;
}
.rs-footer-2 .footer-share {
  margin-top: 20px;
}
@-webkit-keyframes rs-animation-scale-up {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes rs-animation-scale-up {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media only screen and (max-width: 991px) {
  .instructor-home .rs-menu-toggle {
    color: #212121 !important;
  }
  .instructor-home .rs-menu-toggle i {
    color: #ff3115;
  }
}
/*---------------------
    Pulse Animation
---------------------*/
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/*------------------------------
    Swing Animation
------------------------------*/
@keyframes swing-anim {
  from {
    transform: rotate(60deg);
    -webkit-transform: rotate(60deg);
  }
  to {
    transform: rotate(-60deg);
    -webkit-transform: rotate(-60deg);
  }
}
@-webkit-keyframes swing-anim {
  from {
    transform: rotate(60deg);
    -webkit-transform: rotate(60deg);
  }
  to {
    transform: rotate(-60deg);
    -webkit-transform: rotate(-60deg);
  }
}
@keyframes swing-anim2 {
  from {
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
  }
  to {
    transform: rotate(-40deg);
    -webkit-transform: rotate(-40deg);
  }
}
@-webkit-keyframes swing-anim2 {
  from {
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
  }
  to {
    transform: rotate(-40deg);
    -webkit-transform: rotate(-40deg);
  }
}

/* query section */
.main-image-bottom img {
  background-color: #00bcd4;
}
.call {
  background-color: #00bcd4;
  padding-top: 38px;
  padding-bottom: 38px;
}
.call-us span {
  font-size: 36px;
  text-align: center;
  letter-spacing: 0.5px;
  color: #fff;
}

/* query section */

.fw-light {
  font-weight: 300 !important
}

.fw-lighter {
  font-weight: lighter !important
}

.fw-normal {
  font-weight: 400 !important
}

.fw-bold {
  font-weight: 700 !important
}

.fw-bolder {
  font-weight: bolder !important
}

.lh-1 {
  line-height: 1 !important
}

.lh-sm {
  line-height: 1.25 !important
}

.lh-base {
  line-height: 1.5 !important
}

.lh-lg {
  line-height: 2 !important
}

.text-start {
  text-align: left !important
}

.text-end {
  text-align: right !important
}

.text-center {
  text-align: center !important
}

.text-decoration-none {
  text-decoration: none !important
}

.text-decoration-underline {
  text-decoration: underline !important
}

.text-decoration-line-through {
  text-decoration: line-through !important
}

.text-lowercase {
  text-transform: lowercase !important
}

.text-uppercase {
  text-transform: uppercase !important
}

.text-capitalize {
  text-transform: capitalize !important
}

.text-wrap {
  white-space: normal !important
}

.text-nowrap {
  white-space: nowrap !important
}

.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important
}

.text-primary {
  color: #00bcd4 !important
}

.text-secondary {
  color: #6c757d !important
}

.text-warning {
  color: #00bcd4 !important
}

.text-danger {
  color: #273c8d !important
}

.text-success {
  color: #fcd032 !important
}

.text-info {
  color: #273c8d !important
}

.text-light {
  color: #f5f5f5 !important
}

.text-dark {
  color: #222 !important
}

.text-purple {
  color: #a597e7 !important
}

.text-pink {
  color: #ea77ad !important
}

.text-stone {
  color: #2f3c43 !important
}

.text-white {
  color: #fff !important
}

.text-body {
  color: #222 !important
}

.text-muted {
  color: #6c757d !important
}

.text-black-50 {
  color: rgba(0, 0, 0, .5) !important
}

.text-white-50 {
  color: rgba(255, 255, 255, .5) !important
}

.text-reset {
  color: inherit !important
}

.bg-primary {
  background-color: #00bcd4 !important
}

.bg-secondary {
  background-color: #6c757d !important
}

.bg-warning {
  background-color: #f0c24b !important
}

.bg-danger {
  background-color: #273c8d !important
}

.bg-success {
  background-color: #fcd032 !important
}

.bg-info {
  background-color: #00bcd4 !important
}

.bg-light {
  background-color: #f5f5f5 !important
}

.bg-dark {
  background-color: #222 !important
}

.bg-purple {
  background-color: #a597e7 !important
}

.bg-pink {
  background-color: #ea77ad !important
}

.bg-stone {
  background-color: #2f3c43 !important
}

.bg-body {
  background-color: #fff !important
}

.bg-white {
  background-color: #fff !important
}

.bg-transparent {
  background-color: transparent !important
}

.bg-gradient {
  background-image: var(--bs-gradient) !important
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  -ms-user-select: all !important;
  user-select: all !important
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important
}

.pe-none {
  pointer-events: none !important
}

.pe-auto {
  pointer-events: auto !important
}

.rounded {
  border-radius: .25rem !important
}

.rounded-0 {
  border-radius: 0 !important
}

.rounded-1 {
  border-radius: .4rem !important
}

.rounded-2 {
  border-radius: .25rem !important
}

.rounded-3 {
  border-radius: .3rem !important
}

.rounded-circle {
  border-radius: 50% !important
}

.rounded-pill {
  border-radius: 50rem !important
}

.rounded-top {
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important
}

.rounded-end {
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: .25rem !important
}

.rounded-bottom {
  border-bottom-right-radius: .25rem !important;
  border-bottom-left-radius: .25rem !important
}

.rounded-start {
  border-bottom-left-radius: .25rem !important;
  border-top-left-radius: .25rem !important
}

.visible {
  visibility: visible !important
}

.invisible {
  visibility: hidden !important
}

@media(min-width:576px) {
  .float-sm-start {
      float: left !important
  }
  .float-sm-end {
      float: right !important
  }
  .float-sm-none {
      float: none !important
  }
  .d-sm-inline {
      display: inline !important
  }
  .d-sm-inline-block {
      display: inline-block !important
  }
  .d-sm-block {
      display: block !important
  }
  .d-sm-grid {
      display: grid !important
  }
  .d-sm-table {
      display: table !important
  }
  .d-sm-table-row {
      display: table-row !important
  }
  .d-sm-table-cell {
      display: table-cell !important
  }
  .d-sm-flex {
      display: -webkit-box !important;
      display: flex !important
  }
  .d-sm-inline-flex {
      display: -webkit-inline-box !important;
      display: inline-flex !important
  }
  .d-sm-none {
      display: none !important
  }
  .flex-sm-fill {
      -webkit-box-flex: 1 !important;
      flex: 1 1 auto !important
  }
  .flex-sm-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      flex-direction: row !important
  }
  .flex-sm-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      flex-direction: column !important
  }
  .flex-sm-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
      flex-direction: row-reverse !important
  }
  .flex-sm-column-reverse {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
      flex-direction: column-reverse !important
  }
  .flex-sm-grow-0 {
      -webkit-box-flex: 0 !important;
      flex-grow: 0 !important
  }
  .flex-sm-grow-1 {
      -webkit-box-flex: 1 !important;
      flex-grow: 1 !important
  }
  .flex-sm-shrink-0 {
      flex-shrink: 0 !important
  }
  .flex-sm-shrink-1 {
      flex-shrink: 1 !important
  }
  .flex-sm-wrap {
      flex-wrap: wrap !important
  }
  .flex-sm-nowrap {
      flex-wrap: nowrap !important
  }
  .flex-sm-wrap-reverse {
      flex-wrap: wrap-reverse !important
  }
  .gap-sm-0 {
      gap: 0 !important
  }
  .gap-sm-1 {
      gap: .31rem !important
  }
  .gap-sm-2 {
      gap: .63rem !important
  }
  .gap-sm-3 {
      gap: 1rem !important
  }
  .gap-sm-4 {
      gap: 1.25rem !important
  }
  .gap-sm-5 {
      gap: 1.56rem !important
  }
  .gap-sm-6 {
      gap: 1.88rem !important
  }
  .gap-sm-7 {
      gap: 3.13rem !important
  }
  .gap-sm-8 {
      gap: 3.75rem !important
  }
  .gap-sm-9 {
      gap: 4.96rem !important
  }
  .gap-sm-10 {
      gap: 6.25rem !important
  }
  .justify-content-sm-start {
      -webkit-box-pack: start !important;
      justify-content: flex-start !important
  }
  .justify-content-sm-end {
      -webkit-box-pack: end !important;
      justify-content: flex-end !important
  }
  .justify-content-sm-center {
      -webkit-box-pack: center !important;
      justify-content: center !important
  }
  .justify-content-sm-between {
      -webkit-box-pack: justify !important;
      justify-content: space-between !important
  }
  .justify-content-sm-around {
      justify-content: space-around !important
  }
  .justify-content-sm-evenly {
      -webkit-box-pack: space-evenly !important;
      justify-content: space-evenly !important
  }
  .align-items-sm-start {
      -webkit-box-align: start !important;
      align-items: flex-start !important
  }
  .align-items-sm-end {
      -webkit-box-align: end !important;
      align-items: flex-end !important
  }
  .align-items-sm-center {
      -webkit-box-align: center !important;
      align-items: center !important
  }
  .align-items-sm-baseline {
      -webkit-box-align: baseline !important;
      align-items: baseline !important
  }
  .align-items-sm-stretch {
      -webkit-box-align: stretch !important;
      align-items: stretch !important
  }
  .align-content-sm-start {
      align-content: flex-start !important
  }
  .align-content-sm-end {
      align-content: flex-end !important
  }
  .align-content-sm-center {
      align-content: center !important
  }
  .align-content-sm-between {
      align-content: space-between !important
  }
  .align-content-sm-around {
      align-content: space-around !important
  }
  .align-content-sm-stretch {
      align-content: stretch !important
  }
  .align-self-sm-auto {
      align-self: auto !important
  }
  .align-self-sm-start {
      align-self: flex-start !important
  }
  .align-self-sm-end {
      align-self: flex-end !important
  }
  .align-self-sm-center {
      align-self: center !important
  }
  .align-self-sm-baseline {
      align-self: baseline !important
  }
  .align-self-sm-stretch {
      align-self: stretch !important
  }
  .order-sm-first {
      -webkit-box-ordinal-group: 0 !important;
      order: -1 !important
  }
  .order-sm-0 {
      -webkit-box-ordinal-group: 1 !important;
      order: 0 !important
  }
  .order-sm-1 {
      -webkit-box-ordinal-group: 2 !important;
      order: 1 !important
  }
  .order-sm-2 {
      -webkit-box-ordinal-group: 3 !important;
      order: 2 !important
  }
  .order-sm-3 {
      -webkit-box-ordinal-group: 4 !important;
      order: 3 !important
  }
  .order-sm-4 {
      -webkit-box-ordinal-group: 5 !important;
      order: 4 !important
  }
  .order-sm-5 {
      -webkit-box-ordinal-group: 6 !important;
      order: 5 !important
  }
  .order-sm-last {
      -webkit-box-ordinal-group: 7 !important;
      order: 6 !important
  }
  .m-sm-0 {
      margin: 0 !important
  }
  .m-sm-1 {
      margin: .31rem !important
  }
  .m-sm-2 {
      margin: .63rem !important
  }
  .m-sm-3 {
      margin: 1rem !important
  }
  .m-sm-4 {
      margin: 1.25rem !important
  }
  .m-sm-5 {
      margin: 1.56rem !important
  }
  .m-sm-6 {
      margin: 1.88rem !important
  }
  .m-sm-7 {
      margin: 3.13rem !important
  }
  .m-sm-8 {
      margin: 3.75rem !important
  }
  .m-sm-9 {
      margin: 4.96rem !important
  }
  .m-sm-10 {
      margin: 6.25rem !important
  }
  .m-sm-auto {
      margin: auto !important
  }
  .mx-sm-0 {
      margin-right: 0 !important;
      margin-left: 0 !important
  }
  .mx-sm-1 {
      margin-right: .31rem !important;
      margin-left: .31rem !important
  }
  .mx-sm-2 {
      margin-right: .63rem !important;
      margin-left: .63rem !important
  }
  .mx-sm-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important
  }
  .mx-sm-4 {
      margin-right: 1.25rem !important;
      margin-left: 1.25rem !important
  }
  .mx-sm-5 {
      margin-right: 1.56rem !important;
      margin-left: 1.56rem !important
  }
  .mx-sm-6 {
      margin-right: 1.88rem !important;
      margin-left: 1.88rem !important
  }
  .mx-sm-7 {
      margin-right: 3.13rem !important;
      margin-left: 3.13rem !important
  }
  .mx-sm-8 {
      margin-right: 3.75rem !important;
      margin-left: 3.75rem !important
  }
  .mx-sm-9 {
      margin-right: 4.96rem !important;
      margin-left: 4.96rem !important
  }
  .mx-sm-10 {
      margin-right: 6.25rem !important;
      margin-left: 6.25rem !important
  }
  .mx-sm-auto {
      margin-right: auto !important;
      margin-left: auto !important
  }
  .my-sm-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important
  }
  .my-sm-1 {
      margin-top: .31rem !important;
      margin-bottom: .31rem !important
  }
  .my-sm-2 {
      margin-top: .63rem !important;
      margin-bottom: .63rem !important
  }
  .my-sm-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important
  }
  .my-sm-4 {
      margin-top: 1.25rem !important;
      margin-bottom: 1.25rem !important
  }
  .my-sm-5 {
      margin-top: 1.56rem !important;
      margin-bottom: 1.56rem !important
  }
  .my-sm-6 {
      margin-top: 1.88rem !important;
      margin-bottom: 1.88rem !important
  }
  .my-sm-7 {
      margin-top: 3.13rem !important;
      margin-bottom: 3.13rem !important
  }
  .my-sm-8 {
      margin-top: 3.75rem !important;
      margin-bottom: 3.75rem !important
  }
  .my-sm-9 {
      margin-top: 4.96rem !important;
      margin-bottom: 4.96rem !important
  }
  .my-sm-10 {
      margin-top: 6.25rem !important;
      margin-bottom: 6.25rem !important
  }
  .my-sm-auto {
      margin-top: auto !important;
      margin-bottom: auto !important
  }
  .mt-sm-0 {
      margin-top: 0 !important
  }
  .mt-sm-1 {
      margin-top: .31rem !important
  }
  .mt-sm-2 {
      margin-top: .63rem !important
  }
  .mt-sm-3 {
      margin-top: 1rem !important
  }
  .mt-sm-4 {
      margin-top: 1.25rem !important
  }
  .mt-sm-5 {
      margin-top: 1.56rem !important
  }
  .mt-sm-6 {
      margin-top: 1.88rem !important
  }
  .mt-sm-7 {
      margin-top: 3.13rem !important
  }
  .mt-sm-8 {
      margin-top: 3.75rem !important
  }
  .mt-sm-9 {
      margin-top: 4.96rem !important
  }
  .mt-sm-10 {
      margin-top: 6.25rem !important
  }
  .mt-sm-auto {
      margin-top: auto !important
  }
  .me-sm-0 {
      margin-right: 0 !important
  }
  .me-sm-1 {
      margin-right: .31rem !important
  }
  .me-sm-2 {
      margin-right: .63rem !important
  }
  .me-sm-3 {
      margin-right: 1rem !important
  }
  .me-sm-4 {
      margin-right: 1.25rem !important
  }
  .me-sm-5 {
      margin-right: 1.56rem !important
  }
  .me-sm-6 {
      margin-right: 1.88rem !important
  }
  .me-sm-7 {
      margin-right: 3.13rem !important
  }
  .me-sm-8 {
      margin-right: 3.75rem !important
  }
  .me-sm-9 {
      margin-right: 4.96rem !important
  }
  .me-sm-10 {
      margin-right: 6.25rem !important
  }
  .me-sm-auto {
      margin-right: auto !important
  }
  .mb-sm-0 {
      margin-bottom: 0 !important
  }
  .mb-sm-1 {
      margin-bottom: .31rem !important
  }
  .mb-sm-2 {
      margin-bottom: .63rem !important
  }
  .mb-sm-3 {
      margin-bottom: 1rem !important
  }
  .mb-sm-4 {
      margin-bottom: 1.25rem !important
  }
  .mb-sm-5 {
      margin-bottom: 1.56rem !important
  }
  .mb-sm-6 {
      margin-bottom: 1.88rem !important
  }
  .mb-sm-7 {
      margin-bottom: 3.13rem !important
  }
  .mb-sm-8 {
      margin-bottom: 3.75rem !important
  }
  .mb-sm-9 {
      margin-bottom: 4.96rem !important
  }
  .mb-sm-10 {
      margin-bottom: 6.25rem !important
  }
  .mb-sm-auto {
      margin-bottom: auto !important
  }
  .ms-sm-0 {
      margin-left: 0 !important
  }
  .ms-sm-1 {
      margin-left: .31rem !important
  }
  .ms-sm-2 {
      margin-left: .63rem !important
  }
  .ms-sm-3 {
      margin-left: 1rem !important
  }
  .ms-sm-4 {
      margin-left: 1.25rem !important
  }
  .ms-sm-5 {
      margin-left: 1.56rem !important
  }
  .ms-sm-6 {
      margin-left: 1.88rem !important
  }
  .ms-sm-7 {
      margin-left: 3.13rem !important
  }
  .ms-sm-8 {
      margin-left: 3.75rem !important
  }
  .ms-sm-9 {
      margin-left: 4.96rem !important
  }
  .ms-sm-10 {
      margin-left: 6.25rem !important
  }
  .ms-sm-auto {
      margin-left: auto !important
  }
  .p-sm-0 {
      padding: 0 !important
  }
  .p-sm-1 {
      padding: .31rem !important
  }
  .p-sm-2 {
      padding: .63rem !important
  }
  .p-sm-3 {
      padding: 1rem !important
  }
  .p-sm-4 {
      padding: 1.25rem !important
  }
  .p-sm-5 {
      padding: 1.56rem !important
  }
  .p-sm-6 {
      padding: 1.88rem !important
  }
  .p-sm-7 {
      padding: 3.13rem !important
  }
  .p-sm-8 {
      padding: 3.75rem !important
  }
  .p-sm-9 {
      padding: 4.96rem !important
  }
  .p-sm-10 {
      padding: 6.25rem !important
  }
  .px-sm-0 {
      padding-right: 0 !important;
      padding-left: 0 !important
  }
  .px-sm-1 {
      padding-right: .31rem !important;
      padding-left: .31rem !important
  }
  .px-sm-2 {
      padding-right: .63rem !important;
      padding-left: .63rem !important
  }
  .px-sm-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important
  }
  .px-sm-4 {
      padding-right: 1.25rem !important;
      padding-left: 1.25rem !important
  }
  .px-sm-5 {
      padding-right: 1.56rem !important;
      padding-left: 1.56rem !important
  }
  .px-sm-6 {
      padding-right: 1.88rem !important;
      padding-left: 1.88rem !important
  }
  .px-sm-7 {
      padding-right: 3.13rem !important;
      padding-left: 3.13rem !important
  }
  .px-sm-8 {
      padding-right: 3.75rem !important;
      padding-left: 3.75rem !important
  }
  .px-sm-9 {
      padding-right: 4.96rem !important;
      padding-left: 4.96rem !important
  }
  .px-sm-10 {
      padding-right: 6.25rem !important;
      padding-left: 6.25rem !important
  }
  .py-sm-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important
  }
  .py-sm-1 {
      padding-top: .31rem !important;
      padding-bottom: .31rem !important
  }
  .py-sm-2 {
      padding-top: .63rem !important;
      padding-bottom: .63rem !important
  }
  .py-sm-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important
  }
  .py-sm-4 {
      padding-top: 1.25rem !important;
      padding-bottom: 1.25rem !important
  }
  .py-sm-5 {
      padding-top: 1.56rem !important;
      padding-bottom: 1.56rem !important
  }
  .py-sm-6 {
      padding-top: 1.88rem !important;
      padding-bottom: 1.88rem !important
  }
  .py-sm-7 {
      padding-top: 3.13rem !important;
      padding-bottom: 3.13rem !important
  }
  .py-sm-8 {
      padding-top: 3.75rem !important;
      padding-bottom: 3.75rem !important
  }
  .py-sm-9 {
      padding-top: 4.96rem !important;
      padding-bottom: 4.96rem !important
  }
  .py-sm-10 {
      padding-top: 6.25rem !important;
      padding-bottom: 6.25rem !important
  }
  .pt-sm-0 {
      padding-top: 0 !important
  }
  .pt-sm-1 {
      padding-top: .31rem !important
  }
  .pt-sm-2 {
      padding-top: .63rem !important
  }
  .pt-sm-3 {
      padding-top: 1rem !important
  }
  .pt-sm-4 {
      padding-top: 1.25rem !important
  }
  .pt-sm-5 {
      padding-top: 1.56rem !important
  }
  .pt-sm-6 {
      padding-top: 1.88rem !important
  }
  .pt-sm-7 {
      padding-top: 3.13rem !important
  }
  .pt-sm-8 {
      padding-top: 3.75rem !important
  }
  .pt-sm-9 {
      padding-top: 4.96rem !important
  }
  .pt-sm-10 {
      padding-top: 6.25rem !important
  }
  .pe-sm-0 {
      padding-right: 0 !important
  }
  .pe-sm-1 {
      padding-right: .31rem !important
  }
  .pe-sm-2 {
      padding-right: .63rem !important
  }
  .pe-sm-3 {
      padding-right: 1rem !important
  }
  .pe-sm-4 {
      padding-right: 1.25rem !important
  }
  .pe-sm-5 {
      padding-right: 1.56rem !important
  }
  .pe-sm-6 {
      padding-right: 1.88rem !important
  }
  .pe-sm-7 {
      padding-right: 3.13rem !important
  }
  .pe-sm-8 {
      padding-right: 3.75rem !important
  }
  .pe-sm-9 {
      padding-right: 4.96rem !important
  }
  .pe-sm-10 {
      padding-right: 6.25rem !important
  }
  .pb-sm-0 {
      padding-bottom: 0 !important
  }
  .pb-sm-1 {
      padding-bottom: .31rem !important
  }
  .pb-sm-2 {
      padding-bottom: .63rem !important
  }
  .pb-sm-3 {
      padding-bottom: 1rem !important
  }
  .pb-sm-4 {
      padding-bottom: 1.25rem !important
  }
  .pb-sm-5 {
      padding-bottom: 1.56rem !important
  }
  .pb-sm-6 {
      padding-bottom: 1.88rem !important
  }
  .pb-sm-7 {
      padding-bottom: 3.13rem !important
  }
  .pb-sm-8 {
      padding-bottom: 3.75rem !important
  }
  .pb-sm-9 {
      padding-bottom: 4.96rem !important
  }
  .pb-sm-10 {
      padding-bottom: 6.25rem !important
  }
  .ps-sm-0 {
      padding-left: 0 !important
  }
  .ps-sm-1 {
      padding-left: .31rem !important
  }
  .ps-sm-2 {
      padding-left: .63rem !important
  }
  .ps-sm-3 {
      padding-left: 1rem !important
  }
  .ps-sm-4 {
      padding-left: 1.25rem !important
  }
  .ps-sm-5 {
      padding-left: 1.56rem !important
  }
  .ps-sm-6 {
      padding-left: 1.88rem !important
  }
  .ps-sm-7 {
      padding-left: 3.13rem !important
  }
  .ps-sm-8 {
      padding-left: 3.75rem !important
  }
  .ps-sm-9 {
      padding-left: 4.96rem !important
  }
  .ps-sm-10 {
      padding-left: 6.25rem !important
  }
  .text-sm-start {
      text-align: left !important
  }
  .text-sm-end {
      text-align: right !important
  }
  .text-sm-center {
      text-align: center !important
  }
}

@media(min-width:768px) {
  .float-md-start {
      float: left !important
  }
  .float-md-end {
      float: right !important
  }
  .float-md-none {
      float: none !important
  }
  .d-md-inline {
      display: inline !important
  }
  .d-md-inline-block {
      display: inline-block !important
  }
  .d-md-block {
      display: block !important
  }
  .d-md-grid {
      display: grid !important
  }
  .d-md-table {
      display: table !important
  }
  .d-md-table-row {
      display: table-row !important
  }
  .d-md-table-cell {
      display: table-cell !important
  }
  .d-md-flex {
      display: -webkit-box !important;
      display: flex !important
  }
  .d-md-inline-flex {
      display: -webkit-inline-box !important;
      display: inline-flex !important
  }
  .d-md-none {
      display: none !important
  }
  .flex-md-fill {
      -webkit-box-flex: 1 !important;
      flex: 1 1 auto !important
  }
  .flex-md-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      flex-direction: row !important
  }
  .flex-md-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      flex-direction: column !important
  }
  .flex-md-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
      flex-direction: row-reverse !important
  }
  .flex-md-column-reverse {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
      flex-direction: column-reverse !important
  }
  .flex-md-grow-0 {
      -webkit-box-flex: 0 !important;
      flex-grow: 0 !important
  }
  .flex-md-grow-1 {
      -webkit-box-flex: 1 !important;
      flex-grow: 1 !important
  }
  .flex-md-shrink-0 {
      flex-shrink: 0 !important
  }
  .flex-md-shrink-1 {
      flex-shrink: 1 !important
  }
  .flex-md-wrap {
      flex-wrap: wrap !important
  }
  .flex-md-nowrap {
      flex-wrap: nowrap !important
  }
  .flex-md-wrap-reverse {
      flex-wrap: wrap-reverse !important
  }
  .gap-md-0 {
      gap: 0 !important
  }
  .gap-md-1 {
      gap: .31rem !important
  }
  .gap-md-2 {
      gap: .63rem !important
  }
  .gap-md-3 {
      gap: 1rem !important
  }
  .gap-md-4 {
      gap: 1.25rem !important
  }
  .gap-md-5 {
      gap: 1.56rem !important
  }
  .gap-md-6 {
      gap: 1.88rem !important
  }
  .gap-md-7 {
      gap: 3.13rem !important
  }
  .gap-md-8 {
      gap: 3.75rem !important
  }
  .gap-md-9 {
      gap: 4.96rem !important
  }
  .gap-md-10 {
      gap: 6.25rem !important
  }
  .justify-content-md-start {
      -webkit-box-pack: start !important;
      justify-content: flex-start !important
  }
  .justify-content-md-end {
      -webkit-box-pack: end !important;
      justify-content: flex-end !important
  }
  .justify-content-md-center {
      -webkit-box-pack: center !important;
      justify-content: center !important
  }
  .justify-content-md-between {
      -webkit-box-pack: justify !important;
      justify-content: space-between !important
  }
  .justify-content-md-around {
      justify-content: space-around !important
  }
  .justify-content-md-evenly {
      -webkit-box-pack: space-evenly !important;
      justify-content: space-evenly !important
  }
  .align-items-md-start {
      -webkit-box-align: start !important;
      align-items: flex-start !important
  }
  .align-items-md-end {
      -webkit-box-align: end !important;
      align-items: flex-end !important
  }
  .align-items-md-center {
      -webkit-box-align: center !important;
      align-items: center !important
  }
  .align-items-md-baseline {
      -webkit-box-align: baseline !important;
      align-items: baseline !important
  }
  .align-items-md-stretch {
      -webkit-box-align: stretch !important;
      align-items: stretch !important
  }
  .align-content-md-start {
      align-content: flex-start !important
  }
  .align-content-md-end {
      align-content: flex-end !important
  }
  .align-content-md-center {
      align-content: center !important
  }
  .align-content-md-between {
      align-content: space-between !important
  }
  .align-content-md-around {
      align-content: space-around !important
  }
  .align-content-md-stretch {
      align-content: stretch !important
  }
  .align-self-md-auto {
      align-self: auto !important
  }
  .align-self-md-start {
      align-self: flex-start !important
  }
  .align-self-md-end {
      align-self: flex-end !important
  }
  .align-self-md-center {
      align-self: center !important
  }
  .align-self-md-baseline {
      align-self: baseline !important
  }
  .align-self-md-stretch {
      align-self: stretch !important
  }
  .order-md-first {
      -webkit-box-ordinal-group: 0 !important;
      order: -1 !important
  }
  .order-md-0 {
      -webkit-box-ordinal-group: 1 !important;
      order: 0 !important
  }
  .order-md-1 {
      -webkit-box-ordinal-group: 2 !important;
      order: 1 !important
  }
  .order-md-2 {
      -webkit-box-ordinal-group: 3 !important;
      order: 2 !important
  }
  .order-md-3 {
      -webkit-box-ordinal-group: 4 !important;
      order: 3 !important
  }
  .order-md-4 {
      -webkit-box-ordinal-group: 5 !important;
      order: 4 !important
  }
  .order-md-5 {
      -webkit-box-ordinal-group: 6 !important;
      order: 5 !important
  }
  .order-md-last {
      -webkit-box-ordinal-group: 7 !important;
      order: 6 !important
  }
  .m-md-0 {
      margin: 0 !important
  }
  .m-md-1 {
      margin: .31rem !important
  }
  .m-md-2 {
      margin: .63rem !important
  }
  .m-md-3 {
      margin: 1rem !important
  }
  .m-md-4 {
      margin: 1.25rem !important
  }
  .m-md-5 {
      margin: 1.56rem !important
  }
  .m-md-6 {
      margin: 1.88rem !important
  }
  .m-md-7 {
      margin: 3.13rem !important
  }
  .m-md-8 {
      margin: 3.75rem !important
  }
  .m-md-9 {
      margin: 4.96rem !important
  }
  .m-md-10 {
      margin: 6.25rem !important
  }
  .m-md-auto {
      margin: auto !important
  }
  .mx-md-0 {
      margin-right: 0 !important;
      margin-left: 0 !important
  }
  .mx-md-1 {
      margin-right: .31rem !important;
      margin-left: .31rem !important
  }
  .mx-md-2 {
      margin-right: .63rem !important;
      margin-left: .63rem !important
  }
  .mx-md-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important
  }
  .mx-md-4 {
      margin-right: 1.25rem !important;
      margin-left: 1.25rem !important
  }
  .mx-md-5 {
      margin-right: 1.56rem !important;
      margin-left: 1.56rem !important
  }
  .mx-md-6 {
      margin-right: 1.88rem !important;
      margin-left: 1.88rem !important
  }
  .mx-md-7 {
      margin-right: 3.13rem !important;
      margin-left: 3.13rem !important
  }
  .mx-md-8 {
      margin-right: 3.75rem !important;
      margin-left: 3.75rem !important
  }
  .mx-md-9 {
      margin-right: 4.96rem !important;
      margin-left: 4.96rem !important
  }
  .mx-md-10 {
      margin-right: 6.25rem !important;
      margin-left: 6.25rem !important
  }
  .mx-md-auto {
      margin-right: auto !important;
      margin-left: auto !important
  }
  .my-md-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important
  }
  .my-md-1 {
      margin-top: .31rem !important;
      margin-bottom: .31rem !important
  }
  .my-md-2 {
      margin-top: .63rem !important;
      margin-bottom: .63rem !important
  }
  .my-md-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important
  }
  .my-md-4 {
      margin-top: 1.25rem !important;
      margin-bottom: 1.25rem !important
  }
  .my-md-5 {
      margin-top: 1.56rem !important;
      margin-bottom: 1.56rem !important
  }
  .my-md-6 {
      margin-top: 1.88rem !important;
      margin-bottom: 1.88rem !important
  }
  .my-md-7 {
      margin-top: 3.13rem !important;
      margin-bottom: 3.13rem !important
  }
  .my-md-8 {
      margin-top: 3.75rem !important;
      margin-bottom: 3.75rem !important
  }
  .my-md-9 {
      margin-top: 4.96rem !important;
      margin-bottom: 4.96rem !important
  }
  .my-md-10 {
      margin-top: 6.25rem !important;
      margin-bottom: 6.25rem !important
  }
  .my-md-auto {
      margin-top: auto !important;
      margin-bottom: auto !important
  }
  .mt-md-0 {
      margin-top: 0 !important
  }
  .mt-md-1 {
      margin-top: .31rem !important
  }
  .mt-md-2 {
      margin-top: .63rem !important
  }
  .mt-md-3 {
      margin-top: 1rem !important
  }
  .mt-md-4 {
      margin-top: 1.25rem !important
  }
  .mt-md-5 {
      margin-top: 1.56rem !important
  }
  .mt-md-6 {
      margin-top: 1.88rem !important
  }
  .mt-md-7 {
      margin-top: 3.13rem !important
  }
  .mt-md-8 {
      margin-top: 3.75rem !important
  }
  .mt-md-9 {
      margin-top: 4.96rem !important
  }
  .mt-md-10 {
      margin-top: 6.25rem !important
  }
  .mt-md-auto {
      margin-top: auto !important
  }
  .me-md-0 {
      margin-right: 0 !important
  }
  .me-md-1 {
      margin-right: .31rem !important
  }
  .me-md-2 {
      margin-right: .63rem !important
  }
  .me-md-3 {
      margin-right: 1rem !important
  }
  .me-md-4 {
      margin-right: 1.25rem !important
  }
  .me-md-5 {
      margin-right: 1.56rem !important
  }
  .me-md-6 {
      margin-right: 1.88rem !important
  }
  .me-md-7 {
      margin-right: 3.13rem !important
  }
  .me-md-8 {
      margin-right: 3.75rem !important
  }
  .me-md-9 {
      margin-right: 4.96rem !important
  }
  .me-md-10 {
      margin-right: 6.25rem !important
  }
  .me-md-auto {
      margin-right: auto !important
  }
  .mb-md-0 {
      margin-bottom: 0 !important
  }
  .mb-md-1 {
      margin-bottom: .31rem !important
  }
  .mb-md-2 {
      margin-bottom: .63rem !important
  }
  .mb-md-3 {
      margin-bottom: 1rem !important
  }
  .mb-md-4 {
      margin-bottom: 1.25rem !important
  }
  .mb-md-5 {
      margin-bottom: 1.56rem !important
  }
  .mb-md-6 {
      margin-bottom: 1.88rem !important
  }
  .mb-md-7 {
      margin-bottom: 3.13rem !important
  }
  .mb-md-8 {
      margin-bottom: 3.75rem !important
  }
  .mb-md-9 {
      margin-bottom: 4.96rem !important
  }
  .mb-md-10 {
      margin-bottom: 6.25rem !important
  }
  .mb-md-auto {
      margin-bottom: auto !important
  }
  .ms-md-0 {
      margin-left: 0 !important
  }
  .ms-md-1 {
      margin-left: .31rem !important
  }
  .ms-md-2 {
      margin-left: .63rem !important
  }
  .ms-md-3 {
      margin-left: 1rem !important
  }
  .ms-md-4 {
      margin-left: 1.25rem !important
  }
  .ms-md-5 {
      margin-left: 1.56rem !important
  }
  .ms-md-6 {
      margin-left: 1.88rem !important
  }
  .ms-md-7 {
      margin-left: 3.13rem !important
  }
  .ms-md-8 {
      margin-left: 3.75rem !important
  }
  .ms-md-9 {
      margin-left: 4.96rem !important
  }
  .ms-md-10 {
      margin-left: 6.25rem !important
  }
  .ms-md-auto {
      margin-left: auto !important
  }
  .p-md-0 {
      padding: 0 !important
  }
  .p-md-1 {
      padding: .31rem !important
  }
  .p-md-2 {
      padding: .63rem !important
  }
  .p-md-3 {
      padding: 1rem !important
  }
  .p-md-4 {
      padding: 1.25rem !important
  }
  .p-md-5 {
      padding: 1.56rem !important
  }
  .p-md-6 {
      padding: 1.88rem !important
  }
  .p-md-7 {
      padding: 3.13rem !important
  }
  .p-md-8 {
      padding: 3.75rem !important
  }
  .p-md-9 {
      padding: 4.96rem !important
  }
  .p-md-10 {
      padding: 6.25rem !important
  }
  .px-md-0 {
      padding-right: 0 !important;
      padding-left: 0 !important
  }
  .px-md-1 {
      padding-right: .31rem !important;
      padding-left: .31rem !important
  }
  .px-md-2 {
      padding-right: .63rem !important;
      padding-left: .63rem !important
  }
  .px-md-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important
  }
  .px-md-4 {
      padding-right: 1.25rem !important;
      padding-left: 1.25rem !important
  }
  .px-md-5 {
      padding-right: 1.56rem !important;
      padding-left: 1.56rem !important
  }
  .px-md-6 {
      padding-right: 1.88rem !important;
      padding-left: 1.88rem !important
  }
  .px-md-7 {
      padding-right: 3.13rem !important;
      padding-left: 3.13rem !important
  }
  .px-md-8 {
      padding-right: 3.75rem !important;
      padding-left: 3.75rem !important
  }
  .px-md-9 {
      padding-right: 4.96rem !important;
      padding-left: 4.96rem !important
  }
  .px-md-10 {
      padding-right: 6.25rem !important;
      padding-left: 6.25rem !important
  }
  .py-md-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important
  }
  .py-md-1 {
      padding-top: .31rem !important;
      padding-bottom: .31rem !important
  }
  .py-md-2 {
      padding-top: .63rem !important;
      padding-bottom: .63rem !important
  }
  .py-md-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important
  }
  .py-md-4 {
      padding-top: 1.25rem !important;
      padding-bottom: 1.25rem !important
  }
  .py-md-5 {
      padding-top: 1.56rem !important;
      padding-bottom: 1.56rem !important
  }
  .py-md-6 {
      padding-top: 1.88rem !important;
      padding-bottom: 1.88rem !important
  }
  .py-md-7 {
      padding-top: 3.13rem !important;
      padding-bottom: 3.13rem !important
  }
  .py-md-8 {
      padding-top: 3.75rem !important;
      padding-bottom: 3.75rem !important
  }
  .py-md-9 {
      padding-top: 4.96rem !important;
      padding-bottom: 4.96rem !important
  }
  .py-md-10 {
      padding-top: 6.25rem !important;
      padding-bottom: 6.25rem !important
  }
  .pt-md-0 {
      padding-top: 0 !important
  }
  .pt-md-1 {
      padding-top: .31rem !important
  }
  .pt-md-2 {
      padding-top: .63rem !important
  }
  .pt-md-3 {
      padding-top: 1rem !important
  }
  .pt-md-4 {
      padding-top: 1.25rem !important
  }
  .pt-md-5 {
      padding-top: 1.56rem !important
  }
  .pt-md-6 {
      padding-top: 1.88rem !important
  }
  .pt-md-7 {
      padding-top: 3.13rem !important
  }
  .pt-md-8 {
      padding-top: 3.75rem !important
  }
  .pt-md-9 {
      padding-top: 4.96rem !important
  }
  .pt-md-10 {
      padding-top: 6.25rem !important
  }
  .pe-md-0 {
      padding-right: 0 !important
  }
  .pe-md-1 {
      padding-right: .31rem !important
  }
  .pe-md-2 {
      padding-right: .63rem !important
  }
  .pe-md-3 {
      padding-right: 1rem !important
  }
  .pe-md-4 {
      padding-right: 1.25rem !important
  }
  .pe-md-5 {
      padding-right: 1.56rem !important
  }
  .pe-md-6 {
      padding-right: 1.88rem !important
  }
  .pe-md-7 {
      padding-right: 3.13rem !important
  }
  .pe-md-8 {
      padding-right: 3.75rem !important
  }
  .pe-md-9 {
      padding-right: 4.96rem !important
  }
  .pe-md-10 {
      padding-right: 6.25rem !important
  }
  .pb-md-0 {
      padding-bottom: 0 !important
  }
  .pb-md-1 {
      padding-bottom: .31rem !important
  }
  .pb-md-2 {
      padding-bottom: .63rem !important
  }
  .pb-md-3 {
      padding-bottom: 1rem !important
  }
  .pb-md-4 {
      padding-bottom: 1.25rem !important
  }
  .pb-md-5 {
      padding-bottom: 1.56rem !important
  }
  .pb-md-6 {
      padding-bottom: 1.88rem !important
  }
  .pb-md-7 {
      padding-bottom: 3.13rem !important
  }
  .pb-md-8 {
      padding-bottom: 3.75rem !important
  }
  .pb-md-9 {
      padding-bottom: 4.96rem !important
  }
  .pb-md-10 {
      padding-bottom: 6.25rem !important
  }
  .ps-md-0 {
      padding-left: 0 !important
  }
  .ps-md-1 {
      padding-left: .31rem !important
  }
  .ps-md-2 {
      padding-left: .63rem !important
  }
  .ps-md-3 {
      padding-left: 1rem !important
  }
  .ps-md-4 {
      padding-left: 1.25rem !important
  }
  .ps-md-5 {
      padding-left: 1.56rem !important
  }
  .ps-md-6 {
      padding-left: 1.88rem !important
  }
  .ps-md-7 {
      padding-left: 3.13rem !important
  }
  .ps-md-8 {
      padding-left: 3.75rem !important
  }
  .ps-md-9 {
      padding-left: 4.96rem !important
  }
  .ps-md-10 {
      padding-left: 6.25rem !important
  }
  .text-md-start {
      text-align: left !important
  }
  .text-md-end {
      text-align: right !important
  }
  .text-md-center {
      text-align: center !important
  }
}

@media(min-width:992px) {
  .float-lg-start {
      float: left !important
  }
  .float-lg-end {
      float: right !important
  }
  .float-lg-none {
      float: none !important
  }
  .d-lg-inline {
      display: inline !important
  }
  .d-lg-inline-block {
      display: inline-block !important
  }
  .d-lg-block {
      display: block !important
  }
  .d-lg-grid {
      display: grid !important
  }
  .d-lg-table {
      display: table !important
  }
  .d-lg-table-row {
      display: table-row !important
  }
  .d-lg-table-cell {
      display: table-cell !important
  }
  .d-lg-flex {
      display: -webkit-box !important;
      display: flex !important
  }
  .d-lg-inline-flex {
      display: -webkit-inline-box !important;
      display: inline-flex !important
  }
  .d-lg-none {
      display: none !important
  }
  .flex-lg-fill {
      -webkit-box-flex: 1 !important;
      flex: 1 1 auto !important
  }
  .flex-lg-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      flex-direction: row !important
  }
  .flex-lg-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      flex-direction: column !important
  }
  .flex-lg-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
      flex-direction: row-reverse !important
  }
  .flex-lg-column-reverse {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
      flex-direction: column-reverse !important
  }
  .flex-lg-grow-0 {
      -webkit-box-flex: 0 !important;
      flex-grow: 0 !important
  }
  .flex-lg-grow-1 {
      -webkit-box-flex: 1 !important;
      flex-grow: 1 !important
  }
  .flex-lg-shrink-0 {
      flex-shrink: 0 !important
  }
  .flex-lg-shrink-1 {
      flex-shrink: 1 !important
  }
  .flex-lg-wrap {
      flex-wrap: wrap !important
  }
  .flex-lg-nowrap {
      flex-wrap: nowrap !important
  }
  .flex-lg-wrap-reverse {
      flex-wrap: wrap-reverse !important
  }
  .gap-lg-0 {
      gap: 0 !important
  }
  .gap-lg-1 {
      gap: .31rem !important
  }
  .gap-lg-2 {
      gap: .63rem !important
  }
  .gap-lg-3 {
      gap: 1rem !important
  }
  .gap-lg-4 {
      gap: 1.25rem !important
  }
  .gap-lg-5 {
      gap: 1.56rem !important
  }
  .gap-lg-6 {
      gap: 1.88rem !important
  }
  .gap-lg-7 {
      gap: 3.13rem !important
  }
  .gap-lg-8 {
      gap: 3.75rem !important
  }
  .gap-lg-9 {
      gap: 4.96rem !important
  }
  .gap-lg-10 {
      gap: 6.25rem !important
  }
  .justify-content-lg-start {
      -webkit-box-pack: start !important;
      justify-content: flex-start !important
  }
  .justify-content-lg-end {
      -webkit-box-pack: end !important;
      justify-content: flex-end !important
  }
  .justify-content-lg-center {
      -webkit-box-pack: center !important;
      justify-content: center !important
  }
  .justify-content-lg-between {
      -webkit-box-pack: justify !important;
      justify-content: space-between !important
  }
  .justify-content-lg-around {
      justify-content: space-around !important
  }
  .justify-content-lg-evenly {
      -webkit-box-pack: space-evenly !important;
      justify-content: space-evenly !important
  }
  .align-items-lg-start {
      -webkit-box-align: start !important;
      align-items: flex-start !important
  }
  .align-items-lg-end {
      -webkit-box-align: end !important;
      align-items: flex-end !important
  }
  .align-items-lg-center {
      -webkit-box-align: center !important;
      align-items: center !important
  }
  .align-items-lg-baseline {
      -webkit-box-align: baseline !important;
      align-items: baseline !important
  }
  .align-items-lg-stretch {
      -webkit-box-align: stretch !important;
      align-items: stretch !important
  }
  .align-content-lg-start {
      align-content: flex-start !important
  }
  .align-content-lg-end {
      align-content: flex-end !important
  }
  .align-content-lg-center {
      align-content: center !important
  }
  .align-content-lg-between {
      align-content: space-between !important
  }
  .align-content-lg-around {
      align-content: space-around !important
  }
  .align-content-lg-stretch {
      align-content: stretch !important
  }
  .align-self-lg-auto {
      align-self: auto !important
  }
  .align-self-lg-start {
      align-self: flex-start !important
  }
  .align-self-lg-end {
      align-self: flex-end !important
  }
  .align-self-lg-center {
      align-self: center !important
  }
  .align-self-lg-baseline {
      align-self: baseline !important
  }
  .align-self-lg-stretch {
      align-self: stretch !important
  }
  .order-lg-first {
      -webkit-box-ordinal-group: 0 !important;
      order: -1 !important
  }
  .order-lg-0 {
      -webkit-box-ordinal-group: 1 !important;
      order: 0 !important
  }
  .order-lg-1 {
      -webkit-box-ordinal-group: 2 !important;
      order: 1 !important
  }
  .order-lg-2 {
      -webkit-box-ordinal-group: 3 !important;
      order: 2 !important
  }
  .order-lg-3 {
      -webkit-box-ordinal-group: 4 !important;
      order: 3 !important
  }
  .order-lg-4 {
      -webkit-box-ordinal-group: 5 !important;
      order: 4 !important
  }
  .order-lg-5 {
      -webkit-box-ordinal-group: 6 !important;
      order: 5 !important
  }
  .order-lg-last {
      -webkit-box-ordinal-group: 7 !important;
      order: 6 !important
  }
  .m-lg-0 {
      margin: 0 !important
  }
  .m-lg-1 {
      margin: .31rem !important
  }
  .m-lg-2 {
      margin: .63rem !important
  }
  .m-lg-3 {
      margin: 1rem !important
  }
  .m-lg-4 {
      margin: 1.25rem !important
  }
  .m-lg-5 {
      margin: 1.56rem !important
  }
  .m-lg-6 {
      margin: 1.88rem !important
  }
  .m-lg-7 {
      margin: 3.13rem !important
  }
  .m-lg-8 {
      margin: 3.75rem !important
  }
  .m-lg-9 {
      margin: 4.96rem !important
  }
  .m-lg-10 {
      margin: 6.25rem !important
  }
  .m-lg-auto {
      margin: auto !important
  }
  .mx-lg-0 {
      margin-right: 0 !important;
      margin-left: 0 !important
  }
  .mx-lg-1 {
      margin-right: .31rem !important;
      margin-left: .31rem !important
  }
  .mx-lg-2 {
      margin-right: .63rem !important;
      margin-left: .63rem !important
  }
  .mx-lg-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important
  }
  .mx-lg-4 {
      margin-right: 1.25rem !important;
      margin-left: 1.25rem !important
  }
  .mx-lg-5 {
      margin-right: 1.56rem !important;
      margin-left: 1.56rem !important
  }
  .mx-lg-6 {
      margin-right: 1.88rem !important;
      margin-left: 1.88rem !important
  }
  .mx-lg-7 {
      margin-right: 3.13rem !important;
      margin-left: 3.13rem !important
  }
  .mx-lg-8 {
      margin-right: 3.75rem !important;
      margin-left: 3.75rem !important
  }
  .mx-lg-9 {
      margin-right: 4.96rem !important;
      margin-left: 4.96rem !important
  }
  .mx-lg-10 {
      margin-right: 6.25rem !important;
      margin-left: 6.25rem !important
  }
  .mx-lg-auto {
      margin-right: auto !important;
      margin-left: auto !important
  }
  .my-lg-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important
  }
  .my-lg-1 {
      margin-top: .31rem !important;
      margin-bottom: .31rem !important
  }
  .my-lg-2 {
      margin-top: .63rem !important;
      margin-bottom: .63rem !important
  }
  .my-lg-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important
  }
  .my-lg-4 {
      margin-top: 1.25rem !important;
      margin-bottom: 1.25rem !important
  }
  .my-lg-5 {
      margin-top: 1.56rem !important;
      margin-bottom: 1.56rem !important
  }
  .my-lg-6 {
      margin-top: 1.88rem !important;
      margin-bottom: 1.88rem !important
  }
  .my-lg-7 {
      margin-top: 3.13rem !important;
      margin-bottom: 3.13rem !important
  }
  .my-lg-8 {
      margin-top: 3.75rem !important;
      margin-bottom: 3.75rem !important
  }
  .my-lg-9 {
      margin-top: 4.96rem !important;
      margin-bottom: 4.96rem !important
  }
  .my-lg-10 {
      margin-top: 6.25rem !important;
      margin-bottom: 6.25rem !important
  }
  .my-lg-auto {
      margin-top: auto !important;
      margin-bottom: auto !important
  }
  .mt-lg-0 {
      margin-top: 0 !important
  }
  .mt-lg-1 {
      margin-top: .31rem !important
  }
  .mt-lg-2 {
      margin-top: .63rem !important
  }
  .mt-lg-3 {
      margin-top: 1rem !important
  }
  .mt-lg-4 {
      margin-top: 1.25rem !important
  }
  .mt-lg-5 {
      margin-top: 1.56rem !important
  }
  .mt-lg-6 {
      margin-top: 1.88rem !important
  }
  .mt-lg-7 {
      margin-top: 3.13rem !important
  }
  .mt-lg-8 {
      margin-top: 3.75rem !important
  }
  .mt-lg-9 {
      margin-top: 4.96rem !important
  }
  .mt-lg-10 {
      margin-top: 6.25rem !important
  }
  .mt-lg-auto {
      margin-top: auto !important
  }
  .me-lg-0 {
      margin-right: 0 !important
  }
  .me-lg-1 {
      margin-right: .31rem !important
  }
  .me-lg-2 {
      margin-right: .63rem !important
  }
  .me-lg-3 {
      margin-right: 1rem !important
  }
  .me-lg-4 {
      margin-right: 1.25rem !important
  }
  .me-lg-5 {
      margin-right: 1.56rem !important
  }
  .me-lg-6 {
      margin-right: 1.88rem !important
  }
  .me-lg-7 {
      margin-right: 3.13rem !important
  }
  .me-lg-8 {
      margin-right: 3.75rem !important
  }
  .me-lg-9 {
      margin-right: 4.96rem !important
  }
  .me-lg-10 {
      margin-right: 6.25rem !important
  }
  .me-lg-auto {
      margin-right: auto !important
  }
  .mb-lg-0 {
      margin-bottom: 0 !important
  }
  .mb-lg-1 {
      margin-bottom: .31rem !important
  }
  .mb-lg-2 {
      margin-bottom: .63rem !important
  }
  .mb-lg-3 {
      margin-bottom: 1rem !important
  }
  .mb-lg-4 {
      margin-bottom: 1.25rem !important
  }
  .mb-lg-5 {
      margin-bottom: 1.56rem !important
  }
  .mb-lg-6 {
      margin-bottom: 1.88rem !important
  }
  .mb-lg-7 {
      margin-bottom: 3.13rem !important
  }
  .mb-lg-8 {
      margin-bottom: 3.75rem !important
  }
  .mb-lg-9 {
      margin-bottom: 4.96rem !important
  }
  .mb-lg-10 {
      margin-bottom: 6.25rem !important
  }
  .mb-lg-auto {
      margin-bottom: auto !important
  }
  .ms-lg-0 {
      margin-left: 0 !important
  }
  .ms-lg-1 {
      margin-left: .31rem !important
  }
  .ms-lg-2 {
      margin-left: .63rem !important
  }
  .ms-lg-3 {
      margin-left: 1rem !important
  }
  .ms-lg-4 {
      margin-left: 1.25rem !important
  }
  .ms-lg-5 {
      margin-left: 1.56rem !important
  }
  .ms-lg-6 {
      margin-left: 1.88rem !important
  }
  .ms-lg-7 {
      margin-left: 3.13rem !important
  }
  .ms-lg-8 {
      margin-left: 3.75rem !important
  }
  .ms-lg-9 {
      margin-left: 4.96rem !important
  }
  .ms-lg-10 {
      margin-left: 6.25rem !important
  }
  .ms-lg-auto {
      margin-left: auto !important
  }
  .p-lg-0 {
      padding: 0 !important
  }
  .p-lg-1 {
      padding: .31rem !important
  }
  .p-lg-2 {
      padding: .63rem !important
  }
  .p-lg-3 {
      padding: 1rem !important
  }
  .p-lg-4 {
      padding: 1.25rem !important
  }
  .p-lg-5 {
      padding: 1.56rem !important
  }
  .p-lg-6 {
      padding: 1.88rem !important
  }
  .p-lg-7 {
      padding: 3.13rem !important
  }
  .p-lg-8 {
      padding: 3.75rem !important
  }
  .p-lg-9 {
      padding: 4.96rem !important
  }
  .p-lg-10 {
      padding: 6.25rem !important
  }
  .px-lg-0 {
      padding-right: 0 !important;
      padding-left: 0 !important
  }
  .px-lg-1 {
      padding-right: .31rem !important;
      padding-left: .31rem !important
  }
  .px-lg-2 {
      padding-right: .63rem !important;
      padding-left: .63rem !important
  }
  .px-lg-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important
  }
  .px-lg-4 {
      padding-right: 1.25rem !important;
      padding-left: 1.25rem !important
  }
  .px-lg-5 {
      padding-right: 1.56rem !important;
      padding-left: 1.56rem !important
  }
  .px-lg-6 {
      padding-right: 1.88rem !important;
      padding-left: 1.88rem !important
  }
  .px-lg-7 {
      padding-right: 3.13rem !important;
      padding-left: 3.13rem !important
  }
  .px-lg-8 {
      padding-right: 3.75rem !important;
      padding-left: 3.75rem !important
  }
  .px-lg-9 {
      padding-right: 4.96rem !important;
      padding-left: 4.96rem !important
  }
  .px-lg-10 {
      padding-right: 6.25rem !important;
      padding-left: 6.25rem !important
  }
  .py-lg-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important
  }
  .py-lg-1 {
      padding-top: .31rem !important;
      padding-bottom: .31rem !important
  }
  .py-lg-2 {
      padding-top: .63rem !important;
      padding-bottom: .63rem !important
  }
  .py-lg-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important
  }
  .py-lg-4 {
      padding-top: 1.25rem !important;
      padding-bottom: 1.25rem !important
  }
  .py-lg-5 {
      padding-top: 1.56rem !important;
      padding-bottom: 1.56rem !important
  }
  .py-lg-6 {
      padding-top: 1.88rem !important;
      padding-bottom: 1.88rem !important
  }
  .py-lg-7 {
      padding-top: 3.13rem !important;
      padding-bottom: 3.13rem !important
  }
  .py-lg-8 {
      padding-top: 3.75rem !important;
      padding-bottom: 3.75rem !important
  }
  .py-lg-9 {
      padding-top: 4.96rem !important;
      padding-bottom: 4.96rem !important
  }
  .py-lg-10 {
      padding-top: 6.25rem !important;
      padding-bottom: 6.25rem !important
  }
  .pt-lg-0 {
      padding-top: 0 !important
  }
  .pt-lg-1 {
      padding-top: .31rem !important
  }
  .pt-lg-2 {
      padding-top: .63rem !important
  }
  .pt-lg-3 {
      padding-top: 1rem !important
  }
  .pt-lg-4 {
      padding-top: 1.25rem !important
  }
  .pt-lg-5 {
      padding-top: 1.56rem !important
  }
  .pt-lg-6 {
      padding-top: 1.88rem !important
  }
  .pt-lg-7 {
      padding-top: 3.13rem !important
  }
  .pt-lg-8 {
      padding-top: 3.75rem !important
  }
  .pt-lg-9 {
      padding-top: 4.96rem !important
  }
  .pt-lg-10 {
      padding-top: 6.25rem !important
  }
  .pe-lg-0 {
      padding-right: 0 !important
  }
  .pe-lg-1 {
      padding-right: .31rem !important
  }
  .pe-lg-2 {
      padding-right: .63rem !important
  }
  .pe-lg-3 {
      padding-right: 1rem !important
  }
  .pe-lg-4 {
      padding-right: 1.25rem !important
  }
  .pe-lg-5 {
      padding-right: 1.56rem !important
  }
  .pe-lg-6 {
      padding-right: 1.88rem !important
  }
  .pe-lg-7 {
      padding-right: 3.13rem !important
  }
  .pe-lg-8 {
      padding-right: 3.75rem !important
  }
  .pe-lg-9 {
      padding-right: 4.96rem !important
  }
  .pe-lg-10 {
      padding-right: 6.25rem !important
  }
  .pb-lg-0 {
      padding-bottom: 0 !important
  }
  .pb-lg-1 {
      padding-bottom: .31rem !important
  }
  .pb-lg-2 {
      padding-bottom: .63rem !important
  }
  .pb-lg-3 {
      padding-bottom: 1rem !important
  }
  .pb-lg-4 {
      padding-bottom: 1.25rem !important
  }
  .pb-lg-5 {
      padding-bottom: 1.56rem !important
  }
  .pb-lg-6 {
      padding-bottom: 1.88rem !important
  }
  .pb-lg-7 {
      padding-bottom: 3.13rem !important
  }
  .pb-lg-8 {
      padding-bottom: 3.75rem !important
  }
  .pb-lg-9 {
      padding-bottom: 4.96rem !important
  }
  .pb-lg-10 {
      padding-bottom: 6.25rem !important
  }
  .ps-lg-0 {
      padding-left: 0 !important
  }
  .ps-lg-1 {
      padding-left: .31rem !important
  }
  .ps-lg-2 {
      padding-left: .63rem !important
  }
  .ps-lg-3 {
      padding-left: 1rem !important
  }
  .ps-lg-4 {
      padding-left: 1.25rem !important
  }
  .ps-lg-5 {
      padding-left: 1.56rem !important
  }
  .ps-lg-6 {
      padding-left: 1.88rem !important
  }
  .ps-lg-7 {
      padding-left: 3.13rem !important
  }
  .ps-lg-8 {
      padding-left: 3.75rem !important
  }
  .ps-lg-9 {
      padding-left: 4.96rem !important
  }
  .ps-lg-10 {
      padding-left: 6.25rem !important
  }
  .text-lg-start {
      text-align: left !important
  }
  .text-lg-end {
      text-align: right !important
  }
  .text-lg-center {
      text-align: center !important
  }
}

@media(min-width:1200px) {
  .float-xl-start {
      float: left !important
  }
  .float-xl-end {
      float: right !important
  }
  .float-xl-none {
      float: none !important
  }
  .d-xl-inline {
      display: inline !important
  }
  .d-xl-inline-block {
      display: inline-block !important
  }
  .d-xl-block {
      display: block !important
  }
  .d-xl-grid {
      display: grid !important
  }
  .d-xl-table {
      display: table !important
  }
  .d-xl-table-row {
      display: table-row !important
  }
  .d-xl-table-cell {
      display: table-cell !important
  }
  .d-xl-flex {
      display: -webkit-box !important;
      display: flex !important
  }
  .d-xl-inline-flex {
      display: -webkit-inline-box !important;
      display: inline-flex !important
  }
  .d-xl-none {
      display: none !important
  }
  .flex-xl-fill {
      -webkit-box-flex: 1 !important;
      flex: 1 1 auto !important
  }
  .flex-xl-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      flex-direction: row !important
  }
  .flex-xl-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      flex-direction: column !important
  }
  .flex-xl-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
      flex-direction: row-reverse !important
  }
  .flex-xl-column-reverse {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
      flex-direction: column-reverse !important
  }
  .flex-xl-grow-0 {
      -webkit-box-flex: 0 !important;
      flex-grow: 0 !important
  }
  .flex-xl-grow-1 {
      -webkit-box-flex: 1 !important;
      flex-grow: 1 !important
  }
  .flex-xl-shrink-0 {
      flex-shrink: 0 !important
  }
  .flex-xl-shrink-1 {
      flex-shrink: 1 !important
  }
  .flex-xl-wrap {
      flex-wrap: wrap !important
  }
  .flex-xl-nowrap {
      flex-wrap: nowrap !important
  }
  .flex-xl-wrap-reverse {
      flex-wrap: wrap-reverse !important
  }
  .gap-xl-0 {
      gap: 0 !important
  }
  .gap-xl-1 {
      gap: .31rem !important
  }
  .gap-xl-2 {
      gap: .63rem !important
  }
  .gap-xl-3 {
      gap: 1rem !important
  }
  .gap-xl-4 {
      gap: 1.25rem !important
  }
  .gap-xl-5 {
      gap: 1.56rem !important
  }
  .gap-xl-6 {
      gap: 1.88rem !important
  }
  .gap-xl-7 {
      gap: 3.13rem !important
  }
  .gap-xl-8 {
      gap: 3.75rem !important
  }
  .gap-xl-9 {
      gap: 4.96rem !important
  }
  .gap-xl-10 {
      gap: 6.25rem !important
  }
  .justify-content-xl-start {
      -webkit-box-pack: start !important;
      justify-content: flex-start !important
  }
  .justify-content-xl-end {
      -webkit-box-pack: end !important;
      justify-content: flex-end !important
  }
  .justify-content-xl-center {
      -webkit-box-pack: center !important;
      justify-content: center !important
  }
  .justify-content-xl-between {
      -webkit-box-pack: justify !important;
      justify-content: space-between !important
  }
  .justify-content-xl-around {
      justify-content: space-around !important
  }
  .justify-content-xl-evenly {
      -webkit-box-pack: space-evenly !important;
      justify-content: space-evenly !important
  }
  .align-items-xl-start {
      -webkit-box-align: start !important;
      align-items: flex-start !important
  }
  .align-items-xl-end {
      -webkit-box-align: end !important;
      align-items: flex-end !important
  }
  .align-items-xl-center {
      -webkit-box-align: center !important;
      align-items: center !important
  }
  .align-items-xl-baseline {
      -webkit-box-align: baseline !important;
      align-items: baseline !important
  }
  .align-items-xl-stretch {
      -webkit-box-align: stretch !important;
      align-items: stretch !important
  }
  .align-content-xl-start {
      align-content: flex-start !important
  }
  .align-content-xl-end {
      align-content: flex-end !important
  }
  .align-content-xl-center {
      align-content: center !important
  }
  .align-content-xl-between {
      align-content: space-between !important
  }
  .align-content-xl-around {
      align-content: space-around !important
  }
  .align-content-xl-stretch {
      align-content: stretch !important
  }
  .align-self-xl-auto {
      align-self: auto !important
  }
  .align-self-xl-start {
      align-self: flex-start !important
  }
  .align-self-xl-end {
      align-self: flex-end !important
  }
  .align-self-xl-center {
      align-self: center !important
  }
  .align-self-xl-baseline {
      align-self: baseline !important
  }
  .align-self-xl-stretch {
      align-self: stretch !important
  }
  .order-xl-first {
      -webkit-box-ordinal-group: 0 !important;
      order: -1 !important
  }
  .order-xl-0 {
      -webkit-box-ordinal-group: 1 !important;
      order: 0 !important
  }
  .order-xl-1 {
      -webkit-box-ordinal-group: 2 !important;
      order: 1 !important
  }
  .order-xl-2 {
      -webkit-box-ordinal-group: 3 !important;
      order: 2 !important
  }
  .order-xl-3 {
      -webkit-box-ordinal-group: 4 !important;
      order: 3 !important
  }
  .order-xl-4 {
      -webkit-box-ordinal-group: 5 !important;
      order: 4 !important
  }
  .order-xl-5 {
      -webkit-box-ordinal-group: 6 !important;
      order: 5 !important
  }
  .order-xl-last {
      -webkit-box-ordinal-group: 7 !important;
      order: 6 !important
  }
  .m-xl-0 {
      margin: 0 !important
  }
  .m-xl-1 {
      margin: .31rem !important
  }
  .m-xl-2 {
      margin: .63rem !important
  }
  .m-xl-3 {
      margin: 1rem !important
  }
  .m-xl-4 {
      margin: 1.25rem !important
  }
  .m-xl-5 {
      margin: 1.56rem !important
  }
  .m-xl-6 {
      margin: 1.88rem !important
  }
  .m-xl-7 {
      margin: 3.13rem !important
  }
  .m-xl-8 {
      margin: 3.75rem !important
  }
  .m-xl-9 {
      margin: 4.96rem !important
  }
  .m-xl-10 {
      margin: 6.25rem !important
  }
  .m-xl-auto {
      margin: auto !important
  }
  .mx-xl-0 {
      margin-right: 0 !important;
      margin-left: 0 !important
  }
  .mx-xl-1 {
      margin-right: .31rem !important;
      margin-left: .31rem !important
  }
  .mx-xl-2 {
      margin-right: .63rem !important;
      margin-left: .63rem !important
  }
  .mx-xl-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important
  }
  .mx-xl-4 {
      margin-right: 1.25rem !important;
      margin-left: 1.25rem !important
  }
  .mx-xl-5 {
      margin-right: 1.56rem !important;
      margin-left: 1.56rem !important
  }
  .mx-xl-6 {
      margin-right: 1.88rem !important;
      margin-left: 1.88rem !important
  }
  .mx-xl-7 {
      margin-right: 3.13rem !important;
      margin-left: 3.13rem !important
  }
  .mx-xl-8 {
      margin-right: 3.75rem !important;
      margin-left: 3.75rem !important
  }
  .mx-xl-9 {
      margin-right: 4.96rem !important;
      margin-left: 4.96rem !important
  }
  .mx-xl-10 {
      margin-right: 6.25rem !important;
      margin-left: 6.25rem !important
  }
  .mx-xl-auto {
      margin-right: auto !important;
      margin-left: auto !important
  }
  .my-xl-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important
  }
  .my-xl-1 {
      margin-top: .31rem !important;
      margin-bottom: .31rem !important
  }
  .my-xl-2 {
      margin-top: .63rem !important;
      margin-bottom: .63rem !important
  }
  .my-xl-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important
  }
  .my-xl-4 {
      margin-top: 1.25rem !important;
      margin-bottom: 1.25rem !important
  }
  .my-xl-5 {
      margin-top: 1.56rem !important;
      margin-bottom: 1.56rem !important
  }
  .my-xl-6 {
      margin-top: 1.88rem !important;
      margin-bottom: 1.88rem !important
  }
  .my-xl-7 {
      margin-top: 3.13rem !important;
      margin-bottom: 3.13rem !important
  }
  .my-xl-8 {
      margin-top: 3.75rem !important;
      margin-bottom: 3.75rem !important
  }
  .my-xl-9 {
      margin-top: 4.96rem !important;
      margin-bottom: 4.96rem !important
  }
  .my-xl-10 {
      margin-top: 6.25rem !important;
      margin-bottom: 6.25rem !important
  }
  .my-xl-auto {
      margin-top: auto !important;
      margin-bottom: auto !important
  }
  .mt-xl-0 {
      margin-top: 0 !important
  }
  .mt-xl-1 {
      margin-top: .31rem !important
  }
  .mt-xl-2 {
      margin-top: .63rem !important
  }
  .mt-xl-3 {
      margin-top: 1rem !important
  }
  .mt-xl-4 {
      margin-top: 1.25rem !important
  }
  .mt-xl-5 {
      margin-top: 1.56rem !important
  }
  .mt-xl-6 {
      margin-top: 1.88rem !important
  }
  .mt-xl-7 {
      margin-top: 3.13rem !important
  }
  .mt-xl-8 {
      margin-top: 3.75rem !important
  }
  .mt-xl-9 {
      margin-top: 4.96rem !important
  }
  .mt-xl-10 {
      margin-top: 6.25rem !important
  }
  .mt-xl-auto {
      margin-top: auto !important
  }
  .me-xl-0 {
      margin-right: 0 !important
  }
  .me-xl-1 {
      margin-right: .31rem !important
  }
  .me-xl-2 {
      margin-right: .63rem !important
  }
  .me-xl-3 {
      margin-right: 1rem !important
  }
  .me-xl-4 {
      margin-right: 1.25rem !important
  }
  .me-xl-5 {
      margin-right: 1.56rem !important
  }
  .me-xl-6 {
      margin-right: 1.88rem !important
  }
  .me-xl-7 {
      margin-right: 3.13rem !important
  }
  .me-xl-8 {
      margin-right: 3.75rem !important
  }
  .me-xl-9 {
      margin-right: 4.96rem !important
  }
  .me-xl-10 {
      margin-right: 6.25rem !important
  }
  .me-xl-auto {
      margin-right: auto !important
  }
  .mb-xl-0 {
      margin-bottom: 0 !important
  }
  .mb-xl-1 {
      margin-bottom: .31rem !important
  }
  .mb-xl-2 {
      margin-bottom: .63rem !important
  }
  .mb-xl-3 {
      margin-bottom: 1rem !important
  }
  .mb-xl-4 {
      margin-bottom: 1.25rem !important
  }
  .mb-xl-5 {
      margin-bottom: 1.56rem !important
  }
  .mb-xl-6 {
      margin-bottom: 1.88rem !important
  }
  .mb-xl-7 {
      margin-bottom: 3.13rem !important
  }
  .mb-xl-8 {
      margin-bottom: 3.75rem !important
  }
  .mb-xl-9 {
      margin-bottom: 4.96rem !important
  }
  .mb-xl-10 {
      margin-bottom: 6.25rem !important
  }
  .mb-xl-auto {
      margin-bottom: auto !important
  }
  .ms-xl-0 {
      margin-left: 0 !important
  }
  .ms-xl-1 {
      margin-left: .31rem !important
  }
  .ms-xl-2 {
      margin-left: .63rem !important
  }
  .ms-xl-3 {
      margin-left: 1rem !important
  }
  .ms-xl-4 {
      margin-left: 1.25rem !important
  }
  .ms-xl-5 {
      margin-left: 1.56rem !important
  }
  .ms-xl-6 {
      margin-left: 1.88rem !important
  }
  .ms-xl-7 {
      margin-left: 3.13rem !important
  }
  .ms-xl-8 {
      margin-left: 3.75rem !important
  }
  .ms-xl-9 {
      margin-left: 4.96rem !important
  }
  .ms-xl-10 {
      margin-left: 6.25rem !important
  }
  .ms-xl-auto {
      margin-left: auto !important
  }
  .p-xl-0 {
      padding: 0 !important
  }
  .p-xl-1 {
      padding: .31rem !important
  }
  .p-xl-2 {
      padding: .63rem !important
  }
  .p-xl-3 {
      padding: 1rem !important
  }
  .p-xl-4 {
      padding: 1.25rem !important
  }
  .p-xl-5 {
      padding: 1.56rem !important
  }
  .p-xl-6 {
      padding: 1.88rem !important
  }
  .p-xl-7 {
      padding: 3.13rem !important
  }
  .p-xl-8 {
      padding: 3.75rem !important
  }
  .p-xl-9 {
      padding: 4.96rem !important
  }
  .p-xl-10 {
      padding: 6.25rem !important
  }
  .px-xl-0 {
      padding-right: 0 !important;
      padding-left: 0 !important
  }
  .px-xl-1 {
      padding-right: .31rem !important;
      padding-left: .31rem !important
  }
  .px-xl-2 {
      padding-right: .63rem !important;
      padding-left: .63rem !important
  }
  .px-xl-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important
  }
  .px-xl-4 {
      padding-right: 1.25rem !important;
      padding-left: 1.25rem !important
  }
  .px-xl-5 {
      padding-right: 1.56rem !important;
      padding-left: 1.56rem !important
  }
  .px-xl-6 {
      padding-right: 1.88rem !important;
      padding-left: 1.88rem !important
  }
  .px-xl-7 {
      padding-right: 3.13rem !important;
      padding-left: 3.13rem !important
  }
  .px-xl-8 {
      padding-right: 3.75rem !important;
      padding-left: 3.75rem !important
  }
  .px-xl-9 {
      padding-right: 4.96rem !important;
      padding-left: 4.96rem !important
  }
  .px-xl-10 {
      padding-right: 6.25rem !important;
      padding-left: 6.25rem !important
  }
  .py-xl-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important
  }
  .py-xl-1 {
      padding-top: .31rem !important;
      padding-bottom: .31rem !important
  }
  .py-xl-2 {
      padding-top: .63rem !important;
      padding-bottom: .63rem !important
  }
  .py-xl-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important
  }
  .py-xl-4 {
      padding-top: 1.25rem !important;
      padding-bottom: 1.25rem !important
  }
  .py-xl-5 {
      padding-top: 1.56rem !important;
      padding-bottom: 1.56rem !important
  }
  .py-xl-6 {
      padding-top: 1.88rem !important;
      padding-bottom: 1.88rem !important
  }
  .py-xl-7 {
      padding-top: 3.13rem !important;
      padding-bottom: 3.13rem !important
  }
  .py-xl-8 {
      padding-top: 3.75rem !important;
      padding-bottom: 3.75rem !important
  }
  .py-xl-9 {
      padding-top: 4.96rem !important;
      padding-bottom: 4.96rem !important
  }
  .py-xl-10 {
      padding-top: 6.25rem !important;
      padding-bottom: 6.25rem !important
  }
  .pt-xl-0 {
      padding-top: 0 !important
  }
  .pt-xl-1 {
      padding-top: .31rem !important
  }
  .pt-xl-2 {
      padding-top: .63rem !important
  }
  .pt-xl-3 {
      padding-top: 1rem !important
  }
  .pt-xl-4 {
      padding-top: 1.25rem !important
  }
  .pt-xl-5 {
      padding-top: 1.56rem !important
  }
  .pt-xl-6 {
      padding-top: 1.88rem !important
  }
  .pt-xl-7 {
      padding-top: 3.13rem !important
  }
  .pt-xl-8 {
      padding-top: 3.75rem !important
  }
  .pt-xl-9 {
      padding-top: 4.96rem !important
  }
  .pt-xl-10 {
      padding-top: 6.25rem !important
  }
  .pe-xl-0 {
      padding-right: 0 !important
  }
  .pe-xl-1 {
      padding-right: .31rem !important
  }
  .pe-xl-2 {
      padding-right: .63rem !important
  }
  .pe-xl-3 {
      padding-right: 1rem !important
  }
  .pe-xl-4 {
      padding-right: 1.25rem !important
  }
  .pe-xl-5 {
      padding-right: 1.56rem !important
  }
  .pe-xl-6 {
      padding-right: 1.88rem !important
  }
  .pe-xl-7 {
      padding-right: 3.13rem !important
  }
  .pe-xl-8 {
      padding-right: 3.75rem !important
  }
  .pe-xl-9 {
      padding-right: 4.96rem !important
  }
  .pe-xl-10 {
      padding-right: 6.25rem !important
  }
  .pb-xl-0 {
      padding-bottom: 0 !important
  }
  .pb-xl-1 {
      padding-bottom: .31rem !important
  }
  .pb-xl-2 {
      padding-bottom: .63rem !important
  }
  .pb-xl-3 {
      padding-bottom: 1rem !important
  }
  .pb-xl-4 {
      padding-bottom: 1.25rem !important
  }
  .pb-xl-5 {
      padding-bottom: 1.56rem !important
  }
  .pb-xl-6 {
      padding-bottom: 1.88rem !important
  }
  .pb-xl-7 {
      padding-bottom: 3.13rem !important
  }
  .pb-xl-8 {
      padding-bottom: 3.75rem !important
  }
  .pb-xl-9 {
      padding-bottom: 4.96rem !important
  }
  .pb-xl-10 {
      padding-bottom: 6.25rem !important
  }
  .ps-xl-0 {
      padding-left: 0 !important
  }
  .ps-xl-1 {
      padding-left: .31rem !important
  }
  .ps-xl-2 {
      padding-left: .63rem !important
  }
  .ps-xl-3 {
      padding-left: 1rem !important
  }
  .ps-xl-4 {
      padding-left: 1.25rem !important
  }
  .ps-xl-5 {
      padding-left: 1.56rem !important
  }
  .ps-xl-6 {
      padding-left: 1.88rem !important
  }
  .ps-xl-7 {
      padding-left: 3.13rem !important
  }
  .ps-xl-8 {
      padding-left: 3.75rem !important
  }
  .ps-xl-9 {
      padding-left: 4.96rem !important
  }
  .ps-xl-10 {
      padding-left: 6.25rem !important
  }
  .text-xl-start {
      text-align: left !important
  }
  .text-xl-end {
      text-align: right !important
  }
  .text-xl-center {
      text-align: center !important
  }
}

@media(min-width:1400px) {
  .float-xxl-start {
      float: left !important
  }
  .float-xxl-end {
      float: right !important
  }
  .float-xxl-none {
      float: none !important
  }
  .d-xxl-inline {
      display: inline !important
  }
  .d-xxl-inline-block {
      display: inline-block !important
  }
  .d-xxl-block {
      display: block !important
  }
  .d-xxl-grid {
      display: grid !important
  }
  .d-xxl-table {
      display: table !important
  }
  .d-xxl-table-row {
      display: table-row !important
  }
  .d-xxl-table-cell {
      display: table-cell !important
  }
  .d-xxl-flex {
      display: -webkit-box !important;
      display: flex !important
  }
  .d-xxl-inline-flex {
      display: -webkit-inline-box !important;
      display: inline-flex !important
  }
  .d-xxl-none {
      display: none !important
  }
  .flex-xxl-fill {
      -webkit-box-flex: 1 !important;
      flex: 1 1 auto !important
  }
  .flex-xxl-row {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      flex-direction: row !important
  }
  .flex-xxl-column {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      flex-direction: column !important
  }
  .flex-xxl-row-reverse {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: reverse !important;
      flex-direction: row-reverse !important
  }
  .flex-xxl-column-reverse {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: reverse !important;
      flex-direction: column-reverse !important
  }
  .flex-xxl-grow-0 {
      -webkit-box-flex: 0 !important;
      flex-grow: 0 !important
  }
  .flex-xxl-grow-1 {
      -webkit-box-flex: 1 !important;
      flex-grow: 1 !important
  }
  .flex-xxl-shrink-0 {
      flex-shrink: 0 !important
  }
  .flex-xxl-shrink-1 {
      flex-shrink: 1 !important
  }
  .flex-xxl-wrap {
      flex-wrap: wrap !important
  }
  .flex-xxl-nowrap {
      flex-wrap: nowrap !important
  }
  .flex-xxl-wrap-reverse {
      flex-wrap: wrap-reverse !important
  }
  .gap-xxl-0 {
      gap: 0 !important
  }
  .gap-xxl-1 {
      gap: .31rem !important
  }
  .gap-xxl-2 {
      gap: .63rem !important
  }
  .gap-xxl-3 {
      gap: 1rem !important
  }
  .gap-xxl-4 {
      gap: 1.25rem !important
  }
  .gap-xxl-5 {
      gap: 1.56rem !important
  }
  .gap-xxl-6 {
      gap: 1.88rem !important
  }
  .gap-xxl-7 {
      gap: 3.13rem !important
  }
  .gap-xxl-8 {
      gap: 3.75rem !important
  }
  .gap-xxl-9 {
      gap: 4.96rem !important
  }
  .gap-xxl-10 {
      gap: 6.25rem !important
  }
  .justify-content-xxl-start {
      -webkit-box-pack: start !important;
      justify-content: flex-start !important
  }
  .justify-content-xxl-end {
      -webkit-box-pack: end !important;
      justify-content: flex-end !important
  }
  .justify-content-xxl-center {
      -webkit-box-pack: center !important;
      justify-content: center !important
  }
  .justify-content-xxl-between {
      -webkit-box-pack: justify !important;
      justify-content: space-between !important
  }
  .justify-content-xxl-around {
      justify-content: space-around !important
  }
  .justify-content-xxl-evenly {
      -webkit-box-pack: space-evenly !important;
      justify-content: space-evenly !important
  }
  .align-items-xxl-start {
      -webkit-box-align: start !important;
      align-items: flex-start !important
  }
  .align-items-xxl-end {
      -webkit-box-align: end !important;
      align-items: flex-end !important
  }
  .align-items-xxl-center {
      -webkit-box-align: center !important;
      align-items: center !important
  }
  .align-items-xxl-baseline {
      -webkit-box-align: baseline !important;
      align-items: baseline !important
  }
  .align-items-xxl-stretch {
      -webkit-box-align: stretch !important;
      align-items: stretch !important
  }
  .align-content-xxl-start {
      align-content: flex-start !important
  }
  .align-content-xxl-end {
      align-content: flex-end !important
  }
  .align-content-xxl-center {
      align-content: center !important
  }
  .align-content-xxl-between {
      align-content: space-between !important
  }
  .align-content-xxl-around {
      align-content: space-around !important
  }
  .align-content-xxl-stretch {
      align-content: stretch !important
  }
  .align-self-xxl-auto {
      align-self: auto !important
  }
  .align-self-xxl-start {
      align-self: flex-start !important
  }
  .align-self-xxl-end {
      align-self: flex-end !important
  }
  .align-self-xxl-center {
      align-self: center !important
  }
  .align-self-xxl-baseline {
      align-self: baseline !important
  }
  .align-self-xxl-stretch {
      align-self: stretch !important
  }
  .order-xxl-first {
      -webkit-box-ordinal-group: 0 !important;
      order: -1 !important
  }
  .order-xxl-0 {
      -webkit-box-ordinal-group: 1 !important;
      order: 0 !important
  }
  .order-xxl-1 {
      -webkit-box-ordinal-group: 2 !important;
      order: 1 !important
  }
  .order-xxl-2 {
      -webkit-box-ordinal-group: 3 !important;
      order: 2 !important
  }
  .order-xxl-3 {
      -webkit-box-ordinal-group: 4 !important;
      order: 3 !important
  }
  .order-xxl-4 {
      -webkit-box-ordinal-group: 5 !important;
      order: 4 !important
  }
  .order-xxl-5 {
      -webkit-box-ordinal-group: 6 !important;
      order: 5 !important
  }
  .order-xxl-last {
      -webkit-box-ordinal-group: 7 !important;
      order: 6 !important
  }
  .m-xxl-0 {
      margin: 0 !important
  }
  .m-xxl-1 {
      margin: .31rem !important
  }
  .m-xxl-2 {
      margin: .63rem !important
  }
  .m-xxl-3 {
      margin: 1rem !important
  }
  .m-xxl-4 {
      margin: 1.25rem !important
  }
  .m-xxl-5 {
      margin: 1.56rem !important
  }
  .m-xxl-6 {
      margin: 1.88rem !important
  }
  .m-xxl-7 {
      margin: 3.13rem !important
  }
  .m-xxl-8 {
      margin: 3.75rem !important
  }
  .m-xxl-9 {
      margin: 4.96rem !important
  }
  .m-xxl-10 {
      margin: 6.25rem !important
  }
  .m-xxl-auto {
      margin: auto !important
  }
  .mx-xxl-0 {
      margin-right: 0 !important;
      margin-left: 0 !important
  }
  .mx-xxl-1 {
      margin-right: .31rem !important;
      margin-left: .31rem !important
  }
  .mx-xxl-2 {
      margin-right: .63rem !important;
      margin-left: .63rem !important
  }
  .mx-xxl-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important
  }
  .mx-xxl-4 {
      margin-right: 1.25rem !important;
      margin-left: 1.25rem !important
  }
  .mx-xxl-5 {
      margin-right: 1.56rem !important;
      margin-left: 1.56rem !important
  }
  .mx-xxl-6 {
      margin-right: 1.88rem !important;
      margin-left: 1.88rem !important
  }
  .mx-xxl-7 {
      margin-right: 3.13rem !important;
      margin-left: 3.13rem !important
  }
  .mx-xxl-8 {
      margin-right: 3.75rem !important;
      margin-left: 3.75rem !important
  }
  .mx-xxl-9 {
      margin-right: 4.96rem !important;
      margin-left: 4.96rem !important
  }
  .mx-xxl-10 {
      margin-right: 6.25rem !important;
      margin-left: 6.25rem !important
  }
  .mx-xxl-auto {
      margin-right: auto !important;
      margin-left: auto !important
  }
  .my-xxl-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important
  }
  .my-xxl-1 {
      margin-top: .31rem !important;
      margin-bottom: .31rem !important
  }
  .my-xxl-2 {
      margin-top: .63rem !important;
      margin-bottom: .63rem !important
  }
  .my-xxl-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important
  }
  .my-xxl-4 {
      margin-top: 1.25rem !important;
      margin-bottom: 1.25rem !important
  }
  .my-xxl-5 {
      margin-top: 1.56rem !important;
      margin-bottom: 1.56rem !important
  }
  .my-xxl-6 {
      margin-top: 1.88rem !important;
      margin-bottom: 1.88rem !important
  }
  .my-xxl-7 {
      margin-top: 3.13rem !important;
      margin-bottom: 3.13rem !important
  }
  .my-xxl-8 {
      margin-top: 3.75rem !important;
      margin-bottom: 3.75rem !important
  }
  .my-xxl-9 {
      margin-top: 4.96rem !important;
      margin-bottom: 4.96rem !important
  }
  .my-xxl-10 {
      margin-top: 6.25rem !important;
      margin-bottom: 6.25rem !important
  }
  .my-xxl-auto {
      margin-top: auto !important;
      margin-bottom: auto !important
  }
  .mt-xxl-0 {
      margin-top: 0 !important
  }
  .mt-xxl-1 {
      margin-top: .31rem !important
  }
  .mt-xxl-2 {
      margin-top: .63rem !important
  }
  .mt-xxl-3 {
      margin-top: 1rem !important
  }
  .mt-xxl-4 {
      margin-top: 1.25rem !important
  }
  .mt-xxl-5 {
      margin-top: 1.56rem !important
  }
  .mt-xxl-6 {
      margin-top: 1.88rem !important
  }
  .mt-xxl-7 {
      margin-top: 3.13rem !important
  }
  .mt-xxl-8 {
      margin-top: 3.75rem !important
  }
  .mt-xxl-9 {
      margin-top: 4.96rem !important
  }
  .mt-xxl-10 {
      margin-top: 6.25rem !important
  }
  .mt-xxl-auto {
      margin-top: auto !important
  }
  .me-xxl-0 {
      margin-right: 0 !important
  }
  .me-xxl-1 {
      margin-right: .31rem !important
  }
  .me-xxl-2 {
      margin-right: .63rem !important
  }
  .me-xxl-3 {
      margin-right: 1rem !important
  }
  .me-xxl-4 {
      margin-right: 1.25rem !important
  }
  .me-xxl-5 {
      margin-right: 1.56rem !important
  }
  .me-xxl-6 {
      margin-right: 1.88rem !important
  }
  .me-xxl-7 {
      margin-right: 3.13rem !important
  }
  .me-xxl-8 {
      margin-right: 3.75rem !important
  }
  .me-xxl-9 {
      margin-right: 4.96rem !important
  }
  .me-xxl-10 {
      margin-right: 6.25rem !important
  }
  .me-xxl-auto {
      margin-right: auto !important
  }
  .mb-xxl-0 {
      margin-bottom: 0 !important
  }
  .mb-xxl-1 {
      margin-bottom: .31rem !important
  }
  .mb-xxl-2 {
      margin-bottom: .63rem !important
  }
  .mb-xxl-3 {
      margin-bottom: 1rem !important
  }
  .mb-xxl-4 {
      margin-bottom: 1.25rem !important
  }
  .mb-xxl-5 {
      margin-bottom: 1.56rem !important
  }
  .mb-xxl-6 {
      margin-bottom: 1.88rem !important
  }
  .mb-xxl-7 {
      margin-bottom: 3.13rem !important
  }
  .mb-xxl-8 {
      margin-bottom: 3.75rem !important
  }
  .mb-xxl-9 {
      margin-bottom: 4.96rem !important
  }
  .mb-xxl-10 {
      margin-bottom: 6.25rem !important
  }
  .mb-xxl-auto {
      margin-bottom: auto !important
  }
  .ms-xxl-0 {
      margin-left: 0 !important
  }
  .ms-xxl-1 {
      margin-left: .31rem !important
  }
  .ms-xxl-2 {
      margin-left: .63rem !important
  }
  .ms-xxl-3 {
      margin-left: 1rem !important
  }
  .ms-xxl-4 {
      margin-left: 1.25rem !important
  }
  .ms-xxl-5 {
      margin-left: 1.56rem !important
  }
  .ms-xxl-6 {
      margin-left: 1.88rem !important
  }
  .ms-xxl-7 {
      margin-left: 3.13rem !important
  }
  .ms-xxl-8 {
      margin-left: 3.75rem !important
  }
  .ms-xxl-9 {
      margin-left: 4.96rem !important
  }
  .ms-xxl-10 {
      margin-left: 6.25rem !important
  }
  .ms-xxl-auto {
      margin-left: auto !important
  }
  .p-xxl-0 {
      padding: 0 !important
  }
  .p-xxl-1 {
      padding: .31rem !important
  }
  .p-xxl-2 {
      padding: .63rem !important
  }
  .p-xxl-3 {
      padding: 1rem !important
  }
  .p-xxl-4 {
      padding: 1.25rem !important
  }
  .p-xxl-5 {
      padding: 1.56rem !important
  }
  .p-xxl-6 {
      padding: 1.88rem !important
  }
  .p-xxl-7 {
      padding: 3.13rem !important
  }
  .p-xxl-8 {
      padding: 3.75rem !important
  }
  .p-xxl-9 {
      padding: 4.96rem !important
  }
  .p-xxl-10 {
      padding: 6.25rem !important
  }
  .px-xxl-0 {
      padding-right: 0 !important;
      padding-left: 0 !important
  }
  .px-xxl-1 {
      padding-right: .31rem !important;
      padding-left: .31rem !important
  }
  .px-xxl-2 {
      padding-right: .63rem !important;
      padding-left: .63rem !important
  }
  .px-xxl-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important
  }
  .px-xxl-4 {
      padding-right: 1.25rem !important;
      padding-left: 1.25rem !important
  }
  .px-xxl-5 {
      padding-right: 1.56rem !important;
      padding-left: 1.56rem !important
  }
  .px-xxl-6 {
      padding-right: 1.88rem !important;
      padding-left: 1.88rem !important
  }
  .px-xxl-7 {
      padding-right: 3.13rem !important;
      padding-left: 3.13rem !important
  }
  .px-xxl-8 {
      padding-right: 3.75rem !important;
      padding-left: 3.75rem !important
  }
  .px-xxl-9 {
      padding-right: 4.96rem !important;
      padding-left: 4.96rem !important
  }
  .px-xxl-10 {
      padding-right: 6.25rem !important;
      padding-left: 6.25rem !important
  }
  .py-xxl-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important
  }
  .py-xxl-1 {
      padding-top: .31rem !important;
      padding-bottom: .31rem !important
  }
  .py-xxl-2 {
      padding-top: .63rem !important;
      padding-bottom: .63rem !important
  }
  .py-xxl-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important
  }
  .py-xxl-4 {
      padding-top: 1.25rem !important;
      padding-bottom: 1.25rem !important
  }
  .py-xxl-5 {
      padding-top: 1.56rem !important;
      padding-bottom: 1.56rem !important
  }
  .py-xxl-6 {
      padding-top: 1.88rem !important;
      padding-bottom: 1.88rem !important
  }
  .py-xxl-7 {
      padding-top: 3.13rem !important;
      padding-bottom: 3.13rem !important
  }
  .py-xxl-8 {
      padding-top: 3.75rem !important;
      padding-bottom: 3.75rem !important
  }
  .py-xxl-9 {
      padding-top: 4.96rem !important;
      padding-bottom: 4.96rem !important
  }
  .py-xxl-10 {
      padding-top: 6.25rem !important;
      padding-bottom: 6.25rem !important
  }
  .pt-xxl-0 {
      padding-top: 0 !important
  }
  .pt-xxl-1 {
      padding-top: .31rem !important
  }
  .pt-xxl-2 {
      padding-top: .63rem !important
  }
  .pt-xxl-3 {
      padding-top: 1rem !important
  }
  .pt-xxl-4 {
      padding-top: 1.25rem !important
  }
  .pt-xxl-5 {
      padding-top: 1.56rem !important
  }
  .pt-xxl-6 {
      padding-top: 1.88rem !important
  }
  .pt-xxl-7 {
      padding-top: 3.13rem !important
  }
  .pt-xxl-8 {
      padding-top: 3.75rem !important
  }
  .pt-xxl-9 {
      padding-top: 4.96rem !important
  }
  .pt-xxl-10 {
      padding-top: 6.25rem !important
  }
  .pe-xxl-0 {
      padding-right: 0 !important
  }
  .pe-xxl-1 {
      padding-right: .31rem !important
  }
  .pe-xxl-2 {
      padding-right: .63rem !important
  }
  .pe-xxl-3 {
      padding-right: 1rem !important
  }
  .pe-xxl-4 {
      padding-right: 1.25rem !important
  }
  .pe-xxl-5 {
      padding-right: 1.56rem !important
  }
  .pe-xxl-6 {
      padding-right: 1.88rem !important
  }
  .pe-xxl-7 {
      padding-right: 3.13rem !important
  }
  .pe-xxl-8 {
      padding-right: 3.75rem !important
  }
  .pe-xxl-9 {
      padding-right: 4.96rem !important
  }
  .pe-xxl-10 {
      padding-right: 6.25rem !important
  }
  .pb-xxl-0 {
      padding-bottom: 0 !important
  }
  .pb-xxl-1 {
      padding-bottom: .31rem !important
  }
  .pb-xxl-2 {
      padding-bottom: .63rem !important
  }
  .pb-xxl-3 {
      padding-bottom: 1rem !important
  }
  .pb-xxl-4 {
      padding-bottom: 1.25rem !important
  }
  .pb-xxl-5 {
      padding-bottom: 1.56rem !important
  }
  .pb-xxl-6 {
      padding-bottom: 1.88rem !important
  }
  .pb-xxl-7 {
      padding-bottom: 3.13rem !important
  }
  .pb-xxl-8 {
      padding-bottom: 3.75rem !important
  }
  .pb-xxl-9 {
      padding-bottom: 4.96rem !important
  }
  .pb-xxl-10 {
      padding-bottom: 6.25rem !important
  }
  .ps-xxl-0 {
      padding-left: 0 !important
  }
  .ps-xxl-1 {
      padding-left: .31rem !important
  }
  .ps-xxl-2 {
      padding-left: .63rem !important
  }
  .ps-xxl-3 {
      padding-left: 1rem !important
  }
  .ps-xxl-4 {
      padding-left: 1.25rem !important
  }
  .ps-xxl-5 {
      padding-left: 1.56rem !important
  }
  .ps-xxl-6 {
      padding-left: 1.88rem !important
  }
  .ps-xxl-7 {
      padding-left: 3.13rem !important
  }
  .ps-xxl-8 {
      padding-left: 3.75rem !important
  }
  .ps-xxl-9 {
      padding-left: 4.96rem !important
  }
  .ps-xxl-10 {
      padding-left: 6.25rem !important
  }
  .text-xxl-start {
      text-align: left !important
  }
  .text-xxl-end {
      text-align: right !important
  }
  .text-xxl-center {
      text-align: center !important
  }
}

@media(min-width:1200px) {
  .fs-1 {
      font-size: 2.1875rem !important
  }
  .fs-2 {
      font-size: 1.75rem !important
  }
  .fs-3 {
      font-size: 1.53125rem !important
  }
  .fs-4 {
      font-size: 1.3125rem !important
  }
}

@media print {
  .d-print-inline {
      display: inline !important
  }
  .d-print-inline-block {
      display: inline-block !important
  }
  .d-print-block {
      display: block !important
  }
  .d-print-grid {
      display: grid !important
  }
  .d-print-table {
      display: table !important
  }
  .d-print-table-row {
      display: table-row !important
  }
  .d-print-table-cell {
      display: table-cell !important
  }
  .d-print-flex {
      display: -webkit-box !important;
      display: flex !important
  }
  .d-print-inline-flex {
      display: -webkit-inline-box !important;
      display: inline-flex !important
  }
  .d-print-none {
      display: none !important
  }
}

.bg-parallax {
  background-size: cover;
  background-position: center;
  background-attachment: fixed
}

.bg-repeat {
  background-repeat: repeat
}

hr {
  opacity: 1;
  background-color: rgba(0, 0, 0, .1)
}

.mtn--90 {
  margin-top: -5.625rem
}

.mtn-50 {
  margin-top: -6.125rem
}

.mtn-80 {
  margin-top: -5rem !important
}

.mtn-115 {
  margin-top: -7.1875rem
}

.line-hight-16 {
  line-height: 1rem
}

.line-hight-21 {
  line-height: 1.3125rem
}

p {
  font-size: .875rem;
  color: #666
}
.para{
  font-size: 20px;
   color: #666;
   font-weight: 500;
   text-align: justify;
}
.para-2{
  font-size: 20px;
  color: #00bcd4;
  font-weight: 700;
  text-align: justify;
}
a {
  text-decoration: none
}

.text-underline {
  text-decoration: underline !important
}

.text-underline:hover {
  text-decoration: underline !important
}

.text-color {
  color: #666
}

.font-dosis {
  font-family: 'Crimson Pro', serif
}

.font-inherit {
  font-family: inherit
}

.font-base {
  font-family: 'Crimson Pro', serif
}

.font-size-12 {
  font-size: .75rem
}

.font-size-13 {
  font-size: .81rem
}

.font-size-14 {
  font-size: .875rem
}

.font-size-15 {
  font-size: .94rem
}

.font-size-16 {
  font-size: 1rem
}

.font-size-17 {
  font-size: 1.1rem
}

.font-size-18 {
  font-size: 1.13rem
}

.font-size-19 {
  font-size: 1.19rem
}

.font-size-20 {
  font-size: 1.25rem !important
}

.font-size-24 {
  font-size: 1.5rem
}

.font-size-28 {
  font-size: 1.75rem
}

.font-size-32 {
  font-size: 2rem
}

.font-size-40 {
  font-size: 2.5rem
}

.font-size-48 {
  font-size: 3rem
}

.font-size-55 {
  font-size: 3.4375rem !important
}

.font-weight-medium {
  font-weight: 600
}

.font-weight-bold {
  font-weight: 700 !important
}

.text-hover-primary:hover {
  color: #f0c24b
}

.text-hover-warning:hover {
  color: #f0c24b
}

.text-hover-danger {
  -webkit-transition: all .5s;
  transition: all .5s
}

.text-hover-danger:hover {
  color: #ea7066
}

.text-hover-success:hover {
  color: #b5d56a
}

.text-hover-info:hover {
  color: #84bed6
}

.text-hover-purple:hover {
  color: #a597e7
}

.text-hover-pink:hover {
  color: #ea77ad
}

.border-1 {
  border: 1px solid #e7e7e7
}

.border-2 {
  border: 2px solid #e7e7e7
}

.border-4 {
  border: 4px solid #e7e7e7
}

.border-5 {
  border: 5px solid #e7e7e7
}

.border-top-5 {
  border-top: 5px solid #e7e7e7
}

.border-transparent {
  border-color: transparent !important
}

.rounded-lg {
  border-radius: .8rem
}

.rounded {
  border-radius: .5rem !important
}

.rounded-top {
  border-top-left-radius: .5rem !important;
  border-top-right-radius: .5rem !important
}

.rounded-right {
  border-top-right-radius: .5rem !important;
  border-bottom-right-radius: .5rem !important
}

.rounded-bottom {
  border-bottom-right-radius: .5rem !important;
  border-bottom-left-radius: .5rem !important
}

.rounded-left {
  border-top-left-radius: .5rem !important;
  border-bottom-left-radius: .5rem !important
}

.rounded-sm {
  border-radius: .4rem !important
}

.rounded-top-sm {
  border-top-left-radius: .4rem !important;
  border-top-right-radius: .4rem !important
}

.rounded-bottom-sm {
  border-bottom-left-radius: .4rem !important;
  border-bottom-right-radius: .4rem !important
}

.z-index-100 {
  z-index: 100
}

.opacity-70 {
  opacity: .7
}

.opacity-75 {
  opacity: .75
}

.opacity-80 {
  opacity: .8
}

.opacity-85 {
  opacity: .85
}

.shadow-xl {
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .15)
}

.shadow-light {
  box-shadow: 0 .25rem 0 rgba(255, 255, 255, .1);
  -webkit-transition: all .5s;
  transition: all .5s
}

.shadow-sm-hover {
  box-shadow: 0 .25rem 0 rgba(0, 0, 0, .1);
  -webkit-transition: all .5s;
  transition: all .5s
}

.shadow-sm-hover:hover {
  box-shadow: 0 .25rem 0 rgba(0, 0, 0, .3)
}

.breadcrumb-bg {
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat
}

.breadcrumb-bg .breadcrumb-holder {
  height: 250px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center
}

.breadcrumb-transparent {
  -webkit-box-pack: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background-color: transparent
}

.breadcrumb-transparent .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
  font-family: "font awesome 5 free";
  content: "\276F\00a0";
  padding: 0 5px
}

.breadcrumb-element {
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  height: 250px
}

.breadcrumb-element h1,
.breadcrumb-element .h1 {
  font-weight: 700;
  color: #fff;
  text-align: center
}

.breadcrumb-element p {
  color: #fff;
  text-align: center
}

.breadcrumb-title {
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 2.5rem;
  font-family: 'Crimson Pro', serif
}

.color-bars {
  width: 100%
}

.color-bar {
  height: 3px
}

.cart-dropdown {
  position: relative
}

.cart-dropdown .dropdown-menu {
  width: 320px;
  padding: 1rem;
  height: auto;
  overflow-y: inherit;
  margin-top: 1.3125rem;
  border-top: 4px solid #ea7066
}

@media(min-width:768px) {
  .cart-dropdown .dropdown-menu {
      margin-top: .65rem !important;
      width: 400px;
      padding: 1.5rem
  }
}

.cart-dropdown .dropdown-menu:after {
  display: none
}

@media(min-width:768px) {
  .cart-dropdown .dropdown-menu:after {
      border-left: 9px solid transparent;
      border-right: 9px solid transparent;
      border-bottom: 7px solid #ea7066;
      margin-left: -10px;
      content: "";
      display: inline-block;
      right: 6px;
      position: absolute;
      top: -11px
  }
}

.cart-dropdown .dropdown-menu-end {
  right: -60px
}

@media(min-width:768px) {
  .cart-dropdown .dropdown-menu-end {
      right: 0
  }
}

.cart-icon .close-icon {
  display: none
}

.cart-icon.show .shopping-icon {
  display: none
}

.cart-icon.show .close-icon {
  display: block
}

.dropdown-sm {
  position: relative
}

.dropdown-sm .btn {
  padding: 0;
  color: rgba(255, 255, 255, .8)
}

.dropdown-sm .btn:focus {
  text-decoration: none
}

.dropdown-sm .dropdown-menu {
  min-width: 6rem;
  padding: .3125rem;
  top: 10px !important
}

.dropdown-sm .dropdown-menu .dropdown-item {
  font-size: .75rem;
  padding: 6px 12px;
  text-transform: capitalize;
  color: #6c757d;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out
}

.dropdown-sm .dropdown-menu .dropdown-item:hover {
  background-color: #84bed6;
  color: #fff
}

.navbar {
  box-shadow: 0 .25rem 0 rgba(0, 0, 0, .1);
  padding: .32rem 0;
  z-index: 999;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out
}

@media(min-width:768px) {
  .navbar {
      padding: 0
  }
}

.navbar>.container {
  padding-left: 0;
  padding-right: 0;
  position: relative
}

.navbar .navbar-brand {
  margin-left: .94rem;
  padding: 10px 0;
  margin-right: 1.7rem
}

@media(min-width:768px) {
  .navbar .navbar-brand {
      padding: 20px 0
  }
}

.navbar .navbar-brand img {
  max-width: 130px
}

@media(min-width:768px) {
  .navbar .navbar-brand img {
      width: 100%
  }
}

@media(min-width:992px) {
  .navbar .navbar-brand img {
      max-width: 270px;
  }
}

.navbar .navbar-toggler {
  margin-right: .94rem;
  background-color: #ea7066;
  border-radius: .25rem;
  box-shadow: 0 .25rem 0 rgba(0, 0, 0, .1);
  color: #fff
}

.navbar .navbar-toggler:focus {
  outline: 0
}

.navbar .navbar-collapse {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  border-top: 1px solid #e7e7e7;
  max-height: 400px;
  box-shadow: 0 .25rem 0 rgba(0, 0, 0, .1)
}

@media(min-width:768px) {
  .navbar .navbar-collapse {
      position: static;
      width: auto;
      border-top: 0;
      background-color: transparent;
      box-shadow: none
  }
}

.navbar .navbar-collapse.show {
  overflow-y: auto
}

@media(min-width:768px) {
  .navbar .navbar-collapse.show {
      overflow-y: hidden
  }
}

.navbar .dropdown-menu {
  border-radius: .25rem
}

@media(min-width:768px) {
  .navbar .dropdown-menu {
      box-shadow: 0 4px 6px rgba(0, 0, 0, .175)
  }
}

.navbar-nav {
  margin-top: .94rem;
  margin-bottom: .94rem;
  padding-left: .94rem;
  padding-right: .94rem
}

@media(min-width:768px) {
  .navbar-nav {
      margin-top: 0;
      margin-bottom: 0
  }
}

.navbar-nav .nav-item.dropdown:last-child .nav-link.dropdown-toggle span {
  border-right: none
}

.navbar-nav .dropdown>a {
  font-size: .875rem
}

.navbar-nav .dropdown .nav-link span {
  display: inline-block;
  line-height: 16px;
  text-align: center;
  text-transform: capitalize;
  color: #000;
  font-weight: 600
}

@media(min-width:768px) {
  .navbar-nav .dropdown .nav-link span {
      display: block;
      width: 85px;
      border-right: 2px solid;
      padding: 0 .75rem
  }
}

@media(min-width:992px) {
  .navbar-nav .dropdown .nav-link span {
      width: 110px;
      padding: 0
  }
}

.navbar-nav .dropdown .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 200
}

@media(min-width:768px) {
  .navbar-nav .dropdown .dropdown-menu {
      border-top: 4px solid;
      margin-top: 0;
      width: 210px;
      padding: .3rem;
      box-shadow: 0 .25rem .38rem rgba(0, 0, 0, .175)
  }
}

@media(min-width:992px) {
  .navbar-nav .dropdown .dropdown-menu {
      width: 230px
  }
}

.navbar-nav .dropdown .dropdown-menu li {
  position: relative
}

.navbar-nav .dropdown .dropdown-menu .dropdown-item,
.navbar-nav .dropdown .dropdown-menu ul li a {
  color: #666;
  padding-top: .38rem;
  padding-bottom: .38rem;
  font-size: .875rem;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out
}

@media(min-width:768px) {
  .navbar-nav .dropdown .dropdown-menu .dropdown-item,
  .navbar-nav .dropdown .dropdown-menu ul li a {
      padding: .625rem .75rem;
      display: block
  }
}

.navbar-nav .dropdown .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown .dropdown-menu ul li a:hover {
  padding-left: 1.38rem
}

.navbar-nav .dropdown .dropdown-menu .sub-menu {
  list-style: none;
  padding-left: 1.25rem;
  margin-left: 1.53rem;
  position: relative
}

@media(min-width:768px) {
  .navbar-nav .dropdown .dropdown-menu .sub-menu {
      position: absolute;
      left: 100%;
      top: 0;
      background-color: #fff;
      width: 185px;
      visibility: hidden;
      opacity: 0;
      margin-left: .18rem;
      padding: .3125rem;
      border-radius: .25rem;
      border-left: 4px solid;
      box-shadow: 0 .25rem .375rem rgba(0, 0, 0, .175)
  }
}

@media(min-width:992px) {
  .navbar-nav .dropdown .dropdown-menu .sub-menu {
      width: 190px
  }
}

@media(min-width:1200px) {
  .navbar-nav .dropdown .dropdown-menu .sub-menu {
      width: 210px
  }
}

.navbar-nav .dropdown .dropdown-menu .sub-menu:before {
  position: absolute;
  left: 0;
  height: 90%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3px;
  background-color: #e7e7e7;
  content: ''
}

@media(min-width:768px) {
  .navbar-nav .dropdown .dropdown-menu .sub-menu:before {
      background-color: transparent;
      left: -10px;
      width: 20px
  }
}

@media(min-width:768px) {
  .navbar-nav .dropdown .dropdown-menu .sub-menu:after {
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-right: 7px solid #000;
      top: 20px;
      margin-top: -.625rem;
      content: "";
      display: inline-block;
      left: -10px;
      position: absolute
  }
}

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

.navbar-nav .dropdown .dropdown-menu i {
  display: none
}

@media(min-width:768px) {
  .navbar-nav .dropdown .dropdown-menu i {
      display: inline-block;
      position: absolute;
      right: 10px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%)
  }
}

.navbar-nav .dropdown .dropdown-menu.show .nav-link.dropdown-toggle:after {
  content: "\f106"
}

@media(min-width:768px) {
  .navbar-nav .dropdown .dropdown-menu.show .nav-link.dropdown-toggle:after {
      content: ''
  }
}

.navbar-nav .dropdown .dropdown-toggle:after {
  display: inline-block;
  width: auto;
  height: auto;
  font-family: "font awesome 5 free";
  font-weight: 900;
  margin-left: .3125rem;
  vertical-align: middle;
  content: "\f078";
  border: 0;
  position: absolute;
  top: 25px;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000
}

@media(min-width:768px) {
  .navbar-nav .dropdown .dropdown-toggle:after {
      content: ''
  }
}

.navbar-nav .dropdown.show .dropdown-toggle:after {
  content: "\f077"
}

@media(min-width:768px) {
  .navbar-nav .dropdown.show .dropdown-toggle:after {
      content: ''
  }
}

.navbar-nav .nav-item.dropdown:last-child .dropdown-toggle:after {
  content: ''
}

@media(min-width:768px) {
  .navbar-expand-md .navbar-nav .nav-link {
      padding-top: 1.55rem;
      padding-bottom: 1.55rem;
      padding-left: 0;
      padding-right: 0
  }
}

@media(min-width:768px) {
  .navbar-expand-md .mega-dropdown {
      position: static
  }
}

@media(min-width:768px) {
  .navbar-expand-lg .navbar-nav {
      margin-top: .94rem;
      margin-bottom: .94rem
  }
}

@media(min-width:992px) {
  .navbar-expand-lg .navbar-nav {
      margin-top: 0;
      margin-bottom: 0
  }
}

@media(min-width:768px) {
  .navbar-expand-lg .navbar-collapse {
      box-shadow: 0 .25rem .375rem rgba(0, 0, 0, .175)
  }
}

@media(min-width:992px) {
  .navbar-expand-lg .navbar-collapse {
      box-shadow: none
  }
}

.navbar-expand-lg .navbar-nav .dropdown .dropdown-menu i {
  display: none
}

@media(min-width:992px) {
  .navbar-expand-lg .navbar-nav .dropdown .dropdown-menu i {
      display: inline-block
  }
}

@media(min-width:768px) and (min-width:768px) {
  .navbar-expand-lg .mega-dropdown .mega-dropdown {
      position: relative !important
  }
}

@media(min-width:768px) and (min-width:992px) {
  .navbar-expand-lg .mega-dropdown {
      position: static
  }
}

.navbar-expand-lg .navbar-collapse {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  border-top: 1px solid #e7e7e7;
  max-height: 400px
}

@media(min-width:992px) {
  .navbar-expand-lg .navbar-collapse {
      position: static;
      width: auto;
      border-top: 0;
      background-color: transparent
  }
}

.navbar-expand-lg .navbar-collapse.show {
  overflow-y: auto
}

@media(min-width:992px) {
  .navbar-expand-lg .navbar-collapse.show {
      overflow-y: hidden
  }
}

.navbar-expand-lg .navbar-nav .dropdown .dropdown-toggle:after {
  content: "\f078"
}

@media(min-width:992px) {
  .navbar-expand-lg .navbar-nav .dropdown .dropdown-toggle:after {
      content: ''
  }
}

.navbar-expand-lg .navbar-nav .dropdown.show .dropdown-toggle:after {
  content: "\f077"
}

@media(min-width:992px) {
  .navbar-expand-lg .navbar-nav .dropdown.show .dropdown-toggle:after {
      content: ''
  }
}

@media(min-width:992px) {
  .navbar-expand-lg .navbar-nav .dropdown .nav-link {
      margin: 0 .3125rem;
      padding-top: 2.37rem;
      padding-bottom: 2.37rem
  }
}

@media(min-width:1200px) {
  .navbar-expand-lg .navbar-nav .dropdown .nav-link {
      margin: 0 .5rem
  }
}

@media(min-width:768px) {
  .navbar-expand-lg .navbar-nav .dropdown .nav-link .nav-icon {
      margin: 0;
      display: inline-block
  }
}

.navbar-expand-lg .navbar-nav .dropdown .nav-link span {
  border-right: 0;
  display: inline-block;
  width: auto
}

@media(min-width:992px) {
  .navbar-expand-lg .navbar-nav .dropdown .nav-link span {
      margin-left: .3125rem;
      color: #fff
  }
}

.navbar-expand-lg .navbar-nav .dropdown .dropdown-menu {
  border-top: 0;
  box-shadow: none
}

.navbar-expand-lg .navbar-nav .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  padding-top: .38rem;
  padding-bottom: .38rem
}

@media(min-width:992px) {
  .navbar-expand-lg .navbar-nav .dropdown .dropdown-menu .dropdown-item {
      padding-top: .625rem;
      padding-bottom: .75rem
  }
}

@media(min-width:992px) {
  .navbar-expand-lg .navbar-nav .dropdown .dropdown-menu {
      border-top: 4px solid #f0c24b;
      box-shadow: 0 .25rem .375rem rgba(0, 0, 0, .175)
  }
}

.navbar-expand-lg .navbar-nav .dropdown .dropdown-menu .sub-menu {
  position: relative;
  left: 0;
  visibility: visible;
  opacity: 1;
  box-shadow: none;
  border-left: 0;
  padding-left: 1.25rem;
  margin-left: 1.5625rem
}

@media(min-width:768px) {
  .navbar-expand-lg .navbar-nav .dropdown .dropdown-menu .sub-menu {
      padding-left: .3125rem;
      margin-left: .9375rem
  }
}

.navbar-expand-lg .navbar-nav .dropdown .dropdown-menu .sub-menu:before {
  background-color: #e7e7e7;
  width: 3px
}

@media(min-width:992px) {
  .navbar-expand-lg .navbar-nav .dropdown .dropdown-menu .sub-menu:before {
      width: 20px;
      background-color: transparent
  }
}

.navbar-expand-lg .navbar-nav .dropdown .dropdown-menu .sub-menu:after {
  display: none
}

@media(min-width:992px) {
  .navbar-expand-lg .navbar-nav .dropdown .dropdown-menu .sub-menu:after {
      display: block
  }
}

@media(min-width:992px) {
  .navbar-expand-lg .navbar-nav .dropdown .dropdown-menu .sub-menu {
      position: absolute;
      left: 100%;
      visibility: hidden;
      opacity: 0;
      border-left: 4px solid #ea7066;
      box-shadow: 0 4px 6px rgba(0, 0, 0, .175);
      background-color: #fff;
      padding-left: .3125rem;
      margin-left: .3125rem
  }
}

.navbar-expand-lg .navbar-nav .dropdown .dropdown-menu .sub-menu li a {
  padding-top: .38rem;
  padding-bottom: .38rem
}

@media(min-width:992px) {
  .navbar-expand-lg .navbar-nav .dropdown .dropdown-menu .sub-menu li a {
      padding-top: .625rem;
      padding-bottom: .75rem
  }
}

@media(min-width:768px) {
  .navbar-expand-lg .dropdown-menu.row.show {
      padding-top: .3rem;
      padding-bottom: .3rem
  }
}

@media(min-width:992px) {
  .navbar-expand-lg .dropdown-menu.row.show {
      padding-top: 1rem;
      padding-bottom: 1rem
  }
}

.navbar-expand-lg .dropdown-menu.row.show .list-unstyled li a {
  padding-top: .38rem;
  padding-bottom: .38rem
}

@media(min-width:992px) {
  .navbar-expand-lg .dropdown-menu.row.show .list-unstyled li a {
      padding: .625rem .75rem
  }
}

@media(min-width:768px) {
  .navbar-expand-lg .dropdown-menu.row.show .list-unstyled li:first-child {
      font-size: .875rem;
      font-family: 'Crimson Pro', serif;
      font-weight: 600;
      margin-bottom: 0
  }
}

@media(min-width:992px) {
  .navbar-expand-lg .dropdown-menu.row.show .list-unstyled li:first-child {
      font-family: 'Crimson Pro', serif;
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0 auto .625rem
  }
}

.navbar-expand-lg .dropdown-menu.row.show .list-unstyled li:last-child {
  margin-bottom: .8rem
}

@media(min-width:992px) {
  .navbar-expand-lg .dropdown-menu.row.show .list-unstyled li:last-child {
      margin-bottom: 0
  }
}

@media(min-width:768px) {
  .navbar-expand-lg .dropdown-menu.row.show .list-unstyled:before {
      display: block
  }
}

@media(min-width:992px) {
  .navbar-expand-lg .dropdown-menu.row.show .list-unstyled:before {
      display: none
  }
}

.navbar-expand-lg .nav-item.bg-danger {
  background-color: transparent !important
}

.navbar-expand-lg .nav-item.bg-danger .nav-link i {
  background-color: #ea7066
}

.navbar-expand-lg .nav-item.bg-danger .nav-link span {
  border-color: #ea7066
}

.navbar-expand-lg .nav-item.bg-danger .nav-link.active span {
  color: #ea7066
}

.navbar-expand-lg .nav-item.bg-danger .dropdown-menu {
  border-color: #ea7066
}

.navbar-expand-lg .nav-item.bg-danger .dropdown-menu li a:hover {
  background-color: #ea7066;
  color: #fff
}

.navbar-expand-lg .nav-item.bg-danger .dropdown-menu li .sub-menu {
  border-left-color: #ea7066
}

.navbar-expand-lg .nav-item.bg-danger .dropdown-menu li .sub-menu:after {
  border-right-color: #ea7066
}

.navbar-expand-lg .nav-item.bg-success {
  background-color: transparent !important
}

.navbar-expand-lg .nav-item.bg-success .nav-link i {
  background-color: #b5d56a
}

.navbar-expand-lg .nav-item.bg-success .nav-link span {
  border-color: #b5d56a
}

.navbar-expand-lg .nav-item.bg-success .nav-link.active span {
  color: #b5d56a
}

.navbar-expand-lg .nav-item.bg-success .dropdown-menu {
  border-color: #b5d56a
}

.navbar-expand-lg .nav-item.bg-success .dropdown-menu li a:hover {
  background-color: #b5d56a;
  color: #fff
}

.navbar-expand-lg .nav-item.bg-success .dropdown-menu li .sub-menu {
  border-left-color: #b5d56a
}

.navbar-expand-lg .nav-item.bg-success .dropdown-menu li .sub-menu:after {
  border-right-color: #b5d56a
}

.navbar-expand-lg .nav-item.bg-success .dropdown-menu li:first-child {
  color: #b5d56a
}

.navbar-expand-lg .nav-item.bg-info {
  background-color: transparent !important
}

.navbar-expand-lg .nav-item.bg-info .nav-link i {
  background-color: #84bed6
}

.navbar-expand-lg .nav-item.bg-info .nav-link span {
  border-color: #84bed6
}

.navbar-expand-lg .nav-item.bg-info .nav-link.active span {
  color: #84bed6
}

.navbar-expand-lg .nav-item.bg-info .dropdown-menu {
  border-color: #84bed6
}

.navbar-expand-lg .nav-item.bg-info .dropdown-menu li a:hover {
  background-color: #84bed6;
  color: #fff
}

.navbar-expand-lg .nav-item.bg-info .dropdown-menu li .sub-menu {
  border-left-color: #84bed6
}

.navbar-expand-lg .nav-item.bg-info .dropdown-menu li .sub-menu:after {
  border-right-color: #84bed6
}

.navbar-expand-lg .nav-item.bg-info .dropdown-menu li:first-child {
  color: #84bed6
}

.navbar-expand-lg .nav-item.bg-info {
  background-color: transparent !important
}

.navbar-expand-lg .nav-item.bg-info .nav-link i {
  background-color: #84bed6
}

.navbar-expand-lg .nav-item.bg-info .nav-link span {
  border-color: #84bed6
}

.navbar-expand-lg .nav-item.bg-info .nav-link.active span {
  color: #84bed6
}

.navbar-expand-lg .nav-item.bg-info .dropdown-menu {
  border-color: #84bed6
}

.navbar-expand-lg .nav-item.bg-info .dropdown-menu li a:hover {
  background-color: #84bed6;
  color: #fff
}

.navbar-expand-lg .nav-item.bg-info .dropdown-menu li .sub-menu {
  border-left-color: #84bed6
}

.navbar-expand-lg .nav-item.bg-info .dropdown-menu li .sub-menu:after {
  border-right-color: #84bed6
}

.navbar-expand-lg .nav-item.bg-info .dropdown-menu li:first-child {
  color: #84bed6
}

.navbar-expand-lg .nav-item.bg-purple {
  background-color: transparent !important
}

.navbar-expand-lg .nav-item.bg-purple .nav-link i {
  background-color: #a597e7
}

.navbar-expand-lg .nav-item.bg-purple .nav-link span {
  border-color: #a597e7
}

.navbar-expand-lg .nav-item.bg-purple .nav-link.active span {
  color: #a597e7
}

.navbar-expand-lg .nav-item.bg-purple .dropdown-menu {
  border-color: #a597e7
}

.navbar-expand-lg .nav-item.bg-purple .dropdown-menu li a:hover {
  background-color: #a597e7;
  color: #fff
}

.navbar-expand-lg .nav-item.bg-purple .dropdown-menu li .sub-menu {
  border-left-color: #a597e7
}

.navbar-expand-lg .nav-item.bg-purple .dropdown-menu li .sub-menu:after {
  border-right-color: #a597e7
}

.navbar-expand-lg .nav-item.bg-purple .dropdown-menu li:first-child {
  color: #a597e7
}

.navbar-expand-lg .nav-item.bg-pink {
  background-color: transparent !important
}

.navbar-expand-lg .nav-item.bg-pink .nav-link i {
  background-color: #ea77ad
}

.navbar-expand-lg .nav-item.bg-pink .nav-link span {
  border-color: #ea77ad
}

.navbar-expand-lg .nav-item.bg-pink .nav-link.active span {
  color: #ea77ad
}

.navbar-expand-lg .nav-item.bg-pink .dropdown-menu {
  border-color: #ea77ad
}

.navbar-expand-lg .nav-item.bg-pink .dropdown-menu li a:hover {
  background-color: #ea77ad;
  color: #fff
}

.navbar-expand-lg .nav-item.bg-pink .dropdown-menu li .sub-menu {
  border-left-color: #ea77ad
}

.navbar-expand-lg .nav-item.bg-pink .dropdown-menu li .sub-menu:after {
  border-right-color: #ea77ad
}

.navbar-expand-lg .nav-item.bg-pink .dropdown-menu li:first-child {
  color: #ea77ad
}

.navbar-expand-lg.navbar-white .navbar-nav .dropdown .nav-link span {
  color: #000
}

.navbar-expand-lg.navbar-white .navbar-nav .dropdown.bg-primary .nav-link.active span {
  color: #f0c24b
}

.navbar-expand-lg.navbar-white .navbar-nav .dropdown.bg-warning .nav-link.active span {
  color: #f0c24b
}

.navbar-expand-lg.navbar-white .navbar-nav .dropdown.bg-success .nav-link.active span {
  color: #b5d56a
}

.navbar-expand-lg.navbar-white .navbar-nav .dropdown.bg-danger .nav-link.active span {
  color: #ea7066
}

.navbar-expand-lg.navbar-white .navbar-nav .dropdown.bg-info .nav-link.active span {
  color: #84bed6
}

.navbar-expand-lg.navbar-white .navbar-nav .dropdown.bg-pink .nav-link.active span {
  color: #ea77ad
}

.navbar-expand-lg.navbar-white .navbar-nav .dropdown.bg-purple .nav-link.active span {
  color: #a597e7
}

.nav-icon {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  margin-right: .6325rem
}

@media(min-width:768px) {
  .nav-icon {
      margin: 0 auto .625rem;
      margin-bottom: .625rem;
      display: block
  }
}

.dropdown-menu.row.show {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap
}

@media(min-width:768px) {
  .dropdown-menu.row.show {
      left: 0;
      width: 100%;
      padding-top: 1rem;
      padding-bottom: 1rem
  }
}

.dropdown-menu.row.show .list-unstyled {
  position: relative
}

.dropdown-menu.row.show .list-unstyled li {
  padding-left: .9375rem;
  padding-top: .375rem;
  padding-bottom: .375rem;
  font-size: .875rem
}

@media(min-width:768px) {
  .dropdown-menu.row.show .list-unstyled li {
      padding-top: 0;
      padding-bottom: 0;
      font-size: .94rem;
      padding-left: 0
  }
}

.dropdown-menu.row.show .list-unstyled li a {
  color: #666
}

.dropdown-menu.row.show .list-unstyled li:first-child {
  padding-left: .8125rem;
  font-weight: 600
}

@media(min-width:768px) {
  .dropdown-menu.row.show .list-unstyled li:first-child {
      margin-bottom: .625rem;
      font-family: 'Crimson Pro', serif;
      font-size: 1.5rem;
      font-weight: 700
  }
}

.dropdown-menu.row.show .list-unstyled li:last-child {
  margin-bottom: .8rem
}

@media(min-width:768px) {
  .dropdown-menu.row.show .list-unstyled li:last-child {
      margin-bottom: 0
  }
}

.dropdown-menu.row.show .list-unstyled:before {
  position: absolute;
  left: 0;
  height: 60%;
  top: 50%;
  -webkit-transform: translateY(-28%);
  transform: translateY(-28%);
  width: 3px;
  background-color: #e7e7e7;
  content: ''
}

@media(min-width:768px) {
  .dropdown-menu.row.show .list-unstyled:before {
      display: none
  }
}

.dropdown-menu.row.show.components .list-unstyled {
  position: relative
}

.dropdown-menu.row.show.components .list-unstyled li:first-child {
  font-family: 'Crimson Pro', serif;
  font-weight: 400;
  padding-left: 0;
  font-size: .875rem
}

@media(min-width:768px) {
  .dropdown-menu.row.show.components .list-unstyled li:first-child {
      margin-bottom: 0
  }
}

.nav-item.bg-primary {
  background-color: transparent !important
}

.nav-item.bg-primary .nav-link i {
  background-color: #f0c24b
}

.nav-item.bg-primary .nav-link span {
  border-color: #f0c24b
}

.nav-item.bg-primary .nav-link.active span {
  color: #f0c24b
}

.nav-item.bg-primary .dropdown-menu {
  border-color: #f0c24b
}

.nav-item.bg-primary .dropdown-menu li a:hover {
  background-color: #f0c24b;
  color: #fff
}

.nav-item.bg-primary .dropdown-menu li .dropdown-item.active {
  background-color: transparent;
  color: #f0c24b
}

.nav-item.bg-primary .dropdown-menu li .dropdown-item.active:hover {
  background-color: #f0c24b;
  color: #fff
}

.nav-item.bg-warning {
  background-color: transparent !important
}

.nav-item.bg-warning .nav-link i {
  background-color: #f0c24b
}

.nav-item.bg-warning .nav-link span {
  border-color: #f0c24b
}

.nav-item.bg-warning .nav-link.active span {
  color: #f0c24b
}

.nav-item.bg-warning .dropdown-menu {
  border-color: #f0c24b
}

.nav-item.bg-warning .dropdown-menu li a:hover {
  background-color: #f0c24b;
  color: #fff
}

.nav-item.bg-warning .dropdown-menu li .dropdown-item.active {
  background-color: transparent;
  color: #f0c24b
}

.nav-item.bg-warning .dropdown-menu li .dropdown-item.active:hover {
  background-color: #f0c24b;
  color: #fff
}

.nav-item.bg-danger {
  background-color: transparent !important
}

.nav-item.bg-danger .nav-link i {
  background-color: #ea7066
}

.nav-item.bg-danger .nav-link span {
  border-color: #ea7066
}

.nav-item.bg-danger .nav-link.active span {
  color: #ea7066
}

.nav-item.bg-danger .dropdown-menu {
  border-color: #ea7066
}

.nav-item.bg-danger .dropdown-menu li a:hover {
  background-color: #ea7066;
  color: #fff
}

.nav-item.bg-danger .dropdown-menu li .dropdown-item.active {
  background-color: transparent;
  color: #ea7066
}

.nav-item.bg-danger .dropdown-menu li .dropdown-item.active:hover {
  background-color: #ea7066;
  color: #fff
}

.nav-item.bg-danger .dropdown-menu li .sub-menu {
  border-left-color: #ea7066
}

.nav-item.bg-danger .dropdown-menu li .sub-menu:after {
  border-right-color: #ea7066
}

.nav-item.bg-success {
  background-color: transparent !important
}

.nav-item.bg-success .nav-link i {
  background-color: #b5d56a
}

.nav-item.bg-success .nav-link span {
  border-color: #b5d56a
}

.nav-item.bg-success .nav-link.active span {
  color: #b5d56a
}

.nav-item.bg-success .dropdown-menu {
  border-color: #b5d56a
}

.nav-item.bg-success .dropdown-menu li a:hover {
  background-color: #b5d56a;
  color: #fff
}

.nav-item.bg-success .dropdown-menu li .dropdown-item.active {
  background-color: transparent;
  color: #b5d56a
}

.nav-item.bg-success .dropdown-menu li .dropdown-item.active:hover {
  background-color: #b5d56a;
  color: #fff
}

.nav-item.bg-success .dropdown-menu li .sub-menu {
  border-left-color: #b5d56a
}

.nav-item.bg-success .dropdown-menu li .sub-menu:after {
  border-right-color: #b5d56a
}

.nav-item.bg-success .dropdown-menu li:first-child {
  color: #b5d56a
}

.nav-item.bg-info {
  background-color: transparent !important
}

.nav-item.bg-info .nav-link i {
  background-color: #84bed6
}

.nav-item.bg-info .nav-link span {
  border-color: #84bed6
}

.nav-item.bg-info .nav-link.active span {
  color: #84bed6
}

.nav-item.bg-info .dropdown-menu {
  border-color: #84bed6
}

.nav-item.bg-info .dropdown-menu li a:hover {
  background-color: #84bed6;
  color: #fff
}

.nav-item.bg-info .dropdown-menu li .dropdown-item.active {
  background-color: transparent;
  color: #84bed6
}

.nav-item.bg-info .dropdown-menu li .dropdown-item.active:hover {
  background-color: #84bed6;
  color: #fff
}

.nav-item.bg-info .dropdown-menu li .sub-menu {
  border-left-color: #84bed6
}

.nav-item.bg-info .dropdown-menu li .sub-menu:after {
  border-right-color: #84bed6
}

.nav-item.bg-info .dropdown-menu li:first-child {
  color: #84bed6
}

.nav-item.bg-purple {
  background-color: transparent !important
}

.nav-item.bg-purple .nav-link i {
  background-color: #a597e7
}

.nav-item.bg-purple .nav-link span {
  border-color: #a597e7
}

.nav-item.bg-purple .nav-link.active span {
  color: #a597e7
}

.nav-item.bg-purple .dropdown-menu {
  border-color: #a597e7
}

.nav-item.bg-purple .dropdown-menu li a:hover {
  background-color: #a597e7;
  color: #fff
}

.nav-item.bg-purple .dropdown-menu li .dropdown-item.active {
  background-color: transparent;
  color: #a597e7
}

.nav-item.bg-purple .dropdown-menu li .dropdown-item.active:hover {
  background-color: #a597e7;
  color: #fff
}

.nav-item.bg-purple .dropdown-menu li .sub-menu {
  border-left-color: #a597e7
}

.nav-item.bg-purple .dropdown-menu li .sub-menu:after {
  border-right-color: #a597e7
}

.nav-item.bg-purple .dropdown-menu li:first-child {
  color: #a597e7
}

.nav-item.bg-pink {
  background-color: transparent !important
}

.nav-item.bg-pink .nav-link i {
  background-color: #ea77ad
}

.nav-item.bg-pink .nav-link span {
  border-color: #ea77ad
}

.nav-item.bg-pink .nav-link.active span {
  color: #ea77ad
}

.nav-item.bg-pink .dropdown-menu {
  border-color: #ea77ad
}

.nav-item.bg-pink .dropdown-menu li a:hover {
  background-color: #ea77ad;
  color: #fff
}

.nav-item.bg-pink .dropdown-menu li .dropdown-item.active {
  background-color: transparent;
  color: #b5d56a
}

.nav-item.bg-pink .dropdown-menu li .dropdown-item.active:hover {
  background-color: #b5d56a;
  color: #fff
}

.nav-item.bg-pink .dropdown-menu li .sub-menu {
  border-left-color: #ea77ad
}

.nav-item.bg-pink .dropdown-menu li .sub-menu:after {
  border-right-color: #ea77ad
}

.nav-item.bg-pink .dropdown-menu li:first-child {
  color: #ea77ad
}

.navbar-nav .dropdown.bg-primary .dropdown-menu .dropdown-item.active,
.navbar-nav .dropdown.bg-primary .dropdown-menu ul li a.active {
  color: #f0c24b
}

.navbar-nav .dropdown.bg-primary .dropdown-menu .dropdown-item.active:hover,
.navbar-nav .dropdown.bg-primary .dropdown-menu ul li a.active:hover {
  color: #fff
}

.navbar-nav .dropdown.bg-warning .dropdown-menu .dropdown-item.active,
.navbar-nav .dropdown.bg-warning .dropdown-menu ul li a.active {
  color: #f0c24b
}

.navbar-nav .dropdown.bg-warning .dropdown-menu .dropdown-item.active:hover,
.navbar-nav .dropdown.bg-warning .dropdown-menu ul li a.active:hover {
  color: #fff
}

.navbar-nav .dropdown.bg-danger .dropdown-menu .dropdown-item.active,
.navbar-nav .dropdown.bg-danger .dropdown-menu ul li a.active {
  color: #ea7066
}

.navbar-nav .dropdown.bg-danger .dropdown-menu .dropdown-item.active:hover,
.navbar-nav .dropdown.bg-danger .dropdown-menu ul li a.active:hover {
  color: #fff
}

.navbar-nav .dropdown.bg-success .dropdown-menu .dropdown-item.active,
.navbar-nav .dropdown.bg-success .dropdown-menu ul li a.active {
  color: #b5d56a
}

.navbar-nav .dropdown.bg-success .dropdown-menu .dropdown-item.active:hover,
.navbar-nav .dropdown.bg-success .dropdown-menu ul li a.active:hover {
  color: #fff
}

.navbar-nav .dropdown.bg-info .dropdown-menu .dropdown-item.active,
.navbar-nav .dropdown.bg-info .dropdown-menu ul li a.active {
  color: #84bed6
}

.navbar-nav .dropdown.bg-info .dropdown-menu .dropdown-item.active:hover,
.navbar-nav .dropdown.bg-info .dropdown-menu ul li a.active:hover {
  color: #fff
}

.navbar-nav .dropdown.bg-purple .dropdown-menu .dropdown-item.active,
.navbar-nav .dropdown.bg-purple .dropdown-menu ul li a.active {
  color: #a597e7
}

.navbar-nav .dropdown.bg-purple .dropdown-menu .dropdown-item.active:hover,
.navbar-nav .dropdown.bg-purple .dropdown-menu ul li a.active:hover {
  color: #fff
}

.navbar-nav .dropdown.bg-pink .dropdown-menu .dropdown-item.active,
.navbar-nav .dropdown.bg-pink .dropdown-menu ul li a.active {
  color: #ea77ad
}

.navbar-nav .dropdown.bg-pink .dropdown-menu .dropdown-item.active:hover,
.navbar-nav .dropdown.bg-pink .dropdown-menu ul li a.active:hover {
  color: #fff
}

.mega-dropdown.bg-primary .list-unstyled li a.active {
  color: #f0c24b
}

.mega-dropdown.bg-warning .list-unstyled li a.active {
  color: #f0c24b
}

.mega-dropdown.bg-danger .list-unstyled li a.active {
  color: #ea7066
}

.mega-dropdown.bg-success .list-unstyled li a.active {
  color: #b5d56a
}

.mega-dropdown.bg-info .list-unstyled li a.active {
  color: #84bed6
}

.mega-dropdown.bg-purple .list-unstyled li a.active {
  color: #a597e7
}

.mega-dropdown.bg-pink .list-unstyled li a.active {
  color: #ea77ad
}

.static .navbar-sticky {
  display: none
}

.up-scroll .navbar-scrollUp.navbar-sticky {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  box-shadow: none
}

.navbar-white {
  background-color: #fff
}

.navbar-sticky {
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  background-color: #fff
}

.navbar-sticky.navbar-light-dark {
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(0, 0, 0, .8)
}

@media(min-width:768px) {
  .navbar-sticky .navbar-nav .nav-link {
      padding-top: 1rem;
      padding-bottom: 1rem
  }
}

@media(min-width:768px) {
  .navbar-expand-lg.navbar-sticky .navbar-nav .nav-link {
      padding-top: .5rem;
      padding-bottom: .5rem
  }
}

@media(min-width:992px) {
  .navbar-expand-lg.navbar-sticky .navbar-nav .nav-link {
      padding-top: 1.7rem;
      padding-bottom: 1.7rem
  }
}

.navbar-expand-lg.navbar-sticky .navbar-brand {
  padding: 20px 0
}

.navbar-light-dark {
  background-color: rgba(47, 60, 67, .502);
  box-shadow: none
}

.top-bar {
  padding: .8125rem 0
}

.top-bar a,
.top-bar .btn {
  font-size: 11px
}

@media(min-width:768px) {
  .top-bar a,
  .top-bar .btn {
      font-size: 14px
  }
}

.header {
  position: relative
}

.header-absolute {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1000
}

.hesperiden.tparrows {
  background-color: #fff;
  border-radius: .8125rem;
  width: 45px;
  height: 45px;
  box-shadow: 0 .25rem 0 rgba(0, 0, 0, .2);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity, .3s ease-in-out;
  transition: opacity, .3s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
  .hesperiden.tparrows {
      -webkit-transition: none;
      transition: none
  }
}

.hesperiden.tparrows:hover {
  background-color: #fff
}

.hesperiden.tparrows:before {
  color: #666;
  line-height: 45px
}

.hesperiden.tparrows.tp-leftarrow:before {
  content: "\e81f"
}

.hesperiden.tparrows.tp-rightarrow:before {
  content: "\e81e"
}

.rev_slider_wrapper:hover .hesperiden.tparrows {
  visibility: visible;
  opacity: 1
}

.boxed .forcefullwidth_wrapper_tp_banner {
  overflow: hidden
}

.boxed .forcefullwidth_wrapper_tp_banner .rev_slider_wrapper {
  width: 100% !important;
  left: auto !important
}

.card {
  box-shadow: 0 4px 0 rgba(0, 0, 0, .1);
  position: relative;
  margin-bottom: 1.56rem
}

.card .card-header-lg h3,
.card .card-header-lg .h3 {
  font-size: 2.15rem;
  font-family: 'Crimson Pro', serif;
  font-weight: 600
}

.card .card-body .card-title {
  font-size: 1.5rem;
  font-family: 'Crimson Pro', serif;
  font-weight: 700
}

.card .card-body .pricing-price {
  font-size: 2.13rem;
  font-family: 'Crimson Pro', serif;
  font-weight: 600;
  line-height: 28px
}

.card .card-body .pricing-price small,
.card .card-body .pricing-price .small {
  font-size: .875rem;
  color: #666
}

.card .card-body big {
  font-size: 1.25rem;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: .625rem;
  font-weight: 600
}

@media(min-width:1200px) {
  .card .card-body big {
      font-size: 1.69rem
  }
}

.card-img-wrapper {
  width: 150px;
  height: 150px
}

.card-img-wrapper .card-img-overlay {
  background-color: rgba(0, 0, 0, .45);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out
}

.card-border {
  border: 4px solid
}

.card-border .card-body h5,
.card-border .card-body .h5 {
  font-size: 1.125rem;
  font-family: 'Crimson Pro', serif;
  font-weight: 700
}

.card-border .card-body span {
  font-weight: 700;
  font-size: 1.4375rem
}

.card-hover:hover .card-img-wrapper .card-img-overlay {
  visibility: visible;
  opacity: 1
}

.card-hover:hover .btn-scroll-down {
  visibility: visible;
  opacity: 1
}

.card-hover:hover .btn-quickview {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  z-index: 10
}

.card-transparent {
  background-color: transparent !important
}

.card-transparent .card-body a {
  color: #fff;
  -webkit-transition: all .4s;
  transition: all .4s
}

.card-transparent:hover .card-body a {
  color: #f0c24b
}

.accordion .card:not(:first-of-type):not(:last-of-type) {
  border-radius: .5rem
}

.accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: .5rem
}

.accordion .card:first-of-type {
  border-bottom-right-radius: .5rem;
  border-bottom-left-radius: .5rem
}

.accordion .card:last-of-type {
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem
}

.accordion .card {
  margin-bottom: 1.875rem;
  box-shadow: none
}

.accordion .card .card-header {
  border-radius: .5rem;
  padding: 0
}

.accordion .card .card-header h5,
.accordion .card .card-header .h5 {
  cursor: pointer;
  margin-bottom: 0;
  font-family: 'Crimson Pro', serif;
  font-weight: 600;
  color: #fff;
  font-size: .875rem;
  padding: .625rem .9375rem;
  text-transform: uppercase;
  position: relative
}

.accordion .card .card-header h5 span,
.accordion .card .card-header .h5 span {
  display: block;
  padding: .5rem
}

.accordion .card .card-header h5.icon-bg,
.accordion .card .card-header .icon-bg.h5 {
  position: relative
}

.accordion .card .card-header h5.icon-bg:before,
.accordion .card .card-header .icon-bg.h5:before {
  position: absolute;
  top: 50%;
  font-family: 'font awesome 5 free';
  font-weight: 900;
  font-style: normal;
  font-size: .875rem;
  padding: .125rem .187rem;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  content: '\f078';
  right: 15px;
  border-radius: .187rem;
  background-color: #fff;
  color: #666;
  box-shadow: 0 4px 0 rgba(0, 0, 0, .1)
}

.accordion .card .card-header h5.icon-bg.collapsed:before,
.accordion .card .card-header .icon-bg.collapsed.h5:before {
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg)
}

.accordion .card .card-body {
  padding: 1.875rem
}

.accordion .card .card-body p {
  color: #666
}

.card-product {
  border: 4px solid;
  box-shadow: 0 .25rem 0 rgba(0, 0, 0, .1);
  background-color: #fff
}

.card-product .img-link {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  height: 200px
}

.card-product .img-link img {
  max-height: 130px
}

.card-product .card-body h5 a,
.card-product .card-body .h5 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: block
}

.card-product-fill-bg {
  padding: 1.25rem
}

.card-product-fill-bg .card-link {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  height: 230px;
  text-align: center
}

.card-product-fill-bg .card-link .img-link {
  max-width: 100%;
  max-height: 200px;
  padding: 2rem
}

.card-product-fill-bg .card-link span {
  margin-top: auto;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: 'Crimson Pro', serif;
}

@media(min-width:1200px) {
  .categories-slider {
      height: 600px
  }
}

.categories-slider .card .card-img-top {
  border-radius: .25rem
}

@media(min-width:1200px) {
  .categories-slider .card .card-img-top {
      max-height: 595px
  }
}

.section-title {
  display: -webkit-box;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column
}

@media(min-width:768px) {
  .section-title {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row
  }
}

.section-title .shape {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  padding: 0;
  position: absolute;
  top: -20px
}

@media(min-width:768px) {
  .section-title .shape {
      position: relative;
      left: auto;
      -webkit-transform: none;
      transform: none;
      top: 0
  }
}

.section-title .shape.shape-left {
  left: 45%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

@media(min-width:768px) {
  .section-title .shape.shape-left {
      left: 0;
      -webkit-transform: none;
      transform: none
  }
}

.section-title .shape.shape-left:before,
.section-title .shape.shape-left:after {
  content: "";
  position: absolute;
  background-color: inherit;
  height: 2px
}

.section-title .shape.shape-left:before {
  right: 3px;
  width: 70px;
  top: 6px
}

.section-title .shape.shape-left:after {
  right: 3px;
  width: 55px;
  top: 11px
}

.section-title .shape.shape-right {
  right: 41%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

@media(min-width:768px) {
  .section-title .shape.shape-right {
      right: 0;
      -webkit-transform: none;
      transform: none
  }
}

.section-title .shape.shape-right:before,
.section-title .shape.shape-right:after {
  content: "";
  position: absolute;
  background-color: inherit;
  height: 2px
}

.section-title .shape.shape-right:before {
  left: 3px;
  width: 70px;
  top: 6px
}

.section-title .shape.shape-right:after {
  left: 3px;
  width: 55px;
  top: 11px
}

.section-title h2,
.section-title .h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 2.25rem;
  text-transform: capitalize;
  font-weight: 700;
  position: relative;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  -webkit-box-ordinal-group: 2;
  order: 1
}

@media(min-width:768px) {
  .section-title h2,
  .section-title .h2 {
      -webkit-box-ordinal-group: 1;
      order: 0
  }
}

.element-title {
  font-weight: 600;
  color: #ea7066;
  margin-bottom: 2rem
}

.section-top {
  margin-top: -60px
}

@media(min-width:992px) {
  .section-top {
      margin-top: -70px
  }
}

@media(min-width:1200px) {
  .section-top {
      margin-top: -90px
  }
}

.media {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  padding: 20px 0px;
}

.media-body {
  -webkit-box-flex: 1;
  flex: 1
}

.media .media-body h3,
.media .media-body .h3 {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 1.5rem
}

.media-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.media-hoverable {
  overflow: hidden;
  border-radius: .25rem;
  margin-bottom: 1.56rem
}

.media-hoverable .media-img {
  -webkit-transition: -webkit-transform .8s ease-in-out;
  transition: -webkit-transform .8s ease-in-out;
  transition: transform .8s ease-in-out;
  transition: transform .8s ease-in-out, -webkit-transform .8s ease-in-out
}

.media-hoverable .media-img-overlay {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, .5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out
}

.media-hoverable:hover .media-img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2)
}

.media-hoverable:hover .media-img-overlay {
  visibility: visible;
  opacity: 1
}

.media-list-view {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  box-shadow: 0 .25rem 0 rgba(0, 0, 0, .1);
  border-radius: .63rem;
  background-color: #f8f8f8
}

.media-list-view .media-img {
  position: relative;
  width: 100%
}

@media(min-width:768px) {
  .media-list-view .media-img {
      width: 40%
  }
}

@media(min-width:1200px) {
  .media-list-view .media-img {
      width: 33%
  }
}

.media-list-view .media-img img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  border-top-left-radius: .63rem;
  border-top-right-radius: .63rem
}

@media(min-width:768px) {
  .media-list-view .media-img img {
      height: 260px;
      border-top-right-radius: 0;
      border-bottom-left-radius: .63rem
  }
}

@media(min-width:992px) {
  .media-list-view .media-img img {
      height: 255px
  }
}

@media(min-width:1200px) {
  .media-list-view .media-img img {
      height: 233px
  }
}

.media-list-view .media-img .media-img-overlay {
  padding: 1.25rem
}

@media(min-width:768px) {
  .media-list-view {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row;
      -webkit-box-align: center;
      align-items: center
  }
}

.media-list-view .media-body {
  padding: 1.25rem
}

@media(min-width:768px) {
  .media-list-view .media-body {
      padding: 0 1.4rem
  }
}

.media-list-view .media-body h3,
.media-list-view .media-body .h3 {
  margin-bottom: 1rem
}

.media-list-view .media-body h3 a,
.media-list-view .media-body .h3 a {
  font-weight: 700;
  text-transform: capitalize
}

.list-fullwidth .media-list-view {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  box-shadow: 0 .25rem 0 rgba(0, 0, 0, .1);
  border-radius: .63rem
}

.list-fullwidth .media-list-view .media-img {
  position: relative;
  width: 100%
}

@media(min-width:768px) {
  .list-fullwidth .media-list-view .media-img {
      width: 40%
  }
}

@media(min-width:992px) {
  .list-fullwidth .media-list-view .media-img {
      width: 30%
  }
}

@media(min-width:1200px) {
  .list-fullwidth .media-list-view .media-img {
      width: 24%
  }
}

.list-fullwidth .media-list-view .media-img img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  border-top-left-radius: .63rem;
  border-top-right-radius: .63rem
}

@media(min-width:768px) {
  .list-fullwidth .media-list-view .media-img img {
      height: 300px;
      border-top-right-radius: 0;
      border-bottom-left-radius: .63rem
  }
}

@media(min-width:992px) {
  .list-fullwidth .media-list-view .media-img img {
      height: 255px
  }
}

@media(min-width:1200px) {
  .list-fullwidth .media-list-view .media-img img {
      height: 230px
  }
}

.list-fullwidth .media-list-view .media-img .media-img-overlay {
  padding: 1.25rem
}

@media(min-width:768px) {
  .list-fullwidth .media-list-view {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row
  }
}

.list-fullwidth .media-list-view .media-body {
  padding: 1.25rem
}

@media(min-width:768px) {
  .list-fullwidth .media-list-view .media-body {
      padding: 0 1.4rem
  }
}

.list-fullwidth .media-list-view .media-body h3,
.list-fullwidth .media-list-view .media-body .h3 {
  margin-bottom: 1rem
}

.list-fullwidth .media-list-view .media-body h3 a,
.list-fullwidth .media-list-view .media-body .h3 a {
  font-weight: 700;
  text-transform: capitalize
}

.media-events-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  box-shadow: 0 .25rem 0 rgba(0, 0, 0, .1);
  margin-bottom: 1.875rem;
  overflow: hidden;
  border-radius: .8125rem
}

@media(min-width:992px) {
  .media-events-list {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row;
      -webkit-box-align: center;
      align-items: center
  }
}

.media-events-list .media-img {
  position: relative;
  width: 100%
}

@media(min-width:1200px) {
  .media-events-list .media-img {
      width: 46%
  }
}

.media-events-list .media-img img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%
}

@media(min-width:768px) {
  .media-events-list .media-img img {
      height: auto
  }
}

@media(min-width:992px) {
  .media-events-list .media-img img {
      height: 260px
  }
}

@media(min-width:1200px) {
  .media-events-list .media-img img {
      height: 280px;
      box-shadow: 4px 0 0 rgba(0, 0, 0, .1)
  }
}

.media-events-list .media-body {
  padding: 1.25rem
}

@media(min-width:992px) {
  .media-events-list .media-body {
      width: 50%;
      padding-top: 0;
      padding-bottom: 0;
      padding-left: 1.25rem
  }
}

@media(min-width:1200px) {
  .media-events-list .media-body {
      padding-left: 2rem
  }
}

.cart-dropdown .media .media-body h4,
.cart-dropdown .media .media-body .h4 {
  font-weight: 700
}

.cart-dropdown .media .media-body .price span {
  font-size: 1.7rem
}

.pricing-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  box-shadow: 0 4px 0 rgba(0, 0, 0, .1);
  border-radius: 8px
}

@media(min-width:768px) {
  .pricing-list {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row;
      -webkit-box-align: center;
      align-items: center
  }
}

.pricing-list .pricing-plan {
  width: 100%;
  padding: 2.1875rem 1.25rem 5rem;
  border-radius: 8px 8px 0 0
}

@media(min-width:768px) {
  .pricing-list .pricing-plan {
      width: 50%;
      padding: 2.1875rem 1.25rem 1.125rem;
      border-radius: 8px 0 0 8px
  }
}

.pricing-list .pricing-plan h3,
.pricing-list .pricing-plan .h3 {
  font-size: 2.13rem;
  font-family: 'Crimson Pro', serif;
  font-weight: 600
}

.pricing-list .pricing-plan .pricing-price {
  font-size: 2.13rem;
  font-family: 'Crimson Pro', serif;
  font-weight: 600;
  line-height: 28px
}

.pricing-list .pricing-plan .pricing-price small,
.pricing-list .pricing-plan .pricing-price .small {
  font-size: .875rem
}

.pricing-list .media-body {
  width: 100%;
  padding: 1.25rem
}

@media(min-width:768px) {
  .pricing-list .media-body {
      width: 50%;
      padding: 0 0 0 1.25rem
  }
}

.media-avator-view .media-img {
  width: 100%
}

.media-avator-view .media-img img {
  width: 100%
}

@media(min-width:768px) {
  .media-avator-view .media-img {
      width: 33%
  }
}

@media(min-width:992px) {
  .media-avator-view .media-img {
      width: 26%
  }
}

@media(min-width:992px) {
  .media-avator-view .media-img {
      width: 22%
  }
}

.media-avator-view .media-body a {
  color: #222;
  -webkit-transition: all .4s;
  transition: all .4s
}

.media-avator-view .media-body a:hover {
  color: #ea7066
}

.btn {
  box-shadow: 0 .25rem 0 rgba(0, 0, 0, .1);
  font-size: 1rem
}

.btn:hover {
  box-shadow: 0 4px 0 rgba(0, 0, 0, .3) !important
}

.btn:focus {
  box-shadow: 0 4px 0 rgba(0, 0, 0, .3) !important
}

.btn-close:focus {
  box-shadow: none
}

.btn.btn-link {
  box-shadow: none !important
}

.btn-white {
  background-color: #fff;
  color: #666
}

.btn-link {
  color: #666;
  font-size: .875rem;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all .4s;
  transition: all .4s
}

.btn-squre {
  border: 2px solid #fff;
  padding: .375rem .625rem
}

.btn-squre i {
  color: #fff;
  font-size: .94rem
}

.btn-scroll-down {
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.btn-scroll-down i {
  font-size: 1.13rem;
  color: #fff
}

.btn-quickview {
  border-radius: 0;
  padding: 0;
  background-color: #ea7066;
  display: block;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  height: 55px;
  line-height: 55px;
  position: absolute;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  -webkit-transform: translateY(20px);
  transform: translateY(20px)
}

.btn-quickview:hover,
.btn-quickview:focus {
  box-shadow: none !important
}

.btn-sm,
.btn-group-sm>.btn {
  font-size: .875rem;
  border-radius: .25rem
}

.btn-lg,
.btn-group-lg>.btn {
  font-size: 1.125rem
}

.button-group {
  text-align: center;
  margin-bottom: 14px
}

.button-group .button {
  padding: 0 1.56rem;
  height: 2.5rem;
  font-size: .875rem;
  line-height: 2.5rem;
  color: #222;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 .25rem 0 rgba(0, 0, 0, .1);
  background-color: #f8f8f8;
  border-radius: .25rem;
  border: 0;
  margin-right: .625rem;
  margin-bottom: 1rem;
  cursor: pointer
}

.button-group .button:focus {
  outline: 0
}

.button-group .button.is-checked {
  background-color: #ea7066;
  color: #fff;
  -webkit-transition: all .4s;
  transition: all .4s
}

.btn-hover-primary:hover {
  background-color: #f0c24b;
  color: #fff
}

.btn-hover-primary:focus {
  background-color: #f0c24b;
  color: #fff;
  box-shadow: 0 .25rem 0 rgba(240, 194, 75, .1)
}

.btn-hover-warning:hover {
  background-color: #f0c24b;
  color: #fff
}

.btn-hover-warning:focus {
  background-color: #f0c24b;
  color: #fff;
  box-shadow: 0 .25rem 0 rgba(240, 194, 75, .1)
}

.btn-danger {
  color: #fff
}

.btn-hover-danger:hover {
  background-color: #ea7066;
  color: #fff
}

.btn-hover-danger:focus {
  background-color: #ea7066;
  color: #fff;
  box-shadow: 0 .25rem 0 rgba(234, 112, 102, .1)
}

.btn-hover-success:hover {
  background-color: #b5d56a;
  color: #fff
}

.btn-hover-success:focus {
  background-color: #b5d56a;
  color: #fff;
  box-shadow: 0 .25rem 0 rgba(181, 213, 106, .1)
}

.btn-hover-info:hover {
  background-color: #84bed6;
  color: #fff
}

.btn-hover-info:focus {
  background-color: #84bed6;
  color: #fff;
  box-shadow: 0 .25rem 0 rgba(132, 190, 214, .1)
}

.btn-hover-purple:hover {
  background-color: #a597e7;
  color: #fff
}

.btn-hover-purple:focus {
  background-color: #a597e7;
  color: #fff;
  box-shadow: 0 .25rem 0 rgba(165, 151, 231, .1)
}

.btn-hover-pink:hover {
  background-color: #ea77ad;
  color: #fff
}

.btn-hover-pink:focus {
  background-color: #ea77ad;
  color: #fff;
  box-shadow: 0 .25rem 0 rgba(234, 119, 173, .1)
}

.input-group-prepend,
.input-group-append {
  cursor: pointer
}

button:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: 0
}

.owl-theme .owl-nav {
  margin-top: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-next {
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 40%;
  box-shadow: 0 4px 0 rgba(0, 0, 0, .2);
  padding: .875rem 1.125rem;
  border-radius: .8125rem;
  color: #666;
  background-color: #fff;
  font-size: 1rem
}

.owl-theme .owl-nav .owl-prev:hover,
.owl-theme .owl-nav .owl-next:hover {
  background-color: #fff;
  color: #666
}

.owl-theme .owl-nav .owl-prev {
  left: 0
}

.owl-theme .owl-nav .owl-next {
  right: 0
}

@media(min-width:1200px) {
  .owl-theme .owl-nav .owl-prev {
      left: -50px
  }
  .owl-theme .owl-nav .owl-next {
      right: -50px
  }
}

@media(min-width:768px) {
  .owl-theme .owl-nav {
      visibility: hidden;
      opacity: 0
  }
}

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

.brand-slider .item {
  background-color: #f8f8f8;
  width: 60%;
  margin: 0 auto
}

@media(min-width:768px) {
  .brand-slider .item {
      width: auto
  }
}

.brand-slider.owl-carousel .owl-item img {
  width: auto
}

.categories-slider.owl-theme .owl-nav .owl-prev {
  left: 10px
}

.categories-slider.owl-theme .owl-nav .owl-next {
  right: 10px
}

#testimonial.owl-theme .owl-nav .owl-prev,
.testimonial.owl-theme .owl-nav .owl-prev {
  left: 0;
  top: 50%
}

#testimonial.owl-theme .owl-nav .owl-next,
.testimonial.owl-theme .owl-nav .owl-next {
  right: 0;
  top: 50%
}

#counter .counter-value {
  width: 145px;
  height: 145px;
  line-height: 145px;
  border-radius: 100%;
  border: 4px solid #fff;
  display: block;
  margin: 0 auto 22px;
  font-size: 2rem
}

@media(min-width:768px) {
  #counter .counter-value {
      font-size: 3.25rem
  }
}

#counter span {
  font-size: .8125rem
}

@media(min-width:768px) {
  #counter span {
      font-size: .9375rem
  }
}

.icon-xs {
  width: 21px;
  height: 21px;
  line-height: 19px
}

.icon-header {
  width: 18px;
  height: 18px;
  line-height: 16px;
  display: inline-block;
  text-align: center;
  margin-right: .31rem;
  border-radius: 50%
}

@media(min-width:768px) {
  .icon-header {
      width: 21px;
      height: 21px;
      line-height: 19px
  }
}

.icon-header i {
  font-size: 11px;
  color: #fff
}

@media(min-width:768px) {
  .icon-header i {
      font-size: .81rem
  }
}

.icon-small {
  width: 28px;
  height: 28px;
  line-height: 28px
}

.icon-rounded-circle-small {
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  display: inline-block
}

.icon-medium {
  width: 45px;
  height: 45px;
  line-height: 45px
}

.icon-rounded-circle-medium {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  display: inline-block
}

.medium-icon {
  width: 35px;
  height: 35px;
  line-height: 35px
}

.medium-icon-rounded-circle {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  display: inline-block
}

.icon-large {
  width: 85px;
  height: 85px;
  line-height: 85px
}

.icon-rounded-circle-large {
  width: 85px;
  height: 85px;
  line-height: 85px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  display: inline-block
}

.icon-extra-large {
  width: 103px;
  height: 103px;
  line-height: 103px
}

.icon-rounded-circle-extra-large {
  width: 103px;
  height: 103px;
  line-height: 103px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  display: inline-block
}

.card-icon-border-large {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  text-align: center;
  line-height: 50px;
  background-color: #fff;
  border: 6px solid;
  border-radius: 50%;
  font-size: 1.88rem;
  line-height: 90px;
  color: #666;
  margin-top: -3.06rem
}

.card-icon-border-large img {
  max-width: 100%;
  border-radius: 50%;
  display: block
}

.media-icon-large {
  width: 76px;
  height: 76px;
  height: 76px;
  padding: .375rem;
  box-shadow: .25rem .25rem 0 rgba(0, 0, 0, .1);
  display: block;
  margin-right: .94rem;
  border-radius: 50%
}

.media-icon-large i {
  width: 62px;
  height: 62px;
  line-height: 62px;
  border-radius: 50%;
  text-align: center;
  border: 2px solid #fff;
  font-size: 1.38rem;
  color: #fff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out
}

.media-icon-large i.extra-large {
  width: 75px;
  height: 75px;
  line-height: 75px;
  font-size: 1.25rem
}

.media-icon-large.icon-large-border {
  box-shadow: none;
  padding: .25rem;
  border: 2px solid #fff
}

.media-icon-large.icon-large-border i {
  border: 0
}

.media-icon-large:hover i {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg)
}

.icon-xl {
  font-size: 8.13rem
}

.form-control {
  border-radius: .625rem;
  font-size: .875rem
}

.form-control::-webkit-input-placeholder {
  color: #666;
  opacity: .7
}

.form-control::-moz-placeholder {
  color: #666;
  opacity: .7
}

.form-control:-ms-input-placeholder {
  color: #666;
  opacity: .7
}

.form-control::-ms-input-placeholder {
  color: #666;
  opacity: .7
}

.form-control::placeholder {
  color: #666;
  opacity: .7
}

.form-control:active,
.form-control:focus {
  box-shadow: none;
  border-color: #ced4da
}

.form-group {
  margin-bottom: 1rem
}

label {
  margin-bottom: .5rem
}

.form-group-icon {
  position: relative
}

.form-group-icon i {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #888;
  font-size: .81rem
}

input:focus,
input.focus {
  outline: 0
}

.input-addon .form-control {
  background-color: #f5f5f5;
  border-radius: .25rem;
  border: 0
}

.input-addon .input-group-append .input-group-text {
  border: 0;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem
}

.input-group .form-control:focus {
  z-index: 0
}

.input-group-addon:hover {
  box-shadow: none !important
}

.input-group-addon:focus {
  box-shadow: none !important
}

.input-group-lg .input-group-prepend {
  height: 55px !important
}

@media(min-width:768px) {
  .input-group-lg .input-group-prepend {
      height: 70px !important
  }
}

.input-group-lg .input-group-text {
  height: 55px !important
}

@media(min-width:768px) {
  .input-group-lg .input-group-text {
      height: 70px !important
  }
}

@media(min-width:768px) {
  .input-group-lg .input-group-append {
      width: 20%
  }
}

.input-group-lg .input-group-append .btn-lg,
.input-group-lg .input-group-append .btn-group-lg>.btn {
  width: 100%;
  font-size: .88rem;
  padding: 6px 12px;
  height: 55px !important
}

@media(min-width:768px) {
  .input-group-lg .input-group-append .btn-lg,
  .input-group-lg .input-group-append .btn-group-lg>.btn {
      height: 70px !important;
      font-size: 1.13rem
  }
}

.input-group-lg .form-control-lg {
  font-size: .8125rem;
  height: 55px !important
}

@media(min-width:768px) {
  .input-group-lg .form-control-lg {
      height: 70px !important;
      font-size: .9375rem
  }
}

.list-item-border-bottom li {
  border-bottom: 1px solid rgba(255, 255, 255, .3)
}

.list-item-border-bottom li:last-child {
  border-bottom: none
}

.list-item-lg li {
  font-size: 1.13rem;
  font-family: 'Crimson Pro', serif;
  margin-bottom: 1rem;
  color: #666
}

.list-style-1 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column
}

.list-style-1 .nav-item .nav-link {
  color: #666;
  border-radius: .8rem;
  padding-top: .63rem;
  padding-bottom: .63rem
}

.list-style-1 .nav-item .nav-link:hover {
  color: #f0c24b
}

.list-style-1 .nav-item .nav-link.active {
  color: #f0c24b
}

.copyright-text {
  text-align: center;
  color: #fff;
  font-size: .6875rem;
  margin-bottom: 0
}

@media(min-width:768px) {
  .copyright-text {
      font-size: .8125rem;
      text-align: left
  }
}

.copyright-text a:hover {
  color: #f0c24b
}

.footer-bg-img p {
  color: #d8e3f0
}

.footer-bg-img a {
  color: #d8e3f0
}

.footer-bg-img .list-icon-xs li a {
  color: #d8e3f0
}

.footer-bg-img .list-icon-xs li a:hover {
  color: #d8e3f0
}

.footer-bg-img .input-group {
  width: 70%
}

@media(min-width:992px) {
  .footer-bg-img .input-group {
      width: 100%
  }
}

@media(min-width:1200px) {
  .footer-bg-img .input-group {
      width: 85%
  }
}

.footer-bg-img .copyright {
  background-color: #041319
}

.footer-bg-white {
  background-color: #f5f5f5
}

.footer-bg-white a {
  color: #666
}

.footer-bg-white .list-icon-xs li a {
  color: #666
}

.footer-bg-white .list-icon-xs li a:hover {
  color: #666
}

.footer-bg-white .copyright {
  border-top: 1px solid rgba(0, 0, 0, .1)
}

.footer-bg-white .input-group {
  width: 70%
}

@media(min-width:992px) {
  .footer-bg-white .input-group {
      width: 100%
  }
}

@media(min-width:1200px) {
  .footer-bg-white .input-group {
      width: 85%
  }
}

.footer-bg-white .input-addon .form-control {
  background-color: #fff
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 45px;
  background-color: #ea7066;
  border: 2px solid #fff;
  border-radius: 13px;
  color: #fff;
  display: block;
  font-size: 16px;
  -ms-filter: "alpha(opacity=$value)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 10;
  display: none
}

@media(min-width:768px) {
  .back-to-top {
      display: block
  }
}

.back-to-top i {
  color: #fff
}

.badge:focus,
.badge.focus {
  box-shadow: none !important
}

.icon-badge {
  display: block;
  text-align: center;
  position: relative
}

.icon-badge .badge {
  position: absolute;
  top: -5px;
  right: -10px;
  padding: .1875rem .44rem;
  border-radius: .625rem;
  color: #fff
}

.badge-rounded,
.badge-rounded-circle {
  left: 20px;
  top: 20px;
  text-align: center;
  color: #fff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out
}

.badge-rounded {
  font-size: 1rem;
  padding: .89rem 1.375rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  box-shadow: 0 0 1px rgba(0, 0, 0, .5);
  border-radius: 10px
}

.badge-rounded-circle {
  padding: 0;
  width: 65px;
  height: 65px;
  line-height: 65px;
  font-weight: 600;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: none
}

.badge-rounded-circle:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2)
}

.badge-large {
  position: absolute;
  font-family: 'Crimson Pro', serif;
  font-size: 1.25rem;
  color: #fff;
  text-transform: capitalize;
  line-height: 1;
  padding: 0 .625rem
}

@media(min-width:992px) {
  .badge-large {
      font-size: 1.88rem;
      padding: .4375rem 1.8rem
  }
}

.badge-large-left {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: .375rem;
  border-bottom-right-radius: .375rem;
  top: 15px
}

@media(min-width:992px) {
  .badge-large-left {
      top: 55px
  }
}

.badge-large-right {
  border-top-left-radius: .375rem;
  border-bottom-left-radius: .375rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  top: 15px;
  right: 0
}

@media(min-width:992px) {
  .badge-large-right {
      top: 55px
  }
}

.badge-medium-center,
.badge-large-center {
  border-radius: .375rem;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%)
}

.badge-medium {
  position: absolute;
  font-size: 1.125rem;
  color: #fff;
  text-transform: capitalize;
  padding: .937rem 0;
  width: 100%
}

@media(min-width:768px) {
  .badge-medium {
      font-size: 1.25rem;
      padding: .937rem 2.81rem;
      width: auto
  }
}

@media(min-width:992px) {
  .badge-medium {
      padding: 22px 33px;
      bottom: 30px
  }
  .badge-medium span {
      font-size: 1.5625rem
  }
}

.nav-pills .nav-item {
  margin-right: .625rem
}

.nav-pills .nav-link {
  padding: 0 1.5rem;
  height: 40px;
  font-size: .875rem;
  line-height: 40px;
  color: #222;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  background-color: #f8f8f8;
  box-shadow: 0 .25rem 0 rgba(0, 0, 0, .1);
  border-radius: .25rem
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #ea7066
}

.nav-tab .nav-link {
  height: auto;
  box-shadow: none;
  border-radius: .75rem;
  border: .25rem solid rgba(0, 0, 0, .1);
  margin-bottom: .5rem;
  opacity: .4
}

.nav-tab .nav-link.active,
.nav-tab .show>.nav-link {
  opacity: .9;
  background-color: transparent
}

.blockquote p {
  font-size: 1.38rem;
  font-style: italic;
  color: #fff;
  font-weight: 300;
  line-height: 1.75
}

.blockquote-footer {
  font-size: 90%;
  font-weight: 600
}

.blockquote-footer cite {
  font-style: normal;
  margin-top: .625rem;
  font-weight: 400
}

.blockquote-footer::before {
  content: ""
}

.blockquote-sm p {
  font-size: 1rem;
  font-weight: 400
}

.font-normal {
  font-style: normal !important
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  background-color: #ea7066;
  box-shadow: 0 4px 0 rgba(0, 0, 0, .1);
  border-radius: .375rem;
  color: #fff;
  padding: .625rem
}

@media(min-width:768px) {
  .pagination .page-item:first-child .page-link,
  .pagination .page-item:last-child .page-link {
      padding: .9rem 1.5rem
  }
}

@media(min-width:992px) {
  .pagination .page-item:first-child .page-link,
  .pagination .page-item:last-child .page-link {
      padding: .74rem 1.6rem
  }
}

.pagination .page-item:first-child .page-link:hover,
.pagination .page-item:last-child .page-link:hover {
  color: #fff
}

.pagination .page-item:first-child .page-link {
  margin-right: 7px
}

@media(min-width:992px) {
  .pagination .page-item:first-child .page-link {
      margin-right: 14px
  }
}

.pagination .page-item:last-child .page-link {
  margin-left: 7px
}

@media(min-width:992px) {
  .pagination .page-item:last-child .page-link {
      margin-left: 14px
  }
}

.pagination .page-item .page-link {
  background-color: transparent;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px;
  font-size: 14px;
  -webkit-transition: all .4s;
  transition: all .4s
}

@media(min-width:768px) {
  .pagination .page-item .page-link {
      padding: .8125rem;
      font-size: .8rem
  }
}

@media(min-width:992px) {
  .pagination .page-item .page-link {
      padding: .9375rem;
      font-size: 1rem
  }
}

.pagination .page-item .page-link:hover {
  color: #ea7066
}

.select2-container--default .select2-selection--single:focus {
  outline: 0
}

.top-selector .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 0
}

.top-selector .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  opacity: .7;
  font-weight: 600;
  overflow: visible
}

.top-selector .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: -7px
}

.filter .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: .25rem;
  height: 50px;
  line-height: 50px
}

.filter .select2-container--default .select2-selection--single .select2-selection__arrow b {
  top: 100%;
  left: 0
}

.filter .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #666;
  font-weight: 600;
  line-height: 50px;
  padding-left: 20px
}

.check-step .select2-container--default .select2-selection--single {
  border-radius: 10px
}

.check-step .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #222;
  font-weight: 400
}

.check-step-warning .select2-container--default .select2-selection--single {
  border: 3px solid #f0c24b
}

.check-step-gray .select2-container--default .select2-selection--single {
  border: 3px solid #ced4da;
  border-radius: .625rem;
  height: 40px
}

.check-step-gray .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #222 !important;
  line-height: 34px
}

.check-step-gray .select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-top: 5px
}

.select2-container--default .select2-selection--multiple {
  border: 3px solid #ced4da;
  border-radius: .625rem
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 3px solid rgba(234, 112, 102, .3)
}

.courseCountTimer {
  background-size: cover;
  background-repeat: no-repeat
}

.courseCountTimer .border {
  padding: 2.875rem 0
}

.courseCountTimer .border h3,
.courseCountTimer .border .h3 {
  font-size: 1.4rem
}

.courseCountTimer .border .timer-body-block {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center
}

.courseCountTimer .border .timer-body-block .table-cell {
  text-align: center
}

.courseCountTimer .border .timer-body-block .table-cell .tab-val {
  font-weight: 700;
  border: 1px solid;
  margin: .4375rem;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  font-size: 1.25rem
}

@media(min-width:768px) {
  .courseCountTimer .border .timer-body-block .table-cell .tab-val {
      margin: .2rem;
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 1rem
  }
}

@media(min-width:1200px) {
  .courseCountTimer .border .timer-body-block .table-cell .tab-val {
      margin: .4375rem;
      width: 45px;
      height: 45px;
      line-height: 45px;
      font-size: 1.25rem
  }
}

.courseCountTimer .border .timer-body-block .table-cell .tab-unit {
  text-transform: capitalize;
  font-size: .75rem;
  font-weight: 600
}

@media(min-width:992px) {
  .courseCountTimer .border .timer-body-block .table-cell .tab-unit {
      font-size: .7rem
  }
}

@media(min-width:1200px) {
  .courseCountTimer .border .timer-body-block .table-cell .tab-unit {
      font-size: .75rem
  }
}

.comming-soon-count .timer-body-block {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center
}

.comming-soon-count .timer-body-block .table-cell {
  font-weight: 700;
  display: block;
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin: 0 2px;
  font-size: 1.5625rem;
  border-radius: 7px;
  background-color: #f8f8f8;
  box-shadow: 0 4px 0 rgba(0, 0, 0, .1);
  font-family: 'Crimson Pro', serif
}

.comming-soon-count .timer-body-block .table-cell.day {
  color: #f0c24b
}

.comming-soon-count .timer-body-block .table-cell.hour {
  color: #b5d56a
}

.comming-soon-count .timer-body-block .table-cell.minute {
  color: #ea7066
}

.comming-soon-count .timer-body-block .table-cell.second {
  color: #84bed6
}

@media(min-width:768px) {
  .comming-soon-count .timer-body-block .table-cell {
      width: 85px;
      height: 85px;
      line-height: 85px;
      font-size: 2.1875rem;
      margin: 0 10px;
      margin-bottom: 30px
  }
}

@media(min-width:1200px) {
  .comming-soon-count .timer-body-block .table-cell {
      width: 120px;
      height: 120px;
      line-height: 120px;
      font-size: 4.375rem
  }
}

.comming-soon-count .timer-body-block .tab-unit {
  display: none
}

.price-range .price-range-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap
}

@media(min-width:768px) {
  .price-range .price-range-content {
      flex-wrap: nowrap;
      -webkit-box-pack: justify;
      justify-content: space-between
  }
}

.price-range .price-text,
.price-range .price-value {
  color: #666;
  margin-right: 10px
}

@media(min-width:768px) {
  .price-range .price-text,
  .price-range .price-value {
      margin-right: 0
  }
}

.price-range .price-value {
  min-width: 35px;
  margin-right: 10px
}

@media(min-width:768px) {
  .price-range .price-value {
      margin-right: 0
  }
}

.price-range .btn {
  margin-right: 10px
}

@media(min-width:768px) {
  .price-range .btn {
      margin-right: 0
  }
}

.noUi-target {
  background-color: #eee;
  box-shadow: none;
  border: 0
}

.noUi-horizontal {
  height: 5px
}

.noUi-horizontal .noUi-handle {
  width: 16px;
  height: 16px;
  line-height: 16px;
  background-color: #b5d56a;
  box-shadow: none;
  border: 0;
  cursor: e-resize
}

.noUi-handle:after,
.noUi-handle:before {
  display: none
}

.noUi-connect {
  background-color: #b5d56a
}

.noUi-horizontal .noUi-origin:focus,
.noUi-handle.noUi-handle-lower:focus,
.noUi-handle.noUi-handle-upper:focus {
  outline: 0
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle.noUi-handle-upper {
  right: -1px
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
  right: -16px
}

img {
  -webkit-transition: -webkit-filter .3s;
  transition: -webkit-filter .3s;
  transition: filter .3s;
  transition: filter .3s, -webkit-filter .3s
}

img.lazyestload {
  width: 100%;
  -webkit-filter: blur(8px);
  filter: blur(8px)
}

.modal-sm .modal-content {
  border-radius: .625rem
}

.modal.show .modal-dialog.modal-sm {
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px)
}

.modal-lg .modal-header {
  padding: 0
}

.modal-lg .modal-header .btn-close {
  font-size: 1rem;
  position: absolute;
  z-index: 1;
  cursor: pointer;
  top: 25px;
  right: 40px;
  box-shadow: none
}

.modal-lg .modal-header .btn-close {
  box-shadow: none
}

.modal-lg .modal-body {
  padding: 45px 50px
}

.modal.show .modal-dialog.modal-lg {
  -webkit-transform: translate(0, 80px);
  transform: translate(0, 80px);
  max-width: 280px;
  margin: 0 auto
}

@media(min-width:768px) {
  .modal.show .modal-dialog.modal-lg {
      max-width: 750px
  }
}

@media(min-width:992px) {
  .modal.show .modal-dialog.modal-lg {
      max-width: 950px
  }
}

@media(min-width:1200px) {
  .modal.show .modal-dialog.modal-lg {
      max-width: 1030px
  }
}

.product-single h1,
.product-single .h1 {
  font-size: 2.5rem;
  text-transform: capitalize;
  margin-bottom: 2.18rem;
  font-weight: 600
}

.product-single .pricing {
  font-size: 2.5rem;
  line-height: 1;
  color: #84bed6;
  font-weight: 600;
  margin-bottom: 25px;
  display: block
}

.product-single .pricing del {
  font-size: 80%;
  color: #e4e4e4
}

.add-cart {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-bottom: 1.6rem
}

@media(min-width:768px) {
  .add-cart {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row;
      margin-bottom: 0
  }
}

.add-cart .count-input {
  display: inline-block;
  position: relative;
  width: 70px;
  margin-bottom: .9375rem
}

@media(min-width:768px) {
  .add-cart .count-input {
      margin-right: .9rem;
      margin-bottom: 0
  }
}

.add-cart .count-input .quantity:focus {
  box-shadow: 0 .25rem 0 rgba(0, 0, 0, .1) !important
}

.add-cart .count-input .quantity:active {
  color: inherit
}

.add-cart .count-input .btn-primary {
  width: 100%;
  background: #f8f8f8 !important;
  border: 0 !important;
  color: #666;
  position: relative;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  border-radius: 5px;
  padding: .75rem 1.25rem;
  box-shadow: 0 .25rem 0 rgba(0, 0, 0, .1);
  outline: 0
}

.add-cart .count-input .incr-btn {
  position: absolute;
  right: 7px;
  color: #666;
  height: auto;
  display: inline-block
}

.add-cart .count-input .incr-up {
  top: 7px
}

.add-cart .count-input .incr-down {
  bottom: 7px
}

@media(min-width:768px) {
  .add-cart .count-input .incr-down {
      bottom: 11px
  }
}

.smooth-loader-wrapper {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 700000
}

.smooth-loader-wrapper .smooth-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2100;
  line-height: 0;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%)
}

.smooth-loader-wrapper .smooth-loader .loader {
  position: relative;
  width: 110px
}

.smooth-loader-wrapper .smooth-loader .dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #ccc;
  position: absolute
}

.smooth-loader-wrapper .smooth-loader .dot-1 {
  -webkit-animation: animateDot1 1.5s linear infinite;
  animation: animateDot1 1.5s linear infinite;
  left: 30px;
  background: #f0c24b
}

.smooth-loader-wrapper .smooth-loader .dot-2 {
  -webkit-animation: animateDot2 1.5s linear infinite;
  animation: animateDot2 1.5s linear infinite;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  left: 60px;
  background: #ea7066
}

.smooth-loader-wrapper .smooth-loader .dot-3 {
  -webkit-animation: animateDot3 1.5s linear infinite;
  animation: animateDot3 1.5s linear infinite;
  left: 30px;
  background: #b5d56a
}

.smooth-loader-wrapper .smooth-loader .dot-4 {
  -webkit-animation: animateDot4 1.5s linear infinite;
  animation: animateDot4 1.5s linear infinite;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  left: 60px;
  background: #84bed6
}

@-webkit-keyframes animateDot1 {
  0% {
      -webkit-transform: rotate(0deg) translateX(-30px);
      transform: rotate(0deg) translateX(-30px)
  }
  25% {
      -webkit-transform: rotate(180deg) translateX(-30px);
      transform: rotate(180deg) translateX(-30px)
  }
  75% {
      -webkit-transform: rotate(180deg) translateX(-30px);
      transform: rotate(180deg) translateX(-30px)
  }
  to {
      -webkit-transform: rotate(360deg) translateX(-30px);
      transform: rotate(360deg) translateX(-30px)
  }
}

@keyframes animateDot1 {
  0% {
      -webkit-transform: rotate(0deg) translateX(-30px);
      transform: rotate(0deg) translateX(-30px)
  }
  25% {
      -webkit-transform: rotate(180deg) translateX(-30px);
      transform: rotate(180deg) translateX(-30px)
  }
  75% {
      -webkit-transform: rotate(180deg) translateX(-30px);
      transform: rotate(180deg) translateX(-30px)
  }
  to {
      -webkit-transform: rotate(360deg) translateX(-30px);
      transform: rotate(360deg) translateX(-30px)
  }
}

@-webkit-keyframes animateDot2 {
  0% {
      -webkit-transform: rotate(0deg) translateX(-30px);
      transform: rotate(0deg) translateX(-30px)
  }
  25% {
      -webkit-transform: rotate(-180deg) translateX(-30px);
      transform: rotate(-180deg) translateX(-30px)
  }
  75% {
      -webkit-transform: rotate(-180deg) translateX(-30px);
      transform: rotate(-180deg) translateX(-30px)
  }
  to {
      -webkit-transform: rotate(-360deg) translateX(-30px);
      transform: rotate(-360deg) translateX(-30px)
  }
}

@keyframes animateDot2 {
  0% {
      -webkit-transform: rotate(0deg) translateX(-30px);
      transform: rotate(0deg) translateX(-30px)
  }
  25% {
      -webkit-transform: rotate(-180deg) translateX(-30px);
      transform: rotate(-180deg) translateX(-30px)
  }
  75% {
      -webkit-transform: rotate(-180deg) translateX(-30px);
      transform: rotate(-180deg) translateX(-30px)
  }
  to {
      -webkit-transform: rotate(-360deg) translateX(-30px);
      transform: rotate(-360deg) translateX(-30px)
  }
}

@-webkit-keyframes animateDot3 {
  0% {
      -webkit-transform: rotate(0deg) translateX(30px);
      transform: rotate(0deg) translateX(30px)
  }
  25% {
      -webkit-transform: rotate(180deg) translateX(30px);
      transform: rotate(180deg) translateX(30px)
  }
  75% {
      -webkit-transform: rotate(180deg) translateX(30px);
      transform: rotate(180deg) translateX(30px)
  }
  to {
      -webkit-transform: rotate(360deg) translateX(30px);
      transform: rotate(360deg) translateX(30px)
  }
}

@keyframes animateDot3 {
  0% {
      -webkit-transform: rotate(0deg) translateX(30px);
      transform: rotate(0deg) translateX(30px)
  }
  25% {
      -webkit-transform: rotate(180deg) translateX(30px);
      transform: rotate(180deg) translateX(30px)
  }
  75% {
      -webkit-transform: rotate(180deg) translateX(30px);
      transform: rotate(180deg) translateX(30px)
  }
  to {
      -webkit-transform: rotate(360deg) translateX(30px);
      transform: rotate(360deg) translateX(30px)
  }
}

@-webkit-keyframes animateDot4 {
  0% {
      -webkit-transform: rotate(0deg) translateX(30px);
      transform: rotate(0deg) translateX(30px)
  }
  25% {
      -webkit-transform: rotate(-180deg) translateX(30px);
      transform: rotate(-180deg) translateX(30px)
  }
  75% {
      -webkit-transform: rotate(-180deg) translateX(30px);
      transform: rotate(-180deg) translateX(30px)
  }
  to {
      -webkit-transform: rotate(-360deg) translateX(30px);
      transform: rotate(-360deg) translateX(30px)
  }
}

@keyframes animateDot4 {
  0% {
      -webkit-transform: rotate(0deg) translateX(30px);
      transform: rotate(0deg) translateX(30px)
  }
  25% {
      -webkit-transform: rotate(-180deg) translateX(30px);
      transform: rotate(-180deg) translateX(30px)
  }
  75% {
      -webkit-transform: rotate(-180deg) translateX(30px);
      transform: rotate(-180deg) translateX(30px)
  }
  to {
      -webkit-transform: rotate(-360deg) translateX(30px);
      transform: rotate(-360deg) translateX(30px)
  }
}

.progress-wizard {
  margin-top: 2.5rem;
  margin: 2.5rem 0 4.38rem;
  padding: 0 0 1.88rem
}

.progress-wizard>.progress-wizard-step {
  padding: 0;
  position: relative;
  height: 105px;
  margin-bottom: 3rem
}

@media(min-width:768px) {
  .progress-wizard>.progress-wizard-step {
      margin-bottom: 0;
      height: 100px
  }
}

.progress-wizard>.progress-wizard-step>.progress {
  position: relative;
  border-radius: 0;
  height: 5px;
  box-shadow: none;
  margin: 1.25rem 0
}

.progress-wizard>.progress-wizard-step>.progress>.progress-bar {
  width: 0;
  box-shadow: none;
  background-color: transparent
}

@media(min-width:768px) {
  .progress-wizard>.progress-wizard-step>.progress>.progress-bar {
      background: #ea7066
  }
}

.progress-wizard>.progress-wizard-step.complete>.progress>.progress-bar {
  width: 100%
}

.progress-wizard>.progress-wizard-step.active>.progress>.progress-bar {
  width: 50%
}

.progress-wizard>.progress-wizard-step.active .progress-wizard-dot {
  cursor: default
}

.progress-wizard>.progress-wizard-step>.progress>.progress-bar {
  width: 0%
}

.progress-wizard>.progress-wizard-step:first-child.active>.progress>.progress-bar {
  width: 0%
}

.progress-wizard>.progress-wizard-step:last-child.active>.progress>.progress-bar {
  width: 100%
}

.progress-wizard>.progress-wizard-step:first-child>.progress {
  left: 50%;
  width: 50%
}

.progress-wizard>.progress-wizard-step:last-child>.progress {
  width: 50%
}

.progress-wizard>.progress-wizard-step.disabled a.progress-wizard-dot {
  pointer-events: none
}

.progress {
  background-color: transparent;
  margin-bottom: 10px
}

@media(min-width:768px) {
  .progress {
      background-color: #f8f8f8
  }
}

.progress-wizard>.progress-wizard-step>.progress-wizard-dot {
  display: block;
  background-color: #fff;
  border-radius: 100%;
  border: 5px solid #ea7066;
  padding: 5px;
  text-align: center;
  color: #222;
  width: 110px;
  position: relative;
  top: 0;
  left: 0;
  margin: -1.25rem auto 0
}

@media(min-width:768px) {
  .progress-wizard>.progress-wizard-step>.progress-wizard-dot {
      width: auto;
      position: absolute;
      top: -1.88rem;
      left: 28%;
      margin-top: -.94;
      margin-left: -.94
  }
}

.progress-wizard>.progress-wizard-step>.progress-wizard-dot i {
  display: block;
  color: #ea7066;
  font-size: 1.5rem;
  line-height: 90px;
  width: 90px;
  height: 90px;
  border-radius: 100%;
  background-color: #ededed;
  text-align: center
}

@media(min-width:768px) {
  .progress-wizard>.progress-wizard-step>.progress-wizard-dot i {
      line-height: 102px;
      width: 102px;
      height: 102px
  }
}

.progress-wizard>.progress-wizard-step>.progress-wizard-dot:hover {
  opacity: 1
}

.progress-wizard>.progress-wizard-step.incomplete>.progress-wizard-dot {
  border-color: #f8f8f8;
  color: #666
}

.progress-wizard>.progress-wizard-step.incomplete>.progress-wizard-dot i {
  color: #666
}

.progress-wizard>.progress-wizard-step.complete>.progress-wizard-dot i {
  color: #fff;
  background-color: #ea7066
}

.progress-wizard .progress-info {
  text-align: center;
  font-family: 'Crimson Pro', serif;
  font-weight: 600;
  font-size: 1rem;
  color: #222;
}

@media(min-width:768px) {
  .progress-wizard .progress-info {
      margin: 4.38rem 0 0 .9375rem
  }
}

@media(min-width:992px) {
  .progress-wizard .progress-info {
      margin: 4.38rem 0 0 -.9375rem
  }
}

@media(min-width:1200px) {
  .progress-wizard .progress-info {
      margin: 4.38rem 0 0 -2.5rem
  }
}

.table td span {
  font-family: 'Crimson Pro', serif;
}

.table tr th i {
  color: rgba(47, 60, 67, .3)
}

.table-cart {
  border-radius: .625rem;
  border: 1px solid #e7e7e7;
  border-top: 0
}

.table-cart thead tr {
  background-color: #f0c24b;
  border-top: 0
}

.table-cart thead tr th {
  color: #fff;
  padding: 15px 8px;
  border-bottom: none;
  border-top: none;
  font-weight: 600;
  text-transform: uppercase
}

.table-cart thead tr th:first-child {
  border-top-left-radius: .625rem
}

.table-cart thead tr th:last-child {
  border-top-right-radius: .625rem
}

.table-cart tbody tr td {
  padding: .625rem
}

@media(min-width:768px) {
  .table-cart tbody tr td {
      padding: 20px 8px
  }
}

@media(min-width:992px) {
  .table-cart tbody tr td {
      padding: 20px 40px 20px 10px
  }
}

@media(min-width:1200px) {
  .table-cart tbody tr td .input-group {
      width: 60%
  }
}

.table-cart tbody tr td .input-group .form-control {
  text-align: left;
  margin-right: 1.5rem
}

.table-cart tbody tr td .input-group .btn {
  height: 45px;
  line-height: 1.4
}

.table-cart tbody tr td .btn-update {
  height: 45px;
  line-height: 1.4;
  white-space: nowrap
}

.table-cart tbody tr td input {
  width: 80px;
  height: 48px;
  text-align: center;
  line-height: 45px;
  color: #222;
  border: 1px solid #dedede;
  border-radius: 7px
}

.table-cart tbody tr td .form-control {
  border-radius: 7px !important
}

@media(min-width:768px) {
  .table-cart tbody tr td .form-control {
      margin-bottom: 0
  }
}

.table-cart tbody tr td .form-control:focus {
  border-color: #e7e7e7
}

.table-cart tbody tr td .close {
  float: left;
  opacity: 1
}

@media(min-width:768px) {
  .table-cart tbody tr td .close {
      margin: 17px 30px 0 0
  }
}

.table-cart tbody tr td .close span {
  width: 30px;
  height: 30px;
  line-height: 25px;
  display: block;
  background-color: #e5e5e5;
  color: #666;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 600
}

.table-cart tbody tr td .cart-image {
  border-radius: .625rem
}

.table-cart tbody tr td:first-child {
  padding: 20px 0 20px 30px
}

.table-cart tbody tr .td-product-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 215px
}

.table-cart tbody tr .td-price {
  text-overflow: ellipsis;
  white-space: nowrap
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  outline: 0;
  opacity: 1
}

.table-class-schedule {
  border-radius: .625rem;
  border: 1px solid #e7e7e7;
  border-top: 0;
  border-bottom: 0
}

.table-class-schedule .table-bordered {
  margin-bottom: 0
}

.table-class-schedule .table-bordered thead th {
  border: 0
}

.table-class-schedule .table-bordered tbody tr td:first-child {
  border-left: 0
}

.table-class-schedule .table-bordered tbody tr td:last-child {
  border-right: 0
}

.table-class-schedule .table-bordered tbody tr:last-child td {
  border-bottom: 0
}

.coming-soon img {
  width: 200px;
  height: 60px
}

.coming-soon h1,
.coming-soon .h1 {
  font-size: 1.875rem
}

@media(min-width:768px) {
  .coming-soon h1,
  .coming-soon .h1 {
      font-size: 2.5rem
  }
}

.coming-soon p {
  font-size: .875rem
}

@media(min-width:768px) {
  .coming-soon p {
      font-size: 1.5rem
  }
}

img.fancybox-image {
  padding: 15px;
  background: #fff
}

.element-right-sidebar {
  min-width: 215px
}

.element-right-sidebar .list-unstyled li a {
  padding: .25rem 0;
  display: inline-block;
  font-family: 'Crimson Pro', serif;
  font-size: .9375rem;
  color: #495057;
  -webkit-transition: all .4s;
  transition: all .4s
}

.element-right-sidebar .list-unstyled li a:hover {
  opacity: .4
}

.element-right-sidebar.sidebar-fixed {
  position: fixed;
  top: 116px;
  bottom: 0
}

.element-right-sidebar.right-sidebar-absolute {
  position: absolute;
  top: auto;
  bottom: 0
}

.call-to-action {
  text-align: center
}

.call-to-action p {
  font-size: 1.125rem
}

.default {
  background-image: url(../img/patterns/001.png);
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center
}

.pattern-01 {
  background-image: url(../img/patterns/002.png);
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center
}

.pattern-02 {
  background-image: url(../img/patterns/003.png);
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center
}

.pattern-03 {
  background-image: url(../img/patterns/004.png);
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center
}

.pattern-04 {
  background-image: url(../img/patterns/005.png);
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center
}

.pattern-06 {
  background-image: url(../img/patterns/006.png);
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center
}

.pattern-07 {
  background-image: url(../img/patterns/002.png);
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center
}

body.boxed {
  margin: 0 auto;
  position: relative
}

@media(min-width:768px) {
  body.boxed {
      max-width: 700px
  }
  body.boxed .navbar-sticky {
      max-width: 700px
  }
}
.heart {
  font-size: 150px;
  color: #e00;
  animation: beat .25s infinite alternate;
  transform-origin: center;
}

/* Heart beat animation */

@keyframes beat{
  to { transform: scale(1.2); }
}
@media only screen and (max-width: 480px) {
  .about-section {
    position: relative;
    margin: 2px 0 70px;
}
}
/* .rs-about{
  background-image: url(images/texture.jpg);
} */
.copyright{
color: #fff;
}
.copyrights{
  color: #fff;
  font-size: 20px;
  text-align: justify;
}
/* animation */
/*=== Trigger  ===*/
.animate {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*=== Optional Delays, change values here  ===*/
.one {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.two {
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}

.three {
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}

.four {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

.five {
  -webkit-animation-delay: 4.5s;
  -moz-animation-delay: 4.5s;
  animation-delay: 4.5s;
}

.six {
  -webkit-animation-delay: 5.5s;
  -moz-animation-delay: 5.5s;
  animation-delay: 5.5s;
}

.seven {
  -webkit-animation-delay: 6.5s;
  -moz-animation-delay: 6.5s;
  animation-delay: 6.5s;
}

.eight {
  -webkit-animation-delay: 7.5s;
  -moz-animation-delay: 7.5s;
  animation-delay: 7.5s;
}

/*=== Animations start here  ===*/

/*==== FADE IN UP ===*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*=== FADE IN DOWN ===*/
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*=== FADE IN LEFT ===*/
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/*==== FADE IN RIGHT ===*/
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/*=== FADE IN  ===*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/*=== FADE IN UP Big ===*/
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*=== FADE IN DOWN Big ===*/
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*=== FADE IN LEFT Big ===*/
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*=== FADE IN RIGHT Big ===*/
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* animation */
.cate-box ul li{
  font-size: 20px;
  color: #666;
  font-weight: 600;
}
.news-title{
  color: #00bcd4;
}
@media only screen and (max-width: 600px) {
  /* .sidebar-area, .rs-why-choose .choose-img, .rs-services.rs-services-style1{
    display: none;
  } */
  .rs-about .about-img {
    margin-bottom: 40px;
    display: none;
}
  .home5 .sec-title h2 {
    color: #273c8d;
    padding: 20px 0px;
}
.call-us span {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.5px;
  color: #fff;
  font-weight: 700;
}
.media {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  padding: 0px 0px 15px 0px;
}
.media .media-body h3, .media .media-body .h3 {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 20px;
}
.service {
  color: #00bcd4;
  padding: 30px 0px 0px 0px;
}
.media .media-body h3, .media .media-body .h3 {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 16px;
}
.para {
  font-size: 20px;
  color: #666;
  font-weight: 500;
}
.cate-box ul li {
  font-size: 20px;
  color: #666;
  font-weight: 600;
}
}
.ccard {
  width: 100%;
  overflow: hidden;
  position: relative;
  /*border-radius: 10px;*/
  /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);*/
}

.carousel-tracks {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.cardd {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
}

.cardd img {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}

.cardd h3 {
  margin: 15px 0 10px;
  font-size: 1.5rem;
}

.cardd p {
  font-size: 1rem;
  color: #555;
}

.carousel-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .cardd {
    min-width: 50%;
  }
}

@media (min-width: 1200px) {
  .cardd {
    min-width: 28%;
  }
}
/*carousel cards end*/
.animate {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*=== Optional Delays, change values here  ===*/
.one {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.two {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.choose-img img{
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 8px; /* optional: makes corners rounded */
  transition: box-shadow 0.3s ease;
}