/* Menu */
@media (min-width: 321px) and (max-width: 767px) {
  .logo {
    position: absolute;
    margin-top: 30px;
  }
}

.navbar {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-family: sans-serif;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.navbar .no-bg {
  background: transparent !important;
  padding: 0 !important;
}

@media (min-width: 321px) and (max-width: 767px) {
  .navbar .no-bg {
    height: auto;
    padding: 10px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.8) !important;
  }
}

.push-left {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.3);
  padding: 5px;
  border-radius: 10px;
}

@media (min-width: 321px) and (max-width: 767px) {
  .push-left {
    height: auto;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.04);
            box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.04);
  }
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}

.nav-menu .menu-item .active {
  color: #f64745;
  border-radius: 8px;
  padding: 0px 7px;
  border-bottom: none;
}

@media (min-width: 321px) and (max-width: 990px) {
  .nav-menu .menu-item .active {
    color: #14161d;
  }
}

.nav-menu .menu-item a {
  color: #14161d;
  display: block;
  line-height: 30px;
  margin: 0px 0px 0 28px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "lato", sans-serif;
  font-size: 1em;
  border-radius: 20px;
}

@media (max-width: 1398px) {
  .nav-menu .menu-item a {
    margin: 0px 6px 0 6px;
  }
}

.nav-menu .menu-item a svg {
  margin-top: -8px;
  margin-left: -6px;
}

.nav-menu .menu-item a:hover {
  color: #f64745 !important;
  text-decoration: none !important;
  cursor: pointer;
}

.hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  outline: none;
  height: 28px;
  position: relative;
  width: 30px;
  z-index: 999;
}

.hamburger:hover .hamburger-line {
  background: #14161d;
}

.hamburger-line {
  background: #14161d;
  height: 3px;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  width: 100%;
}

.hamburger-line-top {
  top: 3px;
}

.menu-active .hamburger-line-top {
  top: 50%;
  -webkit-transform: rotate(45deg) translatey(-50%);
          transform: rotate(45deg) translatey(-50%);
}

.menu-active .hamburger-line-middle {
  left: 50%;
  opacity: 0;
  width: 0;
}

.menu-active .hamburger-line-bottom {
  bottom: 50%;
  -webkit-transform: rotate(-45deg) translatey(50%);
          transform: rotate(-45deg) translatey(50%);
}

.hamburger-line-middle {
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
}

.hamburger-line-bottom {
  bottom: 3px;
}

.dropdown .sub-nav {
  border: none;
  display: none;
  position: absolute;
  background-color: #fff;
  padding: 0px;
  list-style: none;
  width: 100%;
  -webkit-box-shadow: 0px 0px 20px -3px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 20px -3px rgba(0, 0, 0, 0.4);
  margin-left: 20px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.dropdown .sub-nav:hover {
  display: block;
}

.dropdown .sub-nav li:last-child a:hover {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.dropdown .sub-nav a {
  padding: 15px;
  margin: 0px !important;
}

.dropdown .sub-nav a:hover {
  background: -webkit-gradient(linear, left top, right top, from(#3ecef2), to(#53acc2));
  background: linear-gradient(to right, #3ecef2 0%, #53acc2 100%);
  color: #fff !important;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.sub-nav__link {
  color: #379bb8 !important;
  text-align: center;
  font-size: 0.9375em;
}

.sub-nav__link:hover {
  color: #ffff !important;
}

.nav__link:hover + .sub-nav {
  display: block;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: inline-block;
  }
  .nav-menu {
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: translatey(-100%);
            transform: translatey(-100%);
    text-align: center;
    height: 112vh;
  }
  .nav-menu .menu-item a {
    color: #444444;
    display: block;
    line-height: 30px;
    margin: 0px 10px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Nunito", sans-serif;
    font-size: 1.5em;
    margin: 19px 0;
  }
  .nav-menu .menu-item a svg {
    display: none;
  }
  .nav-menu .menu-item a img {
    color: #000;
    background-color: #444444;
    border-radius: 20px;
  }
  .menu-active .nav-menu {
    -webkit-transform: translatey(0%);
            transform: translatey(0%);
    opacity: 1;
    height: 112vh;
    z-index: 111;
    margin: 0px;
    padding: 0 30px;
  }
}

@media screen and (max-width: 768px) and (min-width: 321px) and (max-width: 767px) {
  .menu-active .nav-menu {
    margin: -2.5em;
    position: fixed;
    z-index: 111;
  }
}

@media (min-width: 768px) and (max-width: 768px) {
  .sub-nav {
    position: relative !important;
    width: 100%;
    display: block !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-left: 0px !important;
    border-radius: 0px !important;
  }
}

.noscroll {
  overflow: hidden;
}

.text {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 13rem;
  /* left: 25%; */
  /* bottom: 0; */
  /* left: 0; */
  text-align: left;
  padding: 0 80px 0 98px;
}

@media (min-width: 321px) and (max-width: 990px) {
  .text {
    padding: 0 90px;
    top: 3rem;
    z-index: 11;
  }
}

@media (min-width: 321px) and (max-width: 767px) {
  .text {
    padding: 0px;
  }
}

@-webkit-keyframes pulse-animation {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-animation {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

h2.start {
  display: inline-block;
  position: absolute;
  margin: 0 auto;
  /* top: 100%; */
  font-size: 80px;
  color: #fff;
  width: 100%;
  font-weight: 400;
  float: left;
}

.rw-words {
  display: inline;
}

@media (min-width: 322px) and (max-width: 767px) {
  .rw-words {
    display: contents;
  }
}

/* Animated Text Effect */
.rw-words-1 .slides {
  display: inline-block;
  position: absolute;
  opacity: 0;
  overflow: hidden;
  -webkit-animation: rotateWord 15s linear 0s infinite;
  animation: rotateWord 15s linear 0s infinite;
  color: #ccc;
  margin-top: 60px;
}

@media (min-width: 321px) and (max-width: 767px) {
  .rw-words-1 .slides {
    text-align: center;
  }
}

@media (min-width: 321px) and (max-width: 990px) {
  .rw-words-1 .slides {
    margin-top: 37px;
  }
}

.rw-words-1 .slides h1 {
  color: #14161d;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  font-size: 2.75em;
  padding: 0 70px 0 0;
}

@media (min-width: 321px) and (max-width: 767px) {
  .rw-words-1 .slides h1 {
    padding: 0;
    font-size: 1.875em;
    text-align: center;
    padding: 0 !important;
  }
}

@media (max-width: 1398px) {
  .rw-words-1 .slides h1 {
    padding: 0 43px 0 0;
  }
}

.rw-words-1 .slides h1 span {
  color: #b31f24;
}

.rw-words-1 .slides h2 {
  font-family: "poppins" sans-serif;
  font-weight: 500;
  font-size: 1.5625em;
  color: #828282;
}

@media (min-width: 321px) and (max-width: 767px) {
  .rw-words-1 .slides h2 {
    font-size: 1.25em;
  }
}

.rw-words-1 .slides:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.rw-words-1 .slides:nth-child(2) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.rw-words-1 .slides:nth-child(3) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.rw-words-1 .slides:nth-child(4) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}

.rw-words-1 .slides:nth-child(5) {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

.rw-words-1 .slides .contact-btn {
  padding: 0;
  margin-top: 40px;
}

@media (min-width: 321px) and (max-width: 767px) {
  .rw-words-1 .slides .contact-btn {
    text-align: center;
  }
}

.rw-words-1 .slides .contact-btn .btn-contact {
  padding: 27px 80px;
  background: linear-gradient(265.76deg, #f64745 -17.84%, #b01f24 100%);
  border-radius: 50px;
  font-family: "poppins" sans-serif;
  font-weight: 500;
  font-size: 1.25em;
  color: #ffff;
}

@media (min-width: 321px) and (max-width: 767px) {
  .rw-words-1 .slides .contact-btn .btn-contact {
    padding: 16px 50px;
  }
}

.rw-words-1 .slides .contact-btn .btn-contact:hover {
  -webkit-animation: pulse-animation 2s infinite;
          animation: pulse-animation 2s infinite;
  background: linear-gradient(265.76deg, #b01f24 -17.84%, #b42226 100%);
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

@-webkit-keyframes rotateWord {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
  }
  5% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
  17% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
  20% {
    opacity: 0;
    -webkit-transform: translateY(30px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes rotateWord {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  5% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  17% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  20% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.header-inner {
  background: url(../images/inner-bg.jpg) no-repeat center top/cover !important;
  height: 35.6875em !important;
}

@media (min-width: 321px) and (max-width: 767px) {
  .header-inner {
    height: 21.875em !important;
  }
}

.header-inner::before {
  display: none !important;
}

.header-inner .contact-details span {
  color: #14161d !important;
  border-color: #14161d !important;
}

.header-inner .page-title {
  text-align: center;
}

.header-inner .page-title h1 {
  color: #b31f24;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  font-size: 3em;
  margin-top: 3.75em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .header-inner .page-title h1 {
    padding: 0;
    font-size: 1.875em;
    text-align: center;
    margin-top: 1.25em;
  }
}

.welcome-2 {
  padding-bottom: 5.625em !important;
}

.why-us-area .why-us-details {
  text-align: left;
}

.why-us-area .why-us-details h2 {
  font-size: 2.4375em;
  line-height: 38px;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #14161d;
  padding-top: 0em;
  margin-bottom: 0em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .why-us-area .why-us-details h2 {
    font-size: 1.5625em;
  }
}

.why-us-area .why-us-details h2 span {
  color: #f64745;
}

.why-us-area .why-us-details h4 {
  font-size: 1.25em;
  font-family: "poppins", sans-serif;
  font-weight: 500;
  margin-top: 0.625em;
  margin-bottom: 1.875em;
  color: #001044;
}

.why-us-area .why-us-details p {
  color: #828282;
  font-size: 16px;
  line-height: 25px;
}

.convinent-area {
  margin-top: 6.25em;
  background: url(../images/Circle-bg2.png) no-repeat right center;
}

@media (min-width: 321px) and (max-width: 767px) {
  .convinent-area {
    background: none;
  }
}

.convinent-area .convenient-text h2 {
  font-size: 2.4375em;
  line-height: 47px;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #14161d;
  padding-top: 0em;
  margin-bottom: 1.25em;
  margin-top: 5em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .convinent-area .convenient-text h2 {
    font-size: 1.5625em;
    line-height: 30px;
    margin-top: 0em;
  }
}

.convinent-area .convenient-text h2 span {
  color: #f64745;
}

.convinent-area .convenient-text p {
  color: #828282;
  font-size: 16px;
  line-height: 25px;
}

.convinent-area .convinent-img {
  padding: 8.125em 0;
}

@media (min-width: 321px) and (max-width: 767px) {
  .convinent-area .convinent-img {
    padding: 3.125em 0;
  }
}

.westand-apart-area {
  margin-top: 0em;
}

.westand-apart-area .westandapart {
  text-align: center;
}

.westand-apart-area .westandapart h2 {
  font-size: 2.4375em;
  line-height: 38px;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #14161d;
  padding-top: 0em;
  margin-bottom: 1.25em;
  margin-top: 3.75em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .westand-apart-area .westandapart h2 {
    font-size: 1.5625em;
  }
}

.westand-apart-area .westandapart h2 span {
  color: #f64745;
}

.westand-apart-area .westandapart p {
  color: #828282;
  font-size: 16px;
  line-height: 25px;
}

.our-services-area {
  background: url(../images/bg-d.png) no-repeat center left;
  margin-top: 9.375em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .our-services-area {
    background: none;
    margin-top: 1.875em;
  }
}

.our-services-area .ourservices-list {
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
}

.our-services-area .ourservices-list h2 {
  font-size: 2.4375em;
  line-height: 38px;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #14161d;
  padding-top: 0em;
  margin-bottom: 0.9375em;
  margin-top: 0em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .our-services-area .ourservices-list h2 {
    font-size: 1.5625em;
  }
}

.our-services-area .ourservices-list h2 span {
  color: #f64745;
}

.our-services-area .ourservices-list .list-style li {
  list-style: none;
  font-weight: 700;
  font-family: "lato", sans-serif;
  padding-bottom: 0.625em;
}

.our-services-area .ourservices-list .list-style li:before {
  content: "";
  background: url(../images/list-img.svg) no-repeat;
  position: absolute;
  width: 24px;
  height: 60px;
  margin-left: -30px;
}

.have-question-area {
  background: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(rgba(246, 246, 246, 0)));
  background: linear-gradient(180deg, #f7f7f7 0%, rgba(246, 246, 246, 0) 100%);
  margin-top: 10.625em;
  padding: 7.5em 0;
  margin-bottom: -5em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .have-question-area {
    margin-top: 1.875em;
  }
}

.have-question-area .question-text-area h2 {
  font-size: 2.4375em;
  line-height: 38px;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #14161d;
  padding-top: 0.9375em;
  margin-bottom: 0.9375em;
  margin-top: 0em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .have-question-area .question-text-area h2 {
    font-size: 1.5625em;
  }
}

.have-question-area .question-text-area h2 span {
  color: #f64745;
}

.have-question-area .question-text-area p {
  font-size: 16px;
  line-height: 25px;
  color: #4f4f4f;
}

.have-question-area .question-text-area p span {
  color: #f64745;
}

.have-question-area .question-text-area p span a {
  color: #f64745;
}

.gallery-bg {
  background: url(../images/gallery.jpg) no-repeat center top/cover !important;
}

.gallery-area {
  margin-top: 9.375em;
}

.gallery-area .img-container img {
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
}

.gallery-area .img-container img:hover {
  transform: scale(0.97);
  -webkit-transform: scale(0.97);
  -moz-transform: scale(0.97);
  -o-transform: scale(0.97);
  opacity: 0.75;
  -webkit-opacity: 0.75;
  -moz-opacity: 0.75;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
}

.gallery-area .img-container .gallery-img {
  margin-bottom: 1.25em;
}

.gallery-area .lightbox html {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
}

.contact-bg {
  background: url(../images/contact-bg.jpg) no-repeat center top/cover !important;
  height: 35.6875em !important;
}

.contact-form-area {
  margin-top: 7.5em;
}

.contact-form-area .contact-info {
  background: url(../images/contact-info-bg.png) no-repeat center top/cover;
  padding: 3.125em 3.75em;
  border-radius: 0.9375em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .contact-form-area .contact-info {
    margin-bottom: 1.875em;
  }
}

@media (min-width: 321px) and (min-width: 769px) {
  .contact-form-area .contact-info {
    margin-bottom: 1.875em;
  }
}

.contact-form-area .contact-info h4 {
  color: #ffff;
  font-size: 29px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  margin-bottom: 1.25em;
}

.contact-form-area .contact-info .list-unstyled li {
  font-family: "lato", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #ffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-form-area .contact-info .list-unstyled li a {
  font-weight: normal;
  color: #ffff;
  text-decoration: none;
}

.contact-form-area .contact-info .list-unstyled li img {
  margin-right: 0.625em;
  padding: 15px;
}

.contact-form-area .contact-info .list-inline {
  padding-left: 0.625em;
  margin-top: 2.5em;
}

.contact-form-area .contact-info .list-inline li {
  margin-right: 0.9375em;
}

.contact-form-area .contact-info .list-inline li svg {
  color: #ffff;
}

.form-area {
  padding: 0 3.125em;
}

.form-area h2 {
  font-size: 2.4375em;
  line-height: 38px;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #14161d;
  margin-bottom: 0.9375em;
  text-align: left;
}

.form-area h2 span {
  color: #f64745;
}

.form-area .form-control {
  border-radius: 10px;
  margin-bottom: 1.5625em;
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.form-area .form-control label {
  font-family: "poppins", sans-serif;
  font-weight: normal;
  color: #4f4f4f;
}

.form-area .btn-contact {
  padding: 15px 80px;
  background: linear-gradient(265.76deg, #f64745 -17.84%, #b01f24 100%);
  border-radius: 50px;
  font-family: "poppins" sans-serif;
  font-weight: 500;
  font-size: 1.25em;
  color: #ffff;
  float: right;
  margin-top: 1.875em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .form-area .btn-contact {
    margin-bottom: 1.875em;
    float: none;
  }
}

.form-area .btn-contact:hover {
  -webkit-animation: pulse-animation 2s infinite;
          animation: pulse-animation 2s infinite;
  background: linear-gradient(265.76deg, #b01f24 -17.84%, #b42226 100%);
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.lessons-bg {
  background: url(../images/lessons-bg.jpg) no-repeat center top/cover !important;
}

.lesson-area {
  margin-top: 3.125em;
}

.lesson-area .basic-lessons {
  margin-top: 5em;
}

.lesson-area .basic-lessons h3 {
  text-align: center;
  font-size: 1.9375em;
  font-family: "poppins", sans-serif;
  font-weight: 500;
  color: #001044;
}

@media (min-width: 321px) and (max-width: 767px) {
  .lesson-area .basic-lessons h3 {
    font-size: 1.375em;
    line-height: 30px;
  }
}

.lesson-area .basic-lessons p {
  color: #4f4f4f;
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 22px;
}

.lesson-area .basic-lessons .lesson-package-2 .lesson-details span {
  padding: 1em 0.625em !important;
  background: #b31f24;
  border: 8px solid #f64745;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3.125em;
  width: 190px;
  height: 271px;
  color: #ffff;
  font-size: 2em;
  font-family: "lato", sans-serif;
  font-weight: 900;
}

.lesson-area .basic-lessons .lesson-package1 {
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  min-height: 536px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.lesson-area .basic-lessons .lesson-package1 img {
  border-radius: 15px;
}

.lesson-area .basic-lessons .lesson-package1 .lesson-details {
  text-align: center;
  background: #ffff;
  position: relative;
  border-radius: 15px;
  padding: 0 20px;
  margin-top: -20px;
}

@media (min-width: 321px) and (max-width: 767px) {
  .lesson-area .basic-lessons .lesson-package1 .lesson-details {
    margin-bottom: 1.875em;
  }
}

@media (min-width: 321px) and (min-width: 769px) {
  .lesson-area .basic-lessons .lesson-package1 .lesson-details {
    margin-bottom: 1.875em;
  }
}

.lesson-area .basic-lessons .lesson-package1 .lesson-details span {
  background: #b31f24;
  border: 8px solid #f64745;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3.125em;
  width: 141px;
  height: 141px;
  color: #ffff;
  font-size: 2em;
  font-family: "lato", sans-serif;
  font-weight: 900;
  display: inline-block;
  margin-top: -70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.lesson-area .basic-lessons .lesson-package1 .lesson-details h4 {
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #14161d;
  font-size: 1.5625em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.lesson-area .basic-lessons .lesson-package1 .lesson-details p {
  margin-bottom: 0px;
}

.lesson-area .basic-lessons .lesson-package1 .btn-contact {
  padding: 5px 20px;
  background: linear-gradient(265.76deg, #f64745 -17.84%, #b01f24 100%);
  border-radius: 50px;
  font-family: "poppins" sans-serif;
  font-weight: 500;
  font-size: 1.25em;
  color: #ffff;
  margin-top: 0.625em;
  margin-bottom: 0.625em;
  width: 100%;
}

@media (min-width: 321px) and (max-width: 767px) {
  .lesson-area .basic-lessons .lesson-package1 .btn-contact {
    padding: 10px 30px;
  }
}

.lesson-area .basic-lessons .lesson-package1 .btn-contact:hover {
  -webkit-animation: pulse-animation 2s infinite;
          animation: pulse-animation 2s infinite;
  background: linear-gradient(265.76deg, #b01f24 -17.84%, #b42226 100%);
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.lesson-area .basic-lessons .lesson-package1:hover {
  cursor: pointer;
}

.lesson-area .basic-lessons .lesson-package1:hover span {
  -webkit-animation: pulse-animation 2s infinite;
          animation: pulse-animation 2s infinite;
  background: #001044;
  border: 8px solid #455fb6;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.lesson-area .basic-lessons .lesson-package1:hover img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.driving-detail-area {
  min-height: auto !important;
  margin-top: 11.25em !important;
}

.driving-detail-area .details2 {
  background: url(../images/custom.jpg) no-repeat center top/cover !important;
  padding: 20px !important;
  margin-bottom: 0 !important;
}

.driving-detail-area .details2 .btn-contact {
  padding: 10px 40px;
  width: 40% !important;
}

.faq-bg {
  background: url(../images/faq.jpg) no-repeat center top/cover !important;
  height: 35.6875em !important;
}

.faq-area {
  margin-top: 10.625em;
}

.faq-area .faq-card {
  background: #f8f9fa;
  padding: 1.875em;
  border-radius: 15px;
  border: 2px solid #f1f1f1;
  margin-bottom: 1.25em;
}

.faq-area .faq-card h4 {
  padding-left: 1.25em;
  font-size: 1.4375em;
  font-family: "poppins", sans-serif;
  font-weight: 600;
  color: #14161d;
  margin-bottom: 0.9375em;
}

.faq-area .faq-card h4::before {
  content: "";
  background: url(../images/question.svg) no-repeat center left;
  position: absolute;
  width: 24px;
  height: 26px;
  margin-left: -1.4375em;
}

.faq-area .faq-card:hover {
  border: 2px solid #b31f24;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  cursor: pointer;
  -webkit-animation: pulse-animation2 2s infinite;
          animation: pulse-animation2 2s infinite;
}

.faq-area .faq-card p {
  color: #828282;
  font-size: 18px;
  line-height: 25px;
  padding-left: 1.4375em;
}

.faq-area .faq-card .list-styled li {
  color: #828282;
  font-size: 18px;
  line-height: 25px;
  list-style-position: inside;
}

.faq-area .faq-card .list-styled li a {
  color: #b31f24;
  font-size: 18px;
  line-height: 25px;
}

.s-media {
  position: fixed;
  top: 100px;
  left: 0;
  z-index: 1000;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}

@media (min-width: 321px) and (max-width: 1280px) {
  .s-media {
    display: none;
  }
}

@media (min-width: 1281px) {
  .s-media {
    display: block;
  }
}

.s-item {
  display: block;
  width: 39px;
  height: 58px;
  color: white;
  font-size: 19px;
  line-height: 60px;
  text-align: center;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  border-radius: 0 50px 50px 0;
}

.s-item:hover {
  width: 50px;
  color: #001044;
}

#sm-open {
  position: fixed;
  top: 100px;
  left: -60px;
  border-radius: 0 50px 50px 0;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  z-index: 999;
}

.facebook {
  background-color: #305891;
}

.twitter {
  background-color: #3aafd6;
}

.gplus {
  background-color: #f8694d;
}

.print {
  background-color: #4f4f4f;
}

.sm-collapse {
  left: -60px;
}

.privacy-bg {
  background: url(../images/privacy-bg.jpg) no-repeat center top/cover !important;
  height: 35.6875em !important;
}

.poilicy-area {
  margin-top: 5em;
}

.poilicy-area .policy-text {
  text-align: center;
}

.poilicy-area .policy-text h2 {
  font-size: 2.4375em;
  line-height: 38px;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #14161d;
  padding-top: 1.875em;
  margin-bottom: 0.9375em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .poilicy-area .policy-text h2 {
    font-size: 1.5625em;
  }
}

.poilicy-area .policy-text h3 {
  font-size: 1.8125em;
  line-height: 38px;
  font-family: "poppins", sans-serif;
  font-weight: 600;
  color: #14161d;
  padding-top: 0.625em;
  margin-bottom: 0.9375em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .poilicy-area .policy-text h3 {
    font-size: 1.125em;
  }
}

.poilicy-area .policy-text .list-styled {
  padding-left: 0px;
}

.poilicy-area .policy-text .list-styled li {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 15px;
}

body::-webkit-scrollbar {
  width: 0.4em;
  border-radius: 50px;
}

img {
  max-width: 100%;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #b31f24;
  outline: 1px solid #f64745;
  border-radius: 50px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-size: 1em;
  font-family: "lato", sans-serif;
  overflow-x: hidden;
}

p {
  text-align: justify;
}

a {
  text-decoration: none;
}

a:hover {
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  outline: none;
  text-decoration: none;
}

.header-section {
  background: url(../images/header-bg.png) no-repeat center top;
  height: 56.25em;
  background-size: cover;
}

@media (min-width: 321px) and (max-width: 767px) {
  .header-section {
    height: auto;
  }
}

.header-section::before {
  content: "";
  background: url(../images/anim-circle-wave.svg) no-repeat right top;
  top: 0px;
  left: 0px;
  position: absolute;
  height: inherit;
  width: 100%;
}

@media (min-width: 321px) and (max-width: 767px) {
  .header-section::before {
    height: 11.25em;
  }
}

@media (min-width: 321px) and (max-width: 990px) {
  .header-section::before {
    height: 13.75em;
  }
}

.header-section .navbar-area {
  padding-top: 1.875em;
  z-index: 999;
  position: relative;
}

.header-section .contact-details {
  margin-top: 1.25em;
  padding-right: 0;
}

@media (min-width: 321px) and (max-width: 767px) {
  .header-section .contact-details {
    display: none !important;
  }
}

.header-section .contact-details span {
  display: block;
  text-align: right;
  border-right: 1px solid #ffff;
  padding-right: 0.5em;
  color: #ffff;
  font-size: 1.0625em;
  font-weight: 900;
  font-family: "lato", sans-serif;
}

@media (max-width: 1398px) {
  .header-section .contact-details span {
    font-size: 1em;
  }
}

@media (min-width: 321px) and (max-width: 990px) {
  .header-section .car-image {
    margin-top: 360px;
  }
}

.header-section .car-image img {
  overflow: hidden;
  -webkit-transform: translatey(0px);
          transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-10px);
            transform: translatey(-10px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-10px);
            transform: translatey(-10px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}

.welcome-area {
  background: url(../images/Circle-bg.png) no-repeat center left;
  padding: 12.5em 0;
}

@media (min-width: 321px) and (max-width: 767px) {
  .welcome-area {
    background: none;
    padding-bottom: 5.625em;
    padding-top: 5em;
  }
}

@media (min-width: 321px) and (max-width: 990px) {
  .welcome-area {
    padding-top: 5em;
  }
}

.welcome-area .welcome-text {
  padding: 0 150px 0 0;
}

@media (min-width: 321px) and (max-width: 767px) {
  .welcome-area .welcome-text {
    padding: 0 15px;
    text-align: center;
  }
}

@media (max-width: 1398px) {
  .welcome-area .welcome-text {
    padding: 0 15px;
  }
}

.welcome-area .welcome-text h2 {
  font-size: 2.4375em;
  line-height: 38px;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #14161d;
  padding-top: 1.875em;
  margin-bottom: 0.9375em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .welcome-area .welcome-text h2 {
    font-size: 1.5625em;
  }
}

.welcome-area .welcome-text h2 span {
  color: #b31f24;
}

.welcome-area .welcome-text p {
  color: #828282;
  font-size: 16px;
  line-height: 25px;
  text-align: justify;
}

.welcome-area .welcome-text h4 {
  font-size: 1.375em;
  color: #f64745;
  line-height: 30px;
  font-weight: 500;
  font-family: "poppins", sans-serif;
  margin-top: 1.875em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .welcome-area .welcome-text h4 {
    font-size: 1.125em;
  }
}

.welcome-area .welcome-text h5 {
  font-size: 22px;
}

.welcome-area .welcome-text h5 a {
  font-size: 22px;
  color: #001044;
  line-height: 30px;
  font-weight: 900;
  font-family: "lato" sans-serif;
}

@media (min-width: 321px) and (max-width: 767px) {
  .welcome-area .welcome-text h5 a {
    font-size: 1em;
  }
}

.welcome-area .welcome-img .circle-img {
  z-index: 11;
  position: relative;
}

.welcome-area .welcome-img .elements {
  margin-top: -33.75em;
  -webkit-animation: float-left 6s ease-in-out infinite;
          animation: float-left 6s ease-in-out infinite;
}

@media (min-width: 321px) and (max-width: 767px) {
  .welcome-area .welcome-img .elements {
    display: none;
  }
}

@media (min-width: 321px) and (max-width: 990px) {
  .welcome-area .welcome-img .elements {
    display: none;
  }
}

@-webkit-keyframes float-left {
  0% {
    -webkit-transform: translatex(0px);
            transform: translatex(0px);
  }
  50% {
    -webkit-transform: translatex(-10px);
            transform: translatex(-10px);
  }
  100% {
    -webkit-transform: translatex(0px);
            transform: translatex(0px);
  }
}

@keyframes float-left {
  0% {
    -webkit-transform: translatex(0px);
            transform: translatex(0px);
  }
  50% {
    -webkit-transform: translatex(-10px);
            transform: translatex(-10px);
  }
  100% {
    -webkit-transform: translatex(0px);
            transform: translatex(0px);
  }
}

.lesson-detail-area {
  background: url(../images/bg-2.jpg) no-repeat center top;
  background-attachment: fixed;
  background-size: cover;
  height: 1020px;
}

@media (min-width: 321px) and (max-width: 767px) {
  .lesson-detail-area {
    height: auto;
  }
}

@media (min-width: 321px) and (max-width: 990px) {
  .lesson-detail-area {
    height: auto;
  }
}

.lesson-detail-area h2 {
  font-size: 2.4375em;
  line-height: 38px;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #ffff;
  padding-top: 1.875em;
  text-align: center;
}

@media (min-width: 321px) and (max-width: 767px) {
  .lesson-detail-area h2 {
    font-size: 1.875em;
    line-height: 30px;
  }
}

.lesson-detail-area h2 span {
  color: #f64745;
}

.lesson-detail-area .package-area1 {
  margin-top: 1.875em;
  margin-bottom: 1.875em;
}

.lesson-detail-area .package-area1 h3 {
  text-align: center;
  font-size: 1.9375em;
  font-family: "poppins", sans-serif;
  font-weight: 500;
  color: #ffff;
}

@media (min-width: 321px) and (max-width: 767px) {
  .lesson-detail-area .package-area1 h3 {
    font-size: 1.375em;
    line-height: 30px;
  }
}

.lesson-detail-area .package-area1 p {
  color: #828282;
  text-align: center;
  margin-bottom: 0px;
}

.lesson-detail-area .package-area1 .package-col {
  margin-top: 1.5625em;
}

.lesson-detail-area .package-area1 .package-col .package-details {
  background: #ffff;
  border-radius: 1.25em;
  -webkit-box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.25em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lesson-detail-area .package-area1 .package-col .package-details span {
  background: #b31f24;
  border: 8px solid #f64745;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3.125em;
  width: 130px;
  height: 130px;
  text-align: center;
  padding: 30px 15px;
  color: #ffff;
  font-size: 2em;
  font-family: "lato", sans-serif;
  font-weight: 900;
}

.lesson-detail-area .package-area1 .package-col .package-details h4 {
  font-family: "poppins", sans-serif;
  font-weight: 500;
  color: #14161d;
  font-size: 1.3125em;
  margin-top: 14px;
}

.lesson-detail-area .package-area1 .package-col .package-details:hover {
  cursor: pointer;
}

.lesson-detail-area .package-area1 .package-col .package-details:hover span {
  -webkit-animation: pulse-animation 2s infinite;
          animation: pulse-animation 2s infinite;
  background: #f64745;
  border: 8px solid #b31f24;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.lesson-detail-area .package-area2 {
  margin-top: 1.875em;
}

.lesson-detail-area .package-area2 h3 {
  text-align: center;
  font-size: 1.9375em;
  font-family: "poppins", sans-serif;
  font-weight: 500;
  color: #ffff;
}

@media (min-width: 321px) and (max-width: 767px) {
  .lesson-detail-area .package-area2 h3 {
    font-size: 1.375em;
    line-height: 30px;
  }
}

.lesson-detail-area .package-area2 p {
  color: #828282;
  text-align: center;
  margin-bottom: 0px;
}

.lesson-detail-area .package-area2 .package-col {
  margin-top: 1.5625em;
}

.lesson-detail-area .package-area2 .package-col .contact-link {
  display: block !important;
  text-align: left !important;
  padding: 1.25em 0.9375em !important;
  -webkit-box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.5) !important;
          box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.5) !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.lesson-detail-area .package-area2 .package-col .contact-link h3 {
  text-align: left;
  font-size: 1.3125em;
  font-family: "poppins", sans-serif;
  font-weight: 700;
}

.lesson-detail-area .package-area2 .package-col .contact-link p {
  text-align: left;
  color: #ffff;
  line-height: 1.25em;
  margin-top: 0.9375em;
  margin-bottom: 0.9375em;
}

.lesson-detail-area .package-area2 .package-col .contact-link a {
  font-size: 1.125em;
  font-family: "poppins", sans-serif;
  color: #ffff;
  text-decoration: none;
}

.lesson-detail-area .package-area2 .package-col .contact-link a:hover {
  color: #001044;
}

.lesson-detail-area .package-area2 .package-col .contact-link a:hover svg {
  color: #001044;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-transform: translatex(20%);
          transform: translatex(20%);
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

.lesson-detail-area .package-area2 .package-col .package-details {
  background: linear-gradient(251.53deg, #f64745 1.06%, #b31f24 117.5%);
  border-radius: 1.25em;
  -webkit-box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.25em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  min-height: 268px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lesson-detail-area .package-area2 .package-col .package-details span {
  background: #001044;
  border: 8px solid #0f2672;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3.125em;
  width: 125px;
  height: 125px;
  text-align: center;
  padding: 30px 15px;
  color: #ffff;
  font-size: 2em;
  font-family: "lato", sans-serif;
  font-weight: 900;
}

@media (min-width: 321px) and (max-width: 767px) {
  .lesson-detail-area .package-area2 .package-col .package-details span {
    padding: 27px 15px;
  }
}

.lesson-detail-area .package-area2 .package-col .package-details h4 {
  font-family: "poppins", sans-serif;
  font-weight: 500;
  color: #ffff;
  font-size: 1.3125em;
  margin-top: 14px;
}

@media (min-width: 321px) and (max-width: 767px) {
  .lesson-detail-area .package-area2 .package-col .package-details h4 {
    margin-top: 22px;
  }
}

.lesson-detail-area .package-area2 .package-col .package-details:hover {
  cursor: pointer;
}

.lesson-detail-area .package-area2 .package-col .package-details:hover span {
  -webkit-animation: pulse-animation 2s infinite;
          animation: pulse-animation 2s infinite;
  background: #0f2672;
  border: 8px solid #001044;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.wave-bg {
  background: url(../images/mask1.svg) no-repeat center top;
  background-size: cover;
  margin-top: -8.125em;
  height: 290px;
}

.why-choose-area h2 {
  font-size: 2.4375em;
  line-height: 38px;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #14161d;
  margin-bottom: 0.9375em;
  text-align: center;
}

.why-choose-area h2 span {
  color: #f64745;
}

@media (min-width: 321px) and (max-width: 767px) {
  .why-choose-area h2 {
    font-size: 1.875em;
    line-height: 30px;
  }
}

.why-choose-area .why-choose-cards {
  text-align: center;
}

.why-choose-area .why-choose-cards .card-whychooseus {
  border: 1px solid #f2f2f2;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  padding: 2.5em 1.25em;
  min-height: 304px;
}

.why-choose-area .why-choose-cards .card-whychooseus h4 {
  font-size: 1.3125em;
  line-height: 1.3125em;
  font-family: "poppins", sans-serif;
  font-weight: 500;
  padding: 0 1.5625em;
  margin-top: 0.9375em;
  margin-bottom: 0px;
}

.why-choose-area .why-choose-cards:hover .card-whychooseus {
  -webkit-animation: pulse-animation2 2s infinite;
          animation: pulse-animation2 2s infinite;
  cursor: pointer;
}

.why-choose-area .why-choose-cards:hover .card-whychooseus img {
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-transform: translatey(-2%);
          transform: translatey(-2%);
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

@-webkit-keyframes pulse-animation2 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 16, 68, 0.2);
            box-shadow: 0 0 0 0px rgba(0, 16, 68, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 16, 68, 0);
            box-shadow: 0 0 0 20px rgba(0, 16, 68, 0);
  }
}

@keyframes pulse-animation2 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 16, 68, 0.2);
            box-shadow: 0 0 0 0px rgba(0, 16, 68, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 16, 68, 0);
            box-shadow: 0 0 0 20px rgba(0, 16, 68, 0);
  }
}

.specification-area {
  background: url(../images/Circle-bg2.png) no-repeat center right;
  padding: 0em 0;
  margin-top: 9.375em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .specification-area {
    background: none;
    height: auto;
    margin-top: 70px;
  }
}

.specification-area .spec-details h2 {
  font-size: 2.4375em;
  line-height: 38px;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #14161d;
  margin-bottom: 0.9375em;
  text-align: left;
  margin-top: 1.25em;
}

.specification-area .spec-details h2 span {
  color: #f64745;
}

.specification-area .spec-details .list-style li {
  list-style: none;
  font-weight: 700;
  font-family: "lato", sans-serif;
  padding-bottom: 0.75em;
}

.specification-area .spec-details .list-style li:before {
  content: "";
  background: url(../images/list-img.svg) no-repeat;
  position: absolute;
  width: 24px;
  height: 60px;
  margin-left: -30px;
}

.specification-area .content-img {
  text-align: right;
  margin-top: 11.875em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .specification-area .content-img {
    margin-top: 1.875em;
  }
}

.testimonial-area {
  background: url(../images/testimonial-bg.jpg) no-repeat center top;
  margin-top: 9.375em;
  background-size: cover;
  min-height: 43.125em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .testimonial-area {
    background: none;
    height: auto;
    margin-top: 70px;
  }
}

.testimonial-area h2 {
  font-size: 2.4375em;
  line-height: 38px;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #14161d;
  margin-bottom: 0.9375em;
  text-align: center;
  margin-top: 2.5em;
  padding: 0 1.875em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .testimonial-area h2 {
    font-size: 1.875em;
    padding: 0 10px;
  }
}

.testimonial-area h2 span {
  color: #f64745;
  display: block;
}

.testimonial-area .client-msg-area {
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  padding: 1.25em;
  text-align: center;
  margin-top: 5em;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-area .client-msg-area .profile-img {
  border-radius: 6.25em;
  border: 9px solid #d6d9e1;
  padding: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -5em;
}

.testimonial-area .client-msg-area:hover {
  cursor: pointer;
  -webkit-box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.testimonial-area .client-msg-area:hover .profile-img {
  -webkit-animation: pulse-animation 2s infinite;
          animation: pulse-animation 2s infinite;
  border: 9px solid #f64745;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.testimonial-area .client-msg-area p {
  font-size: 17px;
  line-height: 25px;
  text-align: center;
  color: #4f4f4f;
  font-family: "lato", sans-serif;
  font-style: italic;
  margin-top: 1.5625em;
}

.testimonial-area .client-msg-area h3 {
  font-size: 1.25em;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #4f4f4f;
}

.footer-area {
  background: url(../images/Footer-bg.svg) no-repeat center top;
  background-size: cover;
  padding: 11.25em 0 3.125em 0;
  margin-top: 7.5em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .footer-area {
    margin-top: 0;
    text-align: center;
    padding-top: 65px;
  }
}

.footer-area .footer-about {
  margin-top: 1.875em;
}

.footer-area .footer-about p {
  color: #b1b9c3;
  line-height: 1.5625em;
  margin-top: 1.25em;
  padding-right: 1.875em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .footer-area .footer-about p {
    padding-right: 0;
  }
}

.footer-area .footer-about img {
  max-width: 180px;
}

.footer-area .footer-links {
  margin-top: 2.0625em;
  padding-left: 2.8125em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .footer-area .footer-links {
    padding-left: 0;
    margin-top: 10px;
  }
}

.footer-area .footer-links h5 {
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #ffff;
  font-size: 1.375em;
  margin-top: 1.875em;
  margin-bottom: 0.9375em;
}

.footer-area .footer-links li {
  margin-bottom: 0.5em;
}

.footer-area .footer-links li a {
  color: #b1b9c3;
  text-decoration: none;
}

.footer-area .footer-links li a:hover {
  color: #f64745;
}

.footer-area .footer-connect {
  margin-top: 2.0625em;
  padding-left: 3.4375em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .footer-area .footer-connect {
    padding-left: 0;
    margin-top: 10px;
  }
}

.footer-area .footer-connect h5 {
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #ffff;
  font-size: 1.375em;
  margin-top: 1.875em;
  margin-bottom: 0.9375em;
}

.footer-area .footer-connect svg {
  color: #b1b9c3;
}

.footer-area .footer-connect li a:hover svg {
  color: #f64745;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.footer-area .contact-details {
  margin-top: 2.0625em;
  padding-left: 4.6875em;
}

@media (min-width: 321px) and (max-width: 767px) {
  .footer-area .contact-details {
    padding-left: 0;
    margin-top: 10px;
  }
}

.footer-area .contact-details h5 {
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #ffff;
  font-size: 1.375em;
  margin-top: 1.875em;
  margin-bottom: 0.9375em;
}

.footer-area .contact-details li {
  margin-bottom: 0.9375em;
}

.footer-area .contact-details li a {
  font-size: 16px;
  font-family: "lato", sans-serif;
  font-weight: 400;
  color: #b1b9c3;
  text-decoration: none;
}

.footer-area .copyright-contain {
  border-top: 1px solid #060b1a;
  margin-top: 5.625em;
}

.footer-area .copyright-contain .copyright {
  color: #bdbdbd;
  text-align: center;
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-size: 0.875em;
  padding-top: 3.75em;
}

.backtotop {
  position: fixed;
  right: 25px;
  bottom: 16px;
  width: 2.8125em;
  height: 2.8125em;
  border-radius: 50%;
  background: #b31f24;
  color: #ffff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  outline: none;
  cursor: pointer;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2px;
  padding: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  z-index: 999;
  text-decoration: none;
}

.backtotop:hover {
  background: #f64745;
  color: #001044;
}

.backtotop.active {
  bottom: 32px;
  pointer-events: auto;
  opacity: 1;
}

.header-sticky-link {
  background: #f64745;
  position: fixed;
  text-align: center;
  width: 100%;
  bottom: 0;
  padding: 10px 0;
  z-index: 999;
}

@media (min-width: 321px) and (max-width: 767px) {
  .header-sticky-link {
    display: block;
  }
}

@media (min-width: 1281px) {
  .header-sticky-link {
    display: none;
  }
}

.header-sticky-link .header-socialmedia .list-inline {
  margin-bottom: 0px;
}

.header-sticky-link .header-socialmedia .list-inline svg {
  color: #ffff;
}
/*# sourceMappingURL=style.css.map */