/********************************************

** - Default CSS
** - Navbar CSS
** - Buttons
** - Home 1
** - Home 2
** - Home 3
** - inner-page-banner
** - About Page
** - Service Page
** - Service Details Page
** - Shop Page
** - cart Page
** - Shop Details Page
** - Checkout Page
** - Blog Page
** - Blog Details Page
** - Contact Page
** - Privacy Page
** - Login Page

/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@400;500;600;700;800;900&amp;display=swap");
:root {
  --fontFamily: 'Catamaran', sans-serif;
  --font-color: #515151;
  --home1-main-color: #7E57FF;
  --home1-main-color-2: #C90CE2;
  --white-color: #ffffff;
  --black-color: #262521;
  --home2-main-color: #27CB85;
  --home3-main-color: #10142D;
  --home3-hover-color:  #FF4328;
}

html {
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--fontFamily);
  font-size: 16px;
  font-weight: 500;
}

button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #ced4da;
}

.btn.focus, .btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

.form-select {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

:focus,
.form-control {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

input:focus,
.form-control:focus {
  outline: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  width: 100%;
  -webkit-transition: all 1s;
  transition: all 1s;
  z-index: 100000 !important;
  -webkit-box-shadow: 2px 2px 10px #c9c6c6;
          box-shadow: 2px 2px 10px #c9c6c6;
}

.sticky .main-nav nav .navbar-nav .nav-item {
  position: relative;
}

.sticky .main-nav-2 {
  background: #011FAE !important;
}

.sticky .main-nav-3 {
  background: #013973 !important;
}

.sticky .inner-page-nav {
  background: var(--white-color) !important;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  margin-top: -7px;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--font-color);
}

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

button {
  border: none;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

a {
  text-decoration: none;
  color: var(--blackColor);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

a:hover {
  text-decoration: none;
  color: var(--blackColor);
}

.table {
  margin-bottom: 0;
}

.pt-140 {
  padding-top: 130px;
}

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

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

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

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

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

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

i::before {
  line-height: 1;
}

.gotopbtn {
  position: fixed;
  width: 40px;
  height: 40px;
  background: #fac300;
  bottom: 30px;
  right: 30px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
  cursor: pointer;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.gotopbtn i {
  color: var(--white-color);
}

.gotopbtn.active {
  visibility: visible;
  opacity: 1;
  border: 2px solid var(--greenColor);
}

.top-p {
  font-size: 18px;
  font-weight: 600;
  color: var(--home2-main-color);
  margin-top: -7px;
}

.top-p-3 {
  color: #023873;
}

.top-portion {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  font-family: var(--fontFamily);
}

.custom-card {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.card-title-f {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 0;
}

.medium-font {
  font-size: 18px;
  font-weight: 600;
  color: var(--font-color);
}

ul {
  margin-bottom: 0;
  padding-left: 0;
}

ul li {
  list-style: none;
}

.nice-select {
  background: transparent;
  border: none;
  padding-left: 8px;
  padding-right: 25px;
  font-size: 16px;
  font-weight: 400;
  line-height: 52px;
}

.nice-select:after {
  width: 8px;
  height: 8px;
  margin-top: 0;
}

/*================================================
Buttons
=================================================*/
button {
  border: none;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.white-btn {
  position: relative;
  font-size: 17px;
  font-weight: 600;
  padding: 12px 30px;
  background: var(--white-color);
  color: var(--home1-main-color);
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
}

.white-btn:hover {
  background: var(--home1-main-color-2);
  color: var(--white-color);
  border-radius: 60px 0 60px 0;
}

.white-btn-rectangle {
  position: relative;
  font-size: 17px;
  font-weight: 600;
  padding: 12px 30px;
  background: var(--white-color);
  color: var(--home3-main-color);
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
}

.white-btn-rectangle:hover {
  background: #023973;
  color: var(--white-color);
  border-radius: 60px 0 60px 0;
}

.white-btn-circle {
  position: relative;
  font-size: 17px;
  font-weight: 600;
  padding: 12px 30px;
  background: var(--white-color);
  color: var(--home2-main-color);
  border-radius: 30px;
  display: inline-block;
  text-transform: uppercase;
}

.white-btn-circle:hover {
  background: var(--home2-main-color);
  color: var(--white-color);
  border-radius: 60px 0 60px 0;
}

.green-btn {
  position: relative;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 30px;
  display: inline-block;
  background: var(--home2-main-color);
  color: var(--white-color);
  text-transform: uppercase;
}

.green-btn:hover {
  background: #011FAE;
  color: var(--white-color);
  border-radius: 60px 0 60px 0;
}

.circle-blue-btn {
  padding: 12px 30px;
  border-radius: 25px;
  background: var(--home2-main-color);
  color: var(--white-color);
  display: inline-block;
  text-transform: uppercase;
}

.reactangle-blue-btn {
  padding: 12px 30px;
  border-radius: 5px;
  background: var(--home2-main-color);
  color: var(--white-color);
  display: inline-block;
  text-transform: uppercase;
}

.reactangle-blue-btn:hover {
  background: cornflowerblue;
  border-radius: 30px 0 30px 0;
  color: var(--white-color);
}

.circle-blue-btn:hover {
  background: var(--home2-main-color-2);
  color: var(--white-color);
}

.violate-btn {
  position: relative;
  font-size: 16px;
  padding: 12px 30px;
  background: var(--home1-main-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 5px;
  text-transform: uppercase;
}

.violate-btn:hover {
  background: var(--home1-main-color-2);
  color: var(--white-color);
  border-radius: 60px 0 60px;
}

.orange-btn {
  position: relative;
  font-size: 16px;
  padding: 12px 30px;
  background: #fac300;
  color: var(--white-color);
  display: inline-block;
  border-radius: 5px;
  text-transform: uppercase;
}

.orange-btn:hover {
  background: var(--home3-main-color);
  color: var(--white-color);
  border-radius: 60px 0 60px;
}

.mobile-search-bar, .mobile-search-bar-2 {
  display: none;
}

.modal {
  z-index: 10000000;
}

.accordion-button {
  text-align: left;
}

/*================================================
Home 1
=================================================*/
#home1-header .mean-container .mean-nav ul li a.active {
  color: var(--home1-main-color);
}

#home1-header .main-nav nav .navbar-nav .nav-item a:hover,
#home1-header .main-nav nav .navbar-nav .nav-item a.active {
  color: var(--home1-main-color);
}

#home1-header .top-menu {
  background: var(--nevy-blue);
  padding: 5px 0;
}

#home1-header .top-menu .left {
  padding: 10px 0;
}

#home1-header .top-menu .left a {
  color: var(--white-color);
  padding: 0 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.164);
  text-align: center;
}

#home1-header .top-menu .left a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.164);
}

#home1-header .top-menu .right {
  text-align: right !important;
  float: right;
}

#home1-header .top-menu .right .nice-select {
  color: var(--white-color);
  line-height: 42px;
}

#home1-header .top-menu .right .nice-select .option {
  color: var(--black-color);
}

#home1-header .top-menu .right .nice-select::after {
  right: 2px;
  top: 33%;
}

#home1-header .top-menu .home1-top-menu-ul {
  margin: 10px 0 8px;
}

#home1-header .top-menu .home1-top-menu-ul li {
  display: block !important;
}

.nice-select .list {
  z-index: 9999;
}

.main-nav {
  padding: 0 100px;
}

.main-nav .nice-select .option {
  color: var(--black-color);
}

.header-area .reactangle-blue-btn, .header-area .default-btn, .header-area .home2-hover-btn {
  position: relative;
  top: -3px;
}

.header-area .default-btn {
  padding: 12px 20px;
}

.header-area .top-menu {
  background: var(--nevy-blue);
  padding-top: 20px;
  padding-left: 100px;
  padding-right: 100px;
}

.header-area .top-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
}

.header-area .top-menu .home1-top-menu-ul {
  float: right;
  margin-bottom: 18px;
}

.header-area .top-menu .home1-top-menu-ul li {
  color: #bbb9b9;
}

.header-area .top-menu .home1-top-menu-ul li i {
  margin-right: 7px;
}

.header-area .top-menu .home1-top-menu-ul li span {
  color: var(--white-color);
  margin-right: 15px;
}

.header-area .top-menu .home1-top-menu-ul li:first-child {
  margin-right: 50px;
}

.header-area .right-menu {
  margin-top: 0px;
}

.header-area .right-menu .nice-select {
  font-weight: 600;
  margin-right: 10px;
}

.header-area .language {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.header-area .language img {
  width: 18px;
  height: 18px;
  margin-bottom: -9px;
}

.header-area .language .form-select-1 {
  width: 65px;
  font-size: 16px;
  font-weight: bold;
  padding: .375rem 0px .375rem 6px;
}

.banner-section-1 {
  background: url(../images/banner/banner-1-bg.html) center center no-repeat;
  background-size: cover;
  width: 100%;
  padding: 250px 0 200px;
  position: relative;
}

.banner-section-1::before {
  content: '';
  -webkit-clip-path: polygon(0 0, 80% 0, 60% 100%, 0% 100%);
          clip-path: polygon(0 0, 80% 0, 60% 100%, 0% 100%);
  height: 100%;
  width: 92%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(45deg, rgba(53, 55, 210, 0.6) 2%, rgba(231, 3, 229, 0.6) 62%, rgba(231, 3, 229, 0.6) 70%);
}

.banner-section-1 .banner-text {
  max-width: 600px;
  position: relative;
  z-index: 9;
}

.banner-section-1 .banner-text h1 {
  font-size: 72px;
  font-weight: bold;
  color: var(--white-color);
}

.banner-section-1 .banner-text p {
  font-size: 20px;
  font-weight: 500;
  color: var(--white-color);
  margin: 5px 0 25px;
}

.banner-section-1 .s-video-option {
  display: none;
}

.banner-section-1 .l-video-option {
  right: -190px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.banner-section-1 .video-option {
  position: absolute;
  z-index: 9;
}

.banner-section-1 .video-option .play-btn {
  width: 85px;
  height: 85px;
  text-align: center;
  line-height: 85px;
  background: var(--white-color);
  border-radius: 50%;
  padding-left: 3px;
}

.banner-section-1 .video-option .play-btn i {
  color: var(--home1-main-color-2);
}

.feature-section-1 .custom-card {
  padding: 20px;
  background: #F2F5F8;
  border-radius: 10px;
  margin-bottom: 30px;
}

.feature-section-1 .custom-card ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.feature-section-1 .custom-card ul li {
  display: inline-block;
}

.feature-section-1 .custom-card ul li i::before {
  font-size: 50px;
  color: var(--home1-main-color);
  margin-right: 10px;
}

.feature-section-1 .custom-card ul li p {
  margin-bottom: 0;
  line-height: .8;
}

.feature-section-1 .custom-card ul li h4 {
  margin-bottom: 10px;
}

.home1-service-section .custom-card {
  padding: 30px;
  background: #F4F8FC;
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.home1-service-section .custom-card .text a {
  color: var(--home1-main-color);
}

.home1-service-section .custom-card .card-title-f a {
  color: var(--black-color);
}

.home1-service-section .custom-card .icon i::before {
  font-size: 50px;
  color: var(--home1-main-color);
  -webkit-animation: spin 9s infinite linear;
          animation: spin 9s infinite linear;
}

.home1-service-section .custom-card .icon i {
  -webkit-animation: spin 9s infinite linear;
          animation: spin 9s infinite linear;
}

.home1-service-section .custom-card .text .card-title-f {
  margin: 15px 0 10px;
}

.home1-service-section .custom-card .text .a {
  font-size: 18px;
  font-weight: 600;
  color: var(--home1-main-color);
}

.home1-service-section .custom-card .text .fa-chevron-right {
  font-size: 14px;
}

.home1-service-section .custom-card:hover {
  margin-top: -10px;
  background: var(--white-color);
  -webkit-box-shadow: 0px 0px 20px #e1e6eb;
          box-shadow: 0px 0px 20px #e1e6eb;
}

.about-section-1 .left-content {
  margin-left: auto;
  margin-right: 10px;
  max-width: 720px;
}

.about-section-1 .right-content {
  max-width: 550px;
  margin-left: 20px;
  margin-right: auto;
}

.about-section-1 .right-content .section-title {
  margin-bottom: 15px;
}

.about-section-1 .right-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid rgba(185, 182, 182, 0.582);
  padding-top: 30px;
  margin-top: 30px;
}

.about-section-1 .right-content ul li {
  display: inline-block;
}

.about-section-1 .right-content ul li .pro-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.about-section-1 .right-content ul li .text {
  margin: 0 50px  0 20px;
}

.offer-section-1 {
  background: linear-gradient(45deg, rgba(53, 55, 210, 0.88) 2%, rgba(231, 3, 229, 0.88) 62%, rgba(231, 3, 229, 0.88) 70%), url(../images/offer/offer-bg-1.html) center center no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
}

.offer-section-1 .text-content {
  max-width: 630px;
  margin-left: 0;
  margin-right: auto;
}

.offer-section-1 .text-content .section-title {
  color: var(--white-color);
  margin-bottom: 15px;
}

.offer-section-1 .text-content p {
  color: var(--white-color);
  margin-bottom: 25px;
}

.offer-section-1 .text-content .custom-card {
  padding: 50px 30px;
  background: var(--white-color);
  margin-top: 50px;
  text-align: center;
}

.offer-section-1 .text-content .custom-card h2 {
  font-size: 72px;
  font-weight: bold;
  color: var(--home1-main-color);
  margin-bottom: 20px;
  font-family: sans-serif;
}

.offer-section-1 .image img {
  border-radius: 30px;
}

.cost-section-1 {
  background: #F4F8FC;
  position: relative;
  z-index: -9;
}

.cost-section-1 .left-content {
  max-width: 500px;
}

.cost-section-1 .left-content .custom-card {
  padding: 40px 20px;
  background: var(--white-color);
  margin-top: 50px;
  text-align: center;
}

.cost-section-1 .left-content .custom-card h2 {
  font-size: 72px;
  font-weight: bold;
  color: var(--home1-main-color);
  margin-bottom: 20px;
}

.service-section-1 .right-content {
  margin-left: 20px;
}

.service-section-1 .right-content .section-title {
  margin-bottom: 20px;
}

.service-section-1 .right-content .card-title-f {
  color: var(--home1-main-color);
  margin-top: 30px;
}

.service-section-1 .right-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}

.service-section-1 .right-content ul li {
  display: inline-block;
}

.service-section-1 .right-content ul li .custom-card {
  padding: 20px;
  background: #F4F8FC;
}

.service-section-1 .right-content ul li .custom-card .ammount {
  color: var(--home1-main-color);
  font-size: 50px;
  font-weight: bold;
  font-family: sans-serif;
}

.service-section-1 .right-content ul li .custom-card .ammount span {
  font-size: 20px;
}

.service-section-1 .right-content ul li:first-child {
  margin-right: 20px;
}

.pricing-section-1 .custom-card {
  background: #F4F8FC;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  /* Positions */
}

.pricing-section-1 .custom-card .cr {
  padding: 20px 55px;
  position: absolute;
  text-align: center;
  color: var(--white-color);
  background: var(--home1-main-color);
  overflow: hidden;
  -webkit-clip-path: polygon(61% 0, 100% 39%, 100% 81%, 17% 0);
          clip-path: polygon(61% 0, 100% 39%, 100% 81%, 17% 0);
  width: 130px;
  height: 130px;
  text-align: center;
}

.pricing-section-1 .custom-card .cr span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  text-align: center;
  padding-top: 10px;
}

.pricing-section-1 .custom-card .cr .basic {
  padding-top: 0;
}

.pricing-section-1 .custom-card .cr-top {
  top: 0;
}

.pricing-section-1 .custom-card .cr-right {
  right: 0;
}

.pricing-section-1 .custom-card .icon {
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 65px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.pricing-section-1 .custom-card .icon i::before {
  color: var(--home1-main-color);
  font-size: 24px;
}

.pricing-section-1 .custom-card ul {
  margin-top: 15px;
}

.pricing-section-1 .custom-card ul li {
  margin-bottom: 15px;
}

.pricing-section-1 .custom-card ul li i {
  padding: 10px;
  background: var(--white-color);
  border-radius: 50%;
  font-size: 12px;
  margin-right: 20px;
}

.pricing-section-1 .custom-card ul .f {
  opacity: .6;
}

.pricing-section-1 .custom-card h2 {
  font-size: 50px;
  color: var(--home1-main-color);
  margin-bottom: 10px;
  font-family: sans-serif;
  font-weight: 400;
}

.pricing-section-1 .custom-card h2 span {
  font-size: 20px;
}

.pricing-section-1 .custom-card .p {
  color: var(--home1-main-color);
  margin-bottom: 10px;
}

.pricing-section-1 .custom-card .icon-1 {
  background: #FFF2EA;
}

.pricing-section-1 .custom-card .icon-2 {
  background: #DDF5F1;
}

.pricing-section-1 .custom-card .icon-3 {
  background: #E5DEF6;
}

.pricing-section-1 .custom-card:hover {
  margin-top: -10px;
}

.faq-section-1 {
  background: url(../images/others/faq-bg.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
  padding-bottom: 80px;
}

.faq-section-1 .accordion-item {
  margin-bottom: 20px;
}

.faq-section-1 .accordion-body {
  padding: 19px 1.25rem;
  background-color: var(--white-color);
}

.faq-section-1 .accordion-button::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "+";
  font-size: 30px;
  background: var(--home1-main-color);
  color: var(--white-color);
  height: 60px;
  line-height: 60px;
  padding: 0 36px 0 20px;
  border-radius: 5px;
}

.faq-section-1 .accordion-button:not(.collapsed) {
  color: var(--home1-main-color);
  font-weight: 600;
  background-color: var(--white-color);
}

.faq-section-1 .accordion-button:not(.collapsed)::after {
  padding: 0 36px 0 20px;
  content: "-";
}

.faq-section-1 .accordion-button {
  padding: 0 0 0 15px;
  height: 60px;
  font-weight: 600;
  color: var(--black-color);
  background-color: var(--white-color);
}

.entertainment-section-1 .left-content {
  max-width: 540px;
  margin-right: 10px;
  margin-left: auto;
}

.entertainment-section-1 .left-content .section-title {
  margin-bottom: 20px;
}

.entertainment-section-1 .left-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.entertainment-section-1 .left-content ul li {
  display: inline-block;
  margin: 20px 0 10px;
}

.entertainment-section-1 .left-content ul li .card-title-f {
  margin-bottom: 6px;
}

.entertainment-section-1 .left-content ul li i::before {
  font-size: 50px;
  color: var(--home1-main-color);
  margin-right: 25px;
}

.entertainment-section-1 .left-content ul:last-child li {
  margin-bottom: 0;
}

.blog-section-1 .custom-card {
  border-radius: 25px;
  background: #EDF3FF;
  margin-bottom: 30px;
}

.blog-section-1 .custom-card img {
  border-radius: 25px;
}

.blog-section-1 .custom-card .text-content {
  padding: 30px;
}

.blog-section-1 .custom-card .text-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-section-1 .custom-card .text-content ul li {
  display: inline-block;
}

.blog-section-1 .custom-card .text-content ul li i {
  color: var(--home1-main-color);
  margin-right: 3px;
}

.blog-section-1 .custom-card .text-content ul li:first-child {
  margin-right: 20px;
}

.blog-section-1 .custom-card .text-content .card-title-f {
  margin: 15px 0;
}

.blog-section-1 .custom-card .text-content .card-title-f a {
  color: var(--black-color);
}

.blog-section-1 .custom-card .text-content .card-title-f a:hover {
  color: var(--home1-main-color);
}

.blog-section-1 .custom-card .text-content a {
  color: var(--home1-main-color);
  font-weight: 600;
  font-size: 18px;
}

.blog-section-1 .custom-card .text-content a span i {
  font-size: 12px;
}

.blog-section-1 .custom-card:hover {
  margin-top: -10px;
  background: var(--white-color);
  -webkit-box-shadow: 1px 1px 20px #d5dae6;
          box-shadow: 1px 1px 20px #d5dae6;
}

.testimonial-section-1 {
  background: #EDF3FF;
  border-radius: 40% 40% 0% 0;
}

.testimonial-section-1 .top-portion.text-center.pb-50 {
  padding-bottom: 0;
}

.testimonial-section-1 .quote-text {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
  padding: 40px;
}

.testimonial-section-1 .quote-text .quote-img-1 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.testimonial-section-1 .quote-text .quote-img-2 {
  position: absolute;
  right: 0;
  top: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.testimonial-section-1 .custom-card {
  max-width: 780px;
  background: var(--white-color);
  margin: 0 auto;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  z-index: 9;
}

.testimonial-section-1 .custom-card ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.testimonial-section-1 .custom-card li {
  display: inline-block;
}

.testimonial-section-1 .custom-card li img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 120px;
}

.testimonial-section-1 .custom-card li .p {
  font-size: 20px;
  margin-bottom: 5px;
}

.testimonial-section-1 .custom-card li .name {
  font-size: 16px;
  color: var(--home1-main-color);
}

.testimonial-section-1 .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 0px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  margin-top: 30px;
}

.testimonial-section-1 button.owl-dot {
  background: #7e57ff8a;
  margin: 0 7px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
}

.testimonial-section-1 button.owl-dot.active {
  background: var(--home1-main-color);
}

.home1-footer {
  background: url(../images/footer/footer-1.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
}

.home1-footer .row:first-child .section-title {
  color: var(--white-color);
}

.home1-footer .row:first-child .input-group {
  height: 55px;
  background: var(--white-color);
  border-radius: 5px;
}

.home1-footer .row:first-child .input-group input {
  border-radius: 5px;
  border-right: none;
}

.home1-footer .row:first-child .input-group button {
  background: var(--home1-main-color);
  height: 55px;
  top: 0;
  margin-right: 0px;
  border: none;
  padding: 0px 25px;
  border-radius: 5px;
  color: var(--white-color);
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
  text-transform: uppercase;
}

.home1-footer h5, .home1-footer p {
  color: var(--white-color);
}

.home1-footer .first-col, .home1-footer .second-col, .home1-footer .third-col, .home1-footer .last-col {
  margin-bottom: 20px;
}

.home1-footer .second-col {
  padding-left: 40px;
}

.home1-footer .card-title-f {
  color: var(--white-color);
  margin-bottom: 20px;
}

.home1-footer .first-col .p {
  margin-bottom: 5px;
}

.home1-footer .first-col ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home1-footer .first-col ul li {
  display: inline-block;
}

.home1-footer .first-col ul li:first-child {
  margin-right: 10px;
}

.home1-footer .first-col ul li:first-child i {
  color: var(--white-color);
  margin-top: 6px;
}

.home1-footer .first-col ul:last-child {
  margin-top: 9px;
}

.home1-footer .first-col .first-ul {
  margin-bottom: 4px;
}

.home1-footer .first-col .first-ul li p:first-child {
  font-family: sans-serif !important;
  font-size: 16px;
  font-weight: 500;
}

.home1-footer .last-col .social-icons i {
  color: var(--white-color);
  font-size: 20px;
  margin-right: 10px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.home1-footer .last-col .social-icons i:hover {
  color: var(--home1-main-color);
}

.home1-footer .copyright {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.322);
}

.home1-footer .copyright a {
  font-weight: 700;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.home1-footer .copyright a:hover {
  border-bottom: 1px solid var(--white-color);
  cursor: pointer;
}

/*================================================
Home 2
=================================================*/
.header-2 .language {
  margin-top: 1px;
}

.header-2 .main-nav-2 {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header-2 .main-nav-2 nav .navbar-nav .nav-item a {
  color: rgba(255, 255, 255, 0.767);
}

.header-2 .main-nav-2 nav .navbar-nav .nav-item a.active {
  color: var(--home2-main-color);
}

.header-2 .main-nav-2 .white-btn-circle {
  position: relative;
  top: -3px;
}

.header-2 .main-nav-2 nav .navbar-nav .nav-item {
  position: relative;
  padding: 26px 25px 25px 25px;
  margin: 0 0;
}

.header-2 .main-nav-2 nav .navbar-nav .nav-item i.fa.fa-angle-down {
  top: 30px;
  color: #fdfcfcbb;
  margin-left: 8px;
}

.header-2 .main-nav-2 nav .navbar-nav .nav-item .dropdown-menu {
  border-top: 3px solid var(--home2-main-color);
}

.header-2 .nice-select {
  color: var(--white-color);
}

.header-2 .nice-select option {
  color: var(--black-color) !important;
}

.header-2 .nice-select::after {
  color: var(--white-color) !important;
}

.banner-section-2 {
  background: url(../images/banner/banner-2-bg.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
}

.banner-section-2 .image-portion {
  position: relative;
}

.banner-section-2 .image-portion .shadow {
  position: absolute;
  left: -100px;
  top: -30px;
  -webkit-animation: spin 10s infinite linear;
          animation: spin 10s infinite linear;
  border-radius: 30% 50% 50% 50%;
}

.banner-section-2 .image-portion .banner-img {
  position: relative;
  z-index: 9;
}

.banner-section-2 .banner-text {
  max-width: 620px;
  margin-right: 50px;
  margin-left: auto;
  position: relative;
  z-index: 9;
}

.banner-section-2 .banner-text h1 {
  font-size: 60px;
  font-weight: bold;
  color: var(--white-color);
}

.banner-section-2 .banner-text p {
  margin: 20px 0 25px;
  font-size: 20px;
  color: var(--white-color);
}

.banner-section-2 .banner-content {
  position: relative;
  padding: 150px 0;
}

.banner-section-2 .banner-content .circle-shape-1 {
  position: absolute;
  top: 200px;
  left: 50px;
  -webkit-animation: circle-move-1 25s infinite linear;
          animation: circle-move-1 25s infinite linear;
}

.banner-section-2 .banner-content .circle-shape-2 {
  position: absolute;
  top: 80px;
  left: 50%;
  -webkit-animation: circle-move-2 30s infinite linear;
          animation: circle-move-2 30s infinite linear;
}

.banner-section-2 .banner-content .poligon-shape {
  position: absolute;
  bottom: 100px;
  left: 170px;
  -webkit-animation: circle-move-3  20s infinite linear;
          animation: circle-move-3  20s infinite linear;
}

.banner-section-2 .banner-content .long-line-shape-1 {
  position: absolute;
  top: 100px;
  left: 40%;
  -webkit-animation: line-move-1  13s infinite linear;
          animation: line-move-1  13s infinite linear;
}

.banner-section-2 .banner-content .long-line-shape-2 {
  position: absolute;
  bottom: 0;
  left: 40%;
  -webkit-animation: line-move-2  13s infinite linear;
          animation: line-move-2  13s infinite linear;
}

.banner-section-2 .banner-content .long-line-shape-3 {
  position: absolute;
  top: 40px;
  right: 50px;
  -webkit-animation: line-move-3  13s infinite linear;
          animation: line-move-3  13s infinite linear;
}

.banner-section-2 .banner-content .medium-line-shape-3 {
  position: absolute;
  bottom: 250px;
  right: 50px;
  -webkit-animation: line-move-4  13s infinite linear;
          animation: line-move-4  13s infinite linear;
}

.banner-section-2 .banner-content .small-line-shape-3 {
  position: absolute;
  top: 150px;
  left: 50%;
  -webkit-animation: line-move-5  13s infinite linear;
          animation: line-move-5  13s infinite linear;
}

.about-section-2 .right-content .top-p {
  color: var(--home2-main-color);
}

.about-section-2 .right-content .green-btn {
  margin-top: 10px;
}

.about-section-2 .left-content {
  margin-right: 20px;
  max-width: 620px;
  position: relative;
}

.about-section-2 .left-content img {
  max-width: 100%;
  border-radius: 20px 40% 20px 20px;
}

.about-section-2 .left-content .cirle {
  width: 200px;
  height: 200px;
  background: transparent;
  border: 60px solid #E3F4F1;
  position: absolute;
  left: 0px;
  bottom: -70px;
  z-index: 9;
  border-radius: 50%;
  -webkit-animation: zoomInOut 7s infinite linear;
          animation: zoomInOut 7s infinite linear;
}

.choose-us-section-2 .custom-card .icon i::before {
  color: var(--home2-main-color);
}

.counter-section-2 .counter {
  background: linear-gradient(45deg, rgba(1, 31, 174, 0.9) 2%, rgba(1, 31, 174, 0.9) 62%), url(../images/counter-bg.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
  border-radius: 25px;
}

.counter-section-2 .counter .custom-card {
  margin-bottom: 23px;
}

.counter-section-2 .counter .custom-card h2 {
  color: var(--white-color);
  font-size: 70px;
  font-weight: bold;
}

.counter-section-2 .counter .custom-card h2 span {
  margin-top: -2px;
}

.counter-section-2 .counter .custom-card .card-title-f {
  font-weight: 500;
  margin-top: 5px;
  color: var(--white-color);
}

.pricing-section-2 {
  background: #011FAE;
  position: relative;
}

.pricing-section-2 .section-title {
  color: var(--white-color);
}

.pricing-section-2 .custom-card {
  position: relative;
  z-index: 9;
}

.pricing-section-2 .custom-card h2 {
  font-size: 60px;
  font-weight: bold;
  color: var(--home2-main-color);
}

.pricing-section-2 .custom-card h5.card-title-f {
  margin: 15px 0 7px;
}

.pricing-section-2 .custom-card p.card-title-f {
  color: var(--home2-main-color);
  font-family: sans-serif;
  font-weight: 500;
}

.pricing-section-2 .custom-card .icon i::before {
  color: var(--home2-main-color);
}

.pricing-section-2 .shadow-1 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.pricing-section-2 .shadow-2 {
  position: absolute;
  top: 0;
  left: 0;
}

.pricing-section-2 .long-line-1 {
  position: absolute;
  top: 40px;
  left: 300px;
  -webkit-animation: line-1  10s infinite linear;
          animation: line-1  10s infinite linear;
}

.pricing-section-2 .long-line-2 {
  position: absolute;
  bottom: 50px;
  left: 40%;
  -webkit-animation: line-move-2  10s infinite linear;
          animation: line-move-2  10s infinite linear;
}

.pricing-section-2 .long-line-3 {
  position: absolute;
  top: 40px;
  right: 150px;
  -webkit-animation: line-move-3  10s infinite linear;
          animation: line-move-3  10s infinite linear;
}

.pricing-section-2 .small-line-1 {
  position: absolute;
  bottom: 250px;
  right: 50px;
  -webkit-animation: line-move-4  10s infinite linear;
          animation: line-move-4  10s infinite linear;
}

.pricing-section-2 .small-line-2 {
  position: absolute;
  bottom: 250px;
  right: 50px;
  -webkit-animation: line-move-5  10s infinite linear;
          animation: line-move-5  10s infinite linear;
}

.pricing-section-2 .medium-line-1 {
  position: relative;
  bottom: 0px;
  left: 40px;
  -webkit-animation: line-move-6  10s infinite linear;
          animation: line-move-6  10s infinite linear;
}

.pricing-section-2 .medium-line-2 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  -webkit-animation: line-move-7  10s infinite linear;
          animation: line-move-7  10s infinite linear;
}

.testimonial-section-2 {
  background: white;
  -webkit-clip-path: none;
          clip-path: none;
}

.testimonial-section-2 .row {
  margin-top: 40px;
}

.testimonial-section-2 .client-image {
  margin-right: 10px;
  margin-left: auto;
  position: relative;
  max-width: 530px;
}

.testimonial-section-2 .client-image .color-box {
  width: 530px;
  height: 530px;
  background: #02b86c8a;
  border-radius: 70px;
  position: absolute;
  left: -30px;
  top: 0px;
}

.testimonial-section-2 .client-image img {
  border-radius: 50px;
  position: relative;
  margin-top: 30px;
  max-width: 100%;
}

.testimonial-section-2 .custom-card:first-child {
  margin-bottom: 30px;
}

.testimonial-section-2 .custom-card {
  -webkit-box-shadow: 1px 1px 15px #dad6d6;
          box-shadow: 1px 1px 15px #dad6d6;
  padding: 25px;
  position: relative;
}

.testimonial-section-2 .custom-card li .name {
  color: var(--home2-main-color);
}

.testimonial-section-2 .custom-card .quote-img {
  position: absolute;
  bottom: 10px;
  right: 50px;
}

.contact-section-2 {
  background: #F4F8FC;
}

.contact-section-2 .left-content {
  margin-right: 20px;
}

.contact-section-2 .left-content p {
  margin: 20px 0 30px;
}

.contact-section-2 .left-content .per-item {
  margin-bottom: 20px;
}

.contact-section-2 .left-content .per-item .form-control {
  border: 1px solid var(--home2-main-color);
  padding: 20px;
}

.contact-section-2 .left-content .per-item input {
  height: 50px;
  border-radius: 30px;
}

.contact-section-2 .left-content .per-item textarea {
  height: 120px;
  border-radius: 30px;
}

.contact-section-2 .left-content .per-item label {
  margin-left: 10px;
  font-weight: 600;
}

.contact-section-2 .left-content .green-btn {
  width: 100%;
}

.contact-section-2 .contact-img img {
  border-radius: 60px;
}

.blog-section-2 .custom-card .text-content ul li i {
  color: var(--home2-main-color);
}

.blog-section-2 .custom-card .text-content a {
  color: var(--home2-main-color);
}

.blog-section-2 .custom-card .text-content .card-title-f a:hover {
  color: var(--home2-main-color);
}

.newsletter-section-2 .newsletter-content {
  background: #F4F8FC;
  border-radius: 60px 10px 10px 60px;
}

.newsletter-section-2 .newsletter-content .p {
  margin: 20px 0 30px;
}

.newsletter-section-2 .newsletter-content input {
  height: 50px;
  border-radius: 30px;
  border: 1px solid var(--home2-main-color);
  padding: 10px 20px;
  width: 100%;
}

.newsletter-section-2 .newsletter-content .form-control {
  margin-right: 40px;
}

.newsletter-section-2 .newsletter-content .green-btn {
  margin-left: 0px;
  width: 100%;
}

.newsletter-section-2 .newsletter-content .image {
  position: relative;
}

.newsletter-section-2 .newsletter-content .image img {
  border-radius: 60px;
  position: relative;
  z-index: 9;
}

.newsletter-section-2 .newsletter-content .image .green-box {
  width: 560px;
  height: 560px;
  background: #02b86c8e;
  position: absolute;
  left: -30px;
  top: 30px;
  border-radius: 60px;
}

.newsletter-section-2 .newsletter-content .top-portion {
  max-width: 450px;
  margin-left: 30px;
  margin-right: auto;
}

.service-section-2 {
  position: relative;
}

.service-section-2 .left-content {
  max-width: 520px;
  position: relative;
  z-index: 9;
}

.service-section-2 .left-content p {
  margin: 20px 0 25px;
}

.service-section-2 .image {
  position: relative;
  padding: 40px 40px 0;
  max-width: 550px;
  z-index: 9;
}

.service-section-2 .image .s-img {
  position: relative;
  z-index: 9;
  border-radius: 20px;
}

.service-section-2 .image .cube-shape-1 {
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-animation: cube-rotate 10s infinite linear;
          animation: cube-rotate 10s infinite linear;
}

.service-section-2 .image .cube-shape-2 {
  position: absolute;
  bottom: 0px;
  right: 0px;
  -webkit-animation: cube-rotate 10s infinite linear;
          animation: cube-rotate 10s infinite linear;
}

.service-section-2 .border-shape-1 {
  position: absolute;
  bottom: 100px;
  left: 10%;
}

.service-section-2 .border-shape-2 {
  position: absolute;
  bottom: 100px;
  right: 10%;
}

.service-section-2 .navtab-option {
  padding: 0 0 0 40px;
  border-right: 10px solid var(--home2-main-color);
  border-left: 10px solid var(--home2-main-color);
}

.service-section-2 .navtab-option .nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 999;
}

.service-section-2 .navtab-option .nav .nav-item a {
  border: 1px solid var(--home2-main-color);
  border-radius: 30px;
  padding: 12px 30px;
  margin-right: 10px;
}

.service-section-2 .navtab-option .nav .nav-item a:hover, .service-section-2 .navtab-option .nav .nav-item a.active {
  background: var(--home2-main-color) !important;
  color: var(--white-color);
}

.faq-section-2 {
  padding-bottom: 100px;
}

.faq-section-2 .accordion-item {
  margin-bottom: 15px;
  border-radius: 15px;
}

.faq-section-2 button:not(:disabled) {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px  !important;
}

.faq-section-2 .accordion-collapse {
  border-radius: 0 0 15px 15px;
}

.faq-section-2 .accordion-collapse .accordion-button {
  color: var(--home2-main-color);
  border-radius: 15px;
}

.faq-section-2 .accordion-button:not(.collapsed) {
  color: var(--home2-main-color);
  font-weight: 600;
  background-color: transparent;
}

.faq-section-2 .accordion-button:not(.collapsed) .accordion-button {
  color: var(--home2-main-color);
  border-radius: 15px;
}

.faq-section-2 .accordion-button {
  border-radius: 15px;
  border: 1px solid  #27cb8479;
}

.faq-section-2 .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 15px;
}

.faq-section-2 .accordion-body {
  border-radius: 0 0 15px 15px;
  border: 1px solid #27cb8479  !important;
}

.faq-section-2 .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border: 1px solid #27cb8479;
}

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

.home2-footer {
  background: url(../images/footer/footer-2.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
}

.home2-footer .shadow-2 {
  position: absolute;
  top: 0;
  left: 0;
}

.home2-footer .shadow-1 {
  position: absolute;
  bottom: 0;
  right: 0;
}

/*================================================
Home 3
=================================================*/
.header-3 .main-nav-3 nav .navbar-nav .nav-item a.active {
  color:#90c6ff;
}

.header-3 .main-nav-3 nav .navbar-nav .nav-item .dropdown-menu {
  border-top: 3px solid var(--home3-hover-color);
}

.header-3 .white-btn-rectangle {
  position: relative;
  top: -3px;
}

.banner-section-3 {
  background: #636363;
}

.banner-section-3 .banner-content {
  padding: 70px 0;
}

.choose-us-section-3 .custom-card {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.choose-us-section-3 .custom-card .icon i::before {
  color: #023873;
}

.choose-us-section-3 .custom-card .orange-btn {
  color: var(--white-color) !important;
}

.choose-us-section-3 .custom-card:hover {
  background: #023873;
}

.choose-us-section-3 .custom-card:hover .icon i::before {
  color: var(--white-color);
}

.choose-us-section-3 .custom-card:hover p, .choose-us-section-3 .custom-card:hover .card-title-f a {
  color: var(--white-color);
}

.choose-us-section-3 .custom-card:hover .orange-btn {
  background: var(--white-color);
  color: var(--black-color) !important;
}

.home3-service-section .custom-card .card-title-f {
  margin-bottom: 15px;
}

.home3-service-section .custom-card ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home3-service-section .custom-card ul li {
  display: inline-block;
}

.home3-service-section .custom-card ul li i::before {
  font-size: 50px;
  color:#023873;
  margin-right: 20px;
}

.home3-service-section .custom-card:hover {
  background: #023873;
}

.home3-service-section .custom-card:hover .card-title-f a, .home3-service-section .custom-card:hover p {
  color: var(--white-color);
}

.home3-service-section .custom-card:hover ul li i::before {
  color: var(--white-color);
}

.home3-service-section .custom-card:hover .orange-btn {
  background: var(--white-color);
  color: var(--black-color);
}

.home3-about-section {
  /* background: url(../images/about/about-img-3.png) center center no-repeat; */
  background-size: cover;
  width: 100%;
}

.home3-about-section .image {
  margin-left: auto;
  margin-right: 0;
  max-width: 560px;
  position: relative;
}

.home3-about-section .image .orange-box {
  position: absolute;
  width: 530px;
  height: 620px;
  left: -30px;
  top: -30px;
  /* background: #ff45288a; */
}

.home3-about-section .image img {
  position: relative;
  z-index: 9;
}

.home3-about-section .top-portion {
  margin-left: 0;
  margin-right: auto;
}

.home3-about-section .top-portion .section-title {
  margin: 10px 0 20px;
}

.home3-about-section .top-portion ul {
  margin-bottom: 0px;
  max-width: 425px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home3-about-section .top-portion ul li {
  margin-bottom: 10px;
  display: inline-block;
}

.home3-about-section .top-portion ul li i {
  color: var(--home3-hover-color);
  margin-right: 7px;
}

.home3-about-section .top-portion .orange-btn {
  margin-top: 15px;
}

.pricing-section-3 {
  background: #F5F5F5;
}

.pricing-section-3 .custom-card {
  text-align: center;
  background: var(--white-color);
  border-radius: 0;
}

.pricing-section-3 .custom-card .upper-content {
  text-align: center;
}

.pricing-section-3 .custom-card .upper-content .icon {
  margin: 0 auto 30px;
}

.pricing-section-3 .custom-card .upper-content .icon i::before {
  color: var(--home3-hover-color);
}

.pricing-section-3 .custom-card .upper-content h2 {
  margin: 15px 0 0;
  color: var(--home3-hover-color);
}

.pricing-section-3 .custom-card ul {
  border-bottom: 1px solid #ff45282a;
}

.pricing-section-3 .custom-card .orange-btn {
  margin-top: 20px;
}

.pricing-section-3 .custom-card .cr {
  background: var(--home3-hover-color);
}

.features-section-3 .custom-card {
  padding: 0 15px;
  margin-bottom: 30px;
  background: var(--white-color);
}

.features-section-3 .custom-card .icon i::before {
  color: var(--home3-hover-color);
  font-size: 55px;
}

.features-section-3 .custom-card .text {
  margin-top: 25px;
}

.features-section-3 .custom-card .card-title-f {
  margin-bottom: 10px;
}

.testimonial-section-3 {
  background: #F5F5F5;
}

.testimonial-section-3 .section-title {
  margin: 0px 0 30px;
}

.testimonial-section-3 .top-portion {
  margin-right: 30px;
}

.testimonial-section-3 .top-portion .custom-card {
  border-bottom: 1px solid #ff45283d;
  padding-bottom: 20px;
}

.testimonial-section-3 .top-portion .custom-card ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.testimonial-section-3 .top-portion .custom-card ul li {
  display: inline-block;
}

.testimonial-section-3 .top-portion .custom-card ul li img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 120px;
}

.testimonial-section-3 .top-portion .custom-card ul li .name {
  margin-bottom: 0;
}

.testimonial-section-3 .top-portion .custom-card ul li .name, .testimonial-section-3 .top-portion .custom-card ul li .post {
  color: var(--home3-hover-color);
}

.testimonial-section-3 .top-portion .custom-card ul li .post {
  margin-left: 10px;
}

.testimonial-section-3 .top-portion .owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.testimonial-section-3 .top-portion .owl-carousel .owl-nav button.owl-next, .testimonial-section-3 .top-portion .owl-carousel .owl-nav button.owl-prev {
  background: var(--home3-hover-color);
  color: var(--white-color);
  padding: 0px 20px !important;
}

.testimonial-section-3 .top-portion .owl-carousel .owl-nav button.owl-next span, .testimonial-section-3 .top-portion .owl-carousel .owl-nav button.owl-prev span {
  font-size: 40px;
}

.testimonial-section-3 .top-portion .owl-carousel .owl-nav button.owl-prev {
  margin-right: 10px;
}

.testimonial-section-3 .right-content {
  position: relative;
}

.testimonial-section-3 .right-content .orange-box {
  width: 500px;
  height: 500px;
  background: #ff45288e;
  position: absolute;
  right: -30px;
  top: 35px;
  border-radius: 60px;
}

.testimonial-section-3 .right-content img {
  position: relative;
  z-index: 9;
}

.faq-section-3 {
  background: var(--white-color);
  padding-bottom: 100px;
}

.faq-section-3 .image {
  max-width: 540px;
  max-height: auto;
  margin-right: 30px;
  margin-left: auto;
}

.faq-section-3 .accordion-button:not(.collapsed) {
  color: var(--home3-hover-color);
}

.faq-section-3 .accordion-collapse {
  border: none;
  border-width: 0 1px;
}

.faq-section-3 .accordion-header {
  margin-bottom: 0;
  border-bottom: 1px solid #ff45285b;
}

.faq-section-3 .accordion-button {
  background-color: #fff7f7;
  border: none;
  padding-top: 2px;
}

.faq-section-3 .accordion-button {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.faq-section-3 .accordion-item {
  -webkit-box-shadow: 1px 1px 10px #dbd6d6;
          box-shadow: 1px 1px 10px #dbd6d6;
}

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

.faq-section-3 .accordion-button::after {
  background: transparent;
  color: var(--home3-hover-color);
}

.newsletter-section-3 {
  background: var(--home3-main-color);
  position: relative;
}

.newsletter-section-3 .top-portion {
  max-width: 700px;
}

.newsletter-section-3 .section-title, .newsletter-section-3 p {
  color: var(--white-color);
}

.newsletter-section-3 .section-title {
  margin: 0px 0 30px;
}

.newsletter-section-3 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.newsletter-section-3 ul li {
  display: inline-block;
}

.newsletter-section-3 ul li .orange-btn:hover {
  background: var(--white-color);
  color: var(--home3-hover-color);
}

.newsletter-section-3 ul li:first-child {
  margin-right: 20px;
}

.newsletter-section-3 .arrow-shape {
  position: absolute;
  bottom: 35px;
  right: 23%;
}

.newsletter-section-3 .lines-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}

.newsletter-section-3 .lines-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
}

.blog-section-3 .custom-card .text-content ul li i {
  color: var(--home3-hover-color);
}

.blog-section-3 .custom-card .text-content a {
  color: #fac300;
}

.blog-section-3 .custom-card .text-content .card-title-f a:hover {
  color: var(--home3-hover-color);
}

.shop-section-3 .custom-card .card-title-f {
  margin: 20px 0 15px;
}

.shop-section-3 .custom-card p {
  font-family: sans-serif;
}

.shop-section-3 .custom-card p span {
  color: var(--home3-hover-color);
  margin-right: 7px;
}

.shop-section-3 .custom-card .star-icons {
  color: var(--home3-hover-color);
}

.shop-section-3 .custom-card .image {
  position: relative;
}

.shop-section-3 .custom-card .overlay-icon {
  position: absolute;
  bottom: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 230px;
}

.shop-section-3 .custom-card .overlay-icon i {
  height: 0px;
  width: 0px;
  line-height: 20px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid var(--home3-hover-color);
  color: var(--home3-hover-color);
  font-size: 0px;
  visibility: hidden;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.shop-section-3 .custom-card .overlay-icon i:hover {
  background: var(--home3-hover-color);
  color: var(--white-color);
}

.shop-section-3 .custom-card .overlay-icon .orange-btn {
  padding: 0;
  font-size: 0;
  margin-right: 10px;
}

.shop-section-3 .custom-card .overlay-icon .icon {
  margin-bottom: 5px;
  display: inline-block;
}

.shop-section-3 .custom-card:hover .overlay-icon i {
  height: 45px;
  width: 45px;
  line-height: 45px;
  font-size: 20px;
  visibility: visible;
}

.shop-section-3 .custom-card:hover .overlay-icon .orange-btn {
  padding: 12px 20px;
  font-size: 16px;
}

.contact-section-3 .contact-img {
  position: relative;
}

.contact-section-3 .contact-img img {
  border-radius: 0px;
  position: relative;
  z-index: 9;
}

.contact-section-3 .contact-img .orange-box {
  height: 600px;
  width: 400px;
  position: absolute;
  right: -30px !important;
  top: 30px;
  background: #ff452877;
}

.contact-section-3 .left-content .per-item input, .contact-section-3 .left-content .per-item textarea {
  border-radius: 0;
}

.contact-section-3 .left-content .per-item .form-control {
  border: 1px solid var(--home3-hover-color);
}

.contact-section-3 .left-content .orange-btn {
  width: 100%;
}

.home3-footer {
  background: #013973;
}

/*================================================
Inner page banner
=================================================*/
.inner-page-header .main-nav {
  background: var(--white-color);
}

.inner-page-header .main-nav nav .navbar-nav .nav-item {
  padding: 25px 15px 25px 10px;
}

.inner-page-header .main-nav nav .navbar-nav .nav-item a.active {
  color: var(--home3-hover-color);
}

.inner-page-header .main-nav .orange-btn {
  position: relative;
  top: -3px;
}

/*================================================
About page
=================================================*/
/* .inner-banner {
  background-image: url(../images/inner-banners/1.jpg);
  padding: 206px 0 130px;
} */

.inner-banner{
  background-image: url(../images/inner-banners/1.jpg);
  padding: 185px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.inner-banner2{
  background-image: url(../images/inner-banners/2.jpg);
  padding: 185px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.inner-banner3{
  background-image: url(../images/inner-banners/3.jpg);
  padding: 185px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.inner-banner4{
  background-image: url(../images/inner-banners/4.jpg);
  padding: 185px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.inner-banner5{
  background-image: url(../images/inner-banners/5.jpg);
  padding: 185px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.inner-banner6{
  background-image: url(../images/inner-banners/6.jpg);
  padding: 185px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width:320px) and (max-width:424px) {
  .inner-banner{
    background-image: url(../images/inner-banners/1.jpg);
    padding: 0px!important;
    
  }
  
  .inner-banner2{
    background-image: url(../images/inner-banners/2.jpg);
    padding: 0px!important;
  
  }
  
  .inner-banner3{
    background-image: url(../images/inner-banners/3.jpg);
    padding: 0px!important;
   
  }
  
  .inner-banner4{
    background-image: url(../images/inner-banners/4.jpg);
    padding: 0px !important;
  
  }
  
  .inner-banner5{
    background-image: url(../images/inner-banners/5.jpg);
    padding: 0px!important;

  }
  
  .inner-banner6{
    background-image: url(../images/inner-banners/6.jpg);
    padding: 0px!important;
   
  }
}


@media screen and (min-width:425px) and (max-width:767px) {
  .inner-banner{
    background-image: url(../images/inner-banners/1.jpg);
    padding: 17px!important;
    
  }
  
  .inner-banner2{
    background-image: url(../images/inner-banners/2.jpg);
    padding: 17px!important;
  
  }
  
  .inner-banner3{
    background-image: url(../images/inner-banners/3.jpg);
    padding: 17px!important;
   
  }
  
  .inner-banner4{
    background-image: url(../images/inner-banners/4.jpg);
    padding: 17px !important;
  
  }
  
  .inner-banner5{
    background-image: url(../images/inner-banners/5.jpg);
    padding: 17px!important;

  }
  
  .inner-banner6{
    background-image: url(../images/inner-banners/6.jpg);
    padding:17px!important;
   
  }
}

@media screen and (min-width:768px){
  .inner-banner{
    background-image: url(../images/inner-banners/1.jpg);
    padding: 69px!important;
    
  }
  
  .inner-banner2{
    background-image: url(../images/inner-banners/2.jpg);
    padding: 69px!important;
  
  }
  
  .inner-banner3{
    background-image: url(../images/inner-banners/3.jpg);
    padding: 69px!important;
   
  }
  
  .inner-banner4{
    background-image: url(../images/inner-banners/4.jpg);
    padding: 69px !important;
  
  }
  
  .inner-banner5{
    background-image: url(../images/inner-banners/5.jpg);
    padding: 69px!important;

  }
  
  .inner-banner6{
    background-image: url(../images/inner-banners/6.jpg);
    padding:69px!important;
   
  }
}


@media screen and (min-width:1024px){
  .inner-banner{
    background-image: url(../images/inner-banners/1.jpg);
    padding: 109px!important;
    
  }
  
  .inner-banner2{
    background-image: url(../images/inner-banners/2.jpg);
    padding: 109px!important;
  
  }
  
  .inner-banner3{
    background-image: url(../images/inner-banners/3.jpg);
    padding: 109px!important;
   
  }
  
  .inner-banner4{
    background-image: url(../images/inner-banners/4.jpg);
    padding: 109px !important;
  
  }
  
  .inner-banner5{
    background-image: url(../images/inner-banners/5.jpg);
    padding: 109px!important;

  }
  
  .inner-banner6{
    background-image: url(../images/inner-banners/6.jpg);
    padding:109px!important;
   
  }
}

@media screen and (min-width:1366px){
  .inner-banner{
    background-image: url(../images/inner-banners/1.jpg);
    padding: 185px!important;
    
  }
  
  .inner-banner2{
    background-image: url(../images/inner-banners/2.jpg);
    padding: 185px!important;
  
  }
  
  .inner-banner3{
    background-image: url(../images/inner-banners/3.jpg);
    padding: 185px!important;
   
  }
  
  .inner-banner4{
    background-image: url(../images/inner-banners/4.jpg);
    padding: 185px !important;
  
  }
  
  .inner-banner5{
    background-image: url(../images/inner-banners/5.jpg);
    padding: 185px!important;

  }
  
  .inner-banner6{
    background-image: url(../images/inner-banners/6.jpg);
    padding:185px!important;
   
  }
}


.inner-banner h1 {
  font-weight: bold;
  font-size: 45px;
  margin-bottom: 15px;
}

.inner-banner p {
  font-size: 18px;
  font-weight: 600;
}

.about-faq .accordion-button::after {
  background: var(--home3-hover-color);
}

.about-faq .accordion-button:not(.collapsed) {
  color: var(--home3-hover-color);
}

.about-section {
  background: var(--white-color);
}

.about-service .right-content .card-title-f {
  color: var(--home3-hover-color);
}

.about-service .right-content ul li .custom-card .ammount {
  color: var(--home3-hover-color);
}

.about-entertainment .left-content {
  margin-right: auto;
  margin-left: 10px;
}

.about-entertainment .left-content ul li i::before {
  color: var(--home3-hover-color);
}

.testimonial-section .custom-card li .name {
  color: var(--home3-hover-color);
}

.testimonial-section .client-image .color-box {
  background: #ff452862;
}

.inner-page-footer .row:first-child .input-group button {
  background: var(--home3-hover-color);
}

/*================================================
Service page
=================================================*/
.service-section .custom-card .text .a {
  color: var(--home3-hover-color);
}

.service-section .custom-card .icon i::before {
  color: var(--home3-hover-color);
}

.faq-section {
  background: #F4F8FC;
  padding-bottom: 100px;
}

.faq-section .accordion-button {
  background-color: var(--white-color);
}

.home3-team-section .top-section {
  max-width: 440px;
  margin: 0 auto;
}

.home3-team-section .custom-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.home3-team-section .custom-card img {
  border-radius: 30px;
}

.home3-team-section .custom-card .overlay-text {
  position: absolute;
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white-color);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  border-radius: 25px;
  border-bottom: 3px solid var(--home3-hover-color);
}

.home3-team-section .custom-card .overlay-text .text-content {
  position: relative;
  top: 60%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  visibility: hidden;
  width: 100%;
  text-align: center;
}

.home3-team-section .custom-card .overlay-text .text-content p {
  margin: 0;
}

.home3-team-section .custom-card .overlay-text .text-content h5, .home3-team-section .custom-card .overlay-text .text-content p, .home3-team-section .custom-card .overlay-text .text-content i {
  color: var(--black-color);
}

.home3-team-section .custom-card .overlay-text .text-content .card-title {
  margin-bottom: 0px;
}

.home3-team-section .custom-card:hover .overlay-text {
  top: 70%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.home3-team-section .custom-card:hover .overlay-text .text-content {
  visibility: visible;
}

.contact-section {
  background: var(--white-color);
}

.contact-section .contact-img img {
  border-radius: 50px;
}

.contact-section .li-2 a {
  font-family: sans-serif;
}

.contact-section .left-content .per-item .form-control {
  background: #F4F8FC;
}

/*================================================
Service details page
=================================================*/
.service-details-section .dp {
  margin-bottom: -10px;
}

.service-details-section .search-box {
  padding: 20px;
  border: 1px solid #dbd9d9a4;
  border-radius: 5px;
  margin-bottom: 30px;
}

.service-details-section .search-box input {
  background: #F4F8FC;
  border-radius: 5px;
  height: 50px;
}

.service-details-section .search-box button {
  border-left: none;
  border: 1px solid #ff452834;
  background: #F4F8FC;
  border-radius: 5px;
}

.service-details-section .search-box button i {
  color: #FF4328;
}

.service-details-section .card-title-f {
  margin-bottom: 15px;
}

.service-details-section .service-items {
  padding: 20px;
  border: 1px solid #e0deddcc;
  border-radius: 5px;
}

.service-details-section .service-items p {
  padding: 10px;
  border: 1px solid #ff452863;
  background: #F4F8FC;
  border-radius: 5px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.service-details-section .service-items p i {
  font-size: 14px;
  margin-right: 10px;
}

.service-details-section .service-items p:hover {
  background: var(--home3-hover-color);
}

.service-details-section .service-items p:hover a, .service-details-section .service-items p:hover i {
  color: var(--white-color);
}

.service-details-section .img-box {
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(255, 149, 186, 0.3) 0%, rgba(255, 52, 123, 0.7) 98%), url(../images/service/service-details-img-2.html) center center no-repeat;
  background-size: cover;
  width: 100%;
  padding: 140px 0 40px 30px;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.service-details-section .img-box h2 {
  color: var(--white-color);
  font-size: 40px;
  font-weight: bold;
}

.service-details-section .img-box p {
  color: var(--white-color);
  font-size: 20px;
}

.service-details-section .orange-button {
  padding: 20px;
  border: 1px solid #e0deddcc;
  border-radius: 5px;
}

.service-details-section .orange-button .orange-btn {
  width: 100%;
}

.service-details-section .orange-button .orange-btn span {
  margin-left: 10px;
}

.service-details-section .right-content .top {
  margin-bottom: 30px;
}

.service-details-section .right-content .section-title {
  margin-bottom: 15px;
}

.service-details-section .right-content img {
  margin-bottom: 15px;
}

.service-details-section .right-content .img-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service-details-section .right-content .img-text .img-2 {
  max-width: 350px;
  max-height: 400px;
  border-radius: 30px;
  margin-right: 20px;
}

.service-details-section .right-content .img-text .p {
  display: inline-block;
}

/*================================================
Shop page
=================================================*/
.shop-section .custom-card {
  margin-bottom: 25px;
  position: relative;
}

.shop-section .custom-card .image {
  overflow: hidden;
  position: relative;
}

.shop-section .custom-card .overlay-icon {
  bottom: 135px;
}

/*================================================
Shop details page
=================================================*/
.shop-details p span {
  color: var(--home3-hover-color);
  margin-right: 10px;
}

.shop-details .card-title-f {
  margin-top: 15px;
}

.shop-details .num {
  font-family: sans-serif !important;
}

.shop-details .ul-c {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin: 10px 0 25px;
}

.shop-details .ul-c li {
  display: inline-block !important;
}

.shop-details .ul-c li:first-child {
  margin-right: 20px;
}

.shop-details .ul-c p {
  margin-bottom: 0;
}

.shop-details .ul-c .nice-select {
  margin-top: 10px;
  border: 1px solid #FF4328;
  padding-top: 0px;
  line-height: 41px;
}

.shop-details .ul-c .qty {
  margin-top: 10px;
  border: 1px solid #FF4328;
  padding: 8px;
  display: inline-block;
  border-radius: 5px;
  font-family: sans-serif !important;
}

.shop-details .ul-c .nice-select:after {
  margin-top: -6px;
}

.shop-details .image-section .card-title {
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 18px;
}

.shop-details .image-section .social-icons {
  margin-left: 20px;
}

.shop-details .image-section .social-icons i {
  font-size: 20px;
  margin-right: 10px;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 7px;
  background: var(--white-color);
  -webkit-box-shadow: 0px 8px 15px #dbd7d7;
          box-shadow: 0px 8px 15px #dbd7d7;
}

.shop-details .image-section .social-icons .fa-facebook-f {
  color: #3368C6;
}

.shop-details .image-section .social-icons .fa-google-plus-g {
  color: #dd0404;
}

.shop-details .image-section .social-icons .fa-whatsapp {
  color: green;
}

.shop-details .image-section .social-icons .fa-twitter {
  color: #537fca;
}

.shop-details .icon-section .card-title {
  margin-top: 20px;
  margin-bottom: 0 !important;
  font-size: 18px;
}

.shop-details .icon-section .social-icons {
  margin-left: 20px;
}

.shop-details .icon-section .social-icons i {
  font-size: 20px;
  margin-right: 15px;
}

.shop-details .icon-section .social-icons .fa-facebook-f {
  color: #3368C6;
}

.shop-details .icon-section .social-icons .fa-google-plus-g {
  color: #dd0404;
}

.shop-details .icon-section .social-icons .fa-instagram {
  color: #ec5903;
}

.shop-details .top-section {
  text-align: left;
  padding-bottom: 0;
  padding-left: 20px;
}

.shop-details .section-title {
  margin-bottom: 15px;
}

.shop-details ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.shop-details ul li {
  display: inline-block;
}

.shop-details .card-title {
  margin-bottom: 15px;
}

.shop-details .fa-star {
  color: #FDB923;
}

.shop-details .ul-one {
  margin: 15px 0;
}

.shop-details .ul-one li {
  margin-right: 30px;
}

.shop-details .ul-one li .bold {
  font-weight: bold;
}

.shop-details .ul-one li .a {
  color: var(--home2-main-color);
}

.shop-details .ul-two {
  margin: 15px 0 25px;
}

.shop-details .ul-two li:last-child {
  margin-left: 0px;
}

.shop-details .ul-two .reactangle-blue-btn {
  margin-left: 30px;
}

.shop-details .ul-two .nice-number {
  border: none;
  border-radius: 5px;
  margin-right: 10px;
}

.shop-details .ul-two .nice-number button {
  background: #f5f5f5;
  padding: 8px 20px;
  font-size: 20px;
  color: var(--home3-hover-color);
  border: none;
  font-weight: bold;
}

.shop-details .ul-two .nice-number input {
  border: none;
  background: #f5f5f5;
}

.shop-details .ul-two .nice-number button:first-child {
  border-right: none;
}

.shop-details .ul-two .nice-number button:last-child {
  border-left: none;
}

.shop-details .date li {
  background: #f5f5f5;
  border-radius: 5px;
  height: 70px;
  width: 70px;
  padding-top: 15px;
  text-align: center;
  margin-right: 10px;
}

.shop-details .date li h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--font-color);
}

.quick-navtab .comment-card {
  background: #F7F5FA;
  padding: 30px 30px;
  margin: 30px 0 0;
  border-radius: 20px;
}

.quick-navtab .comment-card .card-title-f {
  margin-bottom: 15px;
}

.quick-navtab .comment-card .doctors-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.quick-navtab .comment-card .doctors-comment img {
  width: 200px;
  height: auto;
  border-radius: 50%;
  border: 1px solid #e2dede;
}

.quick-navtab .comment-card .doctors-comment .card-title {
  margin-top: 3px;
}

.quick-navtab .comment-card .doctors-comment .name {
  font-size: 18px;
  font-weight: 500;
  margin-top: 6px;
}

.quick-navtab .comment-card .doctors-comment li {
  display: inline-block;
}

.quick-navtab .comment-card .doctors-comment li p {
  margin-bottom: 10px;
}

.quick-navtab .comment-card .doctors-comment li:first-child {
  margin-right: 15px;
  color: var(--home3-hover-color);
}

.quick-navtab .comment-card .reply li i {
  color: var(--home3-hover-color);
}

.quick-navtab .comment-card .reply li:first-child {
  margin-right: 30px;
  font-weight: bold;
}

.quick-navtab .comment-card .reply li:nth-child(2) {
  margin-right: 40px;
}

.quick-navtab .comment-form .comment {
  margin-top: 20px;
  padding: 30px;
  background: #F7F5FA;
  border-radius: 20px;
}

.quick-navtab .comment-form .comment input {
  margin: 0px 0 15px;
}

.quick-navtab .comment-form .comment textarea {
  margin-bottom: 15px;
  height: 150px;
}

.quick-navtab .comment-form .comment .form-control {
  border: 1px solid #ff45287c;
}

.quick-navtab .right-content {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(24%, rgba(0, 0, 0, 0.6)), color-stop(72%, rgba(0, 0, 0, 0.6))), url(../images/service/service-2.html) center center no-repeat;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 24%, rgba(0, 0, 0, 0.6) 72%), url(../images/service/service-2.html) center center no-repeat;
  background-size: cover;
  width: 100%;
  margin-top: 30px;
  border-radius: 25px;
}

.quick-navtab .right-content .texts {
  padding: 215px 50px;
}

.quick-navtab .right-content .texts h2, .quick-navtab .right-content .texts p {
  color: var(--white-color);
}

.quick-navtab .right-content .texts h2 {
  margin-bottom: 15px;
}

.quick-navtab .nav {
  text-align: center;
  padding-left: 0;
  margin-bottom: 40px;
  list-style-type: none;
  display: block;
}

.quick-navtab .nav .nav-item {
  display: inline-block;
  margin-left: 15px;
  margin-right: 15px;
  border: none;
}

.quick-navtab .nav .nav-item .nav-link {
  color: #cccccc;
  border: none;
  border-bottom: 1px solid #eeeeee;
  padding: 0;
  background-color: transparent;
  position: relative;
  padding-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}

.quick-navtab .nav .nav-item .nav-link.active {
  color: var(--blackColor);
}

.quick-navtab .nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--home3-hover-color);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  bottom: -2px;
}

.quick-navtab .nav .nav-item .nav-link.active::before {
  width: 100%;
}

.quick-navtab .nav {
  margin-bottom: 20px;
}

/*================================================
Cart page
=================================================*/
.cart-section .table > :not(caption) > * > * {
  background: #F4F8FC;
  border-bottom-width: 0px;
  padding: 15px;
}

.cart-section .table {
  margin-bottom: 30px;
}

.cart-section .table td {
  vertical-align: middle;
}

.cart-section .empty {
  margin-top: 50px;
}

.cart-section .empty p {
  margin-top: 20px;
}

.cart-section .nice-number {
  border: 1px solid #ff45281a;
  border-radius: 5px;
}

.cart-section .nice-number button {
  background: var(--white-color);
  padding: 5px 10px;
  font-size: 20px;
  color: var(--home3-hover-color);
  border: none;
  font-weight: bold;
}

.cart-section .nice-number input {
  border: none;
}

.cart-section .nice-number button:first-child {
  border-right: none;
}

.cart-section .nice-number button:last-child {
  border-left: none;
}

/*================================================
Account page
=================================================*/
.account-section .login-box {
  padding: 50px;
  background: #F4F8FC;
}

.account-section .login-box .card-title-f {
  margin-bottom: 30px;
}

.account-section .login-box .login-form {
  margin-bottom: 20px;
}

.account-section .login-box .login-form .form-control {
  margin-bottom: 20px;
  height: 50px;
}

.account-section .login-box .login-form input {
  border: 1px solid #ff452896;
}

.account-section .login-box .button .orangbtn {
  margin-bottom: 20px;
}

.account-section .login-box .button .orangbtn .orange-btn {
  font-weight: 600;
}

.account-section .login-box .button a {
  color: var(--home3-hover-color);
  font-size: 18px;
  font-weight: 600;
}

.account-section .login-box .button a:hover {
  border-bottom: 1px solid var(--home3-hover-color);
}

/*================================================
Checkout page
=================================================*/
.checkout-section .left-content {
  padding: 40px 20px;
  background: #F4F8FC;
  border-radius: 25px;
}

.checkout-section .left-content .top-portion {
  margin-bottom: 20px;
}

.checkout-section .left-content .top-portion .card-title-f {
  display: inline-block;
}

.checkout-section .left-content .top-portion span {
  float: right;
}

.checkout-section .left-content .form-control {
  border: 1px solid #ff45288a;
}

.checkout-section .left-content input {
  height: 50px;
  margin-bottom: 15px;
}

.checkout-section .left-content textarea {
  height: 120px;
}

.checkout-section .right-content {
  padding: 40px 20px;
  background: #F4F8FC;
  border-radius: 25px;
}

.checkout-section .right-content .form-control {
  border: 1px solid #ff45288a;
}

.checkout-section .right-content p a {
  color: var(--home3-hover-color);
}

.checkout-section .right-content input {
  height: 50px;
}

.checkout-section .right-content .empty-cart {
  margin: 40px 0;
}

.checkout-section .right-content .empty-cart p {
  margin-top: 20px;
}

.wishlist-section .table {
  margin-bottom: 0;
}

/*================================================
Blog details page
=================================================*/
.blog-details-section .comment-card {
  padding: 30px 30px;
}

.blog-details-section .comment-card ul {
  margin-bottom: 0;
}

.blog-details-section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.blog-details-section ul li {
  display: inline-block;
}

.blog-details-section ul li i {
  color: var(--home3-hover-color);
}

.blog-details-section ul li:first-child {
  margin-right: 20px;
}

.blog-details-section .sidebar-content {
  margin: 30px 0;
}

.blog-details-section .sidebar-content .card-title-f {
  margin-bottom: 15px;
}

.blog-details-section .sidebar-content ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog-details-section .sidebar-content ul li h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--font-color);
  margin-bottom: 10px;
}

.blog-details-section .sidebar-content ul li .a {
  color: var(--home3-hover-color);
}

.blog-details-section .sidebar-content ul li .a i {
  font-size: 12px;
}

.blog-details-section .tags a {
  display: inline-block;
  padding: 10px 20px;
  background: #F4F8FC;
  margin-bottom: 10px;
  margin-right: 10px;
}

/*================================================
Contact page
=================================================*/
.contact-section .section-title {
  margin-bottom: 20px;
}

.contact-section .card-title-f {
  margin-top: 20px;
}

.contact-section ul {
  margin: 15px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-section ul li {
  display: inline-block;
}

.contact-section ul li:first-child {
  margin-right: 15px;
  margin-top: 8px;
}

.contact-section ul li:first-child i {
  font-size: 20px;
  color: var(--home3-hover-color);
}

.map-section .google-map {
  width: 100%;
  height: 100%;
}

.map-section .google-map .map {
  width: 100%;
  height: 100%;
}

.map-section .left-content .per-item .form-control {
  border: 1px solid var(--home3-hover-color);
  border-radius: 2px;
}

.map-section .left-content .orange-btn {
  width: 100% !important;
}

/*================================================
Privacy page
=================================================*/
.privacy-terms-section .inner {
  padding: 30px;
  background: rgba(248, 248, 248, 0.801);
  position: relative;
  z-index: 9;
}

.privacy-terms-section .first-row, .privacy-terms-section .second-row {
  margin-bottom: 50px;
}

.privacy-terms-section .section-title {
  margin-bottom: 20px;
}

.mfp-content {
  vertical-align: middle;
}

.modal.right.fade.show .modal-dialog {
  right: 0 !important;
}

.sidebarModal {
  left: auto;
  right: 0 !important;
  height: 100%;
  width: 400px;
  position: fixed;
  top: 0;
  z-index: 1000000000;
  background: var(--white-color);
  -webkit-box-shadow: 1px 1px 5px 5px #727171;
          box-shadow: 1px 1px 5px 5px #727171;
  overflow-x: hidden;
  padding: 20px 0px !important;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.sidebarModal .modal-content {
  background: var(--white-color);
  border: none;
}

.sidebarModal .modal-header .btn-close {
  padding: .5rem .5rem;
  margin: 0 20px 0 auto;
}

.sidebarModal .modal-dialog {
  max-width: 500px;
  margin: 0 auto;
}

.sidebarModal .modal-header {
  border-bottom: none;
}

.sidebarModal .logo-times {
  margin-bottom: 60px;
}

.sidebarModal .modal-body {
  padding-left: 40px;
  padding-right: 40px;
}

.sidebarModal .logo {
  margin-bottom: 30x;
}

.sidebarModal .profiles {
  margin-top: 50px;
}

.sidebarModal .profiles .per-col {
  padding: 0 5px;
  margin-bottom: 10px;
}

.sidebarModal .profiles .per-img {
  position: relative;
}

.sidebarModal .profiles a {
  text-decoration: none;
}

.sidebarModal .profiles .overlay-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #7e57ff8a;
  height: 0;
}

.sidebarModal .profiles .overlay-icon .fa-instagram {
  height: 30px;
  width: 30px;
  color: #e4e0e0;
  font-size: 25px;
  text-align: center;
  line-height: 30px;
  margin-top: 10px;
  text-align: center;
  position: absolute;
  top: 41%;
  left: 50%;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sidebarModal .profiles .per-img:hover img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.sidebarModal .profiles .per-img:hover .overlay-icon {
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.sidebarModal .profiles .per-img:hover .overlay-icon .fa-instagram {
  opacity: 1;
  visibility: visible;
}

.sidebarModal .contact-items {
  margin-top: 50px;
  text-align: center;
}

.sidebarModal .contact-items h4 {
  color: #4811fc;
  font-size: 30px;
  font-weight: 600;
}

.sidebarModal .contact-items h4 span {
  font-size: 24px;
  color: var(--home3-main-color);
}

.sidebarModal .contact-items .or {
  margin: 7px 0 10px;
}

.sidebarModal .contact-items .social-icon {
  margin-top: 30px;
}

.sidebarModal .contact-items .social-icon p {
  color: #4811fc;
  margin-bottom: 10px;
  margin-left: -10px;
}

.sidebarModal .contact-items .social-icon i {
  font-size: 20px;
  color: #a700bd;
  margin-right: 10px;
}

.sidebarModal .contact-items .social-icon .fa-facebook-f {
  color: #3368C6;
}

.sidebarModal .contact-items .social-icon .fa-google-plus-g {
  color: #dd0404;
}

.sidebarModal .contact-items .social-icon .fa-instagram {
  color: #d30f7b;
}

.sidebarModal .contact-items .social-icon i:hover {
  color: #4811fc;
}

.sidebarModal img {
  max-width: 100%;
}

.language-modal .language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.language-modal .language a {
  margin-left: 20px;
}

.language-modal .language .nice-select {
  margin-top: -5px;
}

/*================================================
All animations
=================================================*/
@-webkit-keyframes circle-move-1 {
  0% {
    top: 200px;
    left: 50px;
  }
  25% {
    top: 100px;
    left: 200px;
  }
  50% {
    top: 250px;
    left: 500px;
  }
  75% {
    top: 400px;
    left: 200px;
  }
  100% {
    top: 200px;
    left: 50px;
  }
}
@keyframes circle-move-1 {
  0% {
    top: 200px;
    left: 50px;
  }
  25% {
    top: 100px;
    left: 200px;
  }
  50% {
    top: 250px;
    left: 500px;
  }
  75% {
    top: 400px;
    left: 200px;
  }
  100% {
    top: 200px;
    left: 50px;
  }
}

@-webkit-keyframes circle-move-2 {
  0% {
    top: 80px;
    left: 50%;
  }
  30% {
    top: 280px;
    left: 35%;
  }
  70% {
    top: 400px;
    left: 20%;
  }
  100% {
    top: 80px;
    left: 50%;
  }
}

@keyframes circle-move-2 {
  0% {
    top: 80px;
    left: 50%;
  }
  30% {
    top: 280px;
    left: 35%;
  }
  70% {
    top: 400px;
    left: 20%;
  }
  100% {
    top: 80px;
    left: 50%;
  }
}

@-webkit-keyframes circle-move-3 {
  0% {
    bottom: 100px;
    left: 170px;
  }
  30% {
    bottom: 200px;
    left: 300px;
  }
  70% {
    bottom: 300px;
    left: 400px;
  }
  100% {
    bottom: 100px;
    left: 170px;
  }
}

@keyframes circle-move-3 {
  0% {
    bottom: 100px;
    left: 170px;
  }
  30% {
    bottom: 200px;
    left: 300px;
  }
  70% {
    bottom: 300px;
    left: 400px;
  }
  100% {
    bottom: 100px;
    left: 170px;
  }
}

@-webkit-keyframes line-1 {
  0% {
    top: 40px;
    left: 300px;
  }
  30% {
    top: 200px;
    left: 200px;
  }
  70% {
    top: 300px;
    left: 100px;
  }
  100% {
    top: 100px;
    left: 300px;
  }
}

@keyframes line-1 {
  0% {
    top: 40px;
    left: 300px;
  }
  30% {
    top: 200px;
    left: 200px;
  }
  70% {
    top: 300px;
    left: 100px;
  }
  100% {
    top: 100px;
    left: 300px;
  }
}

@-webkit-keyframes line-move-1 {
  0% {
    top: 100px;
    left: 40%;
  }
  30% {
    top: 250px;
    left: 30%;
  }
  70% {
    top: 400px;
    left: 20%;
  }
  100% {
    top: 100px;
    left: 40%;
  }
}

@keyframes line-move-1 {
  0% {
    top: 100px;
    left: 40%;
  }
  30% {
    top: 250px;
    left: 30%;
  }
  70% {
    top: 400px;
    left: 20%;
  }
  100% {
    top: 100px;
    left: 40%;
  }
}

@-webkit-keyframes line-move-2 {
  0% {
    bottom: 50px;
    left: 40%;
  }
  30% {
    bottom: 100px;
    left: 50%;
  }
  70% {
    bottom: 200px;
    left: 60%;
  }
  100% {
    bottom: 0;
    left: 40%;
  }
}

@keyframes line-move-2 {
  0% {
    bottom: 50px;
    left: 40%;
  }
  30% {
    bottom: 100px;
    left: 50%;
  }
  70% {
    bottom: 200px;
    left: 60%;
  }
  100% {
    bottom: 0;
    left: 40%;
  }
}

@-webkit-keyframes line-move-3 {
  0% {
    top: 40px;
    right: 150px;
  }
  30% {
    top: 150px;
    right: 150px;
  }
  70% {
    top: 300px;
    right: 300px;
  }
  100% {
    top: 40px;
    right: 150px;
  }
}

@keyframes line-move-3 {
  0% {
    top: 40px;
    right: 150px;
  }
  30% {
    top: 150px;
    right: 150px;
  }
  70% {
    top: 300px;
    right: 300px;
  }
  100% {
    top: 40px;
    right: 150px;
  }
}

@-webkit-keyframes line-move-4 {
  0% {
    bottom: 250px;
    right: 50px;
  }
  30% {
    bottom: 150px;
    right: 150px;
  }
  70% {
    bottom: 30px;
    right: 250px;
  }
  100% {
    bottom: 250px;
    right: 50px;
  }
}

@keyframes line-move-4 {
  0% {
    bottom: 250px;
    right: 50px;
  }
  30% {
    bottom: 150px;
    right: 150px;
  }
  70% {
    bottom: 30px;
    right: 250px;
  }
  100% {
    bottom: 250px;
    right: 50px;
  }
}

@-webkit-keyframes line-move-5 {
  0% {
    top: 150px;
    left: 50%;
  }
  30% {
    top: 250px;
    left: 40%;
  }
  70% {
    top: 350px;
    left: 30%;
  }
  100% {
    bottom: 150px;
    left: 45%;
  }
}

@keyframes line-move-5 {
  0% {
    top: 150px;
    left: 50%;
  }
  30% {
    top: 250px;
    left: 40%;
  }
  70% {
    top: 350px;
    left: 30%;
  }
  100% {
    bottom: 150px;
    left: 45%;
  }
}

@-webkit-keyframes line-move-6 {
  0% {
    bottom: 0px;
    left: 40px;
  }
  30% {
    bottom: 100px;
    left: 100px;
  }
  70% {
    bottom: 200px;
    left: 160px;
  }
  100% {
    bottom: 0px;
    left: 40px;
  }
}

@keyframes line-move-6 {
  0% {
    bottom: 0px;
    left: 40px;
  }
  30% {
    bottom: 100px;
    left: 100px;
  }
  70% {
    bottom: 200px;
    left: 160px;
  }
  100% {
    bottom: 0px;
    left: 40px;
  }
}

@-webkit-keyframes line-move-7 {
  0% {
    bottom: 0px;
    left: 0px;
  }
  30% {
    bottom: 100px;
    left: 100px;
  }
  70% {
    bottom: 200px;
    left: 200px;
  }
  100% {
    bottom: 0px;
    left: 0px;
  }
}

@keyframes line-move-7 {
  0% {
    bottom: 0px;
    left: 0px;
  }
  30% {
    bottom: 100px;
    left: 100px;
  }
  70% {
    bottom: 200px;
    left: 200px;
  }
  100% {
    bottom: 0px;
    left: 0px;
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

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

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

@-webkit-keyframes zoomInOut {
  0%, 100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomInOut {
  0%, 100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


.contact{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px 15px;
    width: 100%;
    text-align: center;
    border-radius: 15px;
    background: #ffffff73;
}

.contact h4 {
color:#013973;
}
