/* 
     index.html - home page 1 - 3826 lines
     about-us.html - About Us
     our-service.html - Services 
     appointment.html - pages
     blog-list.html - blog
     accordion.html - Elements
     contactus.html - Contact

*/

/* home start */

/* header1 start*/

.header-top-one .left {
  display: flex;
  align-items: center;
}

.header-top-one .left .mail {
  position: relative;
}

.header-top-one .left .mail a {
  padding: 11px 0;
  display: block;
  color: #fff;
  margin-right: 50px;
  font-size: 14px;
  position: relative;
  transition: var(--transition);
}

.header-top-one .left .mail a i {
  margin-right: 6px;
}

.header-top-one .left .mail a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  height: 1px;
  width: 0%;
  background: #fff;
  transition: var(--transition);
}

.header-top-one .left .mail a:hover {
  color: var(--color-white);
}

.header-top-one .left .mail a:hover::after {
  width: 100%;
}

.header-top-one .left .mail::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  background: #F36464;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.header-top-one .left .working-time p {
  color: #fff;
  font-size: 14px;
}

.header-top-one .left .working-time p i {
  margin-right: 6px;
}

.header-top-one .right {
  display: flex;
  justify-content: flex-end;
}

.header-top-one .right .top-nav {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.header-top-one .right .top-nav li {
  margin: 0;
  margin-right: 20px;
}

.header-top-one .right .top-nav li a {
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  padding: 11px 0;
  display: block;
  color: #fff;
}

.header-top-one .right .top-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  height: 1px;
  width: 0%;
  background: #fff;
  transition: var(--transition);
}

.header-top-one .right .top-nav li a:hover::after {
  width: 100%;
}

.header-top-one .right .social-wrapper-one {
  margin-left: 30px;
  position: relative;
}

.header-top-one .right .social-wrapper-one a i {
  transition: 0.3s;
}

.header-top-one .right .social-wrapper-one a:hover i {
  transform: scale(1.2);
}

.header-top-one .right .social-wrapper-one i {
  color: #fff;
}

.header-top-one .right .social-wrapper-one::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  background: #F36464;
}

.header-top-one.header-top-four {
  border-bottom: 1px solid #EDEDED;
}

.header-main-one .thumbnail a {
  padding: 36px 0;
  display: block;
  max-width: max-content;
}


@charset "UTF-8";

@-webkit-keyframes bounce {

  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {

  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {

  0%,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {

  0%,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

/*header1 end */


/*header2 start*/

.rts-sidebar-menu-desktop .logo {
  margin-top: 50px;
}

.rts-sidebar-menu-desktop p.disc {
  margin-top: 30px;
  font-size: 16px;
  line-height: 26px;
}

.rts-sidebar-menu-desktop .get-in-touch .title {
  margin-bottom: 30px;
}

.rts-sidebar-menu-desktop .get-in-touch .wrapper .single i {
  color: #4879a5;
  margin-right: 10px;
  margin-bottom: 15px;
}

.rts-sidebar-menu-desktop .get-in-touch .wrapper .single i:last-child {
  margin-bottom: 0;
}

.rts-sidebar-menu-desktop .get-in-touch .wrapper .single a {
  transition: 0.3s;
}



.social-wrapper-two.menu {
  margin-top: 50px;
  margin-left: 12px;
  padding-left: 0;
}

.social-wrapper-two a {
  margin-right: 40px;
  z-index: 1;
  position: relative;
}

.social-wrapper-two a i {
  color: #fff;
  transition: 0.3s;
  font-size: 16px;
}

.social-wrapper-two a::after {
  position: absolute;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  content: "";
  z-index: -1;
  background: #4879a5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.social-wrapper-two a:hover i {
  color: #4879a5;
}

.social-wrapper-two a:hover::after {
  background: #ffecec;
  box-shadow: 0px 10px 30px rgba(33, 5, 5, 0.05);
}

.home-blue .social-wrapper-two a::after {
  background: var(--color-primary-2);
  color: #fff;
}

.home-blue .social-wrapper-two a:hover {
  color: var(--color-primary-2);
}

.home-blue .social-wrapper-two a:hover i {
  color: var(--color-primary-2);
}

.home-blue .social-wrapper-two a:hover::after {
  background: #8e8f9314;
  color: var(--color-primary-2);
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/*header2 end */

/*header3 start*/


.search-input-area.show {
  visibility: visible;
  transform: inherit;
  opacity: 1;
}

.search-input-area {
  transition: all 500ms ease;
  visibility: hidden;
  transform: translateY(-100%);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 57px 0;
  background: white;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 479px) {
  .search-input-area {
    padding: 20px 0;
  }
}

.search-input-area .search-input-inner {
  display: flex;
  align-items: center;
  position: relative;
}

.search-input-area .search-input-inner .input-div {
  width: 80%;
  display: flex;
  align-items: center;
  margin: auto;
}

.search-input-area .search-input-inner .input-div input {
  background: #F7F7F7;
  border-radius: 5px;
  height: 55px;
}

.search-input-area .search-input-inner .input-div button {
  max-width: max-content;
  padding: 17.5px;
  background: #4879a5;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  display: block;
  margin-left: -9px;
  border-radius: 0 5px 5px 0;
}

.search-input-area .search-close-icon {
  cursor: pointer;
  position: absolute;
  right: 18px;
  top: 12px;
}

@media (max-width: 500px) {
  .search-input-area .search-close-icon {
    display: none;
  }
}

.search-input-area .search-close-icon i {
  position: relative;
  z-index: 1;
  color: #4879a5;
  transition: 0.3s;
  font-size: 18px;
}

.search-input-area .search-close-icon i::after {
  position: absolute;
  height: 45px;
  width: 45px;
  content: "";
  border-radius: 5px;
  background: var(--color-primary-alta);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.3s;
}

.search-input-area .search-close-icon:hover i {
  color: #4879a5;
}

.search-input-area .search-close-icon:hover i::after {
  background: var(--color-primary-alta);
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInRight {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/*header 3 end*/

/*header 4 start */


.swiper-pagination2 {
  margin: 0 auto;
  transform: none !important;
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  z-index: 10;
  bottom: 100px !important;
}

.swiper-pagination2 .swiper-pagination-bullet {
  margin-right: 7px !important;
  margin-left: 7px !important;
  opacity: 1;
  background: #fff;
  width: 6px;
  height: 6px;
  position: relative;
}

.swiper-pagination2 .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 50%;
  left: -4px;
  bottom: -4px;
}

.swiper-pagination2 .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
  background: transparent;
  position: relative;
}

@keyframes bounceInUp {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

/*header4 end */

/*header5 Start */


.rts-title-area p.pre-title {
  color: #4879a5;
  margin-bottom: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: -5px;
}

.about-inner p.disc {
  margin-bottom: 30px;
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/*header5 end*/

/*header6 start */


.about-founder-wrapper .author-inner {
  display: flex;
  align-items: center;
  position: relative;
}

.about-founder-wrapper .author-inner::after {
  position: absolute;
  content: "";
  right: 11%;
  top: 50%;
  transform: translateY(-50%);
  height: 70px;
  width: 1px;
  background: #EBEBEB;
}

@media only screen and (max-width: 1199px) {
  .about-founder-wrapper .author-inner::after {
    display: none;
  }
}

.about-founder-wrapper .author-inner .founder-details a .title {
  margin-bottom: 1px;
  transition: 0.3s;
}

.about-founder-wrapper .author-inner .founder-details a:hover .title {
  color: var(--color-title);
}

.about-founder-wrapper .author-inner .founder-details span {
  font-size: 14px;
  color: #4879a5;
  font-weight: 400;
}

.about-founder-wrapper .author-inner a.thumbnail {
  display: block;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 16px;
}

.about-founder-wrapper .author-inner a.thumbnail img {
  transition: 0.3s;
}

.about-founder-wrapper .author-inner a.thumbnail:hover img {
  transform: scale(1.1);
}

.about-founder-wrapper .author-call-option {
  display: flex;
  align-items: center;
}

.about-founder-wrapper .author-call-option img {
  padding: 12px;
  background: #4879a5;
  border-radius: 14px;
  margin-right: 16px;
}

.about-founder-wrapper .author-call-option span {
  color: #5D666F;
  font-size: 14px;
}

.about-founder-wrapper .author-call-option .title {
  margin-bottom: 0;
  margin-top: 2px;
  transition: 0.3s;
  min-width: max-content;
}

.about-founder-wrapper .author-call-option .title:hover {
  color: #4879a5;
}


@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

/*header6 end */

/*header7 start */


.rts-business-goal2 {
  padding-top: 120px;
}

@media (max-width: 767px) {
  .rts-business-goal2 {
    padding-top: 60px;
  }
}

.rts-business-goal2 .container .business-goal-right .rts-title-area::after {
  display: none;
}

.rts-business-goal2 .container .business-goal-right .rts-title-area .pre-title {
  color: var(--color-primary-4);
}

.rts-business-goal2 .container .business-goal-right .single-goal .goal-wrapper .title {
  color: #0B101C;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}

.rts-business-goal2 .container .business-goal-right .goal-button-wrapper .btn-primary {
  background: var(--color-primary-4);
}

.rts-business-goal2 .container .business-goal-right .goal-button-wrapper .btn-primary:hover {
  background: #E4E7FF !important;
  color: var(--color-primary-4) !important;
}

.rts-business-goal2 .container .business-goal-right .goal-button-wrapper .vedio-icone .video-play-button span {
  border-left-color: var(--color-primary-4);
}

.rts-business-goal2 .container .business-goal-right .goal-button-wrapper .vedio-icone .video-play-button::before {
  border-color: #E4E7FF;
}

.rts-business-goal2 .container .business-goal-right .goal-button-wrapper .vedio-icone .video-play-button::after {
  background: #E4E7FF;
}

.rts-business-goal2 .container .business-goal-right .goal-button-wrapper .vedio-icone .video-play-button .outer-text {
  color: var(--color-primary-4);
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/*header7 end */

/*header8 start */


.counter-bg {
  background-image: url(../images/counterup/bg-01.jpg);
  height: 762px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .counter-bg {
    height: 640px;
  }
}

@media only screen and (max-width: 1199px) {
  .counter-bg {
    height: auto;
  }
}

.counter-bg.bg-2 {
  height: auto;
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

/*header8 end */

/*header9 start */

@media only screen and (max-width: 1199px) {
  .rts-title-area::after {
    font-size: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-title-area::after {
    font-size: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .rts-title-area::after {
    font-size: 70px;
  }
}

@media only screen and (max-width: 479px) {
  .rts-title-area::after {
    font-size: 50px;
  }
}

@media only screen and (max-width: 479px) {
  .rts-title-area p.pre-title {
    font-size: 14px;
  }
}

.rts-title-area .title {
  margin-bottom: 24px;
}

.rts-title-area.service::after {
  content: "Services";
  left: 50%;
  transform: translateX(-50%);
}

.rts-title-area.pricing-planes::after {
  content: "price plans";
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  height: 168px;
  top: -70%;
}

.rts-title-area.service-four::after {
  content: "Services";
  left: 50%;
  transform: translateX(-50%);
  top: -20%;
}

.rts-title-area.business::after {
  content: "Business Goal";
  min-width: max-content;
  min-height: 120px;
  left: 67%;
  transform: translateX(-50%);
  z-index: -1;
}

.rts-title-area.gallery::after {
  content: "Gallery";
  left: 18%;
  transform: translateX(-50%);
  z-index: -1;
}

.rts-title-area.team::after {
  content: "Members";
  left: 49%;
  transform: translateX(-50%);
  z-index: -1;
  height: 109px;
}

.rts-title-area.feedback::after {
  content: "Testimonial";
  left: 49%;
  transform: translateX(-50%);
  z-index: -1;
  height: 109px;
}

.rts-title-area.feature::after {
  content: "Features";
  left: 32%;
  transform: translateX(-50%);
  z-index: -1;
  height: 109px;
  top: -18%;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rts-title-area.feature::after {
    left: 55%;
    font-size: 110px;
  }
}

.rts-title-area.reviews::after {
  content: "Reviews";
  left: 32%;
  transform: translateX(-50%);
  z-index: -1;
  height: 109px;
  top: 2%;
}

.rts-title-area.contact::after {
  content: "Hello";
  left: 52%;
  transform: translateX(-50%);
  z-index: -1;
  height: 109px;
  top: -41%;
}

.rts-title-area.contact-appoinment::after {
  position: absolute;
  content: "Hello";
  left: 18%;
  top: -39%;
  color: #8b868600;
  background-color: #241e1e00;
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-stroke: 1px #585858;
  font-size: 150px;
  height: 100%;
  max-width: max-content;
  max-height: max-content;
  font-weight: 900;
  z-index: -1;
  display: flex;
  align-items: center;
  opacity: 0.35;
  font-family: var(--font-secondary);
}

@media only screen and (max-width: 575px) {
  .rts-title-area.contact-appoinment::after {
    font-size: 100px;
  }
}

.rts-title-area.contact-fluid::after {
  content: "Contact Us";
  left: 49%;
  transform: translateX(-50%);
  z-index: -1;
  height: 109px;
  top: -40%;
  min-width: max-content;
}


/*header9 end */

/*header10 start */

.rts-trusted-client2 .container .title-area-client::before {
  background: var(--color-primary-4);
}

.rts-trusted-client2 .container .title-area-client::after {
  background: var(--color-primary-4);
}

/*header10 end */


/*header11 start */


.rts-team-area4 {
  background: #fff;
  height: auto;
}

@media (max-width: 767px) {
  .rts-team-area4 {
    padding: 100px 0;
  }
}

.rts-team-area4 .container .rts-title-area .pre-title {
  color: var(--color-primary-4);
}

.rts-team-area4 .container .rts-title-area .title {
  color: #0B101C;
  margin-bottom: 0;
}

.rts-team-area4 .container .rts-title-area::after {
  display: none;
}

.rts-team-area4 .container .mySwiperh1_team {
  padding-bottom: 20px;
}

.rts-team-area4 .container .mySwiperh1_team .team-single-one-start {
  box-shadow: 0px 2px 20px rgba(24, 16, 16, 0.09);
}

.rts-team-area4 .container .mySwiperh1_team .team-single-one-start .team-image-area .team-social:hover .main i {
  background: var(--color-primary-4);
  color: #fff;
}

.rts-team-area4 .container .mySwiperh1_team .team-single-one-start .team-image-area .team-social .main i {
  color: var(--color-primary-4);
}

.rts-team-area4 .container .mySwiperh1_team .team-single-one-start .team-image-area .team-social .team-social-one i {
  color: var(--color-primary-4);
}

.rts-team-area4 .container .mySwiperh1_team .team-single-one-start .team-image-area .team-social .team-social-one i:hover {
  background: var(--color-primary-4);
  color: #fff;
}

.rts-team-area4 .container .mySwiperh1_team .team-single-one-start .single-details a:hover .title {
  color: var(--color-primary-4);
}

.rts-team-area4 .container .mySwiperh1_team .team-single-one-start .single-details p {
  color: var(--color-primary-4);
}

.rts-team-area.style-3 {
  background: #f6f6f6;
  padding-top: 70px;
}

.rts-team-area.style-3 .team-inner-two {
  background: #fff;
  margin-bottom: 15px;
}

.rts-team-area.style-3 .team-inner-two:hover .thumbnail .social {
  right: 0;
}

.rts-team-area.style-3 .team-inner-two .thumbnail {
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.rts-team-area.style-3 .team-inner-two .thumbnail img {
  width: 100%;
}

.rts-team-area.style-3 .team-inner-two .thumbnail .social {
  position: absolute;
  right: -50px;
  bottom: 0;
  display: inline-grid;
  background: #4879a5;
  padding: 12px 0;
  width: 50px;
  text-align: center;
  color: #fff;
  transition: all 0.4s;
}

.rts-team-area.style-3 .team-inner-two .thumbnail .social a {
  margin: 5px 0;
  transition: all 0.4s;
}

.rts-team-area.style-3 .team-inner-two .thumbnail .social a:hover {
  color: #0B101C;
}

.rts-team-area.style-3 .team-inner-two .inner-content {
  padding: 30px;
  text-align: center;
}

.rts-team-area.style-3 .team-inner-two .inner-content .header .title {
  margin-bottom: 5px;
}

.rts-team-area.style-3 .team-inner-two .inner-content .header span {
  color: #4879a5;
}

.rts-team-area.style-4 .team-inner-two {
  position: relative;
  width: 100%;
  transition: all 0.6s;
}

.rts-team-area.style-4 .team-inner-two.inner {
  margin-bottom: 100px;
}

.rts-team-area.style-4 .team-inner-two:hover .acquaintance-area .team-desc {
  max-height: 400px;
  transform: scaleY(1);
  transition: all 0.4s, max-height 1.5s;
  padding: 15px 0;
}

.rts-team-area.style-4 .team-inner-two a.thumbnail {
  overflow: hidden;
  display: block;
  border-radius: 15px;
}

.rts-team-area.style-4 .team-inner-two a.thumbnail img {
  width: 100%;
  transition: 0.3s;
}

.rts-team-area.style-4 .team-inner-two a.thumbnail:hover img {
  transform: scale(1.15);
}

.rts-team-area.style-4 .team-inner-two .acquaintance-area {
  position: absolute;
  right: 50%;
  left: unset;
  width: 85%;
  padding: 20px;
  transform: translateX(50%);
  bottom: -20%;
  background: #fff;
  border-radius: 15px;
  transition: all 0.6s;
  box-shadow: 0px 4px 27px #00000012;
  text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-team-area.style-4 .team-inner-two .acquaintance-area {
    bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .rts-team-area.style-4 .team-inner-two .acquaintance-area {
    bottom: 0;
  }
}

.rts-team-area.style-4 .team-inner-two .acquaintance-area .header {
  padding: 0 0 5px 0;
  border: 0;
}

@media only screen and (max-width: 1199px) {
  .rts-team-area.style-4 .team-inner-two .acquaintance-area .header {
    padding: 20px 62px;
  }
}

.rts-team-area.style-4 .team-inner-two .acquaintance-area .header .title {
  font-size: 22px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 1199px) {
  .rts-team-area.style-4 .team-inner-two .acquaintance-area .header .title {
    font-size: 20px;
  }
}

.rts-team-area.style-4 .team-inner-two .acquaintance-area .header span {
  color: #4879a5;
  font-weight: 400;
  font-size: 16px;
}

.rts-team-area.style-4 .team-inner-two .acquaintance-area .team-desc {
  font-size: 14px;
  margin-bottom: 0;
  color: #777;
  position: relative;
  padding: 5px 0;
  z-index: 1;
  max-height: 0;
  opacity: 1;
  line-height: 24px;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: all 0.8s, max-height 0.8s;
}

.rts-team-area.style-4 .team-inner-two .acquaintance-area .team-desc::before {
  content: "";
  position: absolute;
  background: #4879a5;
  width: 50px;
  height: 2px;
  right: 50%;
  top: 3px;
  transform: translateX(50%);
}

.rts-team-area.style-4 .team-inner-two .acquaintance-area .acquaintance-social {
  padding: 5px 84px 5px 84px;
  margin-right: -30px;
}

@media only screen and (max-width: 1199px) {
  .rts-team-area.style-4 .team-inner-two .acquaintance-area .acquaintance-social {
    padding: 20px 62px;
    margin-right: -30px;
  }
}

.rts-team-area.style-4 .team-inner-two .acquaintance-area .acquaintance-social a {
  position: relative;
  z-index: 1;
  transition: 0.3s;
  margin-right: 30px;
}

.rts-team-area.style-4 .team-inner-two .acquaintance-area .acquaintance-social a i {
  font-size: 14px;
  color: #4879a5;
  transition: 0.3s;
}

.rts-team-area.style-4 .team-inner-two .acquaintance-area .acquaintance-social a::after {
  position: absolute;
  content: "";
  background: #F6F6F6;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.3s;
}

.rts-team-area.style-4 .team-inner-two .acquaintance-area .acquaintance-social a:hover i {
  color: #fff;
}

.rts-team-area.style-4 .team-inner-two .acquaintance-area .acquaintance-social a:hover::after {
  background: #4879a5;
}

.rts-team-area.style-5 .team-inner-two {
  margin-bottom: 30px;
}

.rts-team-area.style-5 .team-inner-two .thumbnail {
  border-radius: 50%;
}

.rts-team-area.style-5 .team-inner-two .team-content {
  text-align: center;
  margin-top: 30px;
}

.rts-team-area.style-5 .team-inner-two .team-content .header .title {
  margin-bottom: 5px;
}

.rts-team-area.style-5 .team-inner-two .team-content .header span {
  color: #4879a5;
}

.rts-team-area.style-5 .team-inner-two .team-content .acquaintance-social {
  margin-top: 10px;
}

.rts-team-area.style-5 .team-inner-two .team-content .acquaintance-social a {
  margin-right: 5px;
  background: #fff;
  color: #4a4a4a;
  width: 35px;
  height: 35px;
  display: inline-block;
  line-height: 35px;
  transition: all 0.3s;
}

.rts-team-area.style-5 .team-inner-two .team-content .acquaintance-social a:hover {
  background: #4879a5;
  color: #fff;
}

.color-white {
  color: #ffff !important;
}

.rts-team-area-style-six {
  position: relative;
  z-index: 1;
  height: 1159px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rts-team-area-style-six {
    height: auto;
  }
}

@media only screen and (max-width: 1199px) {
  .rts-team-area-style-six {
    height: auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-team-area-style-six {
    height: auto;
  }
}

@media only screen and (max-width: 767px) {
  .rts-team-area-style-six {
    height: auto;
  }
}

.rts-team-area-style-six .team-bg-image-style-six {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -1;
}


.banner-one-inner .pre-title {
  color: #1C2539;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
  letter-spacing: 1px;
}

.banner-one-inner .pre-title span {
  color: #4879a5;
  font-weight: 800;
}



.team-single-one-start {
  background: #fff;
  border-radius: 8px;
  transition: 0.3s;
}

.team-single-one-start:hover {
  transform: translateY(-20px);
}

.team-single-one-start .team-image-area a {
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: 8px 8px 0 0;
}

.team-single-one-start .team-image-area a:hover img {
  transform: scale(1.1);
}

.team-single-one-start .team-image-area a img {
  width: 100%;
  transition: 0.3s;
}

.team-single-one-start .team-image-area a .team-social {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.team-single-one-start .team-image-area a .team-social .main i {
  padding: 16px;
  background: #fff;
  border-radius: 50%;
  font-size: 16px;
  line-height: 12px;
  font-weight: 500;
  color: #4879a5;
  transition: 0.3s;
}

.team-single-one-start .team-image-area a .team-social:hover .main i {
  background: #4879a5;
  color: #fff;
}

.team-single-one-start .team-image-area a .team-social .team-social-one {
  display: flex;
  flex-direction: column;
  position: absolute;
  transform: translateY(50px);
  transition: 1s;
  opacity: 0;
}

.team-single-one-start .team-image-area a .team-social .team-social-one i {
  background: #fff;
  border-radius: 60%;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  color: #4879a5;
  transition: 0.3s;
  margin-bottom: 10px;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-single-one-start .team-image-area a .team-social .team-social-one i:hover {
  background: #4879a5;
  color: #fff;
}

.team-single-one-start .team-image-area a .team-social:hover .main {
  opacity: 0;
}

.team-single-one-start .team-image-area a .team-social:hover .team-social-one {
  transform: translateY(-96%);
  z-index: 2;
  opacity: 1;
}

.team-single-one-start .single-details {
  padding: 28px 30px 27px 30px;
}

.team-single-one-start .single-details a .title {
  margin-bottom: 0px;
  transition: 0.3s;
}

.team-single-one-start .single-details a:hover .title {
  color: #4879a5;
}

.team-single-one-start .single-details p {
  color: #4879a5;
  font-size: 16px;
}

.team-inner-two {
  position: relative;
  width: 100%;
}

.team-inner-two.inner {
  margin-bottom: 100px;
}

.team-inner-two a.thumbnail {
  overflow: hidden;
  display: block;
  border-radius: 15px;
}

.team-inner-two a.thumbnail img {
  width: 100%;
  transition: 0.3s;
}

.team-inner-two a.thumbnail:hover img {
  transform: scale(1.15);
}

.team-inner-two .acquaintance-area {
  position: absolute;
  left: 0;
  bottom: -20%;
  background: #fff;
  border-radius: 0 15px 15px 15px;
  box-shadow: 0px 4px 27px #00000012;
  text-align: center;
}


.mySwiperh1_team .swiper-slide {
  border-radius: 20px;
  padding-top: 20px;
  background: transparent;
}

.mySwiperh1_blog .swiper-slide {
  background: transparent;
  text-align: left;
}

.mySwiperh2_banner .swiper-slide {
  background: transparent;
}

.mySwiperh3_team {
  padding-bottom: 109px;
}

@media only screen and (max-width: 575px) {
  .mySwiperh3_team {
    padding-bottom: 30px;
  }
}

.mySwiperh2_Business_Cases .swiper-slide {
  background: transparent;
}

.rts-banner-one {
  position: relative;
}

.rts-banner-one .animation-img .shape-img {
  position: absolute;
}

.rts-banner-one .animation-img .shape-img.one {
  right: 3%;
  top: 34%;
  z-index: 1;
  animation: rotateIt2 25s linear infinite;
}

.rts-banner-one .animation-img .shape-img.two {
  right: -24px;
  top: 77%;
  z-index: 1;
  animation: jump-2 3s infinite;
}

.rts-banner-one .animation-img .shape-img.three {
  right: 13%;
  top: 21%;
  z-index: 1;
  animation: jump-1 3s infinite;
}


.index-seven a.rts-btn {
  border-radius: 100px !important;
  background: var(--color-primary-5) !important;
}

.index-seven.hr a.rts-btn {
  border-radius: 100px !important;
  background: var(--color-primary-5) !important;
}

.index-seven.hr a.rts-btn:hover {
  background: var(--color-primary-alta) !important;
}

.index-seven.hr a.rts-btn:hover i {
  color: var(--color-primary-5);
}

.index-seven .progress-area-h7 .single-progress-inner .progress.red .progress-bar {
  border-color: var(--color-primary-6) !important;
}

.index-seven .mainmenu li.has-droupdown .submenu.menu-link1 .menu-item ul li a:hover {
  color: var(--color-primary-5);
}

.index-seven .mainmenu li.has-droupdown .submenu li a:hover {
  color: var(--color-primary-5);
}

.index-six .progress-area-h7 .single-progress-inner .progress.red .progress-bar {
  border-color: var(--color-primary-6) !important;
}

.index-six .mainmenu li.has-droupdown .submenu.menu-link1 .menu-item ul li a:hover {
  color: var(--color-primary-6);
}

.index-six .mainmenu li.has-droupdown .submenu li a:hover {
  color: var(--color-primary-6);
}

.banner-inner-six a.rts-btn {
  border-radius: 100px !important;
  line-height: 7px;
  display: block;
  padding: 18px 32px;
  max-width: max-content;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 1px;
}

.banner-one .swiper-slide-active .pre-title {
  animation: fadeInUp 1.5s;
  animation-delay: 0s;
}

.banner-one .swiper-slide-active .title {
  animation: fadeInUp 1.5s;
  animation-delay: 0s;
}

.banner-one .swiper-slide-active p.disc {
  animation: fadeInUp 2s;
  animation-delay: 0s;
}

.banner-one .swiper-slide-active a.rts-btn {
  animation: fadeInUp 2.5s;
  animation-delay: 0s;
}

.rts-banner-area-two .swiper-slide-active .wrapper .sub {
  animation: fadeInUp 1.5s;
  animation-delay: 0s;
  display: block;
}

.rts-banner-area-two .swiper-slide-active .wrapper .title {
  animation: fadeInUp 1.5s;
  animation-delay: 0s;
}

.rts-banner-area-two .swiper-slide-active .wrapper a.rts-btn {
  animation: fadeInUp 2.5s;
  animation-delay: 0s;
}

.rts-banner-area-two.eight {
  position: relative;
}

.rts-banner-area-two.eight::before {
  position: absolute;
  content: "";
  background-image: url(../images/banner/shape/shape.webp);
  height: 100%;
  width: 650px;
  background-size: cover;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.rts-banner-area-two.eight .bg_banner-three::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.5);
}

.rts-banner-area-two.eight .bg_banner-three .banner-three-inner {
  padding-top: 0;
  margin-top: -100px;
}

.rts-banner-area-two.eight .bg_banner-three .banner-three-inner::after {
  top: -10%;
}

.rts-banner-area-two.eight .swiper-navigation {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

@media (max-width: 768px) {
  .rts-banner-area-two.eight .swiper-navigation {
    display: none;
  }
}

.rts-banner-area-two.eight .swiper-navigation .swiper-button-prev {
  background: rgba(0, 0, 0, 0.1);
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 50%;
  display: block;
  transition: all 0.4s;
}

.rts-banner-area-two.eight .swiper-navigation .swiper-button-prev:hover {
  background: #fff;
}

.rts-banner-area-two.eight .swiper-navigation .swiper-button-prev:hover::after {
  color: var(--color-primary-2);
}

.rts-banner-area-two.eight .swiper-navigation .swiper-button-prev::after {
  line-height: 70px;
  font-size: 24px;
  color: #fff;
}

.rts-banner-area-two.eight .swiper-navigation .swiper-button-next {
  background: rgba(0, 0, 0, 0.1);
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 50%;
  display: block;
  transition: all 0.4s;
}

.rts-banner-area-two.eight .swiper-navigation .swiper-button-next:hover {
  background: #fff;
}

.rts-banner-area-two.eight .swiper-navigation .swiper-button-next:hover::after {
  color: var(--color-primary-2);
}

.rts-banner-area-two.eight .swiper-navigation .swiper-button-next::after {
  line-height: 70px;
  font-size: 24px;
  color: #fff;
}

.banner-three .swiper-slide-active .banner-three-innerr .subtitle-banner {
  animation: fadeInUp 1.5s;
  animation-delay: 0s;
  display: block;
}

.banner-three .swiper-slide-active .banner-three-innerr .title {
  animation: fadeInUp 1.5s;
  animation-delay: 0s;
}

.banner-three .swiper-slide-active .banner-three-innerr .disc {
  animation: fadeInUp 1.5s;
  animation-delay: 0s;
}

.banner-three .swiper-slide-active .banner-three-innerr a.rts-btn {
  animation: fadeInUp 2.5s;
  animation-delay: 0s;
}

.banner-three.banner-four {
  background: url(../images/banner/img.jpg);
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.banner-three.banner-four::before {
  background: none;
}

.banner-three.banner-four .shape {
  position: absolute;
  right: 0;
}

.banner-three.banner-four .shape img {
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .banner-three.banner-four .shape {
    height: 100%;
  }

  .banner-three.banner-four .shape img {
    height: 100%;
  }
}

@media (max-width: 991px) {
  .banner-three.banner-four .shape {
    display: none;
  }
}

/*header11 end */

/*header12 start */
.rts-feature-area {
  position: relative;
  margin-top: -13%;
}

@media only screen and (max-width: 1199px) {
  .rts-feature-area {
    margin-top: 0;
  }
}


.single-feature-one.eight {
  padding: 15px 22px;
  margin-right: 15px;
}

.single-feature-one.eight svg {
  width: 35px;
  height: 35px;
  fill: var(--color-primary-2);
  margin-right: 8px;
}

.single-feature-one.eight p {
  font-size: 20px;
}

/*header12 end */

/*header13 start */


.rts-client-feedback {
  position: relative;
}

.rts-client-feedback::after {
  position: absolute;
  content: "";
  left: 0;
  height: 200px;
  width: 200px;
  top: 3%;
  background-image: url(../images/testimonials/shape/03.png);
  background-size: cover;
  animation: jump-2 5s linear infinite;
}

@media only screen and (max-width: 1199px) {
  .rts-client-feedback::after {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rts-client-feedback::after {
    display: none;
  }
}

.rts-client-feedback.inner::after {
  display: none;
}

/*header13 end */

/*header14 start */

.rts-blog-area {
  position: relative;
  z-index: 5;
}

.rts-blog-area .title-area span {
  color: #4879a5;
  font-weight: 700;
  text-transform: uppercase;
}

.rts-blog-area .title-area .title {
  color: #fff;
}


.single-blog-one-wrapper .blog-content p {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.single-blog-one-wrapper .blog-content p span {
  color: #4879a5;
  font-weight: 500;
}

.single-blog-one-wrapper .blog-content a .title {
  color: #fff;
  padding-right: 15px;
  margin-bottom: 30px;
  transition: var(--transition);
}

.single-blog-one-wrapper .blog-content a:hover .title {
  color: #4879a5;
}

.single-blog-one-wrapper .blog-content a {
  color: #fff;
}

.single-blog-one-wrapper .blog-content a i {
  background: #2B2F39;
  color: #fff;
}

.single-blog-one-wrapper .blog-content a:hover i {
  background: #4879a5;
}


.rts-read-more {
  font-weight: 600;
  color: #1C2539;
  transition: var(--transition);
}

.rts-read-more i {
  padding: 13px;
  background: #fff;
  border-radius: 50%;
  margin-right: 12px;
  color: #1C2539;
  line-height: 12px;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
}

.rts-read-more.btn-primary {
  background: transparent;
  color: #1C2539;
}

.rts-read-more:hover {
  color: #4879a5;
}

.rts-read-more:hover i {
  background: #4879a5;
  color: var(--color-white);
}

.rts-read-more:focus {
  box-shadow: none;
  outline: none;
}


/*header14 end */


.rts-blog-area.style-seven .title-area .title {
  color: #0B101C;
}

.rts-blog-area.style-seven .single-blog-one-wrapper .blog-content p {
  color: #0B101C;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}

.rts-blog-area.style-seven .single-blog-one-wrapper .blog-content p span {
  color: #FA360A;
}

.rts-blog-area.style-seven .single-blog-one-wrapper .blog-content a .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #0B101C;
}

.rts-blog-area.style-seven .single-blog-one-wrapper .blog-content a.rts-read-more {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #0B101C;
}

.rts-blog-area.style-seven .single-blog-one-wrapper .blog-content a.rts-read-more i {
  background: #ECECEC;
  color: #000;
}

.rts-blog-area.style-seven .single-blog-one-wrapper .blog-content a.rts-read-more:hover i {
  background: var(--color-primary-5);
  color: #ffff;
}

.rts-blog-area.style-seven .single-blog-one-wrapper .blog-content a.rts-read-more.six:hover i {
  background: var(--color-primary-6);
}

/*header15 start */


.rts-contact-area.contact-one.appoinment::after {
  display: none;
}


.background-contact-appoinment .contact-form-area-one {
  background-image: url(../images/appoinment/04.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
  background-color: rgba(255, 255, 255, 0);
  padding: 165px 120px 120px 120px;
  margin-left: -26px;
}

@media only screen and (max-width: 575px) {
  .background-contact-appoinment .contact-form-area-one {
    padding: 60px;
  }
}

@media only screen and (max-width: 479px) {
  .background-contact-appoinment .contact-form-area-one {
    padding: 60px 10px 60px 40px;
  }
}

.background-contact-appoinment .contact-form-area-one .title {
  color: #4879a5;
  text-align: center;
}

.background-contact-appoinment .contact-form-area-one input {
  background: #a1c6e7; 
  color: #fff;
}

.background-contact-appoinment .contact-form-area-one input::-webkit-input-placeholder {
  color: #fff !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 21px !important;
}

.background-contact-appoinment .contact-form-area-one textarea {
  color: #fff;
  background: #212329;
}

.background-contact-appoinment .contact-form-area-one textarea::-webkit-input-placeholder {
  color: #fff !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 21px !important;
}


/*header15 end */

/*header16 start */


.mapdetails-inner-one {
  margin-left: 305px;
  display: flex;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .mapdetails-inner-one {
    margin-left: 200px;
  }
}

@media only screen and (max-width: 1199px) {
  .mapdetails-inner-one {
    margin-left: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mapdetails-inner-one {
    padding: 30px 0;
  }
}

@media only screen and (max-width: 767px) {
  .mapdetails-inner-one {
    margin-left: 100px;
    padding: 30px 0;
  }
}

@media only screen and (max-width: 575px) {
  .mapdetails-inner-one {
    margin-left: 0;
  }
}

.mapdetails-inner-one .single-wized {
  margin-right: 63px;
  width: 41%;
}

@media only screen and (max-width: 575px) {
  .mapdetails-inner-one .single-wized {
    margin-right: 30px;
  }
}

.mapdetails-inner-one .single-wized:last-child {
  margin-right: 0;
}

.mapdetails-inner-one .single-wized .title {
  position: relative;
  margin-bottom: 40px;
  min-width: max-content;
}

.mapdetails-inner-one .single-wized .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #4879a5;
}

.mapdetails-inner-one .single-wized:first-child {
  border-right: 1px solid #E4E4E4;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mapdetails-inner-one .single-wized:first-child {
    border: none;
  }
}

@media only screen and (max-width: 767px) {
  .mapdetails-inner-one .single-wized:first-child {
    border: none;
  }
}

@media only screen and (max-width: 575px) {
  .mapdetails-inner-one .single-wized:first-child {
    border-right: none;
  }
}

.mapdetails-inner-one.inner {
  max-width: 700px;
  margin: 0 auto;
}

.mapdetails-inner-one {
  display: flex;
}

@media only screen and (max-width: 575px) {
  .mapdetails-inner-one {
    flex-direction: column;
  }
}

@media only screen and (max-width: 575px) {
  .mapdetails-inner-one .left-area {
    margin-bottom: 30px;
  }
}

.mapdetails-inner-one .left-area .details p {
  margin-bottom: 20px;
  color: #5D666F;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
}

.mapdetails-inner-one .left-area .details a.number {
  font-size: 16px;
  font-weight: 700;
  color: #1C2539;
  margin-bottom: 30px;
}

.mapdetails-inner-one .left-area .details p.time-header {
  margin-top: 30px;
  margin-bottom: 5px;
  color: #5D666F;
}

.mapdetails-inner-one .left-area .details p.time {
  color: #1C2539;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.mapdetails-inner-one .right-area .details p {
  margin-bottom: 3px;
  color: #5D666F;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
}

.mapdetails-inner-one .right-area .details a {
  color: #1C2539;
  font-size: 16px;
  font-weight: 700;
}


.mapdetails-inner-one .right-area .details p.headoffice {
  margin-top: 24px;
}

.mapdetails-inner-one .right-area .details p.office {
  color: #1C2539;
  font-weight: 700;
}

/*header16 end */


/*header17 start */


.rts-cta-wrapper .background-cta .cta-left-wrapepr {
  margin-left: 80px;
  padding: 45px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-cta-wrapper .background-cta .cta-left-wrapepr {
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .rts-cta-wrapper .background-cta .cta-left-wrapepr {
    padding-bottom: 10px;
    padding-top: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .rts-cta-wrapper .background-cta .cta-left-wrapepr {
    margin: 0;
    text-align: center;
  }
}

.rts-cta-wrapper .background-cta .cta-left-wrapepr p {
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-family: var(--font-secondary);
}

@media only screen and (max-width: 479px) {
  .rts-cta-wrapper .background-cta .cta-left-wrapepr p {
    font-size: 14px;
  }
}

.rts-cta-wrapper .background-cta .cta-left-wrapepr .title {
  color: #fff;
  margin-bottom: 0;
  margin-top: -5px;
}

@media only screen and (max-width: 479px) {
  .rts-cta-wrapper .background-cta .cta-left-wrapepr .title {
    font-size: 18px;
  }
}

.rts-cta-wrapper .background-cta .cta-input-arae {
  padding: 60px 0;
  position: relative;
}

@media screen and (max-width: 996px) {
  .rts-cta-wrapper .background-cta .cta-input-arae {
    padding-top: 0;
    margin-left: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .rts-cta-wrapper .background-cta .cta-input-arae {
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .rts-cta-wrapper .background-cta .cta-input-arae {
    margin-left: 20px;
    padding-bottom: 30px;
  }
}

.rts-cta-wrapper .background-cta .cta-input-arae input {
  background: #FFFFFF;
  border-radius: 100px;
  height: 55px;
  width: 547px;
  color: #000;
  padding: 0 186px 0 25px;
}

@media screen and (max-width: 1400px) {
  .rts-cta-wrapper .background-cta .cta-input-arae input {
    width: 64%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-cta-wrapper .background-cta .cta-input-arae input {
    width: 64%;
  }
}

@media only screen and (max-width: 767px) {
  .rts-cta-wrapper .background-cta .cta-input-arae input {
    padding-right: 50px;
  }
}

@media only screen and (max-width: 575px) {
  .rts-cta-wrapper .background-cta .cta-input-arae input {
    height: 45px;
  }
}

@media only screen and (max-width: 479px) {
  .rts-cta-wrapper .background-cta .cta-input-arae input {
    border-radius: 5px;
    padding: 0 186px 0 10px;
  }
}

.rts-cta-wrapper .background-cta .cta-input-arae button {
  position: absolute;
  border-radius: 100px;
  max-width: max-content;
  right: 90px;
}

@media only screen and (max-width: 575px) {
  .rts-cta-wrapper .background-cta .cta-input-arae button {
    padding: 12px;
    right: 20px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 479px) {
  .rts-cta-wrapper .background-cta .cta-input-arae button {
    border-radius: 5px;
    font-size: 12px;
  }
}


.background-cta {
  background-image: url(../images/footer/callto-action.png);
  background-repeat: no-repeat;
  background-color: #DF0A0A;
  background-blend-mode: multiply;
  overflow: hidden;
  border-radius: 100px;
  background-position: center;
  object-fit: contain;
  background-size: cover;
}

.background-cta.six {
  background-color: var(--color-primary-6);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .background-cta {
    border-radius: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .background-cta {
    border-radius: 10px;
  }
}


.footer-one-single-wized.mid-bg {
  background: linear-gradient(180deg, #0E1422 -4.66%, #212631 100%);
  border-radius: 15px;
  padding: 40px;
  margin-top: -40px;
  margin: -40px 30px 0 30px;
}

@media only screen and (max-width: 767px) {
  .footer-one-single-wized.mid-bg {
    margin-left: 0;
    margin-top: 30px;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 575px) {
  .footer-one-single-wized.mid-bg {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .footer-one-single-wized.mid-bg {
    margin-right: 0;
    padding: 10px;
  }
}

.footer-one-single-wized.mid-bg .opening-time-inner .single-opening {
  display: flex;
  justify-content: space-between;
}

.footer-one-single-wized.mid-bg .opening-time-inner .single-opening p {
  margin-bottom: 15px;
  color: #fff;
  font-family: var(--font-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-one-single-wized.mid-bg .opening-time-inner .single-opening p {
    font-size: 14px;
  }
}

.footer-one-single-wized.mid-bg .opening-time-inner .rts-btn.contact-us {
  display: block;
  max-width: max-content;
}

@media only screen and (max-width: 479px) {
  .footer-one-single-wized.mid-bg .opening-time-inner .rts-btn.contact-us {
    padding: 12px 22px;
  }
}

.footer-one-single-wized.six .quick-link-inner .links li a:hover {
  color: var(--color-primary-6);
}

.footer-one-single-wized.six .quick-link-inner .links li a::after {
  background: var(--color-primary-6);
}

.footer-one-single-wized.six .post-wrapper .single-footer-post .post-right a:hover .title {
  color: var(--color-primary-6);
}

.footer-one-single-wized.six .post-wrapper .single-footer-post .post-right .red-more {
  color: var(--color-primary-6);
}

.footer-one-single-wized.seven .quick-link-inner .links li a:hover {
  color: var(--color-primary-5);
}

.footer-one-single-wized.seven .quick-link-inner .links li a::after {
  background: var(--color-primary-5);
}

.footer-one-single-wized.seven .post-wrapper .single-footer-post .post-right a:hover .title {
  color: var(--color-primary-5);
}

.footer-one-single-wized.seven .post-wrapper .single-footer-post .post-right .red-more {
  color: var(--color-primary-5);
}

.footer-one-single-wized .wized-title {
  margin-bottom: 25px;
}

.footer-one-single-wized .wized-title .title {
  color: #fff;
  margin-bottom: 10px;
}

.footer-one-single-wized .quick-link-inner {
  display: flex;
}

@media only screen and (max-width: 479px) {
  .footer-one-single-wized .quick-link-inner {
    flex-direction: column;
  }
}

.footer-one-single-wized .quick-link-inner .links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-one-single-wized .quick-link-inner .links.margin-left-70 {
  margin-left: 70px;
}

@media only screen and (max-width: 479px) {
  .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
    margin-left: 0;
  }
}

.footer-one-single-wized .quick-link-inner .links li {
  margin-top: 0;
}

.footer-one-single-wized .quick-link-inner .links li a {
  color: #8B8F99;
  transition: var(--transition);
  position: relative;
  max-width: max-content;
}

.footer-one-single-wized .quick-link-inner .links li a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background: #4879a5;
  left: 29px;
  bottom: 0;
  transition: 0.3s;
}

.footer-one-single-wized .quick-link-inner .links li a i {
  margin-right: 12px;
  transition: 0.3s;
}

.footer-one-single-wized .quick-link-inner .links li a:hover {
  color: #4879a5;
}

.footer-one-single-wized .quick-link-inner .links li a:hover::after {
  position: absolute;
  width: 76%;
}

.footer-one-single-wized .quick-link-inner .links li a:hover i {
  color: #fff;
}

.footer-one-single-wized .post-wrapper .single-footer-post {
  display: flex;
  align-items: flex-start;
}

.footer-one-single-wized .post-wrapper .single-footer-post .left-thumbnail {
  margin-right: 20px;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.footer-one-single-wized .post-wrapper .single-footer-post .left-thumbnail img {
  width: 130px;
  height: auto;
  transition: var(--transition);
}

.footer-one-single-wized .post-wrapper .single-footer-post .left-thumbnail:hover img {
  transform: scale(1.2);
}

.footer-one-single-wized .post-wrapper .single-footer-post .post-right p {
  margin-bottom: 0;
  color: #8B8F99;
  font-size: 14px;
  margin-top: -6px;
}

.footer-one-single-wized .post-wrapper .single-footer-post .post-right a .title {
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 0;
  transition: var(--transition);
}

.footer-one-single-wized .post-wrapper .single-footer-post .post-right a:hover .title {
  color: #4879a5;
}

.footer-one-single-wized .post-wrapper .single-footer-post .post-right a {
  max-width: max-content;
  padding-left: 0;
  color: #DF0A0A;
  display: flex;
  align-items: center;
  margin-top: -1px;
}

.footer-one-single-wized .post-wrapper .single-footer-post .post-right a i {
  margin-left: 6px;
  margin-bottom: -4px;
  position: relative;
  transition: var(--transition);
}

.footer-one-single-wized .post-wrapper .single-footer-post .post-right a.red-more {
  display: block;
  max-width: max-content;
}

.footer-one-single-wized .post-wrapper .single-footer-post .post-right a.red-more:hover i {
  margin-left: 15px;
}

.footer-one .rts-copyright-area {
  border-top: 1px solid #21293D;
  padding: 30px 0;
}

.footer-one .rts-copyright-area p {
  font-size: 16px;
  color: #fff;
}


.footer-five .rts-cta-wrapper .background-cta {
  background-color: var(--color-primary-2);
}

.footer-five .rts-cta-wrapper .background-cta .cta-input-arae .btn-primary {
  background: var(--color-primary-2);
}

.footer-five .rts-cta-wrapper .background-cta .cta-input-arae .btn-primary:hover {
  background: var(--color-gray);
  color: var(--color-primary-2);
}

.footer-five .footer-one-single-wized .quick-link-inner .links li a:hover {
  color: var(--color-primary-2);
}

.footer-five .footer-one-single-wized .quick-link-inner .links li a::after {
  background: var(--color-primary-2);
}

.footer-five .footer-one-single-wized.mid-bg .opening-time-inner .btn-primary {
  background: var(--color-primary-2);
}

.footer-five .footer-one-single-wized.mid-bg .opening-time-inner .btn-primary:hover {
  background: var(--color-gray);
  color: var(--color-primary-2);
}

.footer-five .footer-one-single-wized .single-footer-post .post-right a .title:hover {
  color: var(--color-primary-2);
}

.footer-five .footer-one-single-wized .single-footer-post .post-right .red-more {
  color: var(--color-primary-2);
}

.rts-footer-area.footer-eleven .info-wrapper .single .icon li i {
  color: var(--color-primary-8);
}

.footer-eleven .footer-three-single-wized .body .info-wrapper .single .info a:hover {
  color: var(--color-primary-8);
}

.footer-eleven .footer-three-single-wized.mid-right .body .update-wrapper .email-footer-area button {
  background: var(--color-primary-8);
}

.footer-eleven .footer-three-single-wized.mid-right .body .update-wrapper .note-area p span {
  color: var(--color-primary-8);
}

.footer-eleven .footer-three-single-wized.mid-right .body .update-wrapper .email-footer-area input:focus {
  border-color: var(--color-primary-8);
}

.footer-eleven .social-three-wrapper li a:hover::after {
  background: var(--color-primary-8);
}


.footer-two-single-wized .wized-title-area .wized-title {
  margin-bottom: 4px;
}

.footer-two-single-wized .wized-2-body ul {
  list-style: none;
  padding-left: 0;
}

.footer-two-single-wized .wized-2-body ul li a {
  color: #5D666F;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer-two-single-wized .wized-2-body ul li a i {
  font-size: 14px;
  margin-right: 10px;
}

.footer-two-single-wized .wized-2-body ul li a:hover {
  color: var(--color-primary-2);
}

.footer-two-single-wized .contact-info-1 {
  display: flex;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 18px;
}

.footer-two-single-wized .contact-info-1 .icon i {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: var(--color-primary-2);
}

.footer-two-single-wized .contact-info-1 .icon i::after {
  position: absolute;
  content: "";
  z-index: -1;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
  height: 35px;
  width: 35px;
}

.footer-two-single-wized .contact-info-1 .disc {
  display: flex;
  flex-direction: column;
  margin-left: 30px;
}

.footer-two-single-wized .contact-info-1 .disc span {
  color: #5D666F;
  font-size: 16px;
  font-weight: 400;
}

.footer-two-single-wized .contact-info-1 .disc a {
  color: #1C2539;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
}

.footer-two-single-wized .contact-info-1 .disc a:hover {
  color: var(--color-primary-2);
}

.contact-info-1 {
  display: flex;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 18px;
}

.contact-info-1 .icon i {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: var(--color-primary-2);
}

.contact-info-1 .icon i::after {
  position: absolute;
  content: "";
  z-index: -1;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
  height: 35px;
  width: 35px;
}

.contact-info-1 .disc {
  display: flex;
  flex-direction: column;
  margin-left: 30px;
}

.contact-info-1 .disc span {
  color: #5D666F;
  font-size: 16px;
  font-weight: 400;
}

.contact-info-1 .disc a {
  color: #1C2539;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
}

.contact-info-1 .disc a:hover {
  color: var(--color-primary-2);
}

.rts-copy-right .copyright-h-2-wrapper {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .rts-copy-right .copyright-h-2-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

.rts-copy-right .copyright-h-2-wrapper p.disc {
  margin-bottom: 0;
  color: #1C2539;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .rts-copy-right .copyright-h-2-wrapper p.disc {
    text-align: center;
    font-size: 12px;
  }
}

.rts-copy-right .copyright-h-2-wrapper .right {
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .rts-copy-right .copyright-h-2-wrapper .right {
    margin-left: inherit;
  }
}

.rts-copy-right .copyright-h-2-wrapper .right ul {
  list-style: none;
  display: flex;
  align-items: center;
  padding-left: 0;
  margin: 0;
}

.rts-copy-right .copyright-h-2-wrapper .right ul li {
  margin-left: 30px;
  margin-top: 0;
  margin-bottom: 0;
}

.rts-copy-right .copyright-h-2-wrapper .right ul li:first-child {
  margin-left: 0%;
}

.rts-copy-right .copyright-h-2-wrapper .right ul li a {
  color: #1C2539;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
}

@media only screen and (max-width: 767px) {
  .rts-copy-right .copyright-h-2-wrapper .right ul li a {
    font-size: 12px;
  }
}

.rts-copy-right .copyright-h-2-wrapper .right ul li a:hover {
  color: var(--color-primary-2);
}

.rts-copy-right .copyright-h-2-wrapper p {
  margin-left: 0;
}

.margin-left-65 {
  margin-left: 65px;
}

@media only screen and (max-width: 1199px) {
  .margin-left-65 {
    margin-left: 0;
  }
}

@media only screen and (max-width: 479px) {
  .footer-one-single-wized {
    padding: 0 10px;
  }
}

.footer-four {
  background: #10151F;
}

.footer-four .footer-three-single-wized .title {
  color: #fff;
}

.footer-four .footer-three-single-wized .disc {
  color: #848C95;
}

.footer-four .footer-three-single-wized .social-three-wrapper li a {
  color: #fff;
}

.footer-four .footer-three-single-wized .social-three-wrapper li a::after {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  opacity: 0.05;
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
}

.footer-four .footer-three-single-wized .social-three-wrapper li a:hover::after {
  background: var(--color-primary-4);
  opacity: 1;
}

.footer-four .footer-three-single-wized .body .info-wrapper .single .icon li {
  color: #fff;
}

.footer-four .footer-three-single-wized .body .info-wrapper .single .icon li::after {
  width: 35px;
  height: 35px;
  opacity: 0.05;
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
}

.footer-four .footer-three-single-wized .body .info-wrapper .single .info span {
  color: #848C95;
}

.footer-four .footer-three-single-wized .body .info-wrapper .single .info a {
  color: #fff;
}

.footer-four .footer-three-single-wized .body .update-wrapper .email-footer-area input {
  border: 1px solid #262D39;
}

.footer-four .footer-three-single-wized .body .update-wrapper .email-footer-area input:focus {
  border-color: var(--color-primary-4);
}

.footer-four .footer-three-single-wized .body .update-wrapper .email-footer-area button {
  background: var(--color-primary-4);
}

.footer-four .footer-three-single-wized .body .update-wrapper .note-area p span {
  color: var(--color-primary-4);
}

.footer-four .copyright-area {
  border: none;
}

.footer-four .copyright-area .disc {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #848C95;
}

/*header17 end */

/*header18 start */


.index-seven.hr .progress-wrap svg.progress-circle path {
  fill: #fff !important;
}

/*header18 end */

/*home end */

/*about-us start*/

/*section4 start*/


.about-image-v-inner .image-area {
  display: flex;
  position: relative;
}

.about-image-v-inner .image-area .img-1 {
  border-top: 10px solid #4879a5;
  padding-top: 10px;
}

@media only screen and (max-width: 767px) {
  .about-image-v-inner .image-area .img-1 {
    width: 65%;
  }
}

.about-image-v-inner .image-area .img-over {
  position: absolute;
  right: 0;
  top: 0;
  animation: jump-2 5s linear infinite;
}

@media only screen and (max-width: 767px) {
  .about-image-v-inner .image-area .img-over {
    width: 50%;
  }
}

.about-image-v-inner .image-area .goal-button-wrapper {
  position: absolute;
  bottom: -2%;
  right: 29%;
}

.about-image-v-inner .image-area .goal-button-wrapper .vedio-icone {
  background: #fff;
  padding: 65px;
  border-radius: 50%;
}

@media only screen and (max-width: 479px) {
  .about-image-v-inner .image-area .goal-button-wrapper .vedio-icone {
    padding: 53px;
  }
}

.about-image-v-inner .image-area .goal-button-wrapper .vedio-icone .video-play-button::after {
  background: #4879a5;
}

.about-image-v-inner .image-area .goal-button-wrapper .vedio-icone .video-play-button span {
  border-left: 14px solid #ffffff;
}

@media only screen and (max-width: 575px) {
  .about-image-v-inner .image-area .goal-button-wrapper {
    right: 24%;
  }
}

.about-progress-inner {
  padding-left: 30px;
}



.about-progress-inner .title-area span {
  color: #4879a5;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.about-progress-inner .title-area .title {
  margin-top: 5px;
}

.about-progress-inner .inner .rts-progress-one-wrapper {
  padding: 40px;
  background: #F7F7F7;
}



.about-progress-inner .inner .rts-progress-one-wrapper .meter {
  background: #fff;
  height: 15px;
  display: flex;
  align-items: center;
  padding-left: 7px;
  overflow: hidden;
}

.about-progress-inner .inner .rts-progress-one-wrapper .meter span {
  height: 3px;
}

.about-progress-inner .inner .rts-progress-one-wrapper .single-progress {
  border-bottom: none;
}

.about-progress-inner .inner .rts-progress-one-wrapper .single-progress .progress-top p {
  color: #1C2539;
}

.about-progress-inner .inner .rts-progress-one-wrapper .single-progress .progress-top span {
  color: #4879a5;
  font-weight: 500;
  font-size: 16px;
}

.about-progress-inner .inner .rts-progress-one-wrapper .single-progress:last-child {
  margin-bottom: 0;
}

.about-progress-inner .inner a.rts-btn {
  display: block;
  max-width: max-content;
  margin-top: 40px;
}

.about-progress-inner.inner1 {
  max-width: 700px;
  margin: 0 auto;
}

.about-two-bg {
  background-image: url(../images/about/bg-01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.about-right-three .title-area-about-three span.sub {
  color: var(--color-primary-3);
  letter-spacing: 0.3em;
  font-weight: 700;
  text-transform: uppercase;
}

.about-right-three .title-area-about-three .title {
  font-size: 60px;
  line-height: 65px;
  text-transform: uppercase;
  margin-top: 20px;
}

@media only screen and (max-width: 1199px) {
  .about-right-three .title-area-about-three .title {
    font-size: 44px;
  }
}



.about-right-three .title-area-about-three .title span span {
  color: var(--color-primary-3);
}

.about-three-thumbnail-left {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-three-thumbnail-left img {
    width: 100%;
  }
}

.about-three-thumbnail-left::after {
  position: absolute;
  content: "";
  top: 60px;
  left: 20px;
  width: 200px;
  height: 10px;
  width: 120px;
  background: var(--color-primary-3);
}

.about-three-thumbnail-left .about-sm-thumb {
  position: absolute;
  top: 13%;
  left: -28%;
  animation: jump-1 5s linear infinite;
}

@media only screen and (max-width: 1199px) {
  .about-three-thumbnail-left .about-sm-thumb {
    left: -11%;
    width: 65%;
    top: 14%;
  }
}

.about-three-thumbnail-left .vedio-icone {
  position: absolute;
  right: -5%;
  bottom: -6%;
  max-width: max-content;
  padding: 0 !important;
  height: auto;
  object-fit: contain;
  cursor: auto;
}

@media only screen and (max-width: 479px) {
  .about-three-thumbnail-left .vedio-icone {
    right: -8%;
    bottom: -17%;
  }
}

.about-three-thumbnail-left .vedio-icone span {
  position: relative;
  height: auto;
  width: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.about-three-thumbnail-left .vedio-icone span::after {
  display: none;
}

.about-three-thumbnail-left .vedio-icone span::before {
  display: none;
}

.about-three-thumbnail-left .vedio-icone span img {
  width: 120px;
  height: 143px;
}

.about-three-thumbnail-left .vedio-icone span span {
  position: relative;
  border-left: 25px solid #ffffff;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  transform: translate(-50%, -39%);
  left: -58px;
}

/*section4 end*/

/*section5 start*/



.service-one-inner-four {
  position: relative;
}

.service-one-inner-four a.rts-btn {
  display: block;
  max-width: max-content;
  position: absolute;
  bottom: -57px;
  left: 40px;
  border-radius: 0 0 15px 15px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
}


.service-one-inner-four a.rts-btn i {
  margin-left: 5px;
}

.service-one-inner-four a.rts-btn:hover {
  border: 1px solid #4879a5;
  background: #fff;
}

.service-one-inner-four .big-thumbnail-area {
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.service-one-inner-four .big-thumbnail-area .thumbnail {
  overflow: hidden;
  display: block;
  border-radius: 15px;
}

.service-one-inner-four .big-thumbnail-area .thumbnail:hover img {
  transform: scale(1.2);
}

.service-one-inner-four .big-thumbnail-area .thumbnail img {
  width: 100%;
  transition: 0.5s;
  border-radius: 15px;
}

.service-one-inner-four .big-thumbnail-area .content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 1;
  height: 145px;
  overflow: hidden;
  transition: 0.5s;
  text-align: left;
}

.service-one-inner-four .big-thumbnail-area .content img {
  max-width: 85px;
  height: auto;
  margin-bottom: 30px;
}

.service-one-inner-four .big-thumbnail-area .content .title {
  color: #fff;
  margin-bottom: 10px;
}

.service-one-inner-four .big-thumbnail-area .content p.disc {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.service-one-inner-four .big-thumbnail-area .over_link {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  border-radius: 15px;
}

.service-one-inner-four .big-thumbnail-area img {
  width: 100%;
}

.service-one-inner-four .big-thumbnail-area::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 85%;
  display: block;
  z-index: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24.52%, rgba(6, 9, 12, 0.85) 87.86%);
  transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  cursor: pointer;
  border-radius: 15px;
  transition: 0.5s;
}

.service-one-inner-four .big-thumbnail-area:hover::after {
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 0.01), black 100%);
}

.service-one-inner-four .big-thumbnail-area:hover .content {
  height: 206px;
}

.service-one-inner-four:hover .thumbnail img {
  transform: scale(1.2);
}

/*section5 end*/

/*about-us end*/


/* our-service start */

/*section1 start */

.header-three.header--sticky.sticky {
  backdrop-filter: none;
  box-shadow: none;
}

.header--sticky {
  transition: 0.3s;
  top: 0;
  z-index: 999;
  position: relative;
}

.header--sticky.sticky {
  position: fixed !important;
  top: 0;
  display: block;
  backdrop-filter: blur(9px);
  z-index: 999;
  width: 100%;
  box-shadow: 0px 7px 18px #1810100d;
}

.header-one.header--sticky.sticky .header-top {
  display: none;
}

.header-three.sticky .header-top-three {
  display: none;
}

.home-blue .header-two.header--sticky.sticky .header-top {
  display: none;
}

.header--sticky.header-one.six {
  position: absolute;
  width: 100%;
}

.header--sticky.header-one.six .header-top {
  background: transparent;
  border-bottom: 1px solid #E8E8E8;
  padding: 12px 0;
}

.header--sticky.header-one.six .header-top .right i {
  color: var(--color-primary-5);
  margin-right: 12px;
}


.header--sticky.header-one.six .header-top .right .call {
  margin-left: 30px;
}

.header--sticky.header-one.six .header-top .right a {
  color: #181A1C;
  font-weight: 500;
}

.header--sticky.header-one.six .header-main-one #menu-btn {
  border-radius: 50% !important;
  background: #fff !important;
}


.header--sticky.header-one.six .header-main-one #menu-btn:hover {
  background: var(--color-primary-5) !important;
}

.header--sticky.header-one.six .header-main-one .rts-btn.quote-btn {
  background: #181A1C;
  border-radius: 100px;
}

.header--sticky.header-one.six .header-main-one .rts-btn.quote-btn:hover {
  color: #181A1C;
  background: #f6f6f6 !important;
}


.header--sticky.header-one.six.sticky .header-main-one #menu-btn {
  background: #f6f6f6 !important;
}

.header--sticky.header-one.six.sticky .header-main-one #menu-btn:hover {
  background: var(--color-primary-5) !important;
}


.header--sticky.header-one.six.sticky {
  background: #fff !important;
}


.header--sticky.header-home-nine.sticky {
  background: #fff;
  backdrop-filter: none;
}

.header--sticky.header-home-nine.sticky #menu-btn {
  background: #ffffff !important;
  box-shadow: 0px 7px 18px #1810100d !important;
}

.header--sticky.header-home-nine.sticky #menu-btn:hover {
  background: var(--color-primary-7) !important;
}

.header--sticky.header-home-nine #menu-btn {
  background: #fff !important;
}

.header--sticky.header-home-nine #menu-btn:hover {
  background: var(--color-primary-7) !important;
}


.header-two.header-nine.header--sticky .header-top {
  background: #845CFF !important;
}


.home-blue.home-ten .header-two.header--sticky {
  position: absolute;
  width: 100%;
}


.home-blue.home-ten .header-two.header--sticky .header-top {
  background: transparent;
}

.home-blue.home-ten .header-two.header--sticky .main-header {
  background: transparent;
}

.home-blue.home-ten .header--sticky.sticky {
  backdrop-filter: none;
  background: #fff;
}


.header-top-one .left {
  display: flex;
  align-items: center;
}

.header-top-one .left .mail {
  position: relative;
}

.header-top-one .left .mail a {
  padding: 11px 0;
  display: block;
  color: #fff;
  margin-right: 50px;
  font-size: 16px;
  position: relative;
  transition: var(--transition);
  font-family: Outfit, sans-serif;
  font-weight: bold;
}

.header-top-one .left .mail a i {
  margin-right: 6px;
}

.header-top-one .left .mail a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  height: 1px;
  width: 0%;
  background: #fff;
  transition: var(--transition);
}

.header-top-one .left .mail a:hover {
  color: var(--color-white);
}

.header-top-one .left .mail a:hover::after {
  width: 100%;
}

.header-top-one .left .mail::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  background: #F36464;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.header-top-one .left .working-time p {
  color: #fff;
  font-size: 14px;
}

.header-top-one .left .working-time p i {
  margin-right: 6px;
}

.header-top-one .right {
  display: flex;
  justify-content: flex-end;
}

.header-top-one .right .top-nav {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.header-top-one .right .top-nav li {
  margin: 0;
  margin-right: 20px;
}

.header-top-one .right .top-nav li a {
  font-size: 16px;
  transition: var(--transition);
  position: relative;
  padding: 11px 0;
  display: block;
  color: #fff;
  font-family: Outfit, sans-serif;
  font-weight: bold;
}

.header-top-one .right .top-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  height: 1px;
  width: 0%;
  background: #fff;
  transition: var(--transition);
}

.header-top-one .right .top-nav li a:hover::after {
  width: 100%;
}

.header-top-one .right .social-wrapper-one {
  margin-left: 30px;
  position: relative;
}

.header-top-one .right .social-wrapper-one a i {
  transition: 0.3s;
}

.header-top-one .right .social-wrapper-one a:hover i {
  transform: scale(1.2);
}

.header-top-one .right .social-wrapper-one i {
  color: #fff;
}

.header-top-one .right .social-wrapper-one::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  background: #F36464;
}

.header-top-one.header-top-four {
  border-bottom: 1px solid #EDEDED;
}



.header-top-one.header-top-four.header-top-five .top-left a {
  color: var(--color-primary-2);
}

.header-top-one.header-top-four.header-top-five .right-h-three .header-top-right .email i {
  color: var(--color-primary-2);
}

.header-top-one.header-top-four.header-top-five .right-h-three .header-top-right .call i {
  color: var(--color-primary-2);
}

.header-top-one.header-top-four .top-left {
  padding: 10px 0;
  padding-left: 0;
  font-size: 16px;
  font-weight: 400;
  color: #5D666F;
  display: flex;
  align-items: center;
}

.header-top-one.header-top-four .top-left a {
  color: var(--color-primary-4);
  display: flex;
  align-items: center;
  margin-left: 5px;
}

.header-top-one.header-top-four .top-left a i {
  transition: 0.3s;
  margin-left: 5px;
}

.header-top-one.header-top-four .top-left a:hover i {
  margin-left: 10px;
}

.header-top-one.header-top-four .right-h-three {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-top-one.header-top-four .right-h-three .header-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 0;
}

.header-top-one.header-top-four .right-h-three .header-top-right .email {
  margin-right: 30px;
}

.header-top-one.header-top-four .right-h-three .header-top-right .email i {
  margin-right: 10px;
  color: var(--color-primary-4);
}

.header-top-one.header-top-four .right-h-three .header-top-right .email a {
  color: #1C2539;
  transition: 0.3s;
  font-weight: 500;
}

.header-top-one.header-top-four .right-h-three .header-top-right .email a:hover {
  color: var(--color-primary-4);
}

.header-top-one.header-top-four .right-h-three .header-top-right .call {
  margin-right: 0;
}

.header-top-one.header-top-four .right-h-three .header-top-right .call i {
  margin-right: 10px;
  color: var(--color-primary-4);
  transform: rotate(-30deg);
}

.header-top-one.header-top-four .right-h-three .header-top-right .call a {
  color: #1C2539;
  transition: 0.3s;
  font-weight: 500;
}

.header-top-one.header-top-four .right-h-three .header-top-right .call a:hover {
  color: var(--color-primary-4);
}


.header-three .header-top-three {
  background: white;
  border-bottom: 1px solid #EDEDED;
}



.header-three .header-top-three .top-left {
  padding: 10px 0;
  padding-left: 50px;
  font-size: 16px;
  font-weight: 400;
  color: #5D666F;
  display: flex;
  align-items: center;
}

.header-three .header-top-three .top-left a {
  color: var(--color-primary-3);
  display: flex;
  align-items: center;
  margin-left: 5px;
}

.header-three .header-top-three .top-left a i {
  transition: 0.3s;
  margin-left: 5px;
}

.header-three .header-top-three .top-left a:hover i {
  margin-left: 10px;
}

.header-three .header-top-three .right-h-three {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-three .header-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 30px;
}

.header-three .header-top-right .email {
  margin-right: 30px;
}

.header-three .header-top-right .email i {
  margin-right: 10px;
  color: #F64A00;
}

.header-three .header-top-right .email a {
  color: #1C2539;
  transition: 0.3s;
  font-weight: 500;
}

.header-three .header-top-right .email a:hover {
  color: var(--color-primary-3);
}

.header-three .header-top-right .call {
  margin-right: 30px;
}

.header-three .header-top-right .call i {
  margin-right: 10px;
  color: #F64A00;
  transform: rotate(-30deg);
}

.header-three .header-top-right .call a {
  color: #1C2539;
  transition: 0.3s;
  font-weight: 500;
}

.header-three .header-top-right .call a:hover {
  color: var(--color-primary-3);
}


.header-two .header-top {
  background: #fff;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 1px solid #EAECF2;
}



.header-two .header-top::after {
  position: absolute;
  left: -5%;
  content: "";
  top: 0;
  width: 40%;
  height: 100%;
  background: var(--color-primary-2);
  z-index: -1;
  transform: skew(-20deg);
}

.header-two .header-top .content {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  height: 45px;
  display: flex;
  align-items: center;
  width: 98%;
}

.header-two .header-top .content .left-header-top p {
  font-size: 16px;
  color: #fff;
}

.header-two .header-top .content .left-header-top p a {
  font-weight: 500;
}

.header-two .header-top .content .left-header-top p a i {
  transition: 0.3s;
}

.header-two .header-top .content .left-header-top p a:hover {
  color: #000;
}

.header-two .header-top .content .left-header-top p a:hover i {
  margin-left: 6px;
}

.header-two .header-top .content .right-header-top {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.header-two .header-top .content .right-header-top .working-time i {
  color: #1C2539;
}

.header-two .header-top .content .right-header-top .working-time span {
  color: #1C2539;
  font-size: 16px;
  font-weight: 400;
  margin-left: 7px;
}

.header-two .header-top .content .right-header-top .ht-social {
  display: flex;
  align-items: center;
  margin-left: 60px;
  position: relative;
}

.header-two .header-top .content .right-header-top .ht-social::after {
  position: absolute;
  left: -17%;
  content: "";
  height: 100%;
  width: 1px;
  background: #CFD2DC;
  transform: skew(-10deg);
}

.header-two .header-top .content .right-header-top .ht-social span {
  color: #1C2539;
  font-weight: 400;
}

.header-two .header-top .content .right-header-top .ht-social ul {
  list-style: none;
  padding: 0;
  display: flex;
  margin: 0;
  margin-left: 20px;
}

.header-two .header-top .content .right-header-top .ht-social ul li {
  margin-right: 20px;
}

.header-two .header-top .content .right-header-top .ht-social ul li a i {
  color: #1C2539;
  transition: 0.3s;
}

.header-two .header-top .content .right-header-top .ht-social ul li a:hover i {
  color: var(--color-primary-2);
}

.header-two .header-top .content .right-header-top .ht-social ul li:last-child {
  margin-right: 0;
}



/*section1 end */

/*section2 start */

.rts-sidebar-menu-desktop .get-in-touch .title {
  margin-bottom: 30px;
}

.rts-sidebar-menu-desktop .get-in-touch .wrapper .single i {
  color: #4879a5;
  margin-right: 10px;
  margin-bottom: 15px;
}

.rts-sidebar-menu-desktop .get-in-touch .wrapper .single i:last-child {
  margin-bottom: 0;
}

.rts-sidebar-menu-desktop .get-in-touch .wrapper .single a {
  transition: 0.3s;
}



.social-wrapper-two.menu {
  margin-top: 50px;
  margin-left: 12px;
  padding-left: 0;
}

.social-wrapper-two a {
  margin-right: 40px;
  z-index: 1;
  position: relative;
}

.social-wrapper-two a i {
  color: #fff;
  transition: 0.3s;
  font-size: 16px;
}

.social-wrapper-two a::after {
  position: absolute;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  content: "";
  z-index: -1;
  background: #4879a5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.social-wrapper-two a:hover i {
  color: #4879a5;
}

.social-wrapper-two a:hover::after {
  background: #ffecec;
  box-shadow: 0px 10px 30px rgba(33, 5, 5, 0.05);
}


.rts-sidebar-menu-desktop .body-mobile .mainmenu-nav .mainmenu li a {
  color: #000;
  display: block;
}

.rts-sidebar-menu-desktop .body-mobile .mainmenu-nav .mainmenu li a.open {
  color: #4879a5;
}

.rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown>a::before {
  content: "\f078" !important;
  right: 10px;
}

.rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown>a.open::before {
  content: "\f077" !important;
}

.rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu::after {
  display: none;
}

.rts-sidebar-menu-desktop .body-mobile .mainmenu {
  padding-left: 0;
  margin-top: 50px;
}

.rts-sidebar-menu-desktop .body-mobile .mainmenu>li {
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 11px 30px rgba(0, 0, 0, 0.07);
  width: 100%;
}

.rts-sidebar-menu-desktop .body-mobile .mainmenu ul {
  padding: 0;
  margin: 0;
}

.rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu {
  display: none !important;
  position: inherit;
  border-top: none;
}

.rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu .tag {
  padding: 0 15px;
  margin: 20px 0 5px 0;
  font-size: 18px;
  font-weight: 500;
  color: #1C2539;
}

.rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu .mobile-menu-link {
  margin: 0;
}

.rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu .mobile-menu-link:hover a {
  color: var(--color-primary) !important;
}

.rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.third-lvl.mobile-menu li:hover a {
  color: #4879a5;
}

.rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.active {
  display: block !important;
  visibility: visible;
  opacity: 1;
}

.rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.active .mobile-menu-link a {
  color: #000;
}

.rts-sidebar-menu-desktop .body-mobile .menu-item:hover .menu-link {
  color: var(--color-primary) !important;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .mainmenu-nav .mainmenu li a {
  color: #000;
  display: block;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .mainmenu-nav .mainmenu li a.open {
  color: var(--color-primary-4);
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown>a::before {
  content: "\f078" !important;
  right: 10px;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown>a.open::before {
  content: "\f077" !important;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu::after {
  display: none;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .mainmenu {
  padding-left: 0;
  margin-top: 50px;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .mainmenu>li {
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 11px 30px rgba(0, 0, 0, 0.07);
  width: 100%;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu {
  display: none !important;
  position: inherit;
  border-top: none;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu li {
  margin: 0;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.active {
  display: block !important;
  visibility: visible;
  opacity: 1;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.active li a {
  color: #000;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .social-wrapper-two.menu {
  margin-top: 50px;
  margin-left: 12px;
  padding-left: 0;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .social-wrapper-two a {
  margin-right: 40px;
  z-index: 1;
  position: relative;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .social-wrapper-two a i {
  color: #fff;
  transition: 0.3s;
  font-size: 16px;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .social-wrapper-two a::after {
  position: absolute;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  content: "";
  z-index: -1;
  background: var(--color-primary-4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .social-wrapper-two a:hover i {
  color: var(--color-primary-4);
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .social-wrapper-two a:hover::after {
  background: #ffecec;
  box-shadow: 0px 10px 30px rgba(33, 5, 5, 0.05);
}

.home-blue2 .side-bar button i {
  background: var(--color-primary-2);
}

.home-blue2 .logo-1 {
  display: none;
}

.home-blue2 .logo-2 {
  display: block;
}

.home-blue2 .rts-sidebar-menu-desktop .get-in-touch .wrapper .single i {
  color: var(--color-primary-2);
}

.home-blue2 .social-wrapper-two a::after {
  background: var(--color-primary-2);
  color: #fff;
}

.home-blue2 .social-wrapper-two a:hover {
  color: var(--color-primary-2);
}

.home-blue2 .social-wrapper-two a:hover i {
  color: var(--color-primary-2);
}

.home-blue2 .social-wrapper-two a:hover::after {
  background: #8e8f9314;
  color: var(--color-primary-2);
}

.home-blue2 .rts-sidebar-menu-desktop .get-in-touch .wrapper .single a:hover {
  color: var(--color-primary-2);
}

.home-blue .rts-sidebar-menu-desktop .body-mobile .menu-item:hover .menu-link,
.home-blue2 .rts-sidebar-menu-desktop .body-mobile .menu-item:hover .menu-link {
  color: var(--color-primary-2) !important;
}

.home-yellow .rts-sidebar-menu-desktop .body-mobile .menu-item:hover .menu-link {
  color: var(--color-primary-3) !important;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .menu-item:hover .menu-link {
  color: var(--color-primary-4) !important;
}

.index-six .rts-sidebar-menu-desktop .body-mobile .menu-item:hover .menu-link {
  color: var(--color-primary-6) !important;
}

.index-seven .rts-sidebar-menu-desktop .body-mobile .menu-item:hover .menu-link {
  color: var(--color-primary-5) !important;
}

.home-blue .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.active .mobile-menu-link:hover a,
.home-blue2 .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.active .mobile-menu-link:hover a {
  color: var(--color-primary-2) !important;
}

.home-yellow .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.active .mobile-menu-link:hover a {
  color: var(--color-primary-3) !important;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.active .mobile-menu-link:hover a {
  color: var(--color-primary-4) !important;
}

.index-six .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.active .mobile-menu-link:hover a {
  color: var(--color-primary-6) !important;
}

.index-seven .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.active .mobile-menu-link:hover a {
  color: var(--color-primary-5) !important;
}

.home-blue .rts-sidebar-menu-desktop .body-mobile .mainmenu-nav .mainmenu li a.open,
.home-blue2 .rts-sidebar-menu-desktop .body-mobile .mainmenu-nav .mainmenu li a.open {
  color: var(--color-primary-2) !important;
}

.home-yellow .rts-sidebar-menu-desktop .body-mobile .mainmenu-nav .mainmenu li a.open {
  color: var(--color-primary-3) !important;
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .mainmenu-nav .mainmenu li a.open {
  color: var(--color-primary-4) !important;
}

.index-six .rts-sidebar-menu-desktop .body-mobile .mainmenu-nav .mainmenu li a.open {
  color: var(--color-primary-6) !important;
}

.index-seven .rts-sidebar-menu-desktop .body-mobile .mainmenu-nav .mainmenu li a.open {
  color: var(--color-primary-5) !important;
}

.home-blue .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.third-lvl.mobile-menu li:hover a,
.home-blue2 .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.third-lvl.mobile-menu li:hover a {
  color: var(--color-primary-2);
}

.home-yellow .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.third-lvl.mobile-menu li:hover a {
  color: var(--color-primary-3);
}

.home-violet .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.third-lvl.mobile-menu li:hover a {
  color: var(--color-primary-4);
}

.index-six .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.third-lvl.mobile-menu li:hover a {
  color: var(--color-primary-6);
}

.index-seven .rts-sidebar-menu-desktop .body-mobile .mainmenu li.has-droupdown .submenu.third-lvl.mobile-menu li:hover a {
  color: var(--color-primary-5);
}


.search-input-area .search-close-icon {
  cursor: pointer;
  position: absolute;
  right: 18px;
  top: 12px;
}



.search-input-area .search-close-icon i {
  position: relative;
  z-index: 1;
  color: #4879a5;
  transition: 0.3s;
  font-size: 18px;
}

.search-input-area .search-close-icon i::after {
  position: absolute;
  height: 45px;
  width: 45px;
  content: "";
  border-radius: 5px;
  background: var(--color-primary-alta);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.3s;
}

.search-input-area .search-close-icon:hover i {
  color: #4879a5;
}

.search-input-area .search-close-icon:hover i::after {
  background: var(--color-primary-alta);
}



/*section2 end */

/*section3 start */

.search-input-area .search-input-inner {
  display: flex;
  align-items: center;
  position: relative;
}

.search-input-area .search-input-inner .input-div {
  width: 80%;
  display: flex;
  align-items: center;
  margin: auto;
}

.search-input-area .search-input-inner .input-div input {
  background: #F7F7F7;
  border-radius: 5px;
  height: 55px;
}

.search-input-area .search-input-inner .input-div button {
  max-width: max-content;
  padding: 17.5px;
  background: #4879a5;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  display: block;
  margin-left: -9px;
  border-radius: 0 5px 5px 0;
}



.search-input-area.show {
  visibility: visible;
  transform: inherit;
  opacity: 1;
}

.search-input-area {
  transition: all 500ms ease;
  visibility: hidden;
  transform: translateY(-100%);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 57px 0;
  background: white;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}





/*section3 end */

/*section4 start */

.rts-breadcrumb-area {
  padding-top: 50px;
  padding-bottom: 50px;
}



.rts-breadcrumb-area .title {
  color: #fff;
  margin-bottom: 0;
}



.rts-breadcrumb-area .bread-tag {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 30px;
  background: #fff;
  border-radius: 31px;
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
  max-width: max-content;
  margin-left: auto;
}



.rts-breadcrumb-area .bread-tag a {
  margin-right: 5px;
  font-weight: 700;
}

.rts-breadcrumb-area .bread-tag a.active {
  margin-left: 5px;
  color: #1C2539;
  margin-right: 0;
}

.rts-breadcrumb-area .bread-tag span {
  color: #4879a5;
}

/*section4 end */

/*section5 start */


.rts-service-area4 .container .title-service-three .pre-title {
  color: var(--color-primary-4);
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Red Hat Display", sans-serif;
}

.rts-service-area4 .container .title-service-three .title {
  text-transform: none;
}


.rts-service-area4 .container .service-one-inner-four .big-thumbnail-area {
  background: #f7f7f7;
  border-radius: 15px;
  padding: 40px;
}

.rts-service-area4 .container .service-one-inner-four .big-thumbnail-area::after {
  display: none;
}


.rts-service-area4 .container .service-one-inner-four .big-thumbnail-area .content {
  position: unset;
  height: auto;
  margin-top: 25px;
}

.rts-service-area4 .container .service-one-inner-four .big-thumbnail-area .content .title {
  color: #1C2539;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
}

.rts-service-area4 .container .service-one-inner-four .big-thumbnail-area .content .disc {
  color: #5D666F;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.rts-service-area4 .container .service-one-inner-four .btn-primary-3 {
  background: var(--color-primary-4);
  bottom: -55px;
  border: none;
}

.rts-service-area4 .container .service-one-inner-four .btn-primary-3:hover {
  background: #E4E7FF;
  color: var(--color-primary-4);
}

.rts-service-area5 {
  margin-top: -150px;
}

@media (max-width: 1200px) {
  .rts-service-area5 {
    margin-top: 50px;
  }
}

.rts-service-area5 .container .service-one-inner-four {
  background: #FFFFFF;
  box-shadow: 0px 4px 58px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 45px;
  transition: all 0.4s;
}



.rts-service-area5 .container .service-one-inner-four .content {
  margin: 35px 0;
}

.rts-service-area5 .container .service-one-inner-four .btn-primary-3 {
  position: unset;
  background: var(--color-primary-2);
  border-radius: 100px;
  padding: 17px 45px;
  border: none;
}

.rts-service-area5 .container .service-one-inner-four .btn-primary-3:hover {
  color: var(--color-primary-2);
  background: var(--color-gray);
}

.rts-service-area5 .container .service-one-inner-four:hover {
  transform: translateY(-15px);
}


.rts-service-area.home-seven {
  position: relative;
}

.rts-service-area.home-seven .shape-business-service {
  position: absolute;
  left: -13%;
  top: -110%;
  z-index: -1;
}


.rts-service-area.eight {
  background: #f7f7f7;
}

.rts-service-area.eight .rts-title-area .pre-title {
  color: #5d666f;
}

.rts-service-area.eight .rts-title-area::after {
  content: "03";
}

.rts-service-area.eight .background-service {
  background: none;
  padding: 0 70px;
}


.accordion-service-bg {
  background-image: url(../images/service/bg-03.jpg);
}

@media only screen and (max-width: 1199px) {
  .accordion-service-bg {
    background-image: none;
    background: #F6F6F6;
  }
}



.rts-service-area.eight .background-service .service-one-inner .service-details .rts-read-more:hover {
  color: var(--color-primary-2);
}

.rts-service-area.eight .background-service .service-one-inner .service-details .rts-read-more:hover i {
  background: var(--color-primary-2);
}


.rts-service-areah2-im-3 .image-area {
  position: relative;
  margin-bottom: 120px;
  margin-top: 30px;
}

@media only screen and (max-width: 479px) {
  .rts-service-areah2-im-3 .image-area {
    margin-bottom: 80px;
  }
}

.rts-service-areah2-im-3 .image-area .ratio-area {
  position: absolute;
  top: 60px;
  left: 60px;
}

@media only screen and (max-width: 479px) {
  .rts-service-areah2-im-3 .image-area .ratio-area {
    top: 30px;
    left: 30px;
  }
}

.rts-service-areah2-im-3 .image-area .ratio-area .ratio {
  color: #fff;
  margin-bottom: 0px;
  font-size: 40px;
  font-weight: 700;
}

.rts-service-areah2-im-3 .image-area .ratio-area span {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

@media only screen and (max-width: 479px) {
  .rts-service-areah2-im-3 .image-area .ratio-area span {
    font-size: 16px;
  }
}

.rts-service-areah2-im-3 .image-area img {
  border-radius: 20px;
}

.rts-service-areah2-im-3 .image-area img.two {
  position: absolute;
  z-index: 5;
  top: -10%;
  left: 40%;
  animation: jump-1 5s linear infinite;
}

.rts-service-areah2-im-3 .image-area img.three {
  position: absolute;
  left: 18%;
  top: 38%;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rts-service-areah2-im-3 .image-area img.three {
    width: 85%;
  }
}

.rts-service-areah2-im-3.eight .title-area.service-h2.service::after {
  content: "01";
}


.service-two-inner {
  box-shadow: 0px 13px 40px #1810100a;
  position: relative;
  border-radius: 15px;
}

.service-two-inner .thumbnail {
  overflow: hidden;
  display: block;
  border-radius: 15px 15px 0 0;
  position: relative;
}

.service-two-inner .thumbnail::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "01";
  font-size: 18px;
  background: #fff;
  border-radius: 0 0 0 15px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4879a5;
  font-weight: 700;
}

.service-two-inner .thumbnail.two::after {
  content: "02";
}

.service-two-inner .thumbnail.three::after {
  content: "03";
}

.service-two-inner .thumbnail.four::after {
  content: "04";
}

.service-two-inner .thumbnail.five::after {
  content: "05";
}

.service-two-inner .thumbnail.six::after {
  content: "06";
}

.service-two-inner .thumbnail.seven::after {
  content: "07";
}

.service-two-inner .thumbnail.eight::after {
  content: "08";
}

.service-two-inner .thumbnail.nine::after {
  content: "09";
}

.service-two-inner .thumbnail img {
  width: 100%;
  border-radius: 15px 15px 0 0;
  transition: 0.3s;
}

.service-two-inner .body-content {
  z-index: 5;
  padding: 40px;
  background: #fff;
  border-radius: 0 0 15px 15px;
  position: absolute;
  bottom: -50%;
}

@media only screen and (max-width: 767px) {
  .service-two-inner .body-content {
    bottom: -37%;
  }
}

@media only screen and (max-width: 479px) {
  .service-two-inner .body-content {
    padding: 20px;
  }
}

.service-two-inner .body-content .hidden-area {
  max-height: 80px;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}

.service-two-inner .body-content .title {
  margin-bottom: 8px;
  font-size: 22px;
}

.service-two-inner .body-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #5D666F;
  margin-bottom: 15px;
}

.service-two-inner .body-content .rts-read-more-two {
  color: #4879a5;
  font-weight: 700;
  font-size: 16px;
  align-items: center;
  display: flex;
}

.service-two-inner .body-content .rts-read-more-two i {
  margin-left: 5px;
  transition: 0.3s;
}

.service-two-inner .body-content .rts-read-more-two:hover i {
  margin-left: 8px;
}

.service-two-inner:hover .thumbnail img {
  transform: scale(1.15);
}

.service-two-inner:hover .body-content .hidden-area {
  max-height: 150px;
  bottom: 0;
}


/*section5 end */

/*section6 start */

.rts-accordion-area.service {
  padding-left: 120px;
  padding-right: 120px;
}

@media only screen and (max-width: 1199px) {
  .rts-accordion-area.service {
    padding-left: 0;
    padding-right: 0;
  }
}

.rts-accordion-area.inner {
  background-color: var(--color-gray);
}


.accordion-service-inner .accordion-area {
  padding-right: 130px;
}



.accordion-service-inner .accordion-area .accordion {
  margin-top: 45px;
}

.accordion-service-inner .accordion-area .accordion .accordion-item {
  background: transparent;
  border: none;
  padding-bottom: 30px;
  position: relative;
  padding-left: 60px;
}

.accordion-service-inner .accordion-area .accordion .accordion-item:last-child {
  padding-bottom: 0;
}



.accordion-service-inner .accordion-area .accordion .accordion-item:last-child::after {
  display: none;
}

.accordion-service-inner .accordion-area .accordion .accordion-item::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  border: 1px dashed #DF0A0A;
  top: 3px;
  left: 18px;
  position: absolute;
}


.accordion-service-inner .accordion-area .accordion .accordion-item .accordion-header button {
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  box-shadow: none;
  padding: 0;
  position: relative;
  color: #1C2539;
}


.accordion-service-inner .accordion-area .accordion .accordion-item .accordion-header button::before {
  content: "";
  position: absolute;
  left: 0;
  background-image: url(../images/service/icon/dot.png);
  height: 20px;
  width: 20px;
  left: -11.5%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  background-color: #fff;
  z-index: 5;
  transition: 0.3s;
}

.accordion-service-inner .accordion-area .accordion .accordion-item .accordion-header button[aria-expanded=true]::before {
  content: "";
  position: absolute;
  left: 0;
  background-image: none;
  height: 50px;
  width: 50px;
  left: -14.6%;
  background: #4879a5;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  z-index: 5;
}


.accordion-service-inner .accordion-area .accordion .accordion-item .accordion-header button:focus {
  box-shadow: none;
}

.accordion-service-inner .accordion-area .accordion .accordion-item .accordion-header button::after {
  display: none;
}

.accordion-service-inner .accordion-area .accordion .accordion-item .accordion-body {
  padding: 0;
}

.accordion-service-inner.inner {
  max-width: 700px;
  margin: 0 auto;
}

.accordion-service-inner.inner .accordion-area .accordion .accordion-item::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  border: 1px dashed #DF0A0A;
  top: 0;
  left: 10px;
  position: absolute;
}


.accordion-service-inner.inner .accordion-area .accordion .accordion-item .accordion-header button {
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  box-shadow: none;
  padding: 0;
  position: relative;
  color: #1C2539;
}

.accordion-service-inner.inner .accordion-area .accordion .accordion-item .accordion-header button::before {
  content: "";
  position: absolute;
  left: 0;
  background-image: url(../images/service/icon/dot.png);
  height: 20px;
  width: 20px;
  left: -11.5%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  background-color: #fff;
  z-index: 5;
  transition: 0.3s;
}


.accordion-service-inner.inner .accordion-area .accordion .accordion-item .accordion-header button[aria-expanded=true]::before {
  content: "";
  position: absolute;
  left: 0;
  background-image: none;
  height: 50px;
  width: 50px;
  left: -14.6%;
  background: #4879a5;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  z-index: 5;
}


.accordion-service-inner.inner .accordion-area .accordion .accordion-item .accordion-header button:focus {
  box-shadow: none;
}

.accordion-service-inner.inner .accordion-area .accordion .accordion-item .accordion-header button::after {
  display: none;
}

.accordion-service-inner.inner .accordion-area .accordion .accordion-item .accordion-body {
  padding: 0;
}


.accordion-area .title-area {
  margin-bottom: 50px;
}

.accordion-area .title-area span {
  color: #4879a5;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.accordion-area .title-area .title {
  margin-bottom: 0;
}

.accordion-area.inner {
  max-width: 700px;
  margin: 0 auto;
}


.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}


.accordion-one-inner .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  box-shadow: none;
  background: #fff;
}

.accordion-one-inner .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "\f077";
  font-family: "Font Awesome 5 Pro" !important;
  transform: rotate(0);
  transition: 0.3s;
}


.accordion-one-inner.inner .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
  background: var(--color-gray);
}

.accordion-one-inner.inner .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "\f077";
  font-family: "Font Awesome 5 Pro" !important;
  transform: rotate(0);
  transition: 0.3s;
}

/*section6 end */

/*section7 start */

.main-header.main-header-four.main-header-five .button-area .btn-primary-4 {
  background: var(--color-primary-2);
  border-radius: 30px;
}

.main-header.main-header-four.main-header-five .button-area .btn-primary-4:hover {
  background: var(--color-gray);
}

.main-header.main-header-four.main-header-five .button-area .btn-primary-alta-four {
  border-radius: 30px;
}

.main-header.main-header-four.main-header-five .button-area .btn-primary-alta-four:hover {
  background: var(--color-primary-2) !important;
}

.rts-section-gapBottom {
  padding-bottom: 0px;
}


.pricing-wrapper-one.home-two {
  background-image: none;
  border: 1px solid #E9ECF1;
  border-radius: 20px;
  background: #fff;
  padding: 60px;
  transition: 0.3s;
}



.pricing-wrapper-one.home-two.active {
  border: 2px solid var(--color-primary-2);
  box-shadow: 0px 17px 39px rgba(6, 33, 101, 0.13);
}

.pricing-wrapper-one.home-two .pricing-body .single-pricing.available .icon i {
  color: #fff;
  background: var(--color-primary-2);
  border-color: var(--color-primary-2);
}

.pricing-wrapper-one.home-two .pricing-header-start {
  border-bottom: 2px solid #E9ECF1;
}

.pricing-wrapper-one.home-two .title {
  margin-bottom: 5px;
}

.pricing-wrapper-one.home-two .pric-area {
  display: flex;
  align-items: flex-start;
}

.pricing-wrapper-one.home-two .pric-area .title {
  color: var(--color-primary-2);
  font-weight: 700;
  font-size: 48px;
  line-height: 64px;
  min-width: max-content;
}

.pricing-wrapper-one.home-two .pric-area span {
  margin-top: 10px;
  margin-left: 7px;
  color: #1C2539;
  font-weight: 400;
  font-size: 16px;
}

.pricing-wrapper-one.home-two .discription p.disc {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #5D666F;
}

.pricing-wrapper-one.home-two .pricing-body a.rts-btn {
  display: block;
  max-width: inherit;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
  border-radius: 15px;
  border: 1px solid #E9ECF1;
  color: #1C2539;
}

.pricing-wrapper-one.home-two .pricing-body a.rts-btn.active {
  background: var(--color-primary-2);
  color: #fff;
}

.pricing-wrapper-one.home-two .pricing-body a.rts-btn.active:hover {
  display: block;
  max-width: inherit;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
  border-radius: 15px;
  border: 1px solid #E9ECF1;
  color: #1C2539;
}

.pricing-wrapper-one.home-two .pricing-body a:hover.rts-btn {
  background: var(--color-primary-2);
  color: #fff;
}


.pricing-wrapper-one .plane-process {
  position: absolute;
  top: -10%;
  left: 13%;
  background: #4879a5;
  padding: 18px 40px;
  text-align: right;
  animation: jump-1 5s linear infinite;
}

.pricing-wrapper-one .plane-process span {
  color: #fff;
  font-size: 16px;
  font-weight: 200;
}

.pricing-wrapper-one .plane-process .title {
  margin-bottom: 0;
  color: #fff;
  margin-top: -9px;
}


.home-yellow .pricing-wrapper-one .plane-process,
.home-yellow .pricing-wrapper-one .pricing-body .single-pricing.available .icon i,
.home-yellow .pricing-tab-button-area ul.nav li button.active {
  background: var(--color-primary-3);
}

/*section7 end */


/*section8 start */


.bg-footer-one .bg-shape-f1 {
  position: relative;
  z-index: 1;
}

.bg-footer-one .bg-shape-f1::after {
  position: absolute;
  background-image: url(../images/footer/h1-shape/03.png);
  content: "";
  height: 500px;
  width: 523px;
  left: -25%;
  top: -20%;
  z-index: -1;
  background-repeat: no-repeat;
}


.rts-cta-wrapper .background-cta .cta-left-wrapepr {
  margin-left: 80px;
  padding: 45px 0;
}



.rts-cta-wrapper .background-cta .cta-left-wrapepr p {
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-family: var(--font-secondary);
}



.rts-cta-wrapper .background-cta .cta-left-wrapepr .title {
  color: #fff;
  margin-bottom: 0;
  margin-top: -5px;
}

.rts-cta-wrapper .background-cta .cta-input-arae input {
  background: #FFFFFF;
  border-radius: 100px;
  height: 55px;
  width: 547px;
  color: #000;
  padding: 0 186px 0 25px;
}

.rts-cta-wrapper .background-cta .cta-input-arae button {
  position: absolute;
  border-radius: 100px;
  max-width: max-content;
  right: 90px;
}

.footer-one .rts-copyright-area {
  border-top: 1px solid #21293D;
  padding: 30px 0;
}

.footer-one .rts-copyright-area p {
  font-size: 16px;
  color: #fff;
}

.index-seven.hr .progress-wrap svg.progress-circle path {
  fill: #fff !important;
}

/*section8 end */

/*our-service end */

/*appointment start */

/*section1 start */


.header-main-one .thumbnail a {
  padding: 0px 0;
  display: block;
  max-width: max-content;
}

@media only screen and (max-width: 479px) {
  .header-main-one .thumbnail a {
    padding: 0px 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .header-two .main-header .nav-main ul li {
    margin-right: 25px !important;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .header-two .main-header .nav-main ul li.has-droupdown {
    margin-right: 37px !important;
  }
}

.main-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-header .nav-main ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.main-header .nav-main ul li {
  margin: 0;
  margin-right: 36px;
}

.main-header .nav-main ul li a {
  padding: 48px 0;
  display: block;
  color: #1C2539;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: var(--transition);
  min-width: max-content;
  font-family: Outfit, sans-serif
}

.main-header .nav-main ul li a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 50px;
  height: 2px;
  width: 0%;
  border-radius: 1px;
  background: #4879a5;
  transition: var(--transition);
}

.main-header .nav-main ul li a:hover {
  color: #4879a5;
}

.main-header .nav-main ul li a:hover::after {
  width: 100%;
}

.main-header .button-area {
  display: flex;
  align-items: center;
  margin-left: 80px;
}

@media screen and (max-width: 1399px) {
  .main-header .button-area {
    margin-left: 16px;
  }
}

@media screen and (max-width: 1199px) {
  .main-header .button-area {
    margin-left: 16px;
    margin: 33px 0;
  }
}

@media only screen and (max-width: 479px) {
  .main-header .button-area {
    margin: 21px 0;
  }
}

.main-header .button-area button.menu .menu-dark {
  display: block;
  transition: 0.3s;
}

.main-header .button-area button.menu .menu-light {
  display: none;
  transition: 0.3s;
}

.main-header .button-area button.menu:hover .menu-dark {
  display: none;
}

.main-header .button-area button.menu:hover .menu-light {
  display: block;
}

.main-header.main-header-four .nav-main ul li a:hover {
  color: var(--color-primary-4);
}

.main-header.main-header-four .nav-main ul li a::after {
  background: var(--color-primary-4);
}

.main-header.main-header-four .nav-main ul li .submenu {
  border-color: var(--color-primary-4);
  border-width: 4px 0 0 0;
}

.main-header.main-header-four .nav-main ul li .submenu::after {
  border-bottom-color: var(--color-primary-4);
}

.main-header.main-header-four.main-header-five .nav-main ul li a:hover {
  color: var(--color-primary-2);
}

.main-header.main-header-four.main-header-five .nav-main ul li a::after {
  background: var(--color-primary-2);
}

.main-header.main-header-four.main-header-five .nav-main ul li .submenu {
  border-color: var(--color-primary-2);
  border-width: 4px 0 0 0;
}

.main-header.main-header-four.main-header-five .nav-main ul li .submenu::after {
  border-bottom-color: var(--color-primary-2);
}


.six .main-header.main-header-four.main-header-five .nav-main ul li a:hover {
  color: var(--color-primary-6);
}

.six .main-header.main-header-four.main-header-five .nav-main ul li a::after {
  background: var(--color-primary-6);
}

/*section1 end */

/*section2 start*/

/*section2 end */

/*section3 start */

/*section3 end */

/*section4 start */

/*section4 end*/

/*section5 start*/


.single-circle-progress-inner {
  background-image: url(../images/appoinment/01.png);
  height: 320px;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  background-size: contain;
  align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-circle-progress-inner {
    height: 369px;
  }
}

@media only screen and (max-width: 767px) {
  .single-circle-progress-inner {
    height: 265px;
  }
}

@media only screen and (max-width: 575px) {
  .single-circle-progress-inner {
    height: 495px;
  }
}

@media screen and (max-width: 569px) {
  .single-circle-progress-inner {
    height: 600px;
  }
}

@media screen and (max-width: 510px) {
  .single-circle-progress-inner {
    height: 525px;
  }
}

@media screen and (max-width: 460px) {
  .single-circle-progress-inner {
    height: 490px;
  }
}

@media screen and (max-width: 430px) {
  .single-circle-progress-inner {
    height: 440px;
  }
}

@media screen and (max-width: 390px) {
  .single-circle-progress-inner {
    height: 400px;
  }
}

@media screen and (max-width: 365px) {
  .single-circle-progress-inner {
    height: 330px;
  }
}

.single-circle-progress-inner .title {
  margin-top: 85px;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .single-circle-progress-inner .title {
    margin-top: 63px;
  }
}

@media screen and (max-width: 569px) {
  .single-circle-progress-inner .title {
    margin-top: 200px !important;
  }
}

@media screen and (max-width: 469px) {
  .single-circle-progress-inner .title {
    margin-top: 160px !important;
  }
}

@media screen and (max-width: 466px) {
  .single-circle-progress-inner .title {
    margin-top: 130px !important;
  }
}

@media screen and (max-width: 350px) {
  .single-circle-progress-inner .title {
    margin-top: 130px !important;
  }
}

.single-circle-progress-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 360px) {
  .single-circle-progress-inner {
    margin-left: 12px;
  }
}

@media screen and (max-width: 340px) {
  .single-circle-progress-inner {
    margin-left: 7px;
  }
}

/*section5 end */

/*section6 start */


.rts-contact-area.contact-one {
  position: relative;
  z-index: 1;
}

.rts-contact-area.contact-one::after {
  position: absolute;
  content: "";
  background-image: url(../images/contact/shape/01.png);
  right: 10%;
  top: -8%;
  height: 190px;
  width: 190px;
  z-index: -24;
  animation: rotateIt 15s linear infinite;
}


/*section6 end */

/*section7 start */

/*section7 end */

/*section8 start */

.footer-one-single-wized.mid-bg {
  background: linear-gradient(180deg, #0E1422 -4.66%, #212631 100%);
  border-radius: 15px;
  padding: 40px;
  margin-top: -40px;
  margin: -40px 30px 0 30px;
}


/*section8 end */

/*appointment end */


/*blog-list start */

/*section1 start */

/*section1 end */

/*section2 start*/

/*section2 end */

/*section3 start */

/*section3 end */

/*section4 start */

/*section4 end*/

/*section5 start*/


.rts-blog-list-area .pagination {
  margin-top: 10px;
}

.rts-blog-list-area.inner {
  background: var(--color-gray);
}


.blog-single-post-listing {
  margin-right: 30px;
  border: 1px solid #E6E9F0;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1199px) {
  .blog-single-post-listing {
    margin-right: 0;
  }
}

.blog-single-post-listing.details {
  border-radius: 15px;
}

.blog-single-post-listing.details .thumbnail {
  border-radius: 15px 15px 0 0;
}

.blog-single-post-listing.details .thumbnail.details {
  border-radius: 15px;
  width: 100%;
  max-width: max-content;
}



.blog-single-post-listing.details .rts-quote-area {
  padding: 50px;
  background: #F6F6F6;
  border-radius: 15px;
  margin-bottom: 40px;
}





.blog-single-post-listing.details .rts-quote-area .name {
  font-size: 18px;
  color: #4879a5;
  font-weight: 700;
}

.blog-single-post-listing.details .rts-quote-area span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #5D666F;
}

.blog-single-post-listing.details .check-area-details .single-check {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.blog-single-post-listing.details .check-area-details .single-check i {
  margin-right: 15px;
  color: #4879a5;
}



.blog-single-post-listing.details .check-area-details .single-check span {
  color: #5D666F;
}

.blog-single-post-listing.details .details-tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}


.blog-single-post-listing.details .details-tag h6 {
  margin-bottom: 0;
  font-size: 18px;
  margin-right: 15px;
}

.blog-single-post-listing.details .details-tag button {
  padding: 8px 12px;
  background: #F6F6F6;
  max-width: max-content;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  color: #1C2539;
  transition: 0.3s;
}



.blog-single-post-listing.details .details-tag button:hover {
  background: #4879a5;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}

.blog-single-post-listing.details .details-share {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-single-post-listing.details .details-share {
    justify-content: flex-start;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-single-post-listing.details .details-share {
    justify-content: flex-start;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .blog-single-post-listing.details .details-share {
    justify-content: flex-start;
    margin-top: 20px;
  }
}

.blog-single-post-listing.details .details-share button {
  max-width: max-content;
  position: relative;
  z-index: 1;
  margin-left: 23px;
  color: #1C2539;
  transition: 0.3s;
  font-size: 14px;
}

.blog-single-post-listing.details .details-share button::after {
  position: absolute;
  content: "";
  background: #F6F6F6;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.3s;
}

.blog-single-post-listing.details .details-share button:hover {
  color: #fff;
  transform: scale(1.2);
}

.blog-single-post-listing.details .details-share button:hover::after {
  background: #4879a5;
}

.blog-single-post-listing.details .details-share h6 {
  font-size: 18px;
  margin-bottom: 0;
  margin-right: 15px;
}

.blog-single-post-listing.details .author-area {
  margin-top: 44px;
  display: flex;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid #E6E9F0;
  border-bottom: 1px solid #E6E9F0;
}



.blog-single-post-listing.details .author-area .author-details h5 {
  margin-bottom: 10px;
}

.blog-single-post-listing.details .author-area .author-details p {
  line-height: 26px;
}

.blog-single-post-listing.inner {
  border: none;
  max-width: 950px;
  margin: 0 auto;
}

.blog-single-post-listing.inner2 .blog-listing-content .rts-quote-area {
  position: relative;
  background: #000;
  padding-top: 120px;
}

.blog-single-post-listing.inner2 .blog-listing-content .rts-quote-area::before {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translate(-50%, 0);
  content: "\f10d";
  font-family: "Font Awesome 5 Pro";
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #fff;
  color: #4879a5;
  font-weight: 900;
  font-size: 20px;
}

.blog-single-post-listing.inner2 .blog-listing-content .rts-quote-area .title {
  color: #f7f7f7;
}

.blog-single-post-listing .replay-area-details {
  margin-top: 40px;
}

.blog-single-post-listing .replay-area-details form input {
  height: 55px;
  border-radius: 15px;
  background: #F6F6F6;
  border: 1px solid transparent;
}

.blog-single-post-listing .replay-area-details form input:focus {
  border: 1px solid #4879a5;
}

.blog-single-post-listing .replay-area-details form textarea {
  border-radius: 15px;
  background: #F6F6F6;
  height: 140px;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid transparent;
}

.blog-single-post-listing .replay-area-details form textarea:focus {
  border: 1px solid #4879a5;
}

.blog-single-post-listing .thumbnail {
  overflow: hidden;
}

.blog-single-post-listing .thumbnail img {
  transition: 0.3s;
  width: 100%;
}

.blog-single-post-listing .thumbnail:hover img {
  transform: scale(1.2);
}

.blog-single-post-listing .blog-listing-content {
  padding: 50px;
}



.blog-single-post-listing .blog-listing-content .user-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.blog-single-post-listing .blog-listing-content .user-info .single {
  margin-right: 30px;
  min-width: max-content;
}


.blog-single-post-listing .blog-listing-content .user-info .single i {
  margin-right: 10px;
  color: #4879a5;
}



.blog-single-post-listing .blog-listing-content .blog-title {
  transition: 0.3s;
}

.blog-single-post-listing .blog-listing-content .blog-title .title {
  transition: 0.3s;
  margin-bottom: 16px;
}

.blog-single-post-listing .blog-listing-content .blog-title:hover .title {
  color: #4879a5;
}

.blog-single-post-listing .blog-listing-content p.disc {
  font-size: 16px;
  line-height: 26px;
}

@media only screen and (max-width: 479px) {
  .blog-single-post-listing .blog-listing-content p.disc {
    margin-bottom: 15px;
  }
}

.blog-single-post-listing .blog-listing-content a.rts-btn {
  margin-top: 35px;
  display: block;
  max-width: max-content;
}

@media only screen and (max-width: 479px) {
  .blog-single-post-listing .blog-listing-content a.rts-btn {
    margin-top: 20px;
  }
}



.rts-single-wized.contact .wized-body {
  text-align: center;
}

.rts-single-wized.contact .wized-body .title {
  color: #fff;
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 32px;
}

.rts-single-wized.contact .wized-body a.rts-btn {
  display: block;
  max-width: max-content;
  margin: auto;
}

.rts-single-wized .wized-header .title {
  margin-bottom: 10px;
}

.rts-single-wized .wized-body {
  margin-top: 30px;
}

.rts-single-wized .wized-body .rts-search-wrapper {
  position: relative;
}

.rts-single-wized .wized-body .rts-search-wrapper input {
  background: #fff;
  height: 55px;
  border-radius: 5px;
  padding-right: 70px;
  padding-left: 25px;
  border: 1px solid transparent;
}

.rts-single-wized .wized-body .rts-search-wrapper input:focus {
  border: 1px solid #4879a5;
}

.rts-single-wized .wized-body .rts-search-wrapper button {
  position: absolute;
  max-width: max-content;
  height: 55px;
  width: 55px;
  border-radius: 5px;
  background: #4879a5;
  display: inline-block;
  padding: 0 19px;
  right: 0;
}

.rts-single-wized .wized-body .rts-search-wrapper button i {
  color: #fff;
  font-size: 16px;
  line-height: 16px;
}

/*section5 end */

/*section6 start */


@media only screen and (max-width: 575px) {
  .footer-one-single-wized.mid-bg {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .footer-one-single-wized.mid-bg {
    margin-right: 0;
    padding: 10px;
  }
}

.footer-one-single-wized.mid-bg .opening-time-inner .single-opening {
  display: flex;
  justify-content: space-between;
}

.footer-one-single-wized.mid-bg .opening-time-inner .single-opening p {
  margin-bottom: 15px;
  color: #fff;
  font-family: var(--font-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-one-single-wized.mid-bg .opening-time-inner .single-opening p {
    font-size: 14px;
  }
}

.footer-one-single-wized.mid-bg .opening-time-inner .rts-btn.contact-us {
  display: block;
  max-width: max-content;
}

@media only screen and (max-width: 479px) {
  .footer-one-single-wized.mid-bg .opening-time-inner .rts-btn.contact-us {
    padding: 12px 22px;
  }
}

.footer-one-single-wized.six .quick-link-inner .links li a:hover {
  color: var(--color-primary-6);
}

.footer-one-single-wized.six .quick-link-inner .links li a::after {
  background: var(--color-primary-6);
}

.footer-one-single-wized.six .post-wrapper .single-footer-post .post-right a:hover .title {
  color: var(--color-primary-6);
}

.footer-one-single-wized.six .post-wrapper .single-footer-post .post-right .red-more {
  color: var(--color-primary-6);
}

.footer-one-single-wized.seven .quick-link-inner .links li a:hover {
  color: var(--color-primary-5);
}

.footer-one-single-wized.seven .quick-link-inner .links li a::after {
  background: var(--color-primary-5);
}

.footer-one-single-wized.seven .post-wrapper .single-footer-post .post-right a:hover .title {
  color: var(--color-primary-5);
}

.footer-one-single-wized.seven .post-wrapper .single-footer-post .post-right .red-more {
  color: var(--color-primary-5);
}

.footer-one-single-wized .wized-title {
  margin-bottom: 25px;
}

.footer-one-single-wized .wized-title .title {
  color: #fff;
  margin-bottom: 10px;
}

.footer-one-single-wized .quick-link-inner {
  display: flex;
}

@media only screen and (max-width: 479px) {
  .footer-one-single-wized .quick-link-inner {
    flex-direction: column;
  }
}

.footer-one-single-wized .quick-link-inner .links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-one-single-wized .quick-link-inner .links.margin-left-70 {
  margin-left: 70px;
}

@media only screen and (max-width: 479px) {
  .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
    margin-left: 0;
  }
}

.footer-one-single-wized .quick-link-inner .links li {
  margin-top: 0;
}

.footer-one-single-wized .quick-link-inner .links li a {
  color: #8B8F99;
  transition: var(--transition);
  position: relative;
  max-width: max-content;
}

.footer-one-single-wized .quick-link-inner .links li a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background: #4879a5;
  left: 29px;
  bottom: 0;
  transition: 0.3s;
}

.footer-one-single-wized .quick-link-inner .links li a i {
  margin-right: 12px;
  transition: 0.3s;
}

.footer-one-single-wized .quick-link-inner .links li a:hover {
  color: #4879a5;
}

.footer-one-single-wized .quick-link-inner .links li a:hover::after {
  position: absolute;
  width: 76%;
}

.footer-one-single-wized .quick-link-inner .links li a:hover i {
  color: #fff;
}

.footer-one-single-wized .post-wrapper .single-footer-post {
  display: flex;
  align-items: flex-start;
}

.footer-one-single-wized .post-wrapper .single-footer-post .left-thumbnail {
  margin-right: 20px;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.footer-one-single-wized .post-wrapper .single-footer-post .left-thumbnail img {
  width: 130px;
  height: auto;
  transition: var(--transition);
}

.footer-one-single-wized .post-wrapper .single-footer-post .left-thumbnail:hover img {
  transform: scale(1.2);
}

.footer-one-single-wized .post-wrapper .single-footer-post .post-right p {
  margin-bottom: 0;
  color: #8B8F99;
  font-size: 14px;
  margin-top: -6px;
}

.footer-one-single-wized .post-wrapper .single-footer-post .post-right a .title {
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 0;
  transition: var(--transition);
}

.footer-one-single-wized .post-wrapper .single-footer-post .post-right a:hover .title {
  color: #4879a5;
}

.footer-one-single-wized .post-wrapper .single-footer-post .post-right a {
  max-width: max-content;
  padding-left: 0;
  color: #DF0A0A;
  display: flex;
  align-items: center;
  margin-top: -1px;
}

.footer-one-single-wized .post-wrapper .single-footer-post .post-right a i {
  margin-left: 6px;
  margin-bottom: -4px;
  position: relative;
  transition: var(--transition);
}

.footer-one-single-wized .post-wrapper .single-footer-post .post-right a.red-more {
  display: block;
  max-width: max-content;
}

.footer-one-single-wized .post-wrapper .single-footer-post .post-right a.red-more:hover i {
  margin-left: 15px;
}


/*section6 end */


/*blog-list end */


/*accordion start */

/*section5 start*/

.thumbnail-faq-four {
  padding-left: 30px;
}


.faq-two-inner .title-area-faq .sub {
  color: #4879a5;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.faq-two-inner .title-area-faq span.sm-title {
  font-size: 40px;
}



.faq-two-inner .title-area-faq span.sm-title span {
  color: #4879a5;
  font-weight: 600;
}

.faq-two-inner .title-area-faq .title {
  color: #fff;
  text-transform: uppercase;
  margin-top: 5px;
}

.faq-two-inner .faq-accordion-area {
  margin-top: 47px;
}

.faq-two-inner .faq-accordion-area .accordion .accordion-item {
  background: transparent;
  margin-bottom: 30px;
}

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

.faq-two-inner .faq-accordion-area .accordion .accordion-item .accordion-header button {
  border: 1px solid #414857;
  background: transparent;
  border-radius: 5px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  height: 60px;
  align-items: center;
  display: flex;
  padding: 0 35px;
}



.faq-two-inner .faq-accordion-area .accordion .accordion-item .accordion-header button[aria-expanded=true] {
  border: 1px solid transparent;
  background: #fff;
  color: #1C2539;
  border-radius: 5px 5px 0 0;
}

.faq-two-inner .faq-accordion-area .accordion .accordion-item .accordion-header button[aria-expanded=true]::after {
  content: "\f077";
  font-family: "Font Awesome 5 Pro" !important;
  background-image: none;
  top: -5px;
  position: relative;
}

.faq-two-inner .faq-accordion-area .accordion .accordion-item .accordion-header button span {
  color: #4879a5;
  margin-right: 10px;
  min-width: max-content;
}

.faq-two-inner .faq-accordion-area .accordion .accordion-item .accordion-header button:focus {
  box-shadow: none;
}

.faq-two-inner .faq-accordion-area .accordion .accordion-item .accordion-header button::after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro" !important;
  background-image: none;
  top: -5px;
  position: relative;
  transform: none;
  color: #4879a5;
}

.faq-two-inner .faq-accordion-area .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.faq-two-inner .faq-accordion-area .accordion .accordion-body {
  background: #fff;
  border-radius: 0 0 5px 5px;
  padding: 10px 35px 35px 35px;
}


.home-yellow .faq-two-inner .title-area-faq .sub,
.home-yellow .faq-two-inner .title-area-faq span.sm-title span,
.home-yellow .faq-two-inner .faq-accordion-area .accordion .accordion-item .accordion-header button span,
.home-yellow .faq-two-inner .faq-accordion-area .accordion .accordion-item .accordion-header button::after {
  color: var(--color-primary-3);
}

.accordion-one-inner .accordion-item .accordion-header button {
  font-size: 18px;
  color: #1C2539;
  font-weight: 700;
  padding: 29px 40px;
}



.accordion-one-inner .accordion-item .accordion-header button::after {
  background-image: none;
  content: "\f078";
  font-family: "Font Awesome 5 Pro" !important;
  transition: 0.3s;
  color: #4879a5;
}

.accordion-one-inner .accordion-item .accordion-header button span {
  color: #4879a5;
  margin-right: 5px;
  min-width: max-content;
}

.accordion-one-inner .accordion-item .accordion-header button:focus {
  box-shadow: none;
}

/*section5 end */

/*section6 start */


.typo-title-area .title {
  margin-top: 0;
}


.accordion-one-inner .accordion-item {
  box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.05);
  margin-bottom: 20px;
  border: none;
}

.accordion-one-inner .accordion-item .accordion-header button {
  font-size: 18px;
  color: #1C2539;
  font-weight: 700;
  padding: 29px 40px;
}



.accordion-one-inner .accordion-item .accordion-header button::after {
  background-image: none;
  content: "\f078";
  font-family: "Font Awesome 5 Pro" !important;
  transition: 0.3s;
  color: #4879a5;
}

.accordion-one-inner .accordion-item .accordion-header button span {
  color: #4879a5;
  margin-right: 5px;
  min-width: max-content;
}

.accordion-one-inner .accordion-item .accordion-header button:focus {
  box-shadow: none;
}


.accordion-one-inner.inner .accordion-item {
  box-shadow: none !important;
  border: 1px solid #9993;
  border-radius: 15px;
  background-color: var(--color-gray);
}

.accordion-one-inner.inner .accordion-item .accordion-header button {
  border-radius: 15px;
  background-color: var(--color-gray);
}


.accordion-one-inner.inner2 .accordion-item {
  border: none;
  box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.05) !important;
  border-radius: 15px;
}

.accordion-one-inner.inner2 .accordion-item .accordion-header button {
  font-size: 18px;
  border-radius: 15px;
  background-color: #fff;
  font-weight: 700;
  padding: 29px 40px;
}



.accordion-one-inner.inner2 .accordion-item .accordion-header button::after {
  background-image: none;
  content: "\f078";
  font-family: "Font Awesome 5 Pro" !important;
  transition: 0.3s;
  color: #4879a5;
}

.accordion-one-inner.inner2 .accordion-item .accordion-header button span {
  color: #4879a5;
  margin-right: 5px;
  min-width: max-content;
}

.accordion-one-inner.inner2 .accordion-item .accordion-header button:focus {
  box-shadow: none;
}

.accordion-one-inner.inner2 .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  box-shadow: none;
  background: #4879a5;
  color: #fff;
  border-radius: 15px 15px 0 0;
}

.accordion-one-inner.inner2 .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "\f077";
  font-family: "Font Awesome 5 Pro" !important;
  transform: rotate(0);
  transition: 0.3s;
  color: #fff;
}

.accordion-one-inner.inner2 .accordion-item .accordion-header .accordion-button:not(.collapsed) span {
  color: #fff;
}

.accordion-one-inner.inner2 .accordion-item .accordion-body {
  padding: 0px 40px 40px 40px;
  color: #f9f9f9;
  background: #4879a5;
}


/*section6 end */

/*section7 start */


.rts-faq-area {
  position: relative;
  overflow: hidden;
}

.rts-faq-area::after {
  position: absolute;
  content: "";
  right: -9%;
  top: -33%;
  background-image: url(../images/faq/shape.png);
  height: 736px;
  width: 736px;
  background-size: contain;
  z-index: -1;
  animation: rotateIt 20s linear infinite;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-faq-area::after {
    position: absolute;
    content: "";
    right: -22%;
    top: -16%;
    background-image: url(../images/faq/shape.png);
    height: 500px;
    width: 500px;
    background-size: contain;
    z-index: -1;
    animation: rotateIt 20s linear infinite;
  }
}

@media only screen and (max-width: 767px) {
  .rts-faq-area::after {
    position: absolute;
    content: "";
    right: -22%;
    top: -10%;
    background-image: url(../images/faq/shape.png);
    height: 300px;
    width: 300px;
    background-size: contain;
    z-index: -1;
    animation: rotateIt 20s linear infinite;
  }
}

.rts-faq-area::before {
  position: absolute;
  content: "";
  left: -14%;
  top: 11%;
  background-image: url(../images/faq/shape-2.png);
  width: 698px;
  height: 698px;
  background-size: contain;
  z-index: -1;
  animation: jump-2 5s linear infinite;
}

.rts-faq-area .faq-thumbnail img {
  width: 100%;
  animation: jump-2 5s linear infinite;
}

@media only screen and (max-width: 479px) {
  .rts-faq-area .faq-thumbnail img {
    margin-bottom: 30px;
  }
}

.rts-faq-area.inner {
  background-color: #fff;
}

.rts-faq-area.inner::before {
  display: none;
}

.rts-faq-area.inner::after {
  display: none;
}

.rts-faq-area.inner2 {
  background-color: var(--color-gray);
}

/*section7 end */


/*accordion end */

/*contactus start */


/*section6 start*/

/*section6 end */

/*section7 start */

.rts-contact-fluid {
  box-shadow: 0px 24px 39px rgba(0, 0, 0, 0.05);
}

.rts-contact-fluid .form-wrapper {
  width: 80%;
  margin: auto;
}



.rts-contact-fluid .form-wrapper .error {
  color: #4879a5;
  margin-bottom: 15px;
}

.rts-contact-fluid .form-wrapper .success {
  color: green;
  margin-bottom: 15px;
}

.rts-contact-fluid .form-wrapper form .name-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .rts-contact-fluid .form-wrapper form .name-email {
    flex-direction: column;
  }
}

.rts-contact-fluid .form-wrapper form .name-email input {
  width: 48.8%;
}

@media only screen and (max-width: 767px) {
  .rts-contact-fluid .form-wrapper form .name-email input {
    width: 100%;
  }
}

.rts-contact-fluid .form-wrapper input {
  background: #F6F6F6;
  height: 55px;
  border-radius: 15px;
  margin-bottom: 25px;
  border: 1px solid transparent;
}

.rts-contact-fluid .form-wrapper input:focus {
  border: 1px solid #4879a5;
}

.rts-contact-fluid .form-wrapper textarea {
  height: 150px;
  background: #F6F6F6;
  border-radius: 15px;
  padding: 15px 15px;
  border: 1px solid transparent;
}

.rts-contact-fluid .form-wrapper textarea:focus {
  border: 1px solid #4879a5;
}

.rts-contact-fluid .rts-btn {
  display: block;
  max-width: max-content;
  margin: auto;
  margin-top: 30px;
}

.onepage.two .rts-contact-fluid .form-wrapper {
  width: 100%;
}

.onepage.two .rts-contact-fluid {
  box-shadow: none;
}

.rts-contact-form-area.six .rts-contact-fluid {
  background: #FFFFFF47;
  margin-top: 120px;
  padding: 30px 25px;
  border-radius: 15px;
}

@media (max-width: 1200px) {
  .rts-contact-form-area.six .rts-contact-fluid {
    margin-top: 0;
    margin-bottom: 120px;
  }
}

.rts-contact-form-area.six .rts-contact-fluid .rts-title-area::after {
  display: none;
}

.rts-contact-form-area.six .rts-contact-fluid .rts-title-area .title {
  font-size: 26px;
  color: var(--color-primary-6);
}

.rts-contact-form-area.six .rts-contact-fluid .form-wrapper {
  width: 95%;
}

.rts-contact-form-area.six .rts-contact-fluid .form-wrapper form input {
  margin-bottom: 15px;
  height: 50px;
}

.rts-contact-form-area.six .rts-contact-fluid .form-wrapper form input:focus {
  border: 1px solid var(--color-primary-6);
}

.rts-contact-form-area.six .rts-contact-fluid .form-wrapper form textarea:focus {
  border: 1px solid var(--color-primary-6);
}

.rts-contact-form-area.six .rts-contact-fluid .form-wrapper form select {
  height: 50px;
  background: #f6f6f6;
  border-radius: 15px;
  margin-bottom: 15px;
  padding: 0 15px;
}

.rts-contact-form-area.six .rts-contact-fluid .form-wrapper form select:focus {
  border: 1px solid var(--color-primary-6);
}

.rts-contact-form-area.six .rts-contact-fluid .form-wrapper form .btn-primary {
  background: var(--color-primary-6);
  max-width: 100%;
  width: 100%;
  padding: 14px 30px;
  margin-top: 20px;
}

.rts-contact-form-area.six .rts-contact-fluid .form-wrapper form .btn-primary:hover {
  background: var(--color-primary-alta);
}

/*section7 end */

/*contactus end */

/*appointment */

#SOLICITAR-CITA {
  color: white;
  background: #a1c6e7; 
  padding: 10px 10px 10px 10px;
  border: 1px solid transparent;
  border-radius: 10px;

}

#fa-check{
    padding: 4px;
    background: #4879a5;;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    margin-right: 15px;
    margin-top: 5px;
    
}

.about-one-thumbnail img {
  border-radius: 10px;
}


footer.bg-dark {
	background-color: #b6c5d3 !important;
}

.f-item.about p {
  margin-bottom: 5px;
  text-align: justify;
}
.text-light h1, .text-light h2, .text-light h3, .text-light h4, .text-light h5, .text-light h6, .text-light p, .text-light span, .text-light a {
  color: var(--white);
}


.text11 {
  text-align: center;
}

.text11 h4{
  color: #4879a5;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 600;
}

p {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
}

h5 {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
 
}

.title {
  color: #000;
}


/* ============================================================== 
    # Footer Style
=================================================================== */
footer .widget-title {
	font-weight: 600;
	font-size: 22px; /*24px*/
	margin-bottom: 18px; /*30px*/
}
footer .logo img {
	height: 60px;
}
footer .logo {
	margin-bottom: 30px;
	height: 60px;
}

footer .newsletter form {
	border: 2px solid rgba(255, 255, 255, 0.3);
	position: relative;
}

footer .newsletter form input {
	background: transparent !important;
	border: none;
	box-shadow: inherit !important;
	color: var(--white) !important;
	min-height: 56px;
	padding: 15px;
}

footer .newsletter form input::-webkit-input-placeholder {
 /* Chrome/Opera/Safari */
	color: #d2d2d4;
}

footer .newsletter form input::-moz-placeholder {
 /* Firefox 19+ */
	color: #d2d2d4;
}

footer .newsletter form input:-ms-input-placeholder {
 /* IE 10+ */
	color: #d2d2d4;
}

footer .newsletter form input:-moz-placeholder {
 /* Firefox 18- */
	color: #d2d2d4;
}

footer .newsletter form button {
	position: absolute;
	right: 5px;
	top: 5px;
	padding: 9px 20px;
	text-transform: uppercase;
	background: #00116b;
	border: none;
	color: var(--white);
	font-weight: 600;
}

footer .newsletter.secondary form button {
	background: var(--color-secondary);
}

footer .newsletter {
	margin-top: 30px;
}

footer p, 
footer li,
footer li a {
	color: #fff !important; /*d2d2d4*/
	transition: all 0.35s ease-in-out;
}

footer li a:hover {
	color: var(--white) !important;
}

footer li a {
	font-weight: 400;
}

footer .link li {
	margin-top: 12px;
}

footer .link li:first-child {
	margin-top: 0;
}
footer .link li a i {
	padding-right: 6px;
}
.footer-item {
	margin-top: 50px;
}

.footer-bottom li {
	display: inline-block;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom {
	padding: 15px 0;
	background: #809cb7;
	border-top: 1px solid #809cb7;
	text-align: center;
	margin-top: 5px;
}
.footer-bottom p i {
	color: #00a8ff;
	font-size: 17px!important;
}

.footer-bottom .text-end li {
	margin-left: 20px;
}

.f-items {
	position: relative;
	z-index: 1;
}

.f-items .shape-animated-top {
	position: absolute;
	left: -200px;
	top: 80px;
}

.f-items .shape-animated-top img {
	max-width: 250px;
	opacity: 0.03;
}

.footer-bottom .container {
	position: relative;
}

footer {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

footer::after {
	/* position: absolute;
	left: -9%;
	top: -10%;
	content: "";
	height: 500px;
	width: 500px;
	background: rgba(0, 0, 0, 0) linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 130%) repeat scroll 0 0;
	z-index: -1;
	transform: skewX(10deg); */
}

.footer-shape {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

.footer-shape .item:first-child {
	position: absolute;
	right: 0;
	top: 50px;
	height: 250px;
	display: none;
}

.footer-shape .item:first-child img {
	height: 100%;
}

.footer-shape .item:nth-child(2) {
	position: absolute;
	left: 30px;
	bottom: 45px;
	height: 30px;
}

.footer-shape .item:nth-child(2) img {
	height: 100%;
	animation: spinner 20s infinite linear;
}

.footer-shape .item:nth-child(3) {
	position: absolute;
	left: 0;
	top: 0;
	height: 40%;
	opacity: 0.3;
}

.footer-shape .item:nth-child(3) img {
	height: 100%;
}

.footer-shape .item.bottom {
	top: auto;
	bottom: 60px;
	height: 70%;
}
.f-item.about p {
    margin-bottom: 5px;
    text-align: left;
}

.opening-hours {
	margin-top: 10px;
}

.opening-hours li {
	margin-top: 5px;
	position: relative;
	z-index: 1;
}

.opening-hours h5 {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 8px;
}

.opening-hours .working-day, .opening-hours .working-hour {
	width: 1%;
	display: table-cell;
	white-space: nowrap;
}

.opening-hours .working-day {
	padding-right: 10px;
}

.opening-hours .working-hour {
	padding-left: 10px;
	text-transform: uppercase;
}





.footer-social li {
	display: inline-block;
	margin-right: 10px;
}

.footer-social li a {
	display: inline-block;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	background: #a1c6e7; /*rgba(255, 255, 255, 0.1)*/
	border-radius: 5px;
	color: var(--white) !important;
}

.footer-social {
	margin-top: 30px;
}

.footer-social li a:hover {
	background: #00116b;
}
.f-item.cinfo_link ul > li {
    position: relative;
    padding-left: 28px;
    margin-top: 0;
    margin-bottom: 5px;
}
.f-item.cinfo_link ul > li i {
    position: absolute;
    left: 0;
	top: 5px;
}

.widget-title {
  
  text-align: center;
}

.para {
  color: #ffffff;
}

.copyright i{
  color: #4879a5;
}


/* contact */


/* ============================================================== 
    # Contact Us
=================================================================== */

.contact-stye-one {
	position: relative;
}

.shape-animated-arrow {
	position: absolute;
	left: -12%;
	top: 0;
}

.contact-shape {
	position: absolute;
	right: -15%;
	bottom: 0;
	max-width: 30%;
}

.half-shape-top {
	position: relative;
	z-index: 1;
}

.half-shape-top::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 120px;
	width: 100%;
	background: var(--bg-gray);
	z-index: -1;
}

.contact-area {
	background-size: 20%;
	background-repeat: no-repeat;
	background-position: right bottom;
}

.contact-area .shape-left-top {
	max-width: 30%;
	top: 60px;
	opacity: 0.1;
}

.contact-style-one-info li {
	display: flex;
	margin-top: 30px;
}

.contact-style-one-info li i {
	display: inline-block;
	height: 60px;
	width: 60px;
	text-align: center;
	line-height: 60px;
	background: #4879a5;
	border-radius: 50%;
	color: #FFFFFF;
	font-size: 25px;
	margin-right: 20px;
}

.contact-style-one-info li:nth-child(2) i {
	background: #a1c6e7;
}

.contact-style-one-info li:nth-child(3) i {
	background: black; /*var(--dark)*/
}

.contact-style-one-info li p {
	margin: 0;
  color: #000;
}

.contact-style-one-info li h5 {
	font-weight: 700;
	margin-bottom: 0px;/*5px*/
	font-size: 20px;
	text-transform: uppercase;
  color: #000;
}

.contact-style-one-info li a {
	font-weight: 400;
  color: #000;
}

.contact-style-one-info h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1;
  color: #4879a5;
}

.contact-style-one-info ul {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-top: 50px;
}

.contact-form-style-one {
	box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 20%); /*0px 15px 60px -10px rgb(109 117 143 / 33%)*/
	padding: 35px 45px 15px 45px; /*60px 80px*/
	border-radius: 10px;
	position: relative;
	background: var(--white);
}

.contact-form-style-one .illustration {
	position: absolute;
	left: -130px;
	bottom: -60px;
	z-index: -1;
}

.contact-form-style-one .sub-heading {
	margin-bottom: 15px;
}

.contact-form-style-one .heading {
	margin-bottom: 5px; /*30px*/
	font-size: 36px;
}

.contact-form-style-one input, 
.contact-form-style-one textarea, 
.contact-form-style-one select {
	margin-bottom: 15px;
	padding: 15px 0;
	border: none;
	background: transparent;
	border-bottom: 2px solid #d6d6d6;
	border-radius: 0;
	font-size: 18px;
	color: #555;
	width: 100%;
}



.contact-form-style-one input:focus, 
.contact-form-style-one textarea:focus {
	box-shadow: inherit;
}

.contact-form-style-one textarea {
	min-height: 110px;
	margin-bottom: 25px;
}

.contact-form-style-one button {
	display: inline-block;
	font-weight: 600;
	text-transform: capitalize;
	transition: all 0.35s ease-in-out;
	overflow: hidden;
	border-radius: 6px;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	font-size: 17px;
	letter-spacing: 0;
	position: relative;
	z-index: 1;
	color: var(--white);
	border: none;
	background: #00116b;
	padding: 16px 28px; /*16px 52px*/
}
.contact-form-style-one button i {
    padding-right: 8px; 
}
.contact-form-style-one button::after {
	position: absolute;
	top: inherit;
	right: inherit;
	bottom: inherit;
	left: -5%;
	content: "";
	height: 150px;
	width: 115%;
	z-index: -1;
	background-color: var(--dark);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	-webkit-transform: translateY(-45%) skew(25deg) scale(0);
	transform: translateY(-45%) skew(25deg) scale(0);
}

.contact-form-style-one button:hover::after {
	-webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
	transform: translateY(-45%) skew(25deg) scale(1.2);
}

.contact-form-style-one button:hover {
	color: var(--white);
}

img.loader {
	margin-left: 8px;
}

.contact-style-one-info h2 span {
	position: relative;
	z-index: 1;
}

.contact-style-one-info h2 span svg {
	position: absolute;
	top: auto;
	left: 50%;
	width: 80%;
	height: 100%;
	transform: translate(-50%);
	overflow: visible;
	bottom: 0;
	z-index: -1;
}

.contact-style-one-info h2 span path {
	stroke: var( --color-secondary);
	stroke-width: 10;
	stroke-dasharray: 1500;
	fill: none;
}

.maps-area iframe {
	min-height: 400px; /*550px*/
	margin-bottom: -8px;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

.error-box h1 {
	font-size: 200px;
	font-weight: 600;
	line-height: 150px;
	margin-bottom: 30px;
}

.error-box h2 {
	font-weight: 600;
	margin-bottom: 20px;
}

.alert-notification {
	margin-top: 30px;
}

.alert-notification .alert {
	margin: 0;
}

.alert-notification h3 {
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 22px;
	color: red;
}

.alert-notification p {
	margin: 0;
}

.alert-notification p strong {
	color: #232323;
}

.alert-notification .alert.alert-success h3 {
	color: green;
}

.contact-style-one-area {
  padding-top: 20px;
  padding-bottom: 20px;
}


.googletranslate {
  background-color: #809cb7;
  border-left: 1px solid #809cb7;
  border-top: 1px solid #809cb7;
  border-bottom: 1px solid #809cb7;
  border-right: 1px solid #809cb7;
  font-size: 10pt;
  display: inline-block;
  padding-top: 5px;
  padding-bottom: 2px;
  cursor: pointer;
}


@media only screen and (max-width: 767px) {
  .googletranslate {
    background-color: #809cb7;
    border-left: 1px solid #809cb7;
    border-top: 1px solid #809cb7;
    border-bottom: 1px solid #809cb7;
    border-right: 1px solid #809cb7;
    font-size: 10pt;
    display: inline-block;
    padding-right: 5px;
    padding-bottom: 2px;
    cursor: pointer;
    
  }

  .googlealign{
    text-align: top;
  }


  .header-top-one .left .mail a {
  
    display: none;
    
}

}



