/* @import url("https://fonts.googleapis.com/css?family=Muli:400,600,700|Roboto+Slab:300,400,500&display=swap");
@import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,700"); */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*--------------------------------------------------------------
#0.1    Theme Reset Style
--------------------------------------------------------------*/

@font-face {
  font-family: "Segoe UI";
  src: url("SegoeUI.woff2") format("woff2"), url("SegoeUI.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
    font-family: 'SegoeUI';
    src: url('../fonts/SegoeUI.woff2') format('woff'),url('../fonts/SegoeUI.woff') format('woff');
    font-weight: normal;
    font-style: normal;
      font-display: swap;
} */

* {
  font-family: "Inter", sans-serif;
}

html {
  font-size: 16px;
}

:root {
  --primary-color: #1d84cf;
  --secondry-color: #5cb8fb;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
}

body {
  /*font-family: "Muli", sans-serif;*/
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  font-size: 16px;
  font-size: 1rem;
  /*color: #687693;*/
  color: #212529;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .site-header .topbar .social {
    justify-content: center;
  }
}

body {
  font-size: 14px;
}

p {
  /*color: #687693;*/
  color: #060606;
  line-height: 1.7em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-family: "Roboto Slab", serif;*/
  /* font-family: "Segoe UI"; */
  font-weight: 700;
  /*color: #262b3e;*/
  color: #060606;
}

ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*--------------------------------------------------------------
#0.2    Global Elements
--------------------------------------------------------------*/
.page-wrapper {
  position: relative;
  overflow: hidden;
}

#about-image {
  width: 100%;
  height: 450px;
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

.section-padding {
  padding: 110px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 80px 0;
  }
}

/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}

.contact-validation-active label.error {
  color: red;
  font-size: 0.875rem;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
}

.contact-validation-active #loader {
  display: none;
  margin-top: 10px;
}

.contact-validation-active #loader i {
  font-size: 30px;
  font-size: 1.875rem;
  color: var(--primary-color);
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}

.contact-validation-active #success,
.contact-validation-active #error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}

@media (max-width: 767px) {

  .contact-validation-active #success,
  .contact-validation-active #error {
    font-size: 15px;
  }
}

.contact-validation-active #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}

.contact-validation-active #error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

.rotating {
  -webkit-animation: rotating 5s alternate infinite;
  animation: rotating 5s alternate infinite;
}

/*** back to top **/
.back-to-top {
  background-color: rgb(29 132 207);
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid var(--primary-color);
  border-radius: 0;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

@media (max-width: 991px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.back-to-top:hover {
  background-color: var(--primary-color);
}

.back-to-top i {
  font-size: 22px;
  font-size: 1.375rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/** for popup image ***/
.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*** for fancybox video ***/
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999 !important;
}

.fancybox-wrap {
  z-index: 99999 !important;
}

.section-title,
.section-title-s2,
.section-title-s3,
.section-title-s6,
.section-title-s4 {
  padding-left: 85px;
  margin-bottom: 0;
  position: relative;
}

@media (max-width: 1199px) {

  .section-title,
  .section-title-s2,
  .section-title-s3,
  .section-title-s6,
  .section-title-s4 {
    padding-left: 0;
  }
}

@media (max-width: 991px) {

  .section-title,
  .section-title-s2,
  .section-title-s3,
  .section-title-s6,
  .section-title-s4 {
    margin-bottom: 50px;
  }
}

.section-title .icon,
.section-title-s2 .icon,
.section-title-s3 .icon,
.section-title-s6 .icon,
.section-title-s4 .icon {
  background-color: var(--primary-color);
  width: 50px;
  height: 50px;
  line-height: 48px;
  -webkit-box-shadow: 0 0 0 5px rgba(201, 179, 140, 0.2);
  box-shadow: 0 0 0 5px rgba(201, 179, 140, 0.2);
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 5px;
  top: 7px;
}

@media (max-width: 1199px) {

  .section-title .icon,
  .section-title-s2 .icon,
  .section-title-s3 .icon,
  .section-title-s6 .icon,
  .section-title-s4 .icon {
    display: none;
  }
}

.section-title .icon .fi:before,
.section-title-s2 .icon .fi:before,
.section-title-s3 .icon .fi:before,
.section-title-s6 .icon .fi:before,
.section-title-s4 .icon .fi:before {
  font-size: 26px;
  color: #fff;
}

.section-title>span,
.section-title-s2>span,
.section-title-s3>span,
.section-title-s6>span,
.section-title-s4>span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5em;
  margin-top: -0.3em;
}

@media (max-width: 991px) {

  .section-title>span,
  .section-title-s2>span,
  .section-title-s3>span,
  .section-title-s6>span,
  .section-title-s4>span {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.section-title h2,
.section-title-s2 h2,
.section-title-s3 h2,
.section-title-s6 h2,
.section-title-s4 h2 {
  font-size: 36px;
  font-size: 2.25rem;
  margin: 0 0 0.69em;
  line-height: 1.19em;
  position: relative;
  text-transform: capitalize;
}

@media (max-width: 991px) {

  .section-title h2,
  .section-title-s2 h2,
  .section-title-s3 h2,
  .section-title-s6 h2,
  .section-title-s4 h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media (max-width: 767px) {

  .section-title h2,
  .section-title-s2 h2,
  .section-title-s3 h2,
  .section-title-s6 h2,
  .section-title-s4 h2 {
    font-size: 27px;
    font-size: 1.6875rem;
  }
}

.section-title p,
.section-title-s2 p,
.section-title-s3 p,
.section-title-s6 p,
.section-title-s4 p {
  margin-bottom: 1.5em;
}

.section-title .more-about,
.section-title-s2 .more-about,
.section-title-s3 .more-about,
.section-title-s6 .more-about,
.section-title-s4 .more-about {
  font-weight: 700;
  color: var(--primary-color);
}

.section-title .more-about .fi:before,
.section-title-s2 .more-about .fi:before,
.section-title-s3 .more-about .fi:before,
.section-title-s6 .more-about .fi:before,
.section-title-s4 .more-about .fi:before {
  font-weight: normal;
  font-size: 16px;
  padding-left: 5px;
  position: relative;
  top: 2px;
}

.section-title .more-about:hover,
.section-title-s2 .more-about:hover,
.section-title-s3 .more-about:hover,
.section-title-s6 .more-about:hover,
.section-title-s4 .more-about:hover {
  color: #262b3e;
}

.section-title-s2 {
  margin-bottom: 50px;
}

.section-title-s2 .icon {
  -webkit-box-shadow: 0 0 0 5px #fff;
  box-shadow: 0 0 0 5px #fff;
}

.section-title-s2 h2 {
  color: #fff;
}

.section-title-s2 p {
  color: #c5c5c6;
  margin: 0;
}

.section-title-s3,
.section-title-s6 {
  text-align: center;
  margin-bottom: 50px;
  padding-left: 0;
}

@media (max-width: 991px) {

  .section-title-s3,
  .section-title-s6 {
    margin-bottom: 40px;
  }
}

.section-title-s3 .icon,
.section-title-s6 .icon {
  position: static;
  display: inline-block;
  margin-bottom: 30px;
  margin-top: 3px;
}

@media (max-width: 1199px) {

  .section-title-s3 .icon,
  .section-title-s6 .icon {
    display: inline-block;
  }
}

.section-title-s3 h2,
.section-title-s6 h2 {
  margin: 0 0 0.4em;
}

.section-title-s3 p,
.section-title-s6 p {
  margin: 0;
}

@media (max-width: 767px) {
  .section-title-s4 {
    margin-bottom: 10px;
  }
}

@media (max-width: 1199px) {
  .section-title-s4 .icon {
    display: inline-block;
    position: static;
    margin-bottom: 25px;
  }
}

.section-title-s5 {
  margin-bottom: 50px;
  position: relative;
}

@media (max-width: 991px) {
  .section-title-s5 {
    margin-bottom: 50px;
  }
}

.section-title-s5>span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5em;
}

@media (max-width: 991px) {
  .section-title-s5>span {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.section-title-s5 h2 {
  font-size: 36px;
  font-size: 2.25rem;
  margin: 0 0 0.69em;
  line-height: 1.19em;
  position: relative;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .section-title-s5 h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media (max-width: 767px) {
  .section-title-s5 h2 {
    font-size: 27px;
    font-size: 1.6875rem;
  }
}

.section-title-s5 p {
  margin-bottom: 1.5em;
}

.section-title-s6 {
  padding-left: 0;
}

.section-title-s6>span {
  display: block;
  margin-top: -0.2em;
}

.theme-btn {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 500 !important;
  padding: 10px 30px !important;
  border: 0;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  text-transform: capitalize;
  display: inline-block;
}

/* .theme-btn:hover, .theme-btn:focus, .theme-btn:active {
  background-color: #fff !important;
  color: #fff;
} */
header .theme-btn:hover {
  background-color: #fff;
}

@media (max-width: 991px) {
  .theme-btn {
    font-size: 15px;
    font-size: 0.9375rem;
    padding: 14px 25px;
  }
}

@media (max-width: 767px) {
  .theme-btn {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 12px 20px;
  }
}

.view-cart-btn {
  background: var(--primary-color);
  width: 140px;
  padding: 10px;
  margin-top: 20px;
  color: white;
  font-weight: 500;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.view-cart-btn:hover {
  background-color: #b99c69;
  color: #fff;
}

.theme-btn-s2,
.theme-btn-s3 {
  background-color: #1d84cf;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 13px 25px;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  text-transform: capitalize;
  display: inline-block;
}

.theme-btn-s2:hover,
.theme-btn-s3:hover,
.theme-btn-s2:focus,
.theme-btn-s3:focus,
.theme-btn-s2:active,
.theme-btn-s3:active {
  background-color: #b99c69;
  color: #fff;
}

@media (max-width: 991px) {

  .theme-btn-s2,
  .theme-btn-s3 {
    font-size: 15px;
    font-size: 0.9375rem;
    padding: 12px 22px;
  }
}

@media (max-width: 767px) {

  .theme-btn-s2,
  .theme-btn-s3 {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 12px 20px;
  }
}

.theme-btn-s3 {
  padding: 16px 25px;
}

@media (max-width: 991px) {
  .theme-btn-s3 {
    padding: 12px 22px;
  }
}

@media (max-width: 767px) {
  .theme-btn-s3 {
    padding: 12px 20px;
  }
}

.form input,
.form textarea,
.form select {
  border-color: #bfbfbf;
  border-radius: 0;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #595959;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--primary-color);
  -webkit-box-shadow: 0 0 5px 0 #d9caaf;
  -moz-box-shadow: 0 0 5px 0 #d9caaf;
  -o-box-shadow: 0 0 5px 0 #d9caaf;
  -ms-box-shadow: 0 0 5px 0 #d9caaf;
  box-shadow: 0 0 5px 0 #d9caaf;
}

.form ::-webkit-input-placeholder {
  font-style: 16px;
  font-style: italic;
  color: #595959;
}

.form :-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form ::-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-ms-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form select {
  font-style: italic;
  background: url(../images/select-icon.png) no-repeat right center;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form select::-ms-expand {
  display: none;
}

.social-links {
  overflow: hidden;
}

.social-links li {
  float: left;
  width: 35px;
  height: 35px;
  margin-right: 1px;
}

.social-links li a {
  background-color: #d9caaf;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}

.social-links li a:hover {
  background-color: var(--primary-color);
}

/******************************
	#page title
******************************/
.page-title {
  background: url("../images/eFiling-Service.jpg") center center/cover no-repeat local;
  width: 100%;
  height: 470px;
  position: relative;
  text-align: center;
}

@media (max-width: 991px) {
  .page-title {
    height: 300px;
  }
}

.page-title .container {
  height: 100%;
  display: table;
}

@media screen and (min-width: 992px) {
  .page-title .container {
    padding-top: 100px;
  }
}

.page-title .container>.row {
  vertical-align: middle;
  display: table-cell;
}

.page-title h2 {
  font-size: 55px;
  font-size: 3.4375rem;
  color: #fff;
  margin: 0.5em 0 0.3em;
}

@media (max-width: 991px) {
  .page-title h2 {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

@media (max-width: 767px) {
  .page-title h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.page-title p {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  margin: 0;
}

@media (max-width: 991px) {
  .page-title p {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .page-title p {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.preloader {
  background-color: #262b3e;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
}

.preloader .sk-chase {
  width: 60px;
  height: 60px;
  position: absolute;
  left: calc(50% - 30px);
  top: calc(50% - 30px);
  -webkit-animation: sk-chase 2.5s infinite linear both;
  animation: sk-chase 2.5s infinite linear both;
}

.preloader .sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: sk-chase-dot 2s infinite ease-in-out both;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.preloader .sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--primary-color);
  border-radius: 100%;
  -webkit-animation: sk-chase-dot-before 2s infinite ease-in-out both;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.preloader .sk-chase-dot:nth-child(1) {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.preloader .sk-chase-dot:nth-child(2) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.preloader .sk-chase-dot:nth-child(3) {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.preloader .sk-chase-dot:nth-child(4) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.preloader .sk-chase-dot:nth-child(5) {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.preloader .sk-chase-dot:nth-child(6) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.preloader .sk-chase-dot:nth-child(1):before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.preloader .sk-chase-dot:nth-child(2):before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.preloader .sk-chase-dot:nth-child(3):before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.preloader .sk-chase-dot:nth-child(4):before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.preloader .sk-chase-dot:nth-child(5):before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.preloader .sk-chase-dot:nth-child(6):before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

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

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

@-webkit-keyframes sk-chase-dot {

  80%,
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot {

  80%,
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes sk-chase-dot-before {
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  100%,
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-chase-dot-before {
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  100%,
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*--------------------------------------
	service single sidebar
----------------------------------------*/
.service-sidebar {
  /*** service-list-widget ***/
  /*** download-widget ***/
  /*** contact-widget ***/
  /*** service-features-widget ***/
}

@media (max-width: 991px) {
  .service-sidebar {
    max-width: 300px;
    margin-top: 80px;
  }
}

.service-sidebar>.widget+.widget {
  /*margin-top: 60px;*/
  margin-top: 15px;
}

.service-sidebar .service-list-widget ul {
  list-style: none;
  border: 1px solid #eaeaea;
  border-bottom: 0;
}

.service-sidebar .service-list-widget ul li {
  border-bottom: 1px solid #eaeaea;
}

.service-sidebar .service-list-widget a {
  font-size: 15px;
  font-size: 0.9375rem;
  background: #fcfcfc;
  font-weight: 600;
  display: block;
  color: #262b3e;
  padding: 10px 24px;
}

.service-sidebar .service-list-widget a:hover,
.service-sidebar .service-list-widget .current a {
  background-color: var(--primary-color);
  color: #fff;
}

.service-sidebar .download-widget ul {
  list-style: none;
}

.service-sidebar .download-widget ul>li+li {
  margin-top: 5px;
}

.service-sidebar .download-widget ul a {
  background: #262b3e;
  color: #fff;
  padding: 18px 25px;
  font-weight: 700;
  display: block;
}

.service-sidebar .download-widget ul i {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
}

.service-sidebar .download-widget ul a:hover {
  background: #b99c69;
}

.service-sidebar .contact-widget {
  background: url("../images/single-contact-widget-bg.jpg") center center/cover no-repeat local;
  padding: 25px 40px;
  position: relative;
}

.service-sidebar .contact-widget:before {
  content: "";
  background-color: rgba(38, 43, 62, 0.9);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.service-sidebar .contact-widget>div {
  position: relative;
  z-index: 1;
}

.service-sidebar .contact-widget h4 {
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 400;
  margin: 0 0 0.8em;
  text-transform: capitalize;
}

.service-sidebar .contact-widget p {
  color: #fff;
  font-size: 14px;
  /*font-size: 0.875rem;*/
  font-size: 16px;
}

.service-sidebar .contact-widget ul li {
  font-size: 14px;
  font-size: 0.875rem;
  position: relative;
  padding-left: 25px;
}

.service-sidebar .contact-widget ul li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--primary-color);
}

.service-sidebar .contact-widget ul>li+li {
  margin-top: 12px;
}

.service-sidebar .contact-widget a {
  background-color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #687693;
  padding: 7px 15px;
  display: inline-block;
  margin-top: 15px;
}

.service-sidebar .contact-widget a:hover {
  color: var(--primary-color);
}

.service-sidebar .service-features-widget {
  padding: 45px 30px;
  position: relative;
  border: 2px solid #f7f7f7;
}

.service-sidebar .service-features-widget:before {
  font-family: "Themify";
  content: "\e61f";
  font-size: 25px;
  font-size: 1.5625rem;
  color: var(--primary-color);
  position: absolute;
  right: 30px;
  top: 40px;
  opacity: 0.5;
}

.service-sidebar .service-features-widget h3 {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 0.8em;
  text-transform: capitalize;
}

.service-sidebar .service-features-widget ol {
  list-style-position: inside;
  padding-left: 0;
  margin: 0;
}

.service-sidebar .service-features-widget ol>li+li {
  margin-top: 8px;
}

/*------------------------------------
	blog sidebar
------------------------------------*/
.blog-sidebar {
  /*** search-widget ***/
  /*** about-widget ***/
  /*** category-widget ***/
  /*** recent-post-widget ***/
  /*** tag-widget ***/
}

@media screen and (min-width: 1200px) {
  .blog-sidebar {
    padding-left: 45px;
  }
}

@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 80px;
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .blog-sidebar {
    margin-top: 60px;
    max-width: 400px;
  }
}

.blog-sidebar .widget h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0 0 1.3em;
  position: relative;
  text-transform: capitalize;
}

.blog-sidebar>.widget+.widget {
  margin-top: 65px;
}

.blog-sidebar .search-widget form div {
  position: relative;
}

.blog-sidebar .search-widget input {
  background-color: #f8f8f8;
  height: 50px;
  font-size: 16px;
  font-size: 1rem;
  padding: 6px 50px 6px 20px;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-sidebar .search-widget input:focus {
  background-color: rgba(201, 179, 140, 0.1);
}

.blog-sidebar .search-widget form button {
  background: var(--primary-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  border: 0;
  outline: 0;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}

.blog-sidebar .search-widget form button i {
  font-size: 14px;
}

.blog-sidebar .about-widget {
  text-align: center;
}

.blog-sidebar .about-widget .img-holder {
  margin-bottom: 25px;
}

.blog-sidebar .about-widget .img-holder img {
  border-radius: 50%;
}

.blog-sidebar .about-widget p {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 1.2em;
}

.blog-sidebar .about-widget a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #262b3e;
  text-decoration: underline;
}

.blog-sidebar .about-widget a:hover {
  color: var(--primary-color);
}

.blog-sidebar .category-widget ul {
  list-style: none;
}

.blog-sidebar .category-widget ul li {
  font-size: 15px;
  font-size: 0.9375rem;
  position: relative;
}

@media (max-width: 767px) {
  .blog-sidebar .category-widget ul li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.blog-sidebar .category-widget ul li span {
  position: absolute;
  right: 0;
}

.blog-sidebar .category-widget ul>li+li {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f3f2f2;
}

.blog-sidebar .category-widget ul a {
  display: block;
  color: #687693;
  padding-left: 25px;
  position: relative;
}

.blog-sidebar .category-widget ul a:before {
  font-family: "Themify";
  content: "\e628";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 11px;
}

.blog-sidebar .category-widget ul a:hover,
.blog-sidebar .category-widget ul li:hover:before {
  color: var(--primary-color);
}

.blog-sidebar .recent-post-widget .post {
  overflow: hidden;
}

.blog-sidebar .recent-post-widget .posts>.post+.post {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f3f2f2;
}

.blog-sidebar .recent-post-widget .post .img-holder {
  width: 68px;
  float: left;
}

.blog-sidebar .recent-post-widget .post .img-holder img {
  border-radius: 50%;
}

.blog-sidebar .recent-post-widget .post .details {
  width: calc(100% - 68px);
  float: left;
  padding-left: 20px;
}

.blog-sidebar .recent-post-widget .post h4 {
  font-family: "Muli", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3em;
  margin: 0 0 0.3em;
}

@media (max-width: 1199px) {
  .blog-sidebar .recent-post-widget .post h4 {
    margin: 0;
  }
}

.blog-sidebar .recent-post-widget .post h4 a {
  display: inline-block;
  color: #262b3e;
}

.blog-sidebar .recent-post-widget .post h4 a:hover {
  color: var(--primary-color);
}

.blog-sidebar .recent-post-widget .post .details .date {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #687693;
}

.blog-sidebar .recent-post-widget .post .details .date i {
  display: inline-block;
  padding-right: 7px;
}

.blog-sidebar .tag-widget ul {
  overflow: hidden;
  list-style: none;
}

.blog-sidebar .tag-widget ul li {
  float: left;
  margin: 0 8px 8px 0;
}

.blog-sidebar .tag-widget ul li a {
  font-size: 13px;
  font-size: 0.8125rem;
  display: inline-block;
  padding: 7px 14px;
  color: #687693;
  border: 1px solid #efefef;
  border-radius: 50px;
}

.blog-sidebar .tag-widget ul li a:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/**** pagination ****/
.pagination-wrapper {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .pagination-wrapper {
    text-align: left;
    margin-top: 40px;
  }
}

.pagination-wrapper .pg-pagination {
  display: inline-block;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
}

.pagination-wrapper .pg-pagination li {
  float: left;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .pagination-wrapper .pg-pagination li {
    margin-right: 5px;
  }
}

.pagination-wrapper .pg-pagination li:last-child {
  margin-right: 0;
}

.pagination-wrapper .pg-pagination li a {
  background-color: transparent;
  width: 50px;
  height: 50px;
  line-height: 47px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #a9b8c4;
  border: 2px solid #e6e6e6;
  display: block;
  border-radius: 0;
}

@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 37px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
  font-size: 15px;
  font-size: 0.9375rem;
}

.pagination-wrapper-left {
  text-align: left;
}

.pagination-wrapper-right {
  text-align: right;
}

@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}

.theme-accordion-s1 {
  margin-bottom: 0;
}

.theme-accordion-s1 .panel-default {
  background: transparent;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.theme-accordion-s1 .panel-heading {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

.theme-accordion-s1 .panel+.panel {
  margin-top: 15px;
}

.theme-accordion-s1 .panel-heading a {
  background: var(--primary-color);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  display: block;
  padding: 18px 25px;
  position: relative;
}

@media (max-width: 991px) {
  .theme-accordion-s1 .panel-heading a {
    font-size: 15px;
    font-size: 0.9375rem;
    padding: 15px 25px;
  }
}

@media (max-width: 767px) {
  .theme-accordion-s1 .panel-heading a {
    padding: 12px 15px;
  }
}

.theme-accordion-s1 .panel-heading a:before {
  font-family: "themify";
  content: "\e64b";
  font-size: 15px;
  font-size: 0.9375rem;
  position: absolute;
  right: 25px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .theme-accordion-s1 .panel-heading a:before {
    font-size: 18px;
    font-size: 1.125rem;
    right: 20px;
  }
}

.theme-accordion-s1 .panel-heading a:focus {
  text-decoration: none;
}

.theme-accordion-s1 .panel-heading .collapsed {
  background-color: #fff;
  color: #262b3e;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

.theme-accordion-s1 .panel-heading .collapsed:before {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.theme-accordion-s1 .panel-heading+.panel-collapse>.panel-body {
  background-color: #fff;
  border: 0;
  padding: 40px 25px 15px;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

@media (max-width: 991px) {
  .theme-accordion-s1 .panel-heading+.panel-collapse>.panel-body {
    padding: 20px 25px 10px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

@media (max-width: 767px) {
  .theme-accordion-s1 .panel-heading+.panel-collapse>.panel-body {
    padding: 15px 15px 8px;
  }
}

.theme-accordion-s1 .panel-heading+.panel-collapse>.panel-body p {
  margin-bottom: 1.3em;
}

/*--------------------------------------------------------------
#0.3	header
--------------------------------------------------------------*/
.site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
}

.site-header .navigation {
  background-color: #fff;
  margin-bottom: 0;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

.site-header .navigation>.container {
  position: relative;
}

.site-header #navbar {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  margin-right: 0 !important;

  /*** mega-menu style ***/
}

.site-header #navbar>ul li a:hover,
.site-header #navbar>ul li a:focus {
  text-decoration: none;
  color: var(--primary-color) !important;
}

@media screen and (min-width: 992px) {
  .site-header #navbar {
    /*** hover effect ***/
  }

  .site-header #navbar li {
    position: relative;
  }

  .site-header #navbar>ul>li>a {
    font-size: 16px;
    font-size: 1rem;
  }

  .site-header #navbar>ul .sub-menu {
    background-color: #fff;
    width: 280px;
    text-align: left;
    padding: 10px 25px;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    text-transform: capitalize;
  }

  .site-header #navbar>ul>li .sub-menu li:last-child {
    border-bottom: 0;
  }

  .site-header #navbar>ul>li .sub-menu a {
    display: block;
    padding: 10px 0;
    color: #262b3e;
    font-size: 14px;
    font-size: 0.875rem;
  }

  .site-header #navbar>ul>li .sub-menu a:hover {
    padding-left: 5px;
  }

  .site-header #navbar>ul>li>.sub-menu .sub-menu {
    left: 110%;
    top: 0;
  }

  .site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a {
    position: relative;
  }

  .site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.6875rem;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .site-header #navbar>ul>li:hover>.sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }

  .site-header #navbar .sub-menu>li:hover>.sub-menu {
    left: 114%;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .site-header #navbar>ul>li a {
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
  }

  .site-header #navbar>ul>li .sub-menu li {
    border-bottom: 1px solid #e6e6e6;
  }

  .site-header #navbar>ul .sub-menu>li:last-child {
    border-bottom: 0;
  }

  .site-header #navbar>ul>li>.sub-menu a {
    padding: 8px 15px 8px 45px;
  }

  .site-header #navbar>ul>li>.sub-menu .sub-menu a {
    padding: 8px 15px 8px 65px;
  }

  .site-header #navbar>ul .menu-item-has-children>a {
    position: relative;
  }

  .site-header #navbar>ul .menu-item-has-children>a:before {
    font-family: "themify";
    content: "\e61a";
    font-size: 11px;
    font-size: 0.6875rem;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 992px) {
  .site-header #navbar {
    /*** hover effect ***/
  }

  .site-header #navbar .has-mega-menu {
    position: static;
  }

  .site-header #navbar .mega-menu,
  .site-header #navbar .half-mega-menu {
    background-color: #fff;
    padding: 20px;
    border-top: 2px solid var(--primary-color);
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }

  .site-header #navbar .mega-menu {
    width: 1140px;
    right: 15px;
  }

  .site-header #navbar .half-mega-menu {
    width: 585px;
  }

  .site-header #navbar .mega-menu-box-title {
    font-size: 14px;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    padding-bottom: 7px;
    margin-bottom: 7px;
    border-bottom: 1px solid #e6e6e6;
  }

  .site-header #navbar .mega-menu-list-holder li a {
    font-size: 14px;
    font-size: 0.875rem;
    display: block;
    padding: 7px 8px;
    margin-left: -8px;
  }

  .site-header #navbar .has-mega-menu:hover>ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 1199px) {
  .site-header #navbar>ul .mega-menu {
    width: 950px;
    right: 15px;
  }

  .site-header #navbar>ul .half-mega-menu {
    width: 485px;
  }
}

@media (max-width: 991px) {

  .site-header #navbar>ul .mega-menu,
  .site-header #navbar>ul .half-mega-menu {
    width: auto;
  }

  .site-header #navbar>ul .mega-menu .row,
  .site-header #navbar>ul .half-mega-menu .row {
    margin: 0;
  }

  .site-header #navbar .mega-menu-content>.row>.col {
    margin-bottom: 25px;
  }
}

@media (max-width: 991px) {
  .site-header #navbar .mega-menu .mega-menu-list-holder a {
    padding: 5px 15px 5px 40px;
  }

  .site-header #navbar .mega-menu .mega-menu-box-title {
    font-size: 14px;
    font-size: 0.875rem;
    text-transform: uppercase;
    display: block;
    border-bottom: 1px dotted #b3b3b3;
    padding: 0 0 4px 5px;
    margin: 0 25px 8px 25px;
  }
}

@media screen and (min-width: 1200px) {
  .site-header #navbar>ul>.menu-item-has-children>a:before {
    font-family: "themify";
    /* content: "\e64b"; */
    font-size: 9px;
    font-size: 0.5625rem;
    position: absolute;
    right: 13px;
    top: 42%;
  }
}

@media screen and (min-width: 992px) {
  .site-header .navbar-header .open-btn {
    display: none;
  }

  .site-header #navbar .close-navbar {
    display: none;
  }
}

@media (max-width: 991px) {
  .site-header {
    /* class for show hide navigation */
  }

  .site-header .container {
    width: 100%;
  }

  .site-header .navbar-header button {
    background-color: var(--primary-color);
    width: 40px;
    height: 35px;
    border: 0;
    padding: 5px 10px;
    outline: 0;
    position: absolute;
    right: 15px;
    top: 20px;
    z-index: 20;
  }

  .site-header .navbar-header button span {
    background-color: #fff;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }

  .site-header .navbar-header button span:last-child {
    margin: 0;
  }

  .site-header #navbar {
    background: #fff;
    display: block !important;
    width: 280px;
    height: 100% !important;
    margin: 0;
    padding: 0;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    position: fixed;
    right: -330px;
    top: 0;
    z-index: 100;
  }

  .site-header #navbar ul a {
    color: #000;
  }

  .site-header #navbar ul a:hover,
  .site-header #navbar ul li.current a {
    color: var(--primary-color);
  }

  .site-header #navbar .navbar-nav {
    height: 100%;
    overflow: auto;
  }

  .site-header #navbar .close-navbar {
    background-color: #fff;
    width: 40px;
    height: 40px;
    color: #000;
    border: 0;
    outline: none;
    position: absolute;
    left: -41px;
    top: 90px;
    z-index: 20;
  }

  .site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }

  .site-header #navbar>ul>li {
    border-bottom: 1px solid #f2f2f2;
  }

  .site-header #navbar>ul>li>a {
    padding: 10px 15px 10px 35px;
  }

  .site-header .slideInn {
    right: 0 !important;
  }
}

@media (max-width: 767px) {
  .site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }

  .site-header #navbar .navbar-nav {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .site-header .navbar-collapse.collapse {
    display: none;
  }

  .site-header .navbar-collapse.collapse.in {
    display: block;
  }

  .site-header .navbar-header .collapse,
  .site-header .navbar-toggle {
    display: block;
  }

  .site-header .navbar-header {
    float: none;
  }

  .site-header .navbar-right {
    float: none;
  }

  .site-header .navbar-nav {
    float: none;
  }

  .site-header .navbar-nav>li {
    float: none;
  }
}

@media (max-width: 991px) {
  .page-wrapper {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }

  .body-overlay:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }
}

/*--------------------------------------------------------------
	#header-style-1
--------------------------------------------------------------*/
.header-style-1,
.header-style-2,
.header-style-3 {
  /*** topbar **/
  /*** cart-search-contact ***/
}

@media screen and (min-width: 992px) {

  .header-style-1,
  .header-style-2,
  .header-style-3 {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
  }

  .header-style-1 .navigation,
  .header-style-2 .navigation,
  .header-style-3 .navigation {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-style-1 .navbar-brand,
  .header-style-2 .navbar-brand,
  .header-style-3 .navbar-brand {
    margin-top: 21px;
  }

  .header-style-1 #navbar,
  .header-style-2 #navbar,
  .header-style-3 #navbar {
    margin-right: 90px;
  }

  .header-style-1 #navbar>ul>li>a,
  .header-style-2 #navbar>ul>li>a,
  .header-style-3 #navbar>ul>li>a {
    color: #fff;
    font-weight: 600;
    padding: 40px 20px;
  }
}

@media screen and (min-width: 1200px) {

  .header-style-1 #navbar>ul>li>a,
  .header-style-2 #navbar>ul>li>a,
  .header-style-3 #navbar>ul>li>a {
    color: #fff;
    font-weight: 600;
    padding: 48px 10px;
    font-size: 15px;
  }
}

@media (max-width: 991px) {

  .header-style-1 .navigation,
  .header-style-2 .navigation,
  .header-style-3 .navigation {
    background-color: #262b3e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.header-style-1 .navbar-brand,
.header-style-2 .navbar-brand,
.header-style-3 .navbar-brand {
  height: auto;
}

.header-style-1 .navbar-brand img,
.header-style-2 .navbar-brand img,
.header-style-3 .navbar-brand img {
  width: 100%;
  height: 40px;
  object-fit: cover;
}

@media (max-width: 600px) {

  .header-style-1 .navbar-brand img,
  .header-style-2 .navbar-brand img,
  .header-style-3 .navbar-brand img {
    width: 100%;
    height: 34px !important;
    object-fit: cover;
  }
}

.header-style-1 .topbar,
.header-style-2 .topbar,
.header-style-3 .topbar {
  background-color: rgba(38, 43, 62, 0.5);
  padding: 15px 0;
}

@media (max-width: 991px) {

  .header-style-1 .topbar,
  .header-style-2 .topbar,
  .header-style-3 .topbar {
    background-color: #262b3e;
    text-align: center;
  }

  .header-style-1 .topbar .contact-info ul,
  .header-style-2 .topbar .contact-info ul,
  .header-style-3 .topbar .contact-info ul {
    display: inline-block;
  }
}

.header-style-1 .topbar .contact-info li,
.header-style-2 .topbar .contact-info li,
.header-style-3 .topbar .contact-info li {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  float: left;
}

@media (max-width: 991px) {

  .header-style-1 .topbar .contact-info li,
  .header-style-2 .topbar .contact-info li,
  .header-style-3 .topbar .contact-info li {
    font-size: 13px;
    font-size: 0.8125rem;
    float: none;
  }
}

.header-style-1 .topbar .contact-info ul>li+li,
.header-style-2 .topbar .contact-info ul>li+li,
.header-style-3 .topbar .contact-info ul>li+li {
  margin-left: 50px;
}

@media (max-width: 991px) {

  .header-style-1 .topbar .contact-info ul>li+li,
  .header-style-2 .topbar .contact-info ul>li+li,
  .header-style-3 .topbar .contact-info ul>li+li {
    margin: 10px 0 0;
  }
}

.header-style-1 .topbar .social,
.header-style-2 .topbar .social,
.header-style-3 .topbar .social {
  float: right;
}

@media (max-width: 991px) {

  .header-style-1 .topbar .social,
  .header-style-2 .topbar .social,
  .header-style-3 .topbar .social {
    float: none;
    margin-top: 15px;
  }

  .header-style-1 .topbar .social ul,
  .header-style-2 .topbar .social ul,
  .header-style-3 .topbar .social ul {
    display: inline-block;
  }
}

.header-style-1 .topbar .social ul li,
.header-style-2 .topbar .social ul li,
.header-style-3 .topbar .social ul li {
  float: left;
}

.header-style-1 .topbar .social ul>li+li,
.header-style-2 .topbar .social ul>li+li,
.header-style-3 .topbar .social ul>li+li {
  margin-left: 15px;
}

.header-style-1 .topbar .social a,
.header-style-2 .topbar .social a,
.header-style-3 .topbar .social a {
  font-size: 16px;
  color: #fff;
}

.header-style-1 .topbar .social a:hover,
.header-style-2 .topbar .social a:hover,
.header-style-3 .topbar .social a:hover {
  color: var(--primary-color);
}

.header-style-1 .cart-search-contact,
.header-style-2 .cart-search-contact,
.header-style-3 .cart-search-contact {
  position: absolute;
  right: 20px;
  height: 100px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  padding-left: 15px;
}

@media (max-width: 991px) {

  .header-style-1 .cart-search-contact,
  .header-style-2 .cart-search-contact,
  .header-style-3 .cart-search-contact {
    right: 90px;
    top: 0;
    padding-top: 22px;
  }
}

@media (max-width: 450px) {

  .header-style-1 .cart-search-contact,
  .header-style-2 .cart-search-contact,
  .header-style-3 .cart-search-contact {
    display: none;
  }
}

.header-style-1 .cart-search-contact button,
.header-style-2 .cart-search-contact button,
.header-style-3 .cart-search-contact button {
  background: transparent;
  padding: 0;
  border: 0;
  outline: 0;
}

.header-style-1 .cart-search-contact>div,
.header-style-2 .cart-search-contact>div,
.header-style-3 .cart-search-contact>div {
  float: left;
  position: relative;
}

.header-style-1 .cart-search-contact button>i,
.header-style-2 .cart-search-contact button>i,
.header-style-3 .cart-search-contact button>i {
  font-size: 20px;
  color: #fff;
}

.header-style-1 .cart-search-contact .header-search-form,
.header-style-2 .cart-search-contact .header-search-form,
.header-style-3 .cart-search-contact .header-search-form {
  position: absolute;
  width: 250px;
  right: 0;
  top: 70px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: -2px 18px 40px -9px #999999;
  box-shadow: -2px 18px 40px -9px #999999;
  z-index: 10;
}

@media (max-width: 991px) {

  .header-style-1 .cart-search-contact .header-search-form,
  .header-style-2 .cart-search-contact .header-search-form,
  .header-style-3 .cart-search-contact .header-search-form {
    top: 55px;
  }
}

@media (max-width: 767px) {

  .header-style-1 .cart-search-contact .header-search-form,
  .header-style-2 .cart-search-contact .header-search-form,
  .header-style-3 .cart-search-contact .header-search-form {
    top: 55px;
    right: 15px;
  }
}

.header-style-1 .cart-search-contact .header-search-form button i,
.header-style-2 .cart-search-contact .header-search-form button i,
.header-style-3 .cart-search-contact .header-search-form button i {
  color: #262b3e;
}

.header-style-1 .cart-search-contact .header-search-form-wrapper .fi:before,
.header-style-2 .cart-search-contact .header-search-form-wrapper .fi:before,
.header-style-3 .cart-search-contact .header-search-form-wrapper .fi:before {
  font-size: 22px;
  font-size: 1.375rem;
}

.header-style-1 .cart-search-contact form div,
.header-style-2 .cart-search-contact form div,
.header-style-3 .cart-search-contact form div {
  position: relative;
}

.header-style-1 .cart-search-contact form div button,
.header-style-2 .cart-search-contact form div button,
.header-style-3 .cart-search-contact form div button {
  position: absolute;
  right: 15px;
  top: 56%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-style-1 .cart-search-contact input,
.header-style-2 .cart-search-contact input,
.header-style-3 .cart-search-contact input {
  width: 100%;
  height: 50px;
  padding: 6px 20px;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 450px) {

  .header-style-1 .cart-search-contact .mini-cart,
  .header-style-2 .cart-search-contact .mini-cart,
  .header-style-3 .cart-search-contact .mini-cart {
    display: none;
  }
}

.header-style-1 .cart-search-contact .mini-cart .fi:before,
.header-style-2 .cart-search-contact .mini-cart .fi:before,
.header-style-3 .cart-search-contact .mini-cart .fi:before {
  font-size: 25px;
  font-size: 1.5625rem;
}

.header-style-1 .cart-search-contact .mini-cart .cart-count,
.header-style-2 .cart-search-contact .mini-cart .cart-count,
.header-style-3 .cart-search-contact .mini-cart .cart-count {
  background: var(--primary-color);
  width: 22px;
  height: 22px;
  line-height: 22px;
  font-size: 10px;
  font-size: 0.625rem;
  color: white;
  position: absolute;
  top: 0;
  right: -5px;
  border-radius: 50%;
}

.header-style-1 .cart-search-contact .mini-cart-content,
.header-style-2 .cart-search-contact .mini-cart-content,
.header-style-3 .cart-search-contact .mini-cart-content {
  background: #fff;
  width: 300px;
  z-index: 10;
  position: absolute;
  right: 0;
  top: 70px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: -2px 18px 40px -9px #999999;
  box-shadow: -2px 18px 40px -9px #999999;
}

@media (max-width: 991px) {

  .header-style-1 .cart-search-contact .mini-cart-content,
  .header-style-2 .cart-search-contact .mini-cart-content,
  .header-style-3 .cart-search-contact .mini-cart-content {
    top: 55px;
  }
}

@media (max-width: 767px) {

  .header-style-1 .cart-search-contact .mini-cart-content,
  .header-style-2 .cart-search-contact .mini-cart-content,
  .header-style-3 .cart-search-contact .mini-cart-content {
    top: 55px;
  }
}

@media (max-width: 450px) {

  .header-style-1 .cart-search-contact .mini-cart-content,
  .header-style-2 .cart-search-contact .mini-cart-content,
  .header-style-3 .cart-search-contact .mini-cart-content {
    right: auto;
    left: -185px;
  }
}

.header-style-1 .cart-search-contact .mini-cart-content p,
.header-style-2 .cart-search-contact .mini-cart-content p,
.header-style-3 .cart-search-contact .mini-cart-content p {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #262b3e;
  margin: 0;
  text-transform: uppercase;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-items,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-items,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-items {
  padding: 25px 20px;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #efefef;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item:first-child,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item:first-child,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-image,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-image,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-image {
  width: 50px;
  height: 50px;
  border: 2px solid #f3f3f3;
  float: left;
  margin-right: 15px;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-image a,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-image a,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-image a,
.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-image img,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-image img,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-image img {
  display: block;
  width: 46px;
  height: 46px;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-des,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-des,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-des {
  position: relative;
  overflow: hidden;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-des a,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-des a,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-des a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  color: #262b3e;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-des a:hover,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-des a:hover,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-des a:hover {
  color: var(--primary-color);
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-des .mini-cart-item-price,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-des .mini-cart-item-price,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-des .mini-cart-item-price {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #888;
  display: block;
  margin-top: 3px;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-des .mini-cart-item-quantity,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-des .mini-cart-item-quantity,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-des .mini-cart-item-quantity {
  font-size: 12px;
  font-size: 0.75rem;
  color: #444;
  display: block;
  position: absolute;
  right: 0;
  top: 2px;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-action,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-action,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-action {
  padding: 20px 0 30px;
  border-top: 1px solid #efefef;
  text-align: center;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-action .theme-btn-s2,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-action .theme-btn-s2,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-action .theme-btn-s2,
.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-action .theme-btn-s3,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-action .theme-btn-s3,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-action .theme-btn-s3 {
  float: right;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-action .mini-checkout-price,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-action .mini-checkout-price,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-action .mini-checkout-price {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #262b3e;
  display: inline-block;
}

.header-style-1 .cart-search-contact .mini-cart-content-toggle,
.header-style-2 .cart-search-contact .mini-cart-content-toggle,
.header-style-3 .cart-search-contact .mini-cart-content-toggle,
.header-style-1 .cart-search-contact .header-search-content-toggle,
.header-style-2 .cart-search-contact .header-search-content-toggle,
.header-style-3 .cart-search-contact .header-search-content-toggle {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.header-style-1 .cart-search-contact .cart-toggle-btn,
.header-style-2 .cart-search-contact .cart-toggle-btn,
.header-style-3 .cart-search-contact .cart-toggle-btn,
.header-style-1 .cart-search-contact .search-toggle-btn,
.header-style-2 .cart-search-contact .search-toggle-btn,
.header-style-3 .cart-search-contact .search-toggle-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

/*--------------------------------------------------------------
	#header-style-2
--------------------------------------------------------------*/
@media screen and (min-width: 992px) {

  .header-style-2,
  .header-style-3 {
    position: relative;
  }

  .header-style-2 .navbar .container,
  .header-style-3 .navbar .container,
  .header-style-2 .topbar .container,
  .header-style-3 .topbar .container {
    width: 1245px;
  }
}

@media screen and (min-width: 992px) {

  .header-style-2 .topbar,
  .header-style-3 .topbar {
    background: transparent;
    padding: 0;
  }

  .header-style-2 .topbar .container-fluid,
  .header-style-3 .topbar .container-fluid,
  .header-style-2 .topbar .container,
  .header-style-3 .topbar .container {
    background: #fff;
    padding: 15px;
  }

  .header-style-2 .topbar .contact-info li,
  .header-style-3 .topbar .contact-info li,
  .header-style-2 .topbar .social a,
  .header-style-3 .topbar .social a {
    color: #262b3e;
  }

  .header-style-2 .navigation,
  .header-style-3 .navigation {
    border-bottom: 0;
  }

  .header-style-2 .navigation .container-fluid,
  .header-style-3 .navigation .container-fluid,
  .header-style-2 .navigation .container,
  .header-style-3 .navigation .container {
    background: #fff;
    border-top: 1px solid #e3e3e3;
  }

  .header-style-2 #navbar>ul>li>a,
  .header-style-3 #navbar>ul>li>a,
  .header-style-2 .cart-search-contact button>i,
  .header-style-3 .cart-search-contact button>i {
    color: #262b3e;
  }

  .header-style-2 .cart-search-contact,
  .header-style-3 .cart-search-contact {
    border-left: 1px solid #e3e3e3;
  }

  .header-style-2 .navbar-header,
  .header-style-3 .navbar-header {
    background: var(--primary-color);
    height: 101px;
    margin-left: -15px;
    padding-left: 15px;
  }
}

/*--------------------------------------------------------------
	#header-style-3
--------------------------------------------------------------*/
.header-style-3 .topbar .contact-info i {
  display: inline-block;
  color: var(--primary-color);
  padding-right: 5px;
}

.header-style-3 .topbar .contact-info ul>li:nth-child(2) i {
  position: relative;
  top: 2px;
}

@media screen and (min-width: 992px) {
  .header-style-3 {
    position: relative;
  }

  .header-style-3 .navbar-header {
    background: transparent;
    height: 101px;
    margin-left: -15px;
    padding-left: 15px;
  }
}

@media (max-width: 991px) {
  .header-style-3 .navbar .navbar-brand {
    background: #fff;
  }
}

/*--------------------------------------------------------------
#0.4	hero slider
--------------------------------------------------------------*/
.hero-slider {
  width: 100%;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .hero-slider {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 500px;
  }
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-slider .swiper-container,
.hero-slider .hero-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: inherit;
}

.hero-slider .slide-inner,
.hero-slider .hero-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin-top: -30px;
  text-align: center;
  border-radius: 60px;
}

@media (max-width: 767px) {

  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-button-prev {
  left: 25px;
}

.hero-slider .swiper-button-prev:before {
  font-family: "themify";
  content: "\e629";
  font-size: 20px;
  color: #fff;
}

.hero-slider .swiper-button-next {
  right: 25px;
}

.hero-slider .swiper-button-next:before {
  font-family: "themify";
  content: "\e628";
  font-size: 20px;
  color: #fff;
}

/*--------------------------------------------------------------
	#hero-style-1
--------------------------------------------------------------*/
.hero-style-1 {
  height: calc(100vh - 62px);
  /*** swiper custom pagination ***/
}

@media (max-width: 991px) {
  .hero-style-1 {
    height: 600px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-style-1 {
    height: 500px;
  }
}

.hero-style-1 .slide-title {
  /*max-width: 655px;*/
  max-width: 705px;
}

@media (max-width: 991px) {
  .hero-style-1 .slide-title {
    margin: 0 auto;
    text-align: center;
  }
}

.hero-style-1 .slide-title h2 {
  font-size: 65px;
  font-size: 4.0625rem;
  color: #fff;
  margin: 0 0 0.61em;
  font-weight: 600;
}

@media (max-width: 991px) {
  .hero-style-1 .slide-title h2 {
    font-size: 55px;
    font-size: 3.4375rem;
  }
}

@media (max-width: 767px) {
  .hero-style-1 .slide-title h2 {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

@media (max-width: 450px) {
  .hero-style-1 .slide-title h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.hero-style-1 .slide-text {
  max-width: 655px;
}

@media (max-width: 991px) {
  .hero-style-1 .slide-text {
    margin: 0 auto;
    text-align: center;
  }
}

.hero-style-1 .slide-text p {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 600;
  margin: 0 0 2.7em;
}

@media (max-width: 767px) {
  .hero-style-1 .slide-text p {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  .hero-style-1 .slide-btns {
    margin: 0 auto;
    text-align: center;
  }
}

.hero-style-1 .container {
  position: relative;
}

@media screen and (min-width: 992px) {
  .hero-style-1 .container {
    padding-top: 77px;
  }
}

.hero-style-1 .video-btns {
  position: absolute;
  right: 15px;
  right: 28%;
  top: calc(50% - 33px);
}

@media (max-width: 991px) {
  .hero-style-1 .video-btns {
    display: none;
  }
}

.hero-style-1 .video-btns a {
  background-color: #fff;
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  border-radius: 65px;
  display: inline-block;
  position: relative;
  top: 5px;
  margin-left: 20px;
}

.hero-style-1 .video-btns a:after {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--primary-color);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hero-style-1 .video-btns a:before {
  content: "";
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  position: absolute;
  left: -8px;
  top: -8px;
  border: 1px solid #ececec;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .hero-style-1 .video-btns a:before {
    border: 1px solid #ececec;
  }
}

.hero-style-1 .swiper-button-next,
.hero-style-1 .swiper-button-prev {
  display: none;
}

.hero-style-1 .swiper-cust-pagination {
  width: 100%;
  max-width: 1170px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  margin-top: -55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*border: 1px solid #1D84CF;*/
}

.hero-style-1 .swiper-cust-pagination>div+div {
  border-left: 1px solid #dedede;
}

@media (max-width: 991px) {
  .hero-style-1 .swiper-cust-pagination {
    display: none;
  }
}

.hero-style-1 .swiper-pagination-bullet {
  width: auto;
  height: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /*background: #f1f0f0;*/
  background: #fff;
  border-radius: 0;
  padding: 40px 15px 40px 90px;
  position: relative;
  font-size: 15px;
  font-size: 0.9375rem;
  opacity: 1;
  margin: 15px 0 0 0 !important;
}

@media (max-width: 1199px) {
  .hero-style-1 .swiper-pagination-bullet {
    padding: 40px 15px 40px 80px;
  }
}

.hero-style-1 .swiper-pagination-bullet i {
  position: absolute;
  left: 30px;
  top: 25px;
}

@media (max-width: 1199px) {
  .hero-style-1 .swiper-pagination-bullet i {
    left: 20px;
  }
}

.hero-style-1 .swiper-pagination-bullet .fi:before {
  font-size: 50px;
  color: #262b3e;
}

@media (max-width: 1199px) {
  .hero-style-1 .swiper-pagination-bullet .fi:before {
    font-size: 45px;
  }
}

.hero-style-1 .swiper-pagination-bullet h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0.2em 0 0;
}

@media (max-width: 1199px) {
  .hero-style-1 .swiper-pagination-bullet h4 {
    font-size: 16px;
    font-size: 1rem;
  }
}

.hero-style-1 .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color);
  color: #fff;
  border-left: 1px solid var(--primary-color);
}

.hero-style-1 .swiper-pagination-bullet-active h4,
.hero-style-1 .swiper-pagination-bullet-active .fi:before {
  color: #fff;
}

/*--------------------------------------------------------------
	#hero-style-2
--------------------------------------------------------------*/
.hero-style-2 {
  height: calc(100vh - 154px);
}

@media (max-width: 991px) {
  .hero-style-2 {
    height: 600px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-style-2 {
    height: 500px;
  }
}

.hero-style-2 .number-1-tag {
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .hero-style-2 .number-1-tag {
    display: none;
  }
}

.hero-style-2 .number-1-tag img {
  display: inline-block;
}

.hero-style-2 .slide-title {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.hero-style-2 .slide-title h2 {
  font-size: 65px;
  font-size: 4.0625rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.61em;
}

@media (max-width: 991px) {
  .hero-style-2 .slide-title h2 {
    font-size: 55px;
    font-size: 3.4375rem;
  }
}

@media (max-width: 767px) {
  .hero-style-2 .slide-title h2 {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

@media (max-width: 450px) {
  .hero-style-2 .slide-title h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.hero-style-2 .slide-text {
  max-width: 655px;
  margin: 0 auto;
  text-align: center;
}

.hero-style-2 .slide-text p {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 600;
  margin: 0 0 1em;
}

@media (max-width: 767px) {
  .hero-style-2 .slide-text p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.hero-style-2 .slide-btns {
  margin: 0 auto;
  text-align: center;
}

.hero-style-2 .container {
  position: relative;
  padding-top: 0;
}

.hero-style-2 .swiper-cust-pagination {
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 50px;
  z-index: 10;
}

.hero-style-2 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: center;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

.hero-style-2 .swiper-pagination-bullet-active {
  color: #fff;
  background: var(--primary-color);
}

.hero-style-2 .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-style-2 .swiper-pagination-custom,
.hero-style-2 .swiper-pagination-fraction {
  bottom: 30px;
}

@media screen and (min-width: 992px) {

  .hero-style-2 .swiper-container-horizontal>.swiper-pagination-bullets,
  .hero-style-2 .swiper-pagination-custom,
  .hero-style-2 .swiper-pagination-fraction {
    display: none;
  }
}

/*--------------------------------------------------------------
	#static-hero
--------------------------------------------------------------*/
.static-hero {
  height: 750px;
  background: #262b3e;
  position: relative;
}

.static-hero:before {
  content: "";
  background: -webkit-linear-gradient(left,
      #262b3e 60%,
      var(--primary-color) 60%);
  background: -webkit-gradient(linear,
      left top,
      right top,
      color-stop(60%, #262b3e),
      color-stop(60%, var(--primary-color)));
  background: -o-linear-gradient(left, #262b3e 60%, var(--primary-color) 60%);
  background: linear-gradient(left, #262b3e 60%, var(--primary-color) 60%);
  width: 120%;
  height: 100%;
  position: absolute;
  left: -9%;
  top: 0;
  -webkit-transform: skew(-25deg);
  -ms-transform: skew(-25deg);
  transform: skew(-25deg);
}

@media (max-width: 991px) {
  .static-hero:before {
    left: -5px;
  }
}

@media (max-width: 767px) {
  .static-hero:before {
    width: 140%;
  }
}

@media (max-width: 991px) {
  .static-hero {
    height: 500px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .static-hero {
    height: 500px;
  }
}

.static-hero .lawyer {
  background: url("../images/lawyer.png") center center/cover no-repeat local;
  width: 527px;
  height: 633px;
  position: absolute;
  right: 0;
  bottom: -218px;
}

@media (max-width: 991px) {
  .static-hero .lawyer {
    width: 350px;
    height: 420px;
    position: absolute;
    right: 0;
    bottom: -109px;
  }
}

@media (max-width: 767px) {
  .static-hero .lawyer {
    display: none;
  }
}

.static-hero .slide-title {
  max-width: 655px;
}

@media (max-width: 767px) {
  .static-hero .slide-title {
    margin: 0 auto;
    text-align: center;
  }
}

.static-hero .slide-title h2 {
  font-size: 65px;
  font-size: 4.0625rem;
  color: #fff;
  margin: 0 0 0.61em;
}

@media (max-width: 991px) {
  .static-hero .slide-title h2 {
    font-size: 55px;
    font-size: 3.4375rem;
  }
}

@media (max-width: 767px) {
  .static-hero .slide-title h2 {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

@media (max-width: 450px) {
  .static-hero .slide-title h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.static-hero .slide-text {
  max-width: 655px;
}

@media (max-width: 767px) {
  .static-hero .slide-text {
    margin: 0 auto;
    text-align: center;
  }
}

.static-hero .slide-text p {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 600;
  margin: 0 0 2.7em;
}

@media (max-width: 767px) {
  .static-hero .slide-text p {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .static-hero .slide-btns {
    margin: 0 auto;
    text-align: center;
  }
}

.static-hero .container {
  position: relative;
}

/*--------------------------------------------------------------
#0.5	footer
--------------------------------------------------------------*/
.site-footer {
  background-color: #1d84cf;
  background-size: cover;
  position: relative;
  font-size: 15px;
  overflow: hidden;
  /*** social-newsletter-area***/
  /*** about-widget ***/
  /*** link-widget ***/
  /*** contact-widget ***/
  /*** lower-footer ***/
}

.site-footer ul {
  list-style: none;
}

.site-footer p,
.site-footer li {
  color: #cdced0;
}

.site-footer .social-newsletter-area {
  background-color: #1d84cf;
  padding: 55px 0 60px;
}

@media (max-width: 991px) {
  .site-footer .social-newsletter-area .social-newsletter-content {
    text-align: center;
  }
}

.site-footer .social-newsletter-area .social-newsletter-content>div:first-child {
  width: 320px;
  float: left;
}

@media (max-width: 991px) {
  .site-footer .social-newsletter-area .social-newsletter-content>div:first-child {
    width: 100%;
    float: none;
  }
}

.site-footer .social-newsletter-area .social-newsletter-content>div:nth-child(2) {
  width: calc(100% - 640px);
  float: left;
}

@media (max-width: 991px) {
  .site-footer .social-newsletter-area .social-newsletter-content>div:nth-child(2) {
    width: 100%;
    float: none;
    margin: 35px 0;
  }
}

.site-footer .social-newsletter-area .social-newsletter-content>div:last-child {
  width: 320px;
  float: right;
}

@media (max-width: 991px) {
  .site-footer .social-newsletter-area .social-newsletter-content>div:last-child {
    width: 100%;
    float: none;
  }
}

.site-footer .social-newsletter-area .social-area ul {
  overflow: hidden;
  padding-top: 28px;
}

@media (max-width: 991px) {
  .site-footer .social-newsletter-area .social-area ul {
    display: inline-block;
    padding-top: 0;
  }
}

.site-footer .social-newsletter-area .social-area ul li {
  float: left;
}

.site-footer .social-newsletter-area .social-area ul>li+li {
  margin-left: 10px;
}

.site-footer .social-newsletter-area .social-area ul a {
  background-color: #30364e;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}

.site-footer .social-newsletter-area .social-area ul a:hover {
  background-color: var(--primary-color);
}

.site-footer .social-newsletter-area .logo-area {
  text-align: center;
}

.site-footer .social-newsletter-area .logo-area img {
  display: inline-block;
  margin-left: -90px;
}

@media (max-width: 991px) {
  .site-footer .social-newsletter-area .logo-area img {
    margin-left: 0;
  }
}

.site-footer .social-newsletter-area .newsletter-area .inner {
  max-width: 400px;
}

@media (max-width: 991px) {
  .site-footer .social-newsletter-area .newsletter-area .inner {
    margin: 0 auto;
  }
}

.site-footer .social-newsletter-area .newsletter-area h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

.site-footer .social-newsletter-area .newsletter-area form {
  margin-top: 25px;
  position: relative;
}

.site-footer .social-newsletter-area .newsletter-area form input {
  background-color: #ffffff;
  height: 55px;
  color: #687693;
  padding: 6px 20px;
  border-radius: 0;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 12px;
}

.site-footer .social-newsletter-area .newsletter-area form button {
  background-color: #0e3e61;
  width: 55px;
  height: 55px;
  position: absolute;
  right: 0;
  /*top: 0;*/
  bottom: 0;
  border: 0;
  outline: 0;
  font-size: 20px;
  color: #fff;
  border-radius: 0 12px 12px 0;
}

.service-link-widget a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

.site-footer .upper-footer {
  padding: 90px 0;
}

@media (max-width: 991px) {
  .site-footer .upper-footer {
    padding: 90px 0 20px;
  }
}

@media (max-width: 767px) {
  .site-footer .upper-footer {
    padding: 80px 0 10px;
  }
}

@media (max-width: 991px) {
  .site-footer .upper-footer .col {
    min-height: 235px;
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .site-footer .upper-footer .col {
    min-height: auto;
    margin-bottom: 60px;
  }
}

.site-footer .widget-title {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .site-footer .widget-title {
    margin-bottom: 20px;
  }
}

.site-footer .widget-title h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
  padding-bottom: 0.4em;
  text-transform: capitalize;
  position: relative;
}

@media (max-width: 991px) {
  .site-footer .widget-title h3 {
    padding-bottom: 0;
  }
}

.site-footer .about-widget p {
  margin-bottom: 0.8em;
  line-height: 1.9em;
}

.site-footer .about-widget p:last-child {
  margin-bottom: 0;
  color: #fff;
  font-weight: 500;
}

.site-footer .link-widget {
  overflow: hidden;
}

@media screen and (min-width: 1200px) {
  .site-footer .link-widget {
    padding-left: 20px;
  }
}

@media (max-width: 1199px) {
  .site-footer .link-widget {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .site-footer .link-widget {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .site-footer .link-widget {
    max-width: 350px;
  }
}

.site-footer .link-widget ul {
  width: 50%;
  float: left;
}

.site-footer .link-widget ul li {
  position: relative;
}

.site-footer .link-widget ul a {
  color: #fff;
  font-weight: 500;
}

.site-footer .link-widget ul a:hover,
.site-footer .link-widget ul li:hover:before {
  text-decoration: underline;
}

.site-footer .link-widget ul>li+li {
  margin-top: 15px;
}

.site-footer .line-widget-2 ul {
  width: 100%;
  float: none;
}

@media screen and (min-width: 1200px) {
  .site-footer .contact-widget {
    padding-left: 25px;
  }
}

.site-footer .contact-widget ul {
  margin-top: 25px;
}

.site-footer .contact-widget ul li:first-child {
  font-size: 1.25rem;
}

.site-footer .contact-widget ul li {
  position: relative;
  /*color: #fff;*/
  /*font-weight: 500;*/
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  padding-bottom: 0.4em;
  text-transform: capitalize;
}

.site-footer .contact-widget ul>li+li {
  margin-top: 15px;
}

.site-footer .contact-widget li span {
  font-weight: 500;
}

.site-footer .lower-footer {
  text-align: center;
  position: relative;
}

.site-footer .lower-footer .row {
  padding: 20px 0;
  position: relative;
}

.site-footer .lower-footer .row .separator {
  background: rgba(255, 255, 255, 0.1);
  width: calc(100% - 30px);
  height: 1px;
  position: absolute;
  left: 15px;
  top: 0;
}

.site-footer .lower-footer .copyright {
  display: inline-block;
  float: left;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0;
}

@media (max-width: 991px) {
  .site-footer .lower-footer .copyright {
    float: none;
    display: block;
    margin: 0 0 20px;
  }
}

.site-footer .lower-footer .copyright a {
  color: #cdced0;
  text-decoration: underline;
}

.site-footer .lower-footer .extra-link {
  display: inline-block;
  float: right;
  overflow: hidden;
}

@media (max-width: 991px) {
  .site-footer .lower-footer .extra-link {
    float: none;
    display: block;
    text-align: center;
  }
}

.site-footer .lower-footer .extra-link ul {
  overflow: hidden;
  list-style: none;
}

@media (max-width: 991px) {
  .site-footer .lower-footer .extra-link ul {
    display: inline-block;
  }
}

.site-footer .lower-footer .extra-link ul li {
  float: left;
}

.site-footer .lower-footer .extra-link ul>li+li {
  margin-left: 35px;
  position: relative;
}

@media (max-width: 767px) {
  .site-footer .lower-footer .extra-link ul>li+li {
    margin-left: 15px;
  }
}

.site-footer .lower-footer .extra-link ul>li+li:before {
  content: "";
  background: #262b3e;
  width: 15px;
  height: 1px;
  position: absolute;
  left: -25px;
  top: 11px;
}

@media (max-width: 767px) {
  .site-footer .lower-footer .extra-link ul>li+li:before {
    display: none;
  }
}

.site-footer .lower-footer .extra-link ul a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #cdced0;
}

.site-footer .lower-footer .extra-link ul a:hover {
  text-decoration: underline;
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -300px;
  z-index: 9999;
  opacity: 0;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  -ms-transition: all 0.7s;
  transition: all 0.7s;
}

.sticky-on {
  opacity: 1;
  top: 0;
}

.header-style-1 .sticky-header,
.header-style-2 .sticky-header,
.header-style-3 .sticky-header {
  background-color: #262b3e;
}

@media screen and (min-width: 992px) {

  .header-style-2 .sticky-header,
  .header-style-3 .sticky-header {
    background: -webkit-linear-gradient(left,
        var(--primary-color) 50%,
        #fff 50.1%);
    background: -moz-linear-gradient(left,
        var(--primary-color) 50%,
        #fff 50.1%);
    background: -o-linear-gradient(left, var(--primary-color) 50%, #fff 50.1%);
    background: -ms-linear-gradient(left, var(--primary-color) 50%, #fff 50.1%);
    background: -webkit-gradient(linear,
        left top,
        right top,
        color-stop(50%, var(--primary-color)),
        color-stop(50.1%, #fff));
    background: linear-gradient(left, var(--primary-color) 50%, #fff 50.1%);
    border-bottom: 1px solid #e3e3e3;
  }

  .header-style-2 .sticky-header .container-fluid,
  .header-style-3 .sticky-header .container-fluid {
    border-top: 0;
  }
}

.header-style-3 .sticky-header {
  background: #fff;
}

/*--------------------------------------------------------------
#0.6	about-section
--------------------------------------------------------------*/
.about-section,
.about-section-s3 {
  margin-top: 60px;
  padding-bottom: 105px;
}

@media (max-width: 991px) {

  .about-section,
  .about-section-s3 {
    padding-bottom: 95px;
  }
}

@media (max-width: 767px) {

  .about-section,
  .about-section-s3 {
    padding-bottom: 75px;
  }
}

@media (max-width: 991px) {

  .about-section,
  .about-section-s3 {
    margin-top: 0;
  }
}

.about-section .right-col,
.about-section-s3 .right-col {
  padding-top: 35px;
}

@media (max-width: 1199px) {

  .about-section .right-col,
  .about-section-s3 .right-col {
    padding-top: 0;
  }
}

@media (max-width: 991px) {

  .about-section .right-col,
  .about-section-s3 .right-col {
    margin-top: 40px;
  }
}

.about-section .right-col>p:first-child:first-letter,
.about-section-s3 .right-col>p:first-child:first-letter {
  font-family: "Roboto Slab", serif;
  font-size: 45px;
  font-size: 2.8125rem;
}

@media (max-width: 991px) {

  .about-section .right-col>p:first-child:first-letter,
  .about-section-s3 .right-col>p:first-child:first-letter {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

.about-section .quoter,
.about-section-s3 .quoter {
  padding: 20px 0;
}

.about-section .quoter h4,
.about-section-s3 .quoter h4 {
  font-size: 18pc;
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0 0 0.3em;
}

@media (max-width: 991px) {

  .about-section .quoter h4,
  .about-section-s3 .quoter h4 {
    font-size: 16px;
    font-size: 1rem;
  }
}

.about-section .quoter span,
.about-section-s3 .quoter span {
  font-size: 13px;
  font-size: 0.8125rem;
}

/*--------------------------------------------------------------
#0.7	feature-section
--------------------------------------------------------------*/
.feature-section {
  padding-top: 0;
}

@media (max-width: 991px) {
  .feature-section {
    padding-bottom: 85px;
  }
}

@media (max-width: 767px) {
  .feature-section {
    padding-bottom: 65px;
  }
}

.feature-section .info-col {
  background: url("../images/feature-info-col-bg.jpg") center center/cover no-repeat local;
  padding: 55px 35px;
  position: relative;
}

@media (max-width: 767px) {
  .feature-section .info-col {
    margin-bottom: 15px;
  }
}

.feature-section .info-col:before {
  content: "";
  background: #262b3e;
  background-image: -webkit-linear-gradient(90deg,
      #262b3e 62%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  background-image: -moz-linear-gradient(90deg,
      #262b3e 62%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  background-image: -ms-linear-gradient(90deg,
      #262b3e 62%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.95;
}

.feature-section .info-col h4,
.feature-section .info-col a {
  position: relative;
}

.feature-section .info-col h4 {
  /*font-size: 22px;*/
  /*font-size: 1.375rem;*/
  font-size: 16px;
  color: #fff;
  line-height: 1.5em;
  margin: 0 0 1.5em;
}

.feature-section .feature-grid {
  border: 2px solid #f3f0f0;
  padding: 40px 28px;
  height: 330px;
}

@media (max-width: 991px) {
  .feature-section .feature-grid {
    margin-bottom: 15px;
  }
}

.feature-section .feature-grid:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.feature-section .feature-grid:hover h3,
.feature-section .feature-grid:hover p,
.feature-section .feature-grid:hover .fi:before {
  color: #fff;
}

.feature-section .feature-grid .fi:before {
  font-size: 55px;
  color: var(--primary-color);
}

.feature-section .feature-grid h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0.8em 0 1em;
}

.feature-section .feature-grid p {
  margin: 0;
}

/*--------------------------------------------------------------
#0.8	service-section
--------------------------------------------------------------*/
@media screen and (min-width: 1200px) {
  .service-section {
    margin: 20px 80px;
  }
}

.service-section .left-col {
  background: url("../images/ceo-img.jpg") center top/cover no-repeat local;
  max-width: 40%;
  padding: 90px;
  float: left;
  position: relative;
  display: table;
}

@media (max-width: 1500px) {
  .service-section .left-col {
    padding: 90px 45px;
  }
}

@media (max-width: 1200px) {
  .service-section .left-col {
    max-width: 100%;
    float: none;
    height: 500px !important;
  }
}

@media (max-width: 767px) {
  .service-section .left-col {
    padding: 50px 25px;
  }
}

.service-section .left-col:before {
  content: "";
  background: #262b3e;
  background: -webkit-linear-gradient(top, transparent, #262b3e);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.service-section .left-col .inner-content {
  display: table-cell;
  vertical-align: bottom;
  position: relative;
}

.service-section .left-col blockquote {
  font-family: "Roboto Slab", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  color: #fff;
  border: 0;
  padding: 0;
  margin: 0;
}

.service-section .left-col h4 {
  font-family: "Muli", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 1.5em 0 0.3em;
}

.service-section .left-col h4+span {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
}

.service-section .right-col {
  background-color: #262b3e;
  max-width: 60%;
  float: right;
  padding: 110px 120px 44px 60px;
}

@media (max-width: 1500px) {
  .service-section .right-col {
    padding: 110px 60px 44px 60px;
  }
}

@media (max-width: 1200px) {
  .service-section .right-col {
    max-width: 100%;
    float: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 767px) {
  .service-section .right-col {
    padding: 80px 25px 24px 25px;
  }
}

.service-section .service-grids {
  padding-left: 85px;
  margin: 0 -35px;
}

@media (max-width: 1500px) {
  .service-section .service-grids {
    padding-left: 0;
  }
}

.service-section .service-grids .grid {
  width: calc(50% - 70px);
  margin: 0 35px 50px;
  float: left;
  position: relative;
  padding-left: 75px;
}

@media (max-width: 600px) {
  .service-section .service-grids .grid {
    width: calc(100% - 70px);
    float: none;
  }
}

.service-section .service-grids .fi {
  position: absolute;
  left: 0;
  top: -8px;
}

.service-section .service-grids .fi:before {
  font-size: 50px;
  color: var(--primary-color);
}

.service-section .service-grids h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0 0 0.5em;
}

@media (max-width: 767px) {
  .service-section .service-grids h3 {
    font-size: 16px;
    font-size: 1rem;
  }
}

.service-section .service-grids h3 a {
  color: #fff;
}

.service-section .service-grids h3 a:hover {
  color: var(--primary-color);
}

.service-section .service-grids p {
  color: #c5c5c6;
  margin: 0;
}

/*--------------------------------------------------------------
#0.9	case-studies-section
--------------------------------------------------------------*/
.case-studies-section {
  padding-bottom: 0;
}

@media screen and (min-width: 1200px) {
  .case-studies-section {
    margin: 0 80px;
  }
}

.case-studies-section .case-studies-grids .grid {
  position: relative;
  text-align: center;
}

.case-studies-section .case-studies-grids .grid .overlay {
  background: #262b3e;
  background-image: -moz-linear-gradient(90deg,
      #262b3e 62%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  background-image: -webkit-linear-gradient(90deg,
      #262b3e 62%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  background-image: -ms-linear-gradient(90deg,
      #262b3e 62%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.case-studies-section .case-studies-grids .grid:hover {
  cursor: -webkit-grab;
  cursor: grab;
}

.case-studies-section .case-studies-grids .grid:hover .overlay {
  top: 0;
  opacity: 0.9;
}

.case-studies-section .case-studies-grids .grid .content {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.case-studies-section .case-studies-grids .grid .cat {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--primary-color);
  font-weight: 700;
  margin: 0;
}

.case-studies-section .case-studies-grids .grid h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0;
}

.case-studies-section .case-studies-grids .grid h3 a {
  color: #fff;
}

.case-studies-section .case-studies-grids .grid h3 a:hover {
  color: var(--primary-color);
}

.case-studies-pg-section {
  padding-bottom: 95px;
}

@media (max-width: 991px) {
  .case-studies-pg-section {
    padding-bottom: 85px;
  }
}

@media (max-width: 767px) {
  .case-studies-pg-section {
    padding-bottom: 75px;
  }
}

/*--------------------------------------------------------------
#1.0	testimonials-section
--------------------------------------------------------------*/
.testimonials-section {
  background: url("../images/testimonials/testimonials-bg.png") center center/cover no-repeat local;
}

.testimonials-section .grid .fi:before {
  font-size: 60px;
  color: var(--primary-color);
}

.testimonials-section .grid p {
  font-family: "Roboto Slab", serif;
  font-size: 17px;
  font-size: 1.0625rem;
  margin: 0;
}

.testimonials-section .grid img {
  width: auto;
}

@media screen and (min-width: 1200px) {
  .testimonials-section .testimonials-grids {
    padding-left: 40px;
  }
}

.testimonials-section .client-info {
  position: relative;
  padding-left: 90px;
  padding-top: 15px;
  min-height: 70px;
  margin-top: 35px;
}

.testimonials-section .client-info .img-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 65px;
  height: 65px;
}

.testimonials-section .client-info .img-holder img {
  border-radius: 50%;
}

.testimonials-section .client-info h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 0.2em;
}

.testimonials-section .client-info h3+span {
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (min-width: 1200px) {
  .testimonials-section .owl-controls {
    position: absolute;
    left: -407px;
    margin: 0;
    bottom: 0;
  }
}

@media (max-width: 1199px) {
  .testimonials-section .owl-controls {
    margin-top: 45px;
  }
}

.testimonials-section .owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 5px;
  background: var(--primary-color);
  opacity: 0.7;
}

.testimonials-section .owl-theme .owl-dots .owl-dot.active span {
  width: 25px;
  opacity: 1;
}

/*--------------------------------------------------------------
#1.1	cta-section
--------------------------------------------------------------*/
.cta-section {
  background: url("../images/cta-bg.jpg") center center/cover no-repeat local;
  /*padding: 115px 0;*/
  padding: 35px 0;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 1200px) {
  .cta-section {
    margin: 0 80px;
  }
}

@media (max-width: 991px) {
  .cta-section {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  .cta-section {
    padding: 80px 0;
  }
}

.cta-section:before {
  content: "";
  background: var(--primary-color);
  background-image: -moz-linear-gradient(-90deg,
      #262b3e 50%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  background-image: -webkit-linear-gradient(-90deg,
      #262b3e 50%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  background-image: -ms-linear-gradient(-90deg,
      #262b3e 50%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.9;
}

.cta-section h5,
.cta-section h2 {
  color: #fff;
}

.cta-section h5 {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 2em 0 0;
}

.cta-section h2 {
  font-size: 36px;
  font-size: 2.25rem;
  margin: 0.5em 0 1em;
}

/*--------------------------------------------------------------
#1.2	team-section
--------------------------------------------------------------*/
.team-section .grid .details {
  padding: 30px 15px;
  text-align: center;
  position: relative;
  border: 1px solid #f1f1f1;
}

@media (max-width: 991px) {
  .team-section .grid .details {
    padding: 25px 15px;
  }
}

.team-section .grid:hover .social {
  opacity: 1;
  visibility: visible;
}

.team-section .social {
  width: 100%;
  text-align: center;
  position: absolute;
  top: -17px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.team-section .social ul {
  background: #d8dbe0;
  padding: 5px 15px;
  display: inline-block;
  overflow: hidden;
  border-radius: 35px;
}

.team-section .social li {
  float: left;
}

.team-section .social ul>li+li {
  margin-left: 15px;
}

.team-section .social a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #262b3e;
}

.team-section .social a:hover {
  color: var(--primary-color);
}

.team-section .details {
  background: #fff;
}

.team-section .details h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0 0 0.4em;
}

@media (max-width: 991px) {
  .team-section .details h3 {
    font-size: 16px;
    font-size: 1rem;
  }
}

.team-section .details h3 a {
  color: #262b3e;
}

.team-section .details h3 a:hover {
  color: var(--primary-color);
}

.team-section .details p {
  font-size: 13px;
  font-size: 0.8125rem;
  margin: 0;
}

@media screen and (min-width: 1200px) {
  .team-section .owl-controls {
    margin: 0;
    width: 100%;
    position: absolute;
    top: 40%;
  }

  .team-section .owl-controls .owl-prev {
    position: absolute;
    left: -27px;
  }

  .team-section .owl-controls .owl-next {
    position: absolute;
    right: -27px;
  }
}

@media (max-width: 1199px) {
  .team-section .owl-controls {
    margin-top: 35px;
  }
}

.team-section .owl-theme .owl-controls .owl-nav [class*="owl-"] {
  width: 55px;
  height: 55px;
  line-height: 55px;
  font-size: 14px;
  background: #fff;
  margin: 0;
  padding: 0;
  color: #262b3e;
  border-radius: 50%;
  -webkit-box-shadow: 0px 9px 42.32px 3.68px rgba(25, 38, 62, 0.15);
  box-shadow: 0px 9px 42.32px 3.68px rgba(25, 38, 62, 0.15);
}

@media (max-width: 1199px) {
  .team-section .owl-theme .owl-controls .owl-nav [class*="owl-"] {
    margin: 5px;
  }
}

.team-section .owl-theme .owl-controls .owl-nav [class*="owl-"]:hover {
  background: var(--primary-color);
  color: #fff;
}

/*--------------------------------------------------------------
#1.3	contact-section
--------------------------------------------------------------*/
.contact-section,
.contact-section-s2,
.contact-section-s3 {
  background: #262b3e;
  background: url("../images/contact-bg.jpg") center center/cover no-repeat local;
  padding: 220px 0 35px;
  position: relative;
}

.contact-section:before,
.contact-section-s2:before,
.contact-section-s3:before {
  content: "";
  background: #262b3e;
  background-image: -moz-linear-gradient(90deg,
      #262b3e 62%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  background-image: -webkit-linear-gradient(90deg,
      #262b3e 62%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  background-image: -ms-linear-gradient(90deg,
      #262b3e 62%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.97;
}

@media screen and (min-width: 1450px) {

  .contact-section,
  .contact-section-s2,
  .contact-section-s3 {
    margin: -219px 80px 0;
  }
}

@media (max-width: 1449px) {

  .contact-section,
  .contact-section-s2,
  .contact-section-s3 {
    padding: 110px 0 35px;
  }
}

@media (max-width: 991px) {

  .contact-section,
  .contact-section-s2,
  .contact-section-s3 {
    padding: 100px 0 25px;
  }
}

@media (max-width: 767px) {

  .contact-section,
  .contact-section-s2,
  .contact-section-s3 {
    padding: 80px 0 25px;
  }
}

.contact-section .contact-info-col,
.contact-section-s2 .contact-info-col,
.contact-section-s3 .contact-info-col {
  width: calc(50% - 85px);
  float: left;
  padding-top: 200px;
}

@media (max-width: 991px) {

  .contact-section .contact-info-col,
  .contact-section-s2 .contact-info-col,
  .contact-section-s3 .contact-info-col {
    width: 100%;
    float: none;
    padding-top: 0;
  }
}

.contact-section .contact-info-col .contact-info,
.contact-section-s2 .contact-info-col .contact-info,
.contact-section-s3 .contact-info-col .contact-info {
  width: 500px;
  float: right;
}

@media (max-width: 1199px) {

  .contact-section .contact-info-col .contact-info,
  .contact-section-s2 .contact-info-col .contact-info,
  .contact-section-s3 .contact-info-col .contact-info {
    padding-left: 100px;
  }
}

@media (max-width: 991px) {

  .contact-section .contact-info-col .contact-info,
  .contact-section-s2 .contact-info-col .contact-info,
  .contact-section-s3 .contact-info-col .contact-info {
    width: 100%;
    float: none;
    padding-left: 15px;
    margin-bottom: 80px;
  }
}

.contact-section .contact-form-col,
.contact-section-s2 .contact-form-col,
.contact-section-s3 .contact-form-col {
  width: calc(50% + 85px);
  float: right;
  padding-right: 160px;
  position: relative;
}

@media (max-width: 1450px) {

  .contact-section .contact-form-col,
  .contact-section-s2 .contact-form-col,
  .contact-section-s3 .contact-form-col {
    padding-right: 60px;
  }
}

@media (max-width: 991px) {

  .contact-section .contact-form-col,
  .contact-section-s2 .contact-form-col,
  .contact-section-s3 .contact-form-col {
    width: 100%;
    float: none;
    padding: 0 15px;
  }
}

.contact-section .contact-info li,
.contact-section-s2 .contact-info li,
.contact-section-s3 .contact-info li {
  position: relative;
  padding-left: 85px;
}

.contact-section .contact-info ul>li+li,
.contact-section-s2 .contact-info ul>li+li,
.contact-section-s3 .contact-info ul>li+li {
  margin-top: 50px;
}

.contact-section .contact-info .fi,
.contact-section-s2 .contact-info .fi,
.contact-section-s3 .contact-info .fi {
  position: absolute;
  left: 0;
  top: -10px;
}

.contact-section .contact-info .fi:before,
.contact-section-s2 .contact-info .fi:before,
.contact-section-s3 .contact-info .fi:before {
  font-size: 50px;
  color: var(--primary-color);
}

.contact-section .contact-info h4,
.contact-section-s2 .contact-info h4,
.contact-section-s3 .contact-info h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.2em;
}

.contact-section .contact-info p,
.contact-section-s2 .contact-info p,
.contact-section-s3 .contact-info p {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  margin: 0;
}

.contact-section .contact-form,
.contact-section-s2 .contact-form,
.contact-section-s3 .contact-form {
  /*padding-left: 87px;*/
}

.contactPage {
  height: 700px;
}

@media (max-width: 1199px) {

  .contact-section .contact-form,
  .contact-section-s2 .contact-form,
  .contact-section-s3 .contact-form {
    padding-left: 0;
  }
}

.contact-section form input,
.contact-section-s2 form input,
.contact-section-s3 form input,
.contact-section form select,
.contact-section-s2 form select,
.contact-section-s3 form select,
.contact-section form textarea,
.contact-section-s2 form textarea,
.contact-section-s3 form textarea {
  background: #262b3e;
  width: 100%;
  height: 55px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

@media (max-width: 991px) {

  .contact-section form input,
  .contact-section-s2 form input,
  .contact-section-s3 form input,
  .contact-section form select,
  .contact-section-s2 form select,
  .contact-section-s3 form select,
  .contact-section form textarea,
  .contact-section-s2 form textarea,
  .contact-section-s3 form textarea {
    height: 45px;
  }
}

.contact-section form input:focus,
.contact-section-s2 form input:focus,
.contact-section-s3 form input:focus,
.contact-section form select:focus,
.contact-section-s2 form select:focus,
.contact-section-s3 form select:focus,
.contact-section form textarea:focus,
.contact-section-s2 form textarea:focus,
.contact-section-s3 form textarea:focus {
  border-color: var(--primary-color);
}

.contact-section form textarea,
.contact-section-s2 form textarea,
.contact-section-s3 form textarea {
  height: 180px;
}

.contact-section form,
.contact-section-s2 form,
.contact-section-s3 form {
  margin: 0 -15px;
  overflow: hidden;
}

.contact-section form ::-webkit-input-placeholder,
.contact-section-s2 form ::-webkit-input-placeholder,
.contact-section-s3 form ::-webkit-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.contact-section form :-moz-placeholder,
.contact-section-s2 form :-moz-placeholder,
.contact-section-s3 form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.contact-section form ::-moz-placeholder,
.contact-section-s2 form ::-moz-placeholder,
.contact-section-s3 form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.contact-section form :-ms-input-placeholder,
.contact-section-s2 form :-ms-input-placeholder,
.contact-section-s3 form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.contact-section form select,
.contact-section-s2 form select,
.contact-section-s3 form select {
  display: inline-block;
  color: #a9a9a9;
  cursor: pointer;
  opacity: 1;
  padding: 6px 12px;
  font-size: 15px;
  font-size: 0.9375rem;
}

.contact-section form>div,
.contact-section-s2 form>div,
.contact-section-s3 form>div {
  width: calc(50% - 30px);
  float: left;
  margin: 0 15px 30px;
}

@media (max-width: 600px) {

  .contact-section form>div,
  .contact-section-s2 form>div,
  .contact-section-s3 form>div {
    width: calc(100% - 30px);
    float: none;
  }
}

.contact-section form .fullwidth,
.contact-section-s2 form .fullwidth,
.contact-section-s3 form .fullwidth {
  width: calc(100% - 30px);
  float: none;
  clear: both;
}

/*--------------------------------------------------------------
#1.4	blog-section
--------------------------------------------------------------*/
.blog-section,
.blog-section-s2 {
  padding-bottom: 70px;
}

@media (max-width: 1199px) {

  .blog-section,
  .blog-section-s2 {
    padding-bottom: 60px;
  }
}

@media (max-width: 991px) {

  .blog-section,
  .blog-section-s2 {
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {

  .blog-section,
  .blog-section-s2 {
    padding-bottom: 40px;
  }
}

.blog-section .blog-grids,
.blog-section-s2 .blog-grids {
  margin: 0 -15px;
}

@media (max-width: 1199px) {

  .blog-section .blog-grids,
  .blog-section-s2 .blog-grids {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {

  .blog-section .blog-grids,
  .blog-section-s2 .blog-grids {
    margin: 50px -7.5px 0;
  }
}

.blog-section .blog-grids .grid,
.blog-section-s2 .blog-grids .grid {
  width: calc(50% - 30px);
  float: left;
  margin: 0 15px 50px;
}

@media (max-width: 767px) {

  .blog-section .blog-grids .grid,
  .blog-section-s2 .blog-grids .grid {
    width: calc(50% - 15px);
    margin: 0 7.5px 50px;
  }
}

@media (max-width: 600px) {

  .blog-section .blog-grids .grid,
  .blog-section-s2 .blog-grids .grid {
    width: calc(100% - 15px);
    float: none;
  }
}

.blog-section .entry-details,
.blog-section-s2 .entry-details {
  position: relative;
  padding: 45px 0 0 20px;
}

.blog-section .entry-details h3,
.blog-section-s2 .entry-details h3 {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 400;
  margin: 0 0 0.9em;
  line-height: 1.3em;
}

@media (max-width: 991px) {

  .blog-section .entry-details h3,
  .blog-section-s2 .entry-details h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.blog-section .entry-details h3 a,
.blog-section-s2 .entry-details h3 a {
  color: #262b3e;
}

.blog-section .entry-details h3 a:hover,
.blog-section-s2 .entry-details h3 a:hover {
  color: var(--primary-color);
}

.blog-section .entry-details .cat,
.blog-section-s2 .entry-details .cat {
  background: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 15px;
  color: white;
  position: absolute;
  left: 0;
  top: -20px;
  border-radius: 0 50px 50px 0;
}

.blog-section .entry-details .read-more,
.blog-section-s2 .entry-details .read-more {
  font-family: "Roboto Slab", serif;
  color: #687693;
  padding-left: 50px;
  position: relative;
}

@media (max-width: 991px) {

  .blog-section .entry-details .read-more,
  .blog-section-s2 .entry-details .read-more {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.blog-section .entry-details .read-more:before,
.blog-section-s2 .entry-details .read-more:before {
  content: "";
  background: #687693;
  width: 40px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 11px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-section .entry-details .read-more:hover,
.blog-section-s2 .entry-details .read-more:hover {
  color: var(--primary-color);
}

.blog-section .entry-details .read-more:hover:before,
.blog-section-s2 .entry-details .read-more:hover:before {
  background: var(--primary-color);
}

/*--------------------------------------------------------------
	#home-style-2
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#2.1	about-section-s2
--------------------------------------------------------------*/
.about-section-s2 {
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .about-section-s2 {
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .about-section-s2 {
    padding-bottom: 60px;
  }
}

.about-section-s2 .right-col {
  margin: 0 -15px;
}

@media (max-width: 767px) {
  .about-section-s2 .right-col {
    margin: 0 -7.5px;
  }
}

.about-section-s2 .right-col>div {
  width: calc(50% - 30px);
  float: left;
  margin: 0 15px 30px;
}

@media (max-width: 767px) {
  .about-section-s2 .right-col>div {
    width: calc(50% - 15px);
    margin: 0 7.5px 30px;
  }
}

@media screen and (min-width: 1200px) {
  .about-section-s2 .right-col>div:last-child {
    padding-top: 45px;
  }
}

@media screen and (min-width: 1200px) {
  .about-section-s2 .section-title-s5 {
    padding-right: 45px;
    padding-top: 65px;
  }
}

/*--------------------------------------------------------------
#2.2	service-section-s2
--------------------------------------------------------------*/
.service-section-s2 {
  padding: 0 0 80px;
}

@media (max-width: 991px) {
  .service-section-s2 {
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .service-section-s2 {
    padding-bottom: 60px;
  }
}

.service-section-s2 .service-grids {
  margin: 0 -15px;
}

@media (max-width: 767px) {
  .service-section-s2 .service-grids {
    margin: 0 -7.5px;
  }
}

.service-section-s2 .service-grids .grid {
  background: #fff;
  width: calc(16.66% - 30px);
  float: left;
  text-align: center;
  margin: 0 15px 30px;
  padding: 30px 10px 35px;
  -webkit-box-shadow: 0px 9px 42.32px 3.68px rgba(25, 38, 62, 0.11);
  box-shadow: 0px 9px 42.32px 3.68px rgba(25, 38, 62, 0.11);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .service-section-s2 .service-grids .grid {
    width: calc(33.33% - 30px);
  }
}

@media (max-width: 767px) {
  .service-section-s2 .service-grids .grid {
    width: calc(33.33% - 15px);
    margin: 0 7.5px 30px;
  }
}

@media (max-width: 600px) {
  .service-section-s2 .service-grids .grid {
    width: calc(50% - 15px);
  }
}

.service-section-s2 .service-grids .grid:hover {
  background-color: var(--primary-color);
}

.service-section-s2 .service-grids .grid:hover .fi:before,
.service-section-s2 .service-grids .grid:hover h3 a {
  color: #fff;
}

.service-section-s2 .service-grids .fi:before {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 0.9em;
}

.service-section-s2 .service-grids h3 {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 600px) {
  .service-section-s2 .service-grids h3 {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.service-section-s2 .service-grids h3 a {
  color: #262b3e;
}

.service-pg-service-section-s2 {
  padding-top: 100px;
}

@media (max-width: 991px) {
  .service-pg-service-section-s2 {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .service-pg-service-section-s2 {
    padding-top: 80px;
  }
}

/*--------------------------------------------------------------
#2.3	case-studies-section-s2
--------------------------------------------------------------*/
.case-studies-section-s2 {
  padding: 0;
}

.case-studies-section-s2 .case-studies-grids .grid {
  position: relative;
}

.case-studies-section-s2 .case-studies-grids .grid .overlay {
  background: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.case-studies-section-s2 .case-studies-grids .grid:hover {
  cursor: -webkit-grab;
  cursor: grab;
}

.case-studies-section-s2 .case-studies-grids .grid:hover .overlay {
  background: #262b3e;
  background-image: -moz-linear-gradient(90deg,
      #262b3e 62%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  background-image: -webkit-linear-gradient(90deg,
      #262b3e 62%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  background-image: -ms-linear-gradient(90deg,
      #262b3e 62%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  opacity: 0.9;
  top: 0;
}

.case-studies-section-s2 .case-studies-grids .grid:hover .overlay p {
  max-height: 400px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: max-height 2s;
  -o-transition: max-height 2s;
  transition: max-height 2s;
}

.case-studies-section-s2 .case-studies-grids .grid .content {
  width: 100%;
  padding: 45px;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 991px) {
  .case-studies-section-s2 .case-studies-grids .grid .content {
    padding: 35px;
  }
}

@media (max-width: 767px) {
  .case-studies-section-s2 .case-studies-grids .grid .content {
    padding: 25px;
  }
}

.case-studies-section-s2 .case-studies-grids .grid .cat {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--primary-color);
  font-weight: 700;
  margin: 0;
}

.case-studies-section-s2 .case-studies-grids .grid h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0.5em 0 0.9em;
}

@media (max-width: 991px) {
  .case-studies-section-s2 .case-studies-grids .grid h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.case-studies-section-s2 .case-studies-grids .grid h3 a {
  color: #fff;
}

.case-studies-section-s2 .case-studies-grids .grid h3 a:hover {
  color: var(--primary-color);
}

.case-studies-section-s2 .case-studies-grids .grid p {
  color: #fff;
  -webkit-transition: opacity 0.4s, visibility 0.4s, max-height 0.6s,
    margin 0.4s;
  -o-transition: opacity 0.4s, visibility 0.4s, max-height 0.6s, margin 0.4s;
  transition: opacity 0.4s, visibility 0.4s, max-height 0.6s, margin 0.4s;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

@media (max-width: 991px) {
  .case-studies-section-s2 .case-studies-grids .grid p {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.case-studies-section-s2 .case-studies-grids .grid p+a {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #fff;
}

.case-studies-pg-s2 {
  padding: 110px 0 100px;
}

@media (max-width: 991px) {
  .case-studies-pg-s2 {
    padding: 100px 0 90px;
  }
}

@media (max-width: 767px) {
  .case-studies-pg-s2 {
    padding: 80px 0 70px;
  }
}

/*--------------------------------------------------------------
#2.4	fun-fact-section
--------------------------------------------------------------*/
.fun-fact-section .fun-fact-grids {
  padding: 65px 35px;
}

@media (max-width: 1199px) {
  .fun-fact-section .fun-fact-grids {
    padding-bottom: 25px;
  }
}

.fun-fact-section .fun-fact-grids .grid {
  width: 25%;
  float: left;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  top: 0;
}

@media (max-width: 1199px) {
  .fun-fact-section .fun-fact-grids .grid {
    width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .fun-fact-section .fun-fact-grids .grid {
    width: 100%;
    float: none;
    text-align: center;
  }
}

.fun-fact-section .fun-fact-grids h3 {
  font-size: 48px;
  font-size: 3rem;
  color: var(--primary-color);
  margin: 0;
  display: inline-block;
}

@media (max-width: 767px) {
  .fun-fact-section .fun-fact-grids h3 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.fun-fact-section .fun-fact-grids p {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #262b3e;
  text-transform: uppercase;
  display: inline-block;
  margin: 0;
}

@media (max-width: 767px) {
  .fun-fact-section .fun-fact-grids p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  .fun-fact-section .fun-fact-grids p {
    position: relative;
    top: 8px;
  }
}

.fun-fact-section-s2 {
  background: #f1f1f1;
  margin-top: -10px;
}

/*--------------------------------------------------------------
#2.5	testimonials-section-s2
--------------------------------------------------------------*/
.testimonials-section-s2,
.testimonials-section-s3 {
  background: #262b3e;
  position: relative;
}

.testimonials-section-s2:before,
.testimonials-section-s3:before {
  content: "";
  background: url("../images/testimonials/testimonials-bg.png") center center/100% no-repeat local;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.testimonials-section-s2 .grid .fi:before,
.testimonials-section-s3 .grid .fi:before {
  font-size: 60px;
  color: var(--primary-color);
}

.testimonials-section-s2 .grid i,
.testimonials-section-s3 .grid i {
  margin-top: -1.3em;
  display: block;
}

.testimonials-section-s2 .grid p,
.testimonials-section-s3 .grid p {
  font-family: "Roboto Slab", serif;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #fff;
  margin: 0;
}

.testimonials-section-s2 .grid img,
.testimonials-section-s3 .grid img {
  width: auto;
}

@media screen and (min-width: 1200px) {

  .testimonials-section-s2 .testimonials-grids,
  .testimonials-section-s3 .testimonials-grids {
    padding-left: 40px;
  }
}

.testimonials-section-s2 .client-info,
.testimonials-section-s3 .client-info {
  position: relative;
  padding-left: 90px;
  padding-top: 15px;
  min-height: 70px;
  margin-top: 35px;
}

.testimonials-section-s2 .client-info .img-holder,
.testimonials-section-s3 .client-info .img-holder {
  position: absolute;
  left: 0;
  top: 0;
}

.testimonials-section-s2 .client-info .img-holder img,
.testimonials-section-s3 .client-info .img-holder img {
  border-radius: 50%;
}

.testimonials-section-s2 .client-info h3,
.testimonials-section-s3 .client-info h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary-color);
  margin: 0 0 0.2em;
}

.testimonials-section-s2 .client-info h3+span,
.testimonials-section-s3 .client-info h3+span {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
}

.testimonials-section-s2 .owl-controls,
.testimonials-section-s3 .owl-controls {
  margin-top: 45px;
}

.testimonials-section-s2 .owl-theme .owl-dots .owl-dot span,
.testimonials-section-s3 .owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 5px;
  background: var(--primary-color);
  opacity: 0.7;
}

.testimonials-section-s2 .owl-theme .owl-dots .owl-dot.active span,
.testimonials-section-s3 .owl-theme .owl-dots .owl-dot.active span {
  width: 25px;
  opacity: 1;
}

/*--------------------------------------------------------------
#2.6	cta-section-s2
--------------------------------------------------------------*/
.cta-section-s2 {
  background: url("../images/cta-bg.jpg") center center/cover no-repeat local;
  padding: 115px 0;
  text-align: center;
  position: relative;
}

@media (max-width: 991px) {
  .cta-section-s2 {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  .cta-section-s2 {
    padding: 80px 0;
  }
}

.cta-section-s2:before {
  content: "";
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.98;
}

.cta-section-s2 h5 {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 2em 0 0;
  color: #fff;
}

.cta-section-s2 h2 {
  font-size: 36px;
  font-size: 2.25rem;
  margin: 0.5em 0 1em;
  color: #fff;
}

/*--------------------------------------------------------------
#2.7	contact-section-s2
--------------------------------------------------------------*/
@media screen and (min-width: 1450px) {

  .contact-section-s2,
  .contact-section-s3 {
    margin: -219px 0 0;
  }
}

.contact-section-s2:before,
.contact-section-s3:before {
  background: #262b3e;
}

/*--------------------------------------------------------------
#2.8	partners-section
--------------------------------------------------------------*/
.partners-section {
  background-color: #f9f9f9;
  padding: 70px 0 58px;
}

.partners-section .grid {
  text-align: center;
}

.partners-section .grid img {
  width: auto;
  margin: 0 auto;
  display: inline-block;
}

/*--------------------------------------------------------------
	#home-style-3
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#3.1	about-section-s3
--------------------------------------------------------------*/
.about-section-s3 {
  margin-top: 0;
}

/*--------------------------------------------------------------
#3.2	award-section
--------------------------------------------------------------*/
.award-section {
  padding-top: 0;
}

@media (max-width: 767px) {
  .award-section .award-slider {
    margin-top: 35px;
  }
}

.award-section .award-slider img {
  border: 10px solid rgba(201, 179, 140, 0.5);
}

@media screen and (min-width: 1200px) {
  .award-section .owl-controls {
    position: absolute;
    left: -602px;
    margin: 0;
    bottom: 0;
  }
}

@media (max-width: 1199px) {
  .award-section .owl-controls {
    margin-top: 45px;
  }
}

.award-section .owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 5px;
  background: var(--primary-color);
  opacity: 0.7;
}

.award-section .owl-theme .owl-dots .owl-dot.active span {
  width: 25px;
  opacity: 1;
}

/*--------------------------------------------------------------
#3.3	testimonials-section-s3
--------------------------------------------------------------*/
.testimonials-section-s3 {
  background: #fff;
}

.testimonials-section-s3 .grid p {
  color: #262b3e;
}

.testimonials-section-s3 .client-info h3+span {
  color: #262b3e;
}

/*--------------------------------------------------------------
#3.4	testimonials-section-s3
--------------------------------------------------------------*/
.cta-section-s3 {
  background: url("../images/cta-bg.jpg") center center/cover no-repeat local;
  padding: 115px 0;
  text-align: center;
  position: relative;
}

@media (max-width: 991px) {
  .cta-section-s3 {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  .cta-section-s3 {
    padding: 80px 0;
  }
}

.cta-section-s3:before {
  content: "";
  background: #262b3e;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.9;
}

.cta-section-s3 .cta-conetnt {
  max-width: 530px;
  margin: 0 auto;
}

.cta-section-s3 h2,
.cta-section-s3 p {
  color: #fff;
}

.cta-section-s3 h2 {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 400;
  margin: 0 0 0.5em;
}

@media (max-width: 991px) {
  .cta-section-s3 h2 {
    font-size: 38px;
    font-size: 2.375rem;
  }
}

@media (max-width: 767px) {
  .cta-section-s3 h2 {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

.cta-section-s3 p {
  margin-bottom: 2em;
}

.cta-section-s3 a {
  background-color: #fff;
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  border-radius: 65px;
  display: inline-block;
  position: relative;
  top: 5px;
  margin-left: 20px;
}

.cta-section-s3 a:after {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--primary-color);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cta-section-s3 a:before {
  content: "";
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  position: absolute;
  left: -8px;
  top: -8px;
  border: 1px solid #ececec;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .cta-section-s3 a:before {
    border: 1px solid #ececec;
  }
}

/*--------------------------------------------------------------
#3.5	contact-section-s3
--------------------------------------------------------------*/
.contact-section-s3 {
  margin-top: 0;
  padding-top: 110px;
  padding-bottom: 0;
  background: #fff;
}

@media (max-width: 991px) {
  .contact-section-s3 {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  .contact-section-s3 {
    padding-top: 80px;
  }
}

.contact-section-s3:before {
  display: none;
}

.contact-section-s3 .section-title-s2 h2 {
  color: #262b3e;
}

.contact-section-s3 .section-title-s2 p {
  color: #687693;
}

.contact-section-s3 .section-title-s2 .icon {
  -webkit-box-shadow: 0 0 0 5px #fbf3f3;
  box-shadow: 0 0 0 5px #fbf3f3;
}

.contact-section-s3 .contact-info h4 {
  color: var(--primary-color);
}

.contact-section-s3 .contact-info p {
  color: #687693;
}

.contact-section-s3 form textarea,
.contact-section-s3 form input,
.contact-section-s3 form select {
  background: #fdfdfd;
  border-color: #eaeaea;
}

/*--------------------------------------------------------------
#3.6	blog-section-s2
--------------------------------------------------------------*/
.blog-section-s2 {
  padding-top: 34px;
}

/*--------------------------------------------------------------
	#about page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#4.1	history-section
--------------------------------------------------------------*/
.history-section {
  padding-top: 0;
}

.history-section .history-grids {
  position: relative;
}

.history-section .history-grids:before {
  content: "";
  background-color: #f1f7ff;
  background-color: var(--primary-color);
  width: 2px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
}

@media (max-width: 767px) {
  .history-section .history-grids:before {
    display: none;
  }
}

.history-section .history-grids>.grid+.grid {
  margin-top: 20px;
}

@media (max-width: 500px) {
  .history-section .history-grids .grid {
    border: 2px solid #f1f7ff;
    padding: 30px;
  }
}

.history-section .time-title {
  width: 335px;
  float: left;
  padding: 35px 0;
}

.erdrcnt .no-office ul li {
  font-size: 18px;
}

@media (max-width: 767px) {
  .history-section .time-title {
    width: 50%;
  }
}

@media (max-width: 500px) {
  .history-section .time-title {
    width: 100%;
    float: none;
    padding: 15px 0;
  }
}

.history-section .time-title h3 {
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0 0 0.3em;
  font-weight: 400;
}

@media (max-width: 767px) {
  .history-section .time-title h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.history-section .time-title h4 {
  font-size: 18px;
  /*font-size: 1.125rem;*/
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.history-section .history-grids .grid {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .history-section .time-title h4 {
    font-size: 16px;
    font-size: 1rem;
  }
}

.history-section .grid-s1 .time-title,
.history-section .grid-s2 .time-title {
  text-align: right;
  position: relative;
}

@media (max-width: 767px) {

  .history-section .grid-s1 .time-title,
  .history-section .grid-s2 .time-title {
    padding-right: 25px;
  }
}

@media (max-width: 500px) {

  .history-section .grid-s1 .time-title,
  .history-section .grid-s2 .time-title {
    text-align: left;
  }
}

.history-section .grid-s1 .time-title:before,
.history-section .grid-s2 .time-title:before {
  content: "";
  background-color: #fff;
  width: 16px;
  height: 16px;
  border: 6px solid var(--primary-color);
  border-radius: 50%;
  position: absolute;
  right: -49px;
  top: calc(50% - 8px);
}

@media (max-width: 1199px) {

  .history-section .grid-s1 .time-title:before,
  .history-section .grid-s2 .time-title:before {
    right: -63px;
  }
}

@media (max-width: 991px) {

  .history-section .grid-s1 .time-title:before,
  .history-section .grid-s2 .time-title:before {
    right: -34px;
  }
}

@media (max-width: 767px) {

  .history-section .grid-s1 .time-title:before,
  .history-section .grid-s2 .time-title:before {
    display: none;
  }
}

.history-section .grid-s2 .time-title {
  text-align: left;
}

@media (max-width: 767px) {
  .history-section .grid-s2 .time-title {
    padding-right: 0;
    padding-left: 25px;
  }
}

@media (max-width: 500px) {
  .history-section .grid-s2 .time-title {
    padding-left: 0;
  }
}

.history-section .grid-s2 .time-title:before {
  left: -49px;
}

@media (max-width: 1199px) {
  .history-section .grid-s2 .time-title:before {
    left: -63px;
  }
}

@media (max-width: 991px) {
  .history-section .grid-s2 .time-title:before {
    left: -34px;
  }
}

.history-section .details {
  width: 335px;
  float: right;
  /*border: 2px solid #f1f7ff;*/
  border: 3px solid var(--primary-color);
  padding: 30px;
  border-radius: 5px;
  border-radius: 12px;
  box-shadow: 0px 0px 10px -3px;
}

@media (max-width: 767px) {
  .history-section .details {
    width: 50%;
  }
}

@media (max-width: 500px) {
  .history-section .details {
    width: 100%;
    float: none;
    padding: 0;
    border: 0;
  }
}

.history-section .details p {
  margin: 0;
  font-size: 18px;
}

.history-section .grid-s2 .time-title {
  float: right;
}

.history-section .grid-s2 .details {
  float: left;
}

.testimonials-pg-section {
  position: relative;
}

.testimonials-pg-section:before {
  content: "";
  background-color: rgba(247, 247, 247, 0.9);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.about-pg-cta-section {
  margin: 0;
}

/*--------------------------------------------------------------
	#team single page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#5.1	team-sigle-section
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .team-sigle-section .team-single-sidebar {
    margin-bottom: 70px;
  }
}

.team-sigle-section .attorney-widget {
  background: #fafafa;
  border: 5px solid #f1f1f1;
  padding: 35px 30px;
}

@media screen and (min-width: 1200px) {
  .team-sigle-section .attorney-widget {
    margin-right: 40px;
  }
}

.team-sigle-section .attorney-widget h3 {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0 0 0.7em;
}

.team-sigle-section .attorney-widget ul>li+li {
  border-top: 1px solid #e7e7e7;
}

.team-sigle-section .attorney-widget a {
  display: block;
  font-weight: 600;
  color: #687693;
  padding: 13px 15px 13px 0;
}

.team-sigle-section .attorney-widget a:hover,
.team-sigle-section .attorney-widget li.current a {
  color: var(--primary-color);
}

.team-sigle-section .attorney-single-content .attorney-single-info {
  padding: 60px;
  -webkit-box-shadow: 0px 9px 42.32px 3.68px rgba(25, 38, 62, 0.06);
  box-shadow: 0px 9px 42.32px 3.68px rgba(25, 38, 62, 0.06);
}

@media (max-width: 991px) {
  .team-sigle-section .attorney-single-content .attorney-single-info {
    padding: 45px;
  }
}

@media (max-width: 767px) {
  .team-sigle-section .attorney-single-content .attorney-single-info {
    padding: 30px 20px;
  }
}

.team-sigle-section .attorney-single-content .attorney-single-info h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.3em;
}

@media (max-width: 767px) {
  .team-sigle-section .attorney-single-content .attorney-single-info h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.team-sigle-section .attorney-single-content .attorney-single-info h3+span {
  font-weight: 600;
  color: var(--primary-color);
}

.team-sigle-section .attorney-single-content .attorney-single-info .info ul {
  margin-top: 25px;
}

.team-sigle-section .attorney-single-content .attorney-single-info .info ul>li+li {
  margin-top: 8px;
}

.team-sigle-section .attorney-single-content .attorney-single-info .info li i {
  display: inline-block;
  color: var(--primary-color);
  padding-right: 5px;
}

.team-sigle-section .attorney-single-content .attorney-single-info .info li span {
  font-weight: 600;
  color: #262b3e;
}

.team-sigle-section .attorney-single-content .attorney-single-info .social {
  margin-top: 30px;
}

.team-sigle-section .attorney-single-content .attorney-single-info .social ul {
  overflow: hidden;
}

.team-sigle-section .attorney-single-content .attorney-single-info .social ul li {
  float: left;
}

.team-sigle-section .attorney-single-content .attorney-single-info .social ul>li+li {
  margin-left: 7px;
}

@media (max-width: 767px) {
  .team-sigle-section .attorney-single-content .attorney-single-info .social ul>li+li {
    margin-left: 3px;
  }
}

.team-sigle-section .attorney-single-content .attorney-single-info .social a {
  background-color: #ebebeb;
  width: 43px;
  height: 43px;
  line-height: 43px;
  font-size: 13px;
  color: #687693;
  text-align: center;
  border-radius: 50%;
  display: block;
}

@media (max-width: 767px) {
  .team-sigle-section .attorney-single-content .attorney-single-info .social a {
    width: 38px;
    height: 38px;
    line-height: 38px;
  }
}

.team-sigle-section .attorney-single-content .attorney-single-info .social a:hover {
  color: var(--primary-color);
}

.team-sigle-section .attorney-single-content .attorney-details {
  padding-top: 35px;
}

.team-sigle-section .attorney-single-content .attorney-details h2 {
  font-size: 30px;
  font-size: 1.875rem;
  margin: 1.3em 0 0.7em;
}

@media (max-width: 991px) {
  .team-sigle-section .attorney-single-content .attorney-details h2 {
    font-size: 27px;
    font-size: 1.6875rem;
  }
}

@media (max-width: 767px) {
  .team-sigle-section .attorney-single-content .attorney-details h2 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.team-sigle-section .attorney-single-content .attorney-details ul>li+li {
  margin-top: 7px;
}

.team-sigle-section .attorney-single-content .skills {
  padding-top: 10px;
  padding-bottom: 20px;
}

.team-sigle-section .attorney-single-content .skills .skill {
  margin-bottom: 35px;
}

.team-sigle-section .attorney-single-content .skills .skill:last-child {
  margin-bottom: 0;
}

.team-sigle-section .attorney-single-content .skills .skill:last-child .progress {
  margin-bottom: 0;
}

.team-sigle-section .attorney-single-content .skills h6 {
  font-family: "Muli", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.6em;
  color: #687693;
}

@media (max-width: 991px) {
  .team-sigle-section .attorney-single-content .skills h6 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.team-sigle-section .attorney-single-content .skills .progress {
  background-color: #e6e6e6;
  height: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: visible;
  box-shadow: none;
  position: relative;
  border-radius: 3px;
}

.team-sigle-section .attorney-single-content .skills .progress>span {
  font-family: "Roboto Slab", serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #687693;
  padding: 2px 6px;
  text-align: center;
  position: absolute;
  right: 20px;
  top: -32px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

@media (max-width: 991px) {
  .team-sigle-section .attorney-single-content .skills .progress>span {
    padding: 0 6px;
  }
}

.team-sigle-section .attorney-single-content .skills .progress-bar {
  background: var(--primary-color);
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 3px;
}

.team-sigle-section .attorney-single-content .skills .progress-bar:after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: -3px;
  -webkit-box-shadow: 0 0 5px #969696;
  box-shadow: 0 0 5px #969696;
}

.team-sigle-section .attorney-single-content form input,
.team-sigle-section .attorney-single-content form select,
.team-sigle-section .attorney-single-content form textarea {
  background: #f5f5f5;
  width: 100%;
  height: 55px;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

@media (max-width: 991px) {

  .team-sigle-section .attorney-single-content form input,
  .team-sigle-section .attorney-single-content form select,
  .team-sigle-section .attorney-single-content form textarea {
    height: 45px;
  }
}

.team-sigle-section .attorney-single-content form input:focus,
.team-sigle-section .attorney-single-content form select:focus,
.team-sigle-section .attorney-single-content form textarea:focus {
  border-color: var(--primary-color);
}

.team-sigle-section .attorney-single-content form textarea {
  height: 180px;
}

.team-sigle-section .attorney-single-content form {
  margin: 0 -15px;
  overflow: hidden;
}

.team-sigle-section .attorney-single-content form ::-webkit-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.team-sigle-section .attorney-single-content form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.team-sigle-section .attorney-single-content form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.team-sigle-section .attorney-single-content form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.team-sigle-section .attorney-single-content form select {
  display: inline-block;
  color: #a9a9a9;
  cursor: pointer;
  opacity: 1;
  padding: 6px 12px;
  font-size: 15px;
  font-size: 0.9375rem;
}

.team-sigle-section .attorney-single-content form>div {
  width: calc(50% - 30px);
  float: left;
  margin: 0 15px 30px;
}

@media (max-width: 600px) {
  .team-sigle-section .attorney-single-content form>div {
    width: calc(100% - 30px);
    float: none;
  }
}

.team-sigle-section .attorney-single-content form .fullwidth {
  width: calc(100% - 30px);
  float: none;
  clear: both;
}

.team-sigle-section .attorney-single-content form .submit-area {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
	#project single page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#6.1	project-single-section
--------------------------------------------------------------*/
.project-single-section {
  /*** project single tab ***/
}

@media screen and (min-width: 1200px) {
  .project-single-section .project-details {
    padding: 60px 0 0 15px;
  }
}

.project-single-section .project-details h2 {
  font-size: 36px;
  font-size: 2.25rem;
  margin: 0 0 0.6em;
}

@media (max-width: 991px) {
  .project-single-section .project-details h2 {
    font-size: 30px;
    font-size: 1.875rem;
    margin: 1.4em 0 0.6em;
  }
}

@media (max-width: 767px) {
  .project-single-section .project-details h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.project-single-section .project-details h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 1em;
  line-height: 1.4em;
}

.project-single-section .project-details p {
  margin-bottom: 1.5em;
}

.project-single-section .project-single-tab {
  margin: 70px 0;
  clear: both;
}

@media (max-width: 991px) {
  .project-single-section .project-single-tab {
    margin: 40px 0;
  }
}

.project-single-section .project-single-tab .nav {
  overflow: hidden;
  margin: 0;
}

.project-single-section .project-single-tab .nav li {
  float: left;
  padding-left: 0;
}

.project-single-section .project-single-tab .nav>li+li {
  margin-top: 0;
  margin-left: 3px;
}

@media (max-width: 767px) {
  .project-single-section .project-single-tab .nav>li+li {
    margin-left: 1px;
  }
}

.project-single-section .project-single-tab .nav a {
  background: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #262b3e;
  padding: 13px 25px;
  border: 1px solid rgba(38, 43, 62, 0.2);
}

@media (max-width: 767px) {
  .project-single-section .project-single-tab .nav a {
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 8px 12px;
    text-transform: none;
  }
}

@media (max-width: 350px) {
  .project-single-section .project-single-tab .nav a {
    padding: 8px;
  }
}

.project-single-section .project-single-tab .nav .active a,
.project-single-section .project-single-tab .nav a:hover {
  background: #262b3e;
  color: #fff;
}

.project-single-section .tab-content {
  padding: 35px 40px;
  border: 1px solid rgba(38, 43, 62, 0.2);
  margin-top: -1px;
}

@media (max-width: 767px) {
  .project-single-section .tab-content {
    padding: 25px 20px;
  }
}

.project-single-section .tab-content .tab-pane p {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .project-single-section .tab-content .tab-pane p {
    margin-bottom: 15px;
  }
}

.project-single-section .tab-content .tab-pane p:last-child {
  margin-bottom: 0;
}

.project-single-section .related-case-studies h2 {
  font-size: 36px;
  font-size: 2.25rem;
  margin: 0.3em 0 1em;
}

@media (max-width: 991px) {
  .project-single-section .related-case-studies h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.project-single-section .related-case-studies .grid {
  position: relative;
  text-align: center;
  width: calc(33.33%);
  float: left;
  overflow: hidden;
}

@media (max-width: 767px) {
  .project-single-section .related-case-studies .grid {
    width: calc(50%);
  }
}

@media (max-width: 600px) {
  .project-single-section .related-case-studies .grid {
    width: 100%;
    float: none;
  }

  .project-single-section .related-case-studies .grid img {
    width: 100%;
  }
}

.project-single-section .related-case-studies .grid .overlay {
  background: #262b3e;
  background-image: -moz-linear-gradient(90deg,
      #262b3e 62%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  background-image: -webkit-linear-gradient(90deg,
      #262b3e 62%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  background-image: -ms-linear-gradient(90deg,
      #262b3e 62%,
      var(--primary-color) 96%,
      var(--primary-color) 97%,
      var(--primary-color) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.project-single-section .related-case-studies .grid:hover {
  cursor: -webkit-grab;
  cursor: grab;
}

.project-single-section .related-case-studies .grid:hover .overlay {
  top: 0;
  opacity: 0.9;
}

.project-single-section .related-case-studies .grid .content {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.project-single-section .related-case-studies .grid .cat {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--primary-color);
  font-weight: 700;
  margin: 0;
}

.project-single-section .related-case-studies .grid h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0;
}

.project-single-section .related-case-studies .grid h3 a {
  color: #fff;
}

.project-single-section .related-case-studies .grid h3 a:hover {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
	#service single page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#7.1	service-single-section
--------------------------------------------------------------*/
.service-single-section {
  /*** service single tab ***/
}

@media screen and (min-width: 1200px) {
  .service-single-section .service-single-content {
    padding-left: 20px;
  }
}

.service-single-section .service-single-content .service-pic {
  margin: 50px 0;
}

.service-single-section .service-single-content .theme-btn {
  margin-top: 20px;
}

.service-single-section .service-single-content h2 {
  font-size: 30px;
  /*font-size: 2.5rem;*/
  margin: 0 0 0.7em;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .service-single-section .service-single-content h2 {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

@media (max-width: 767px) {
  .service-single-section .service-single-content h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.service-single-section .service-single-content h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: capitalize;
  margin: 1.9em 0 1em;
}

.service-single-section .service-single-content p {
  margin-bottom: 1.3em;
  font-size: 18px;
}

.service-single-section .service-single-content ul {
  list-style: none;
}

@media (max-width: 767px) {
  .service-single-section .service-single-content ul {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.service-single-section .service-single-content ul li {
  position: relative;
  padding-left: 25px;
  line-height: 1.7em;
  color: #121212;
}

.service-single-section .service-single-content ul>li+li {
  margin-top: 8px;
}

.service-single-section .service-single-content ul li i {
  display: inline-block;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 5px;
}

.service-single-section .service-single-content .service-features {
  overflow: hidden;
}

.service-single-section .service-single-content .service-features ul {
  width: 50%;
  display: inline-block;
  float: left;
}

@media (max-width: 767px) {
  .service-single-section .service-single-content .service-features ul {
    width: 100%;
    float: none;
    display: block;
    margin-top: 10px;
  }
}

.service-single-section .service-single-tab {
  margin: 60px 0;
}

@media (max-width: 991px) {
  .service-single-section .service-single-tab {
    margin: 40px 0;
  }
}

.service-single-section .service-single-tab .nav {
  overflow: hidden;
  margin: 0;
}

.service-single-section .service-single-tab .nav li {
  float: left;
  padding-left: 0;
}

.service-single-section .service-single-tab .nav>li+li {
  margin-top: 0;
  margin-left: 3px;
}

@media (max-width: 767px) {
  .service-single-section .service-single-tab .nav>li+li {
    margin-left: 1px;
  }
}

.service-single-section .service-single-tab .nav a {
  background: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #262b3e;
  padding: 10px 25px;
  border: 1px solid rgba(201, 179, 140, 0.5);
}

@media (max-width: 767px) {
  .service-single-section .service-single-tab .nav a {
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 8px 12px;
    text-transform: none;
  }
}

@media (max-width: 350px) {
  .service-single-section .service-single-tab .nav a {
    padding: 8px;
  }
}

.service-single-section .service-single-tab .nav .active a,
.service-single-section .service-single-tab .nav a:hover {
  background: var(--primary-color);
  color: #fff;
}

.service-single-section .tab-content {
  padding: 35px 40px;
  -webkit-box-shadow: 0px 9px 57px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 9px 57px 0px rgba(0, 0, 0, 0.13);
}

@media (max-width: 767px) {
  .service-single-section .tab-content {
    padding: 25px 20px;
  }
}

.service-single-section .tab-content .tab-pane p {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .service-single-section .tab-content .tab-pane p {
    margin-bottom: 15px;
  }
}

.service-single-section .tab-content .tab-pane p:last-child {
  margin-bottom: 0;
}

.service-single-section .service-features-grids {
  -webkit-box-shadow: 0px 3px 17.85px 3.15px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 3px 17.85px 3.15px rgba(0, 0, 0, 0.05);
  margin: 60px 0;
}

.service-single-section .service-features-grids .grid {
  width: 33.33%;
  float: left;
  padding: 40px 30px;
  border-right: 1px solid #f1f1f1;
}

@media (max-width: 767px) {
  .service-single-section .service-features-grids .grid {
    width: 100%;
    float: none;
    border-right: 0;
    border-bottom: 1px solid #f1f1f1;
    padding: 30px 25px;
  }
}

.service-single-section .service-features-grids .grid:last-child {
  border-right: 0;
}

@media (max-width: 767px) {
  .service-single-section .service-features-grids .grid:last-child {
    border-bottom: 0;
  }
}

.service-single-section .service-features-grids p {
  font-size: 15px;
  font-size: 0.9375rem;
  margin: 0;
}

.service-single-section .service-features-grids .fi:before {
  font-size: 45px;
  font-size: 2.8125rem;
  color: var(--primary-color);
}

.service-single-section .service-features-grids h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0.7em 0;
}

/*--------------------------------------------------------------
	#contact page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#8.1	contact-pg-section
--------------------------------------------------------------*/
.contact-pg-section {
  padding-bottom: 35px;
}

@media (max-width: 991px) {
  .contact-pg-section {
    padding-bottom: 15px;
  }
}

.contact-map-section .contact-map {
  height: 450px;
}

.contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
}

/*--------------------------------------------------------------
	#blog page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#9.1	blog-pg-section
--------------------------------------------------------------*/
.blog-pg-section {
  /*** format-standard ***/
  /*** format-gallery ***/
  /*** format-quote ***/
  /*** format-video ***/
}

.blog-pg-section .blog-content .post {
  margin-bottom: 100px;
}

@media (max-width: 991px) {
  .blog-pg-section .blog-content .post {
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .blog-pg-section .blog-content .post {
    margin-bottom: 60px;
  }
}

.blog-pg-section .entry-details {
  border: 2px solid #f4f4f4;
  border-top: 0;
  padding: 50px 35px 35px;
  position: relative;
  z-index: 1;
}

@media (max-width: 500px) {
  .blog-pg-section .entry-details {
    padding: 50px 20px 35px;
  }
}

.blog-pg-section .entry-details .cat {
  background: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 15px;
  color: white;
  position: absolute;
  left: -2px;
  top: -20px;
  border-radius: 0 50px 50px 0;
}

.blog-pg-section .entry-details .read-more {
  font-weight: 700;
  color: var(--primary-color);
}

.blog-pg-section .entry-meta {
  border: 2px solid #f4f4f4;
  border-top: 0;
  padding: 15px 35px;
}

@media (max-width: 500px) {
  .blog-pg-section .entry-meta {
    padding: 15px 20px;
  }
}

.blog-pg-section .entry-meta span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #687693;
  display: inline-block;
}

.blog-pg-section .entry-meta>span+span {
  margin-left: 20px;
}

.blog-pg-section .entry-meta span a {
  color: #687693;
}

.blog-pg-section .entry-meta span a:hover {
  color: var(--primary-color);
}

.blog-pg-section .post h3 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.2em;
  margin: -0.27em 0 0.7em;
}

@media (max-width: 991px) {
  .blog-pg-section .post h3 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

@media (max-width: 767px) {
  .blog-pg-section .post h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.blog-pg-section .post h3 a {
  color: #262b3e;
}

.blog-pg-section .post h3 a:hover {
  color: var(--primary-color);
}

.blog-pg-section .post p {
  margin-bottom: 1.8em;
}

@media (max-width: 991px) {
  .blog-pg-section .post p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.blog-pg-section .format-standard .entry-details,
.blog-pg-section .format-quote .entry-details {
  border-top: 2px solid #f4f4f4;
  padding: 55px 35px 35px;
}

@media (max-width: 500px) {

  .blog-pg-section .format-standard .entry-details,
  .blog-pg-section .format-quote .entry-details {
    padding: 35px 20px 35px;
  }
}

.blog-pg-section .format-standard .entry-details .date,
.blog-pg-section .format-quote .entry-details .date {
  position: static;
  display: inline-block;
  margin-bottom: 25px;
}

.blog-pg-section .format-standard .entry-details .read-more,
.blog-pg-section .format-quote .entry-details .read-more {
  font-weight: 700;
  color: var(--primary-color);
}

.blog-pg-section .format-gallery {
  position: relative;
}

.blog-pg-section .format-gallery .owl-controls {
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-pg-section .format-gallery .owl-controls .owl-nav [class*="owl-"]:hover {
  background: var(--primary-color);
}

.blog-pg-section .format-gallery .owl-controls .owl-nav [class*="owl-"] {
  background: rgba(133, 133, 133, 0.5);
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-pg-section .format-gallery .owl-controls .owl-nav .owl-prev,
.blog-pg-section .format-gallery .owl-controls .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-pg-section .format-gallery .owl-controls .owl-nav .owl-prev {
  left: 15px;
}

.blog-pg-section .format-gallery .owl-controls .owl-nav .owl-next {
  right: 15px;
}

.blog-pg-section .format-quote {
  background-color: #f9f9f9;
  position: relative;
}

.blog-pg-section .format-quote:before {
  font-family: "Flaticon";
  content: "\f105";
  font-size: 200px;
  font-size: 12.5rem;
  color: #ecf3fb;
  margin-left: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.blog-pg-section .format-quote h3,
.blog-pg-section .format-quote p {
  position: relative;
}

.blog-pg-section .format-video .video-holder {
  position: relative;
  text-align: center;
}

.blog-pg-section .format-video .video-holder:before {
  content: "";
  background-color: #233d62;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
}

.blog-pg-section .format-video .video-holder:hover:before {
  opacity: 0.7;
}

.blog-pg-section .format-video .video-holder a {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.blog-pg-section .format-video .video-holder .fi:before {
  font-size: 80px;
  font-size: 5rem;
  color: #fff;
}

@media (max-width: 767px) {
  .blog-pg-section .format-video .video-holder .fi:before {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

@media screen and (min-width: 1200px) {
  .blog-pg-left-sidebar .blog-sidebar {
    padding-right: 45px;
    padding-left: 0;
  }
}

@media screen and (min-width: 1200px) {
  .blog-pg-fullwidth .blog-content {
    padding: 0;
  }
}

/*--------------------------------------------------------------
	#blog single page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#10.1	blog-single-section
--------------------------------------------------------------*/
.blog-single-section {
  /*** tag-share ***/
  /*** author-box ***/
  /*** more-posts ***/
  /*** comments area ***/
  /*** comment-respond ***/
}

.blog-single-section .date-entry-meta {
  position: relative;
  padding-top: 30px;
  margin-bottom: 35px;
}

.blog-single-section .date-entry-meta .cat {
  background: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 15px;
  color: white;
  position: absolute;
  left: 0;
  top: -20px;
  border-radius: 0 50px 50px 0;
}

.blog-single-section .date-entry-meta .entry-meta {
  border-bottom: 2px solid #f4f4f4;
  padding: 15px 35px;
}

@media (max-width: 500px) {
  .blog-single-section .date-entry-meta .entry-meta {
    padding: 15px 20px;
  }
}

.blog-single-section .date-entry-meta .entry-meta span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #687693;
  display: inline-block;
}

@media (max-width: 767px) {
  .blog-single-section .date-entry-meta .entry-meta span {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.blog-single-section .date-entry-meta .entry-meta>span+span {
  margin-left: 20px;
}

.blog-single-section .date-entry-meta .entry-meta span a {
  color: #687693;
}

.blog-single-section .date-entry-meta .entry-meta span a:hover {
  color: var(--primary-color);
}

.blog-single-section .post h2 {
  font-size: 30px;
  font-size: 1.875rem;
  margin: -0.22em 0 0.7em;
  line-height: 1.3em;
}

@media (max-width: 991px) {
  .blog-single-section .post h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media (max-width: 767px) {
  .blog-single-section .post h2 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.blog-single-section .post p {
  margin-bottom: 1.5em;
}

.blog-single-section .post h3 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.3em;
  margin: 1.8em 0 1em;
}

@media (max-width: 991px) {
  .blog-single-section .post h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

@media (max-width: 767px) {
  .blog-single-section .post h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.blog-single-section .post blockquote {
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  color: #262b3e;
  line-height: 1.6em;
  padding: 0 0 0 85px;
  margin-top: 60px;
  border: 0;
  position: relative;
}

@media (max-width: 767px) {
  .blog-single-section .post blockquote {
    padding-left: 0;
  }
}

.blog-single-section .post blockquote:before {
  font-family: "Flaticon";
  content: "\f105";
  font-size: 45px;
  font-size: 2.8125rem;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 17px;
}

@media (max-width: 767px) {
  .blog-single-section .post blockquote:before {
    display: none;
  }
}

.blog-single-section .post blockquote .quoter {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  margin-top: 15px;
}

.blog-single-section .tag-share {
  border-top: 1px solid #f4f4f4;
  border-bottom: 1px solid #f4f4f4;
  margin: 75px 0 0;
  padding: 30px 0;
  color: #262b3e;
}

.blog-single-section .tag-share ul {
  list-style: none;
  display: inline-block;
  overflow: hidden;
}

.blog-single-section .tag-share ul li {
  float: left;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share ul li {
    margin: 2px;
  }
}

.blog-single-section .tag-share ul>li+li {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share ul>li+li {
    margin: 2px;
  }
}

.blog-single-section .tag-share .tag {
  float: left;
}

@media (max-width: 600px) {
  .blog-single-section .tag-share .tag {
    float: none;
  }
}

.blog-single-section .tag-share .tag>span {
  color: #262b3e;
  font-weight: bold;
  display: inline-block;
  padding-right: 8px;
}

.blog-single-section .tag-share .tag ul {
  list-style: none;
  position: relative;
  top: 5px;
}

.blog-single-section .tag-share .tag li {
  position: relative;
}

.blog-single-section .tag-share .tag ul>li+li {
  margin-left: 10px;
}

.blog-single-section .tag-share .tag a {
  background-color: #f5f5f5;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #687693;
  padding: 6px 15px;
  border-radius: 50px;
  display: inline-block;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share .tag a {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.blog-single-section .tag-share .tag a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.blog-single-section .tag-share .share {
  float: right;
  position: relative;
  top: -15px;
}

@media (max-width: 600px) {
  .blog-single-section .tag-share .share {
    float: none;
    margin-top: 15px;
  }
}

.blog-single-section .tag-share .share>span {
  color: #262b3e;
  font-weight: 600;
  display: inline-block;
  padding-right: 8px;
}

.blog-single-section .tag-share .share ul {
  position: relative;
  top: 15px;
}

.blog-single-section .tag-share .share ul>li+li {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share .share ul>li+li {
    margin-left: 8px;
  }
}

@media (max-width: 767px) {
  .blog-single-section .tag-share .share ul>li {
    margin: 5px;
  }
}

.blog-single-section .tag-share .share a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #eae6e6;
  border-radius: 50%;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #627381;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share .share a {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.blog-single-section .tag-share .share a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff !important;
}

.blog-single-section .tag-share .share ul>li:first-child a {
  color: #3c5ba4;
}

.blog-single-section .tag-share .share ul>li:nth-child(2) a {
  color: #47a0d9;
}

.blog-single-section .tag-share .share ul>li:nth-child(3) a {
  color: #0073b1;
}

.blog-single-section .tag-share .share ul>li:nth-child(4) a {
  color: #933f94;
}

.blog-single-section .author-box {
  padding: 35px 40px 25px;
  margin: 70px 0;
  -webkit-box-shadow: 0px 9px 57px 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 9px 57px 0px rgba(0, 0, 0, 0.11);
}

@media (max-width: 991px) {
  .blog-single-section .author-box {
    padding: 35px 40px;
  }
}

@media (max-width: 767px) {
  .blog-single-section .author-box {
    padding: 25px;
  }
}

.blog-single-section .author-box .author-avatar {
  float: left;
}

@media (max-width: 767px) {
  .blog-single-section .author-box .author-avatar {
    float: none;
  }
}

.blog-single-section .author-box .author-avatar img {
  border-radius: 50%;
}

.blog-single-section .author-box .author-content {
  display: block;
  overflow: hidden;
  padding-left: 25px;
}

@media (max-width: 767px) {
  .blog-single-section .author-box .author-content {
    padding: 0;
    margin: 15px 0 0 0;
  }
}

.blog-single-section .author-box .author-content p {
  margin-bottom: 20px;
}

.blog-single-section .author-box .author-name {
  font-family: "Roboto Slab", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 10px;
  color: #262b3e;
}

.blog-single-section .author-box .social-link {
  display: inline-block;
  list-style: none;
}

.blog-single-section .author-box .social-link li {
  float: left;
  margin-right: 12px;
}

.blog-single-section .author-box .social-link a {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #262b3e;
}

.blog-single-section .author-box .social-link a:hover {
  color: var(--primary-color);
}

.blog-single-section .more-posts {
  overflow: hidden;
  border: 2px solid #f4f4f4;
  padding: 0 25px;
}

.blog-single-section .more-posts>div {
  width: 50%;
  float: left;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts>div {
    width: 100%;
    float: none;
  }
}

.blog-single-section .more-posts>div>a {
  display: inline-block;
}

.blog-single-section .more-posts .previous-post,
.blog-single-section .more-posts .next-post {
  padding: 40px 0;
}

@media (max-width: 767px) {

  .blog-single-section .more-posts .previous-post,
  .blog-single-section .more-posts .next-post {
    padding: 25px 15px !important;
  }
}

.blog-single-section .more-posts .next-post {
  text-align: right;
  border-left: 1px solid #f4f4f4;
  padding-left: 15px;
  padding-right: 5px;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts .next-post {
    border-left: 0;
    text-align: left;
    border-top: 1px solid #dae9f9;
  }
}

.blog-single-section .more-posts .next-post .post-control-link {
  padding-right: 25px;
  position: relative;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts .next-post .post-control-link {
    padding-right: 0;
  }
}

.blog-single-section .more-posts .next-post .post-control-link:before {
  font-family: "Flaticon";
  content: "\f103";
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts .next-post .post-control-link:before {
    display: none;
  }
}

.blog-single-section .more-posts .previous-post {
  padding-right: 15px;
  padding-left: 5px;
}

.blog-single-section .more-posts .previous-post .post-control-link {
  padding-left: 25px;
  position: relative;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts .previous-post .post-control-link {
    padding-left: 0;
  }
}

.blog-single-section .more-posts .previous-post .post-control-link:before {
  font-family: "Flaticon";
  content: "\f103";
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts .previous-post .post-control-link:before {
    display: none;
  }
}

.blog-single-section .more-posts .previous-post>a>span,
.blog-single-section .more-posts .next-post>a>span {
  display: block;
}

.blog-single-section .more-posts .post-control-link {
  font-size: 14px;
  font-size: 0.875rem;
  color: #687693;
}

.blog-single-section .more-posts .post-name {
  font-size: 17px;
  font-size: 1.0625rem;
  color: #262b3e;
  margin: 0.7em 0 0;
  font-weight: 600;
}

@media (max-width: 991px) {
  .blog-single-section .more-posts .post-name {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.blog-single-section .more-posts a:hover .post-control-link {
  color: var(--primary-color);
}

.blog-single-section .comments-area {
  margin-top: 70px;
}

.blog-single-section .comments-area .comments {
  border: 2px solid #f4f4f4;
}

.blog-single-section .comments-area li>div {
  border-bottom: 1px solid #f4f4f4;
  padding: 35px;
}

@media (max-width: 991px) {
  .blog-single-section .comments-area li>div {
    padding: 35px 25px;
  }
}

.blog-single-section .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}

.blog-single-section .comments-area ol ul {
  padding-left: 30px;
  list-style-type: none;
}

.blog-single-section .comments-area ol>li:last-child div {
  border-bottom: 0;
}

.blog-single-section .comments-area .comments-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  margin: 0 0 1.5em;
}

@media (max-width: 991px) {
  .blog-single-section .comments-area .comments-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.blog-single-section .comments-area li>div {
  position: relative;
}

.blog-single-section .comments-area .comment-theme {
  position: absolute;
  left: 35px;
}

@media (max-width: 767px) {
  .blog-single-section .comments-area .comment-theme {
    position: static;
  }
}

.blog-single-section .comments-area .comment-theme img {
  border-radius: 50%;
}

.blog-single-section .comments-area .comment-main-area {
  padding-left: 100px;
}

@media (max-width: 767px) {
  .blog-single-section .comments-area .comment-main-area {
    padding-left: 0;
    margin-top: 25px;
  }
}

.blog-single-section .comments-area .comment-main-area p {
  margin-bottom: 20px;
}

.blog-single-section .comments-area .comments-meta h4 {
  font-size: 16px;
  font-size: 1rem;
  color: #262b3e;
  font-weight: 400;
  margin: 0 0 1em;
}

.blog-single-section .comments-area .comments-meta h4 span {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #687693;
  font-weight: normal;
  font-style: italic;
  text-transform: none;
  display: inline-block;
  padding-left: 5px;
}

@media (max-width: 767px) {
  .blog-single-section .comments-area .comments-meta h4 span {
    padding-left: 0;
  }
}

.blog-single-section .comments-area .comment-reply-link {
  background: #e1d5c0;
  font-size: 13px;
  font-size: 0.8125rem;
  width: 80px;
  height: 25px;
  line-height: 25px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
}

.blog-single-section .comments-area .comment-reply-link:hover {
  background-color: var(--primary-color);
}

.blog-single-section .comment-respond {
  margin-top: 70px;
}

@media screen and (min-width: 992px) {
  .blog-single-section .comment-respond {
    padding: 55px 50px;
    -webkit-box-shadow: 0px 9px 57px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 9px 57px 0px rgba(0, 0, 0, 0.11);
  }
}

.blog-single-section .comment-respond .comment-reply-title {
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0 0 1.5em;
}

@media (max-width: 991px) {
  .blog-single-section .comment-respond .comment-reply-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.blog-single-section .comment-respond form input,
.blog-single-section .comment-respond form textarea {
  background-color: #fff;
  width: 100%;
  height: 50px;
  border: 2px solid #f4f4f4;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-single-section .comment-respond form input:focus,
.blog-single-section .comment-respond form textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: var(--primary-color);
}

@media (max-width: 991px) {

  .blog-single-section .comment-respond form input,
  .blog-single-section .comment-respond form textarea {
    height: 40px;
  }
}

.blog-single-section .comment-respond form textarea {
  height: 220px;
  padding: 15px;
}

@media (max-width: 991px) {
  .blog-single-section .comment-respond form textarea {
    height: 150px;
  }
}

.blog-single-section .comment-respond .form-inputs {
  overflow: hidden;
}

.blog-single-section .comment-respond .form-inputs>input:nth-child(2) {
  width: 49%;
  float: left;
}

@media (max-width: 767px) {
  .blog-single-section .comment-respond .form-inputs>input:nth-child(2) {
    width: 100%;
    float: none;
  }
}

.blog-single-section .comment-respond .form-inputs>input:nth-child(3) {
  width: 49%;
  float: right;
}

@media (max-width: 767px) {
  .blog-single-section .comment-respond .form-inputs>input:nth-child(3) {
    width: 100%;
    float: none;
  }
}

.blog-single-section .comment-respond .form-submit input {
  max-width: 180px;
  background-color: var(--primary-color);
  color: #fff;
  margin-bottom: 0;
  border: 0;
  outline: 0;
  text-transform: capitalize;
  font-weight: 600;
  border-radius: 0;
}

.blog-single-section .comment-respond .form-submit input:hover {
  background-color: #c1a87b;
}

@media screen and (min-width: 1200px) {
  .blog-single-left-sidebar-section .blog-sidebar {
    padding-right: 45px;
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
	#shop page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#11.1  shop-pg-section
--------------------------------------------------------------*/
.shop-pg-section .shop-grids {
  margin: 0 -15px;
}

.shop-pg-section .shop-grids .grid {
  width: calc(33.33% - 30px);
  float: left;
  margin: 0 15px 30px;
}

@media (max-width: 991px) {
  .shop-pg-section .shop-grids .grid {
    width: calc(50% - 30px);
  }
}

@media (max-width: 550px) {
  .shop-pg-section .shop-grids .grid {
    width: calc(100% - 30px);
    float: none;
  }
}

.shop-pg-section .grid:hover .cart-details li {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.shop-pg-section .img-cart {
  position: relative;
  overflow: hidden;
}

.shop-pg-section .cart-details {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 20px;
  text-align: center;
}

.shop-pg-section .cart-details ul {
  overflow: hidden;
  display: inline-block;
  list-style-type: none;
}

.shop-pg-section .cart-details li {
  float: left;
  margin: 7px;
  position: relative;
  bottom: -50px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.shop-pg-section .cart-details li:last-child {
  -webkit-transition: all 0.5s 0.1s;
  -o-transition: all 0.5s 0.1s;
  transition: all 0.5s 0.1s;
}

.shop-pg-section .details {
  text-align: center;
  padding: 30px 15px;
}

.shop-pg-section .details h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0 0 0.4em;
}

@media (max-width: 991px) {
  .shop-pg-section .details h4 {
    font-size: 16px;
    font-size: 1rem;
  }
}

.shop-pg-section .details h4 a {
  color: #262b3e;
}

.shop-pg-section .details h4 a:hover {
  color: var(--primary-color);
}

.shop-pg-section .details del {
  color: #aaa;
  font-weight: 500;
  display: inline-block;
  padding-right: 10px;
}

@media (max-width: 991px) {
  .shop-pg-section .details del {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.shop-pg-section .details .price {
  color: #262b3e;
  font-weight: 500;
}

@media (max-width: 991px) {
  .shop-pg-section .details .price {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.shop-pg-section .pagination-wrapper {
  text-align: center;
  clear: both;
}

/*--------------------------------------------------------------
	#shop single page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#12.1	shop-single-section
--------------------------------------------------------------*/
.shop-single-section {
  /*** product slider ***/
  /*** product info ***/
}

.shop-single-section .shop-single-slider .slider-for {
  text-align: center;
}

.shop-single-section .shop-single-slider .slider-for img {
  display: inline-block;
}

.shop-single-section .shop-single-slider .slider-nav {
  padding: 0 25px;
  margin-top: 35px;
}

.shop-single-section .shop-single-slider .slider-nav>i {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100;
}

.shop-single-section .shop-single-slider .slider-nav>i:hover {
  cursor: pointer;
}

.shop-single-section .shop-single-slider .slider-nav .nav-btn-rt {
  left: auto;
  right: 0;
}

.shop-single-section .shop-single-slider .slider-nav .slick-slide {
  text-align: center;
}

.shop-single-section .shop-single-slider .slider-nav .slick-slide img {
  display: inline-block;
}

.shop-single-section .product-details {
  padding: 30px 30px 93px;
  /*** product option ***/
}

@media (max-width: 1199px) {
  .shop-single-section .product-details {
    padding: 40px 30px 85px;
  }
}

@media (max-width: 991px) {
  .shop-single-section .product-details {
    margin-top: 45px;
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .shop-single-section .product-details {
    padding: 0;
  }
}

.shop-single-section .product-details h2 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.4em;
  margin: 0 0 0.33em;
}

@media (max-width: 767px) {
  .shop-single-section .product-details h2 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.shop-single-section .product-details .price {
  font-size: 36px;
  font-size: 2.25rem;
  color: var(--primary-color);
  margin: 7px 0 14px;
}

@media (max-width: 991px) {
  .shop-single-section .product-details .price {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media (max-width: 767px) {
  .shop-single-section .product-details .price {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.shop-single-section .product-details .price .old {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: normal;
  color: #a3acbe;
  text-decoration: line-through;
  display: inline-block;
  margin-left: 5px;
}

@media (max-width: 991px) {
  .shop-single-section .product-details .price .old {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .shop-single-section .product-details .price .old {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.shop-single-section .product-details p {
  margin-bottom: 1.3em;
}

.shop-single-section .product-details p:last-child {
  margin: 0;
}

.shop-single-section .product-details .product-option {
  margin-top: 45px;
}

.shop-single-section .product-details .product-option .product-row {
  overflow: hidden;
}

.shop-single-section .product-details .product-option .product-row button:after {
  display: none;
}

.shop-single-section .product-details .product-option .product-row>div {
  height: 35px;
  display: inline-block;
  float: left;
}

.shop-single-section .product-details .product-option .product-row>div+div {
  margin-left: 15px;
}

.shop-single-section .product-details .product-option .product-row>div:first-child {
  width: 85px;
}

.shop-single-section .product-details .product-option .product-row>div:last-child .theme-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.shop-single-section .product-details .product-option .theme-btn {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0 20px;
  height: 35px;
  line-height: 27px;
  outline: 0;
}

.shop-single-section .product-details .product-option .theme-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

@media (max-width: 767px) {
  .shop-single-section .product-details .product-option .theme-btn {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.shop-single-section .product-details .product-option .theme-btn:before {
  display: none;
}

.shop-single-section .product-details .product-option .heart-btn i {
  font-size: 15px;
  font-size: 0.9375rem;
}

.shop-single-section .product-details .product-option .product-row>div:last-child .theme-btn {
  font-size: 18px;
  font-size: 1.125rem;
}

.shop-single-section .product-details #product-count {
  border-radius: 0;
  border: 1px solid #e6e6e6;
}

.shop-single-section .product-details #product-count:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up,
.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  border-radius: 0;
  border-color: #e6e6e6;
}

.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up:hover,
.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.shop-single-section .product-info {
  margin-top: 75px;
  /*** tabs ***/
  /*** client rv ***/
  /*** review form ***/
}

.shop-single-section .product-info h4 {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.7em;
}

.shop-single-section .product-info p {
  margin-bottom: 1.3em;
}

.shop-single-section .product-info .tab-pane p:last-child {
  margin-bottom: 0;
}

.shop-single-section .product-info .nav-tabs {
  border: 0;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .nav-tabs {
    margin-bottom: 20px;
  }
}

.shop-single-section .product-info .nav-tabs li {
  border: 2px solid #efefef;
  margin-right: 1px;
}

.shop-single-section .product-info .nav-tabs li.active a {
  border: 0;
  outline: 0;
}

.shop-single-section .product-info .nav-tabs a {
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #687693;
  border: 0;
  border-radius: 0;
  margin: 0;
  display: block;
  padding: 12px 20px 11px;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .nav-tabs a {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: normal;
    padding: 10px 10px 8px;
    text-transform: none;
  }
}

.shop-single-section .product-info .nav-tabs a:hover,
.shop-single-section .product-info .nav-tabs .active a {
  background: var(--primary-color);
  color: #fff;
}

.shop-single-section .product-info .nav-tabs .active,
.shop-single-section .product-info .nav-tabs li:hover {
  border-color: var(--primary-color);
}

.shop-single-section .product-info .tab-content {
  border: 2px solid #efefef;
  padding: 35px 25px;
  margin-top: -1px;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .tab-content {
    border: 0;
    padding: 0;
    margin: 0;
  }
}

.shop-single-section .product-info .client-rv {
  overflow: hidden;
  margin-bottom: 30px;
}

.shop-single-section .product-info .client-rv:last-child {
  margin-bottom: 0;
}

.shop-single-section .product-info .client-rv .client-pic {
  width: 60px;
  float: left;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .client-rv .client-pic {
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }
}

.shop-single-section .product-info .client-rv .details {
  width: calc(100% - 80px);
  float: right;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .client-rv .details {
    width: 100%;
    float: none;
  }
}

.shop-single-section .product-info .client-rv .name-rating-time {
  border-bottom: 1px solid #e6e6e6;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .client-rv .name-rating-time {
    padding-bottom: 3px;
  }
}

.shop-single-section .product-info .client-rv .name-rating-time>div,
.shop-single-section .product-info .client-rv .name-rating>div {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (max-width: 767px) {

  .shop-single-section .product-info .client-rv .name-rating-time>div,
  .shop-single-section .product-info .client-rv .name-rating>div {
    font-size: 12px;
    font-size: 0.75rem;
    display: block;
  }
}

.shop-single-section .product-info .client-rv .rating {
  font-size: 12px;
  color: var(--primary-color);
  padding-left: 12px;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .client-rv .rating {
    padding-left: 0;
    margin: 4px 0 7px;
  }
}

.shop-single-section .product-info .client-rv .name-rating-time .time {
  float: right;
  color: #b3b3b3;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .client-rv .name-rating-time .time {
    float: none;
  }
}

.shop-single-section .product-info .client-rv .review-body {
  padding-top: 12px;
}

@media screen and (min-width: 1200px) {
  .shop-single-section .product-info .review-form-wrapper {
    padding-left: 45px;
  }
}

@media (max-width: 991px) {
  .shop-single-section .product-info .review-form {
    margin-top: 45px;
  }
}

.shop-single-section .product-info .review-form h4 {
  margin-bottom: 1.73em;
  font-weight: 400;
}

.shop-single-section .product-info .review-form form input,
.shop-single-section .product-info .review-form form textarea {
  background: #fbfbfb;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 40px;
  border: 2px solid #efefef;
}

.shop-single-section .product-info .review-form form input:focus,
.shop-single-section .product-info .review-form form textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.shop-single-section .product-info .review-form form textarea {
  height: 130px;
}

.shop-single-section .product-info .review-form form>div {
  margin-bottom: 27px;
}

.shop-single-section .product-info .review-form form>div:last-child {
  margin-bottom: 0;
}

.shop-single-section .product-info .review-form form .rating-wrapper>div {
  display: inline-block;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .review-form form .rating-wrapper>div {
    display: block;
    float: none !important;
  }
}

.shop-single-section .product-info .review-form form .rating-wrapper>div:last-child {
  float: right;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .review-form form .rating-wrapper>div:last-child {
    margin-top: 20px;
  }
}

.shop-single-section .product-info .review-form form .rating a {
  font-size: 14px;
  color: #cccccc;
  display: inline-block;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .review-form form .rating a {
    font-size: 12px;
    margin-right: 5px;
  }
}

.shop-single-section .product-info .review-form form .rating a:last-child {
  margin: 0;
}

.shop-single-section .product-info .review-form form .rating a:hover {
  color: var(--primary-color);
}

.shop-single-section .product-info .review-form form .theme-btn-s4 {
  background-color: transparent;
  color: #908f8f;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.shop-single-section .product-info .review-form form .theme-btn-s4:hover {
  background-color: var(--primary-color);
  color: #fff;
}

@media screen and (min-width: 767px) {
  .shop-single-section .product-info .review-form form .theme-btn-s4 {
    font-size: 15px;
    font-size: 0.9375rem;
    padding: 0 20px;
  }
}

.shop-single-section .slider-nav .slick-slide:focus {
  outline: none;
}

/*--------------------------------------------------------------
  #404 page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#13.1  error-404-section
--------------------------------------------------------------*/
.error-404-section .error {
  width: 50%;
  float: left;
}

@media (max-width: 991px) {
  .error-404-section .error {
    width: 100%;
    float: none;
    text-align: center;
  }
}

.error-404-section .error h2 {
  font-size: 200px;
  font-size: 12.5rem;
  margin: 0;
}

@media (max-width: 991px) {
  .error-404-section .error h2 {
    font-size: 150px;
    font-size: 9.375rem;
  }
}

@media (max-width: 767px) {
  .error-404-section .error h2 {
    font-size: 100px;
    font-size: 6.25rem;
  }
}

.error-404-section .error-message {
  width: 50%;
  float: left;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .error-404-section .error-message {
    width: 100%;
    float: none;
    text-align: center;
    margin-top: 0;
  }
}

.error-404-section .error-message h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 0.8em;
}

.error-404-section .error-message p {
  margin-bottom: 1.8em;
}

/*# sourceMappingURL=style.css.map */

.tblprt {
  padding-bottom: 70px;
}

.tblprt .col-md-12 .tbl_bg {
  /*box-shadow: 2px 2px 10px 3px var(--primary-color);*/
  border-radius: 25px;
  padding: 25px;
}

.service_sec {
  padding-bottom: 0;
}

.erlst .dnwd_btn {
  font-size: 18px;
  font-weight: 400;
}

.service_sec .service-single-content .tblsct .table tr td a {
  text-decoration: underline;
  color: #687693;
}

.service_sec .service-single-content .tblsct .table tr td {
  font-size: 15px;
}

.erdracrdn {
  padding-bottom: 50px;
}

.erdracrdn ul li {
  padding: 7px 0;
}

.erdracrdn li i {
  color: var(--primary-color);
}

.erdracrdn h2 {
  padding-bottom: 30px;
  color: var(--primary-color);
}

.erdracrdn .accordion_head {
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  font-size: 18px;
  margin: 0 0 1px 0;
  padding: 18px 12px;
  font-weight: bold;
  text-transform: capitalize;
}

.erdracrdn .accordion_body {
  background: #fff;
}

.erdracrdn .accordion_body p {
  padding: 18px 5px;
  margin: 0px;
  font-size: 16px;
}

.erdracrdn .plusminus {
  float: right;
  font-size: 20px;
}

.erdracrdn h6 {
  font-size: 18px;
  color: #333;
  padding-top: 25px;
  line-height: 1.4;
}

.recrdrs {
  padding-bottom: 70px;
}

.rcrdsmn {
  /*box-shadow: 2px 2px 10px 3px var(--primary-color);*/
  border-radius: 25px;
  padding: 25px;
}

.recrdrs h2 {
  text-align: center;
  color: var(--primary-color);
  font-weight: 500;
}

.rcrds {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 25px;
}

.recrdrs img {
  width: 27px;
  height: 27px;
}

.recrdrs .rcrds p {
  color: #333;
  font-size: 17px;
  font-weight: 600;
}

.recrdrs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 30px;
}

.recrdrs li {
  color: #333;
  width: 33%;
  padding: 6px 0;
}

.recrdrs li img {
  width: 24px;
  height: 24px;
}

.tblprt {
  padding-bottom: 70px;
}

.tblprt .col-md-12 .tbl_bg {
  /*box-shadow: 2px 2px 10px 3px var(--primary-color);*/
  border-radius: 25px;
  padding: 25px;
}

.service_sec {
  padding-bottom: 0;
}

.erlst .dnwd_btn {
  font-size: 18px;
  font-weight: 400;
}

.service_sec .service-single-content .tblsct .table tr td a {
  text-decoration: underline;
  color: #687693;
}

.service_sec .service-single-content .tblsct .table tr td {
  font-size: 15px;
}

/* Ria */
/*.indivitual-para{*/
/*    box-shadow: 2px 2px 10px 3px #1d84cf;*/
/*    border-radius: 25px;*/
/*    padding: 25px;*/
/*}*/

.headerTop {
  padding: 2px 0;
  background-color: rgb(46, 118, 234, 1);
  position: absolute;
  top: 0;
  z-index: 999;
  width: 100%;
}

.navMenu ul li {
  display: inline-block;
}

.navMenu ul li a {
  display: inline-block;
  font-weight: 600;
  text-transform: capitalize;
  padding: 10px 10px;
  font-size: 15px;
  color: #000;
}

.ban_sec {
  background-color: #1d4ed8;
  width: 100%;
  height: auto;
  background-size: contain;
  background-position: center;
  padding: 11em 0 8rem 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-repeat: no-repeat;
  z-index: 1;
}

a {
  text-decoration: none;
}

.ban_sec::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0171fab0;
  z-index: -1;
}

.ban_sec .form-wrap,
.bottomform_section .form-wrap {
  position: relative;
}

.banner-form {
  /* background: #4c99f8; */
  padding: 7px;
  margin-top: 45px;
  /* background: #4c99f8; */
  padding: 7px;
}

.banner-form .form-control:focus,
.bottomform_section .form-control:focus {
  box-shadow: none;
  border: none;
}

.ban_sec button,
.bottomform_section button {
  /* position: absolute; */
  /* top: 5px;   */
  /* right: 6px; */
  /* bottom: 0; */
  height: 44px;
}

.banner-form .search,
.bottomform_section .search {
  position: absolute;
  top: 25%;
  left: 1.5rem;
  color: #bbbbbb;
  transform: translateY(-50%);
}

.ban_sec .form-control,
.bottomform_section .form-control {
  /* padding-right: 191px; */
  height: 40px;
  border-radius: 30px;
  padding-left: 3.5rem;
  width: 100%;
}

.ban_sec .btn,
.bottomform_section .btn {
  background-color: #fff !important;
  border-color: #fff !important;
  color: hsl(217 82% 55%) !important;
  border-radius: 10px;
  padding: 0px 15px;
  font-size: 14px;

}

:focus {
  box-shadow: none;
}

.ban_sec h1 {
  color: #fff;
  font-size: 60px;
  display: flex;
  line-height: 1.1;
  margin-bottom: 15px;
  justify-content: center;
  flex-direction: column;
}

.cityinner-banner h1 {
  font-size: 36px;
  margin: 0px;
}

.cityinner-banner .banner-text p {
  font-size: 20px;
  color: #DBEAFE;
}

.cityinner-banner .banner-text .count-city {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 30px;
}

.cityinner-banner .banner-text .count-city p {
  color: #fff;
  font-size: 16px;
  margin: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
}

.cityinner-banner .banner-text .count-city p svg {
  height: 20px;
  width: 20px;
}

.cityinner-banner .banner-text .count-city p span {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 6px;
}

.animatedText {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  font-family: Raleway, sans-serif;
}

.ban_img {
  width: 100%;
  position: relative;
}

.ban_img img {
  width: 100%;
}

.ban_text {
  /* position: absolute; */
  /* top: 50%; */
  /* left: 6%; */
  /* -ms-transform: translateY(-50%); */
  /* -webkit-transform: translateY(-50%); */
  /* -moz-transform: translateY(-50%); */
  /* -o-transform: translateY(-50%); */
  /* transform: translateY(-50%); */
  margin-top: 3em;
  position: relative;
  z-index: 1;
}

.ban_text strong {
  font: 800 56.22px/70px "Montserrat", sans-serif;
  color: #fff;
  text-transform: uppercase;
}

.ban_text strong span {
  font: 400 44.44px/52px "Montserrat", sans-serif;
  letter-spacing: 3px;
}

.ban_text p {
  font: 400 25px/30px "Montserrat", sans-serif;
  color: #fff;
  margin: 7px 0 25px;
}

.ban_text a {
  display: inline-block;
  font: 800 19.39px/24px "Montserrat", sans-serif;
  background: #282828;
  border-radius: 26px;
  color: #fff;
  padding: 12px 28px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.ban_text a:hover {
  background: #50af47;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .ban_text p {
    font-size: 21px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .ban_text p {
    font-size: 17px;
  }

  .ban_text strong {
    font-size: 50px;
    line-height: 60px;
  }

  .ban_text strong span {
    font-size: 37px;
  }

  .ban_text a {
    font-size: 16px;
    line-height: 19px;
  }
}

@media only screen and (max-width: 991px) {
  .ban_text strong {
    font-size: 35px;
    line-height: 40px;
  }

  .ban_text strong span {
    font-size: 28px;
    line-height: 35px;
    letter-spacing: 2px;
  }

  .ban_text p {
    font-size: 14px;
    line-height: 20px;
  }

  .ban_text a {
    font-size: 13.39px;
    line-height: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .ban_img img {
    min-height: 290px;
    object-fit: cover;
  }
}

@media only screen and (max-width: 575px) {
  .ban_text strong {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    width: 100%;
    display: block;
  }

  ul.steps li {
    min-height: 133px;
    width: 100% !important;
  }

  ul.steps li:after {
    z-index: 1;
    position: absolute;
    top: 86%;
    /*bottom: 0;
      */
    right: 0;
    width: 0;
    height: 0;
    content: " ";
    left: 0;
    margin: 0 auto;
    transform: rotate(-270deg);
    -webkit-transform: rotate(-270deg);
    -moz-transform: rotate(-270deg);
    -ms-transform: rotate(-270deg);
    -o-transform: rotate(-270deg);
  }

  ul.steps li:nth-child(n+2)::before {
    position: absolute;
    top: 86%;
    right: 0;
    left: 0;
    margin: 0 auto;
    transform: rotate(-270deg);
    -webkit-transform: rotate(-270deg);
    -moz-transform: rotate(-270deg);
    -ms-transform: rotate(-270deg);
    -o-transform: rotate(-270deg);
    display: block !important;
  }

  ul.steps li {
    border-right: none;
    border-bottom: 5px solid white;
  }

  ul.steps.flat-colorimeter li:nth-child(2)::after {
    display: block !important;
  }
}

@media only screen and (max-width: 480px) {
  .ban_text strong span {
    font-size: 22px;
    line-height: 31px;
    letter-spacing: 1px;
  }

  .ban_text {
    left: 2%;
  }
}

.footer_bar {
  background: #000;
  padding: 15px 0px;
}

.footer {
  padding-top: 1rem;
  background-color: #f7f7f7;
}

.footer-sm a {
  color: #fff;
}

.footer-sm {
  background-color: #212121;
}

.footer-bottom__copyright {
  color: #6c757d;
  font-weight: 400;
}

.fotCont {
  color: #fff;
}

.socaild {}

.socaild a {
  display: inline-block;
  padding-right: 15px;
  font-size: 25px;
}

.no-mar-bt {
  margin-bottom: 0 !important;
}

.footer-bottom__copyright a {
  color: #1d84cf;
  text-decoration: none;
}

.individual-image {
  text-align: end;
}

.individual-partner {
  margin-top: 50px;
}

.individual-image img {
  max-width: 100%;
}

.bottom-indivutual-part {
  padding-top: 0;
}

.faq {
  padding: 70px 0;
  /* background: url(../images/bg.jpg) no-repeat bottom left; */
  background: #f9fafc;
  background-size: cover;
}

.individual-page {
  padding: 50px 0;
  /* background: #FFF; */
  /* background: #eaeaea5e url(../images/line.png) no-repeat top left; */
}

.individual-page .text {
  /* color: #333; */
  font-size: 20px;
  font-weight: 600;
}

/* .individual-text p, .individual-text ul li {
  font-size: 19px;
  padding: 13px 0 26px 0;
} */
.individual-text ul li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 18px;
}

.individual-text ul li:last-child {
  margin-bottom: 0;
}

.indivitual-wrap-text h2 {
  color: #1d84cf;
}

.indivitual-wrap-text ul li {
  padding-top: 15px;
  font-weight: 500;
  color: #333;
  font-size: 22px;
}

.individual-text ul li i {
  padding-right: 15px;
  color: #1d84cf;
}

.click-icon {
  display: flex;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #509dfc;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.click-icon i {
  color: #fff !important;
  padding: 0 !important;
}

.erdracrdn .accordion_head {
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  font-size: 18px;
  margin: 0 0 1px 0;
  padding: 18px 12px;
  font-weight: bold;
  text-transform: capitalize;
}

.individual-page-about {
  padding: 0 0 30px 0;
  margin-top: -22px;
}

.individual-page-about h2 {
  color: #1d84cf;
  padding-bottom: 12px;
}

.individual-page-about p {
  font-size: 16px;
  margin-bottom: 35px;
}

.bottom-indivitual-text2 {
  background: #fff;
  box-shadow: 0 0 10px #0006;
  padding: 19px 13px;
  text-align: center;
  height: 287px;
  border-radius: 10px;
  margin: 24px 0 41px 0;
}

.individual-text h4 {
  padding-top: 15px;
  font-weight: 500;
  color: #333;
  font-size: 22px;
}

.bottom-indivitual-text {
  padding-top: 33px !important;
}

.individual-page.individual-page-2 .individual-text p {
  color: #ffffffe3;
}

.individual-page.individual-page-2 .individual-text .click-icon {
  background-color: #ffffffc7;
}

.individual-page.individual-page-2 .individual-text .click-icon i {
  color: #1f8ceb !important;
}

.individual-page.individual-page-2 .individual-text ul li {
  color: #fff;
}

.individual-page.individual-page-2 {
  padding: 70px 0 70px 0;
}

.individual-page.individual-page-2 .individual-text .text {
  padding-bottom: 10px;
}

.indivitual-about-text {
  border: 2px solid #0067b8;
  padding: 9px 16px;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 23px;
  height: 100%;
}

/* Ria */

/* ====== akash ====== */
.tblprt {
  padding-bottom: 70px;
}

.tblprt .col-md-12 .tbl_bg {
  /*box-shadow: 2px 2px 10px 3px var(--primary-color);*/
  border-radius: 25px;
  padding: 25px;
}

.service_sec {
  padding-bottom: 0;
}

.erlst .dnwd_btn {
  font-size: 18px;
  font-weight: 400;
}

.service_sec .service-single-content .tblsct .table tr td a {
  text-decoration: underline;
  color: #687693;
}

.service_sec .service-single-content .tblsct .table tr td {
  font-size: 15px;
}

.support-section {
  margin-bottom: 50px;
}

.support-section .row .support_wrap .support-grid {
  padding: 10px;
}

.support-section .row .support_wrap .support-grid h3 {
  font-size: 22px;
  font-weight: 600;
}

.support-section .row .support_wrap .support-grid p {
  font-size: 16px;
}

.support-section .sup_sec {
  box-shadow: 2px 2px 10px 3px var(--primary-color);
  border-radius: 25px;
  padding: 25px;
}

.points ul li {
  padding-bottom: 15px;
  list-style: disc;
}

.points ul li span {
  font-weight: 700;
}

/*---------service of process pages-----------*/

.resrce_cent h1 {
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: left !important;
}

.resrce_cent h4 {
  color: #666;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

.resrce_cent ul li {
  padding: 7px 0;
}

.resrce_cent li i {
  color: var(--primary-color);
}

.resrce_cent li span {
  font-size: 18px;
  font-weight: 500;
  color: #222;
}

.blog-single-section .tblsct {
  box-shadow: 2px 2px 10px 3px var(--primary-color);
  border-radius: 25px;
  padding: 25px;
}

.blog-single-section .tblbx h4 {
  color: #666;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 30px;
}

.blog-single-section .tblbx .tblsct {
  margin-top: 20px;
}

.blog-single-section .tblbx .tblsct h5 {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 500;
}

/*----------Counties-------------*/

.countslstsec .table th {
  vertical-align: middle !important;
  text-align: center !important;
  font-weight: 500;
}

.countslstsec h4 {
  font-size: 25px;
  font-weight: 500;
  color: var(--primary-color);
  padding: 6px 0;
}

.proce_cnt {
  box-shadow: 2px 2px 10px 3px var(--primary-color);
  border-radius: 25px;
  padding: 25px;
}

.proce_cnt h4 {
  font-size: 25px;
  font-weight: 500;
  color: var(--primary-color);
  padding: 6px 0;
}

.proce_cnt p {
  margin-bottom: 5px;
  font-weight: 500;
}

.proce_cnt p span {
  font-weight: 600;
}

.proce_cnt p a {
  color: #222;
}

/*---------27.09.2023-----------*/

.odr_deadline .cal_county {
  display: flex;
  flex-wrap: wrap;
}

.odr_deadline .cal_county li {
  width: 33%;
}

.calcnty_sect table td {
  width: 33%;
}

/*-----------Court Information-------------*/

.crtsec {
  padding: 40px 0;
}

.crtsec table td a {
  color: #6c6c6c;
}

.crtsec table tr td {
  font-size: 14px;
  text-align: center;
}

.crtsec table th {
  text-align: center;
}

.bgstr {
  background: #3c78d8;
}

.bgstr a {
  color: #fff !important;
}

.bgstr th {
  color: #fff;
}

/*=== Biswajit css */

.content-area img {
  height: 350px;
  object-fit: cover;
}

.team-section img {
  margin-bottom: 15px;
  height: 90px;
  object-fit: contain;
}

.countslstsec {
  padding: 3rem 0;
}

.sev_proc {
  margin-bottom: 3rem;
}

/*Tanmoy CSS 06-10-2023 */
.mt-20 {
  margin-top: 60px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.rc-link:hover {
  color: var(--primary-color);
}

.courtfiling {
  padding: 30px 0;
}

.courtfiling p {
  font-size: 18px;
}

.courtfiling .table a {
  color: var(--primary-color);
}

.courtfiling .table td,
.courtfiling .table th {
  border: 1px solid #ddd;
}

.courtfiling .table td {
  font-size: 18px;
}

.courtfiling .table th {
  font-size: 20px;
  text-align: center;
  color: var(--primary-color);
}

/*Tanmoy CSS 06-10-2023 END */

/*-----------Process Serving-------------*/

.odr_deadline {
  padding: 70px 0;
  padding-top: 15px;
  padding-bottom: 0;
  /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/slide-3.jpg) no-repeat center;
   background-size:cover;*/
}

.odr_deadline .container {
  /*box-shadow: 2px 2px 10px 3px var(--primary-color);*/
  padding: 20px;
  border-radius: 20px;
}

.odr_deadline h1 {
  font-weight: 500;
  text-align: center;
  padding-bottom: 20px;
  color: #222;
  color: var(--primary-color);
}

.courtfiling h2 {
  color: var(--primary-color);
}

.odr_deadline p {
  color: #333;
  font-size: 18px;
}

.odr_deadline ul li {
  padding: 7px 0;
  color: #333;
  font-size: 18px;
}

.odr_deadline li i {
  color: var(--primary-color);
}

.odr_deadline li span {
  font-weight: 500;
  font-size: 18px;
  color: var(--secondry-color);
}

.odr_deadline table td {
  width: 60%;
  color: #333;
  font-size: 16px;
}

.odr_deadline table span {
  font-weight: 600;
  color: var(--secondry-color);
}

.rrsect h2 {
  font-weight: 500;
}

.erdrcnt {
  /*box-shadow: 2px 2px 10px 3px var(--primary-color);*/
  border-radius: 25px;
  padding: 25px;
}

.erdrcnt h1 {
  font-weight: 500;
  color: var(--primary-color);
}

.erdrcnt h2 {
  font-weight: 500;
  color: var(--primary-color);
  margin: 25px 0 35px 0;
}

.erdrcnt h2 a {
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: underline;
}

.ercrdsec span {
  font-weight: 600;
  color: #222;
}

.ercrdsec a {
  color: var(--primary-color);
}

.erdrcnt {
  /*box-shadow: 2px 2px 10px 3px var(--primary-color);*/
  border-radius: 25px;
  padding: 25px;
  /*margin-top:20px;*/
  padding-top: 0;
}

.erdrcnt p {
  font-size: 18px;
}

.erdrcnt h4 {
  padding-top: 15px;
  font-weight: 500;
  color: var(--primary-color);
  font-size: 30px;
}

.notice h2 {
  font-size: 18px;
  color: #000;
  margin-top: 35px;
}

.erdrcnt h4 a {
  color: #333;
  font-weight: 600;
  text-decoration: underline;
}

.erdrcnt h4 a:hover {
  color: var(--primary-color);
}

.erdrcnt .erlst ul {
  text-align: left;
}

.erdrcnt .erlst ul li {
  padding: 7px 0;
  font-size: 18px;
}

.erdrcnt .erlst li i {
  color: var(--primary-color);
}

.erdrcnt .erlst li span {
  color: #000;
  font-weight: 500;
  font-size: 18px;
}

.support-section {
  margin-top: 30px;
}

.courtfiling .crlsty {
  display: flex;
  flex-wrap: wrap;
}

.courtfiling .crlsty li {
  width: 33%;
  display: inline-block;
  padding: 6px 0 15px;
  font-size: 18px;
}

.courtfiling .crlsty li i {
  color: var(--primary-color);
}

.courtfiling .col-md-12 {
  padding-top: 22px;
}

.courtfiling .row {
  margin-top: 30px;
}

.skipcny p {
  font-size: 18px;
}

.locationsec {
  padding: 5rem 0;
}

/*.locatdesign{*/
/*    width: 50%;*/
/*    margin: auto;*/
/*}*/
/*.locatdesign input{*/
/*    background: #fdfdfd;*/
/*    border-color: #eaeaea;*/
/*    width: 100%;*/
/*    height: 55px;*/
/*    border: 2px solid rgb(29 132 207);*/
/*    border-radius: 0;*/
/*    -webkit-box-shadow: none !important;*/
/*    box-shadow: none !important;*/
/*}*/

.locationsec {
  /*background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url('../images/map.jpg') no-repeat center;*/
  /*background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url('../images/court.jpeg') no-repeat center;*/
  /*background-size: cover;*/
  /*padding: 100px 0;*/
}

/*.locationsec .locatdt {*/
/*	padding: 28px 25px;*/
/*}*/

/*.locationsec .form-control {*/
/*	border-radius: 0 !important;*/
/*    height: 50px;*/
/*}*/

/*court locater*/

/*.locationsec {*/
/*background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url('../images/map.jpg') no-repeat center;*/
/*    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url('../images/court.jpeg') no-repeat center;*/
/*    background-size: cover;*/
/*    padding: 100px 0;*/
/*}    */

/*.locationsec .locatdt {*/
/*	padding: 28px 25px;*/
/*    background: #ff33004d;*/
/*}*/
.alphasecprt {
  padding-top: 50px;
}

.locationsec .form-control {
  border-radius: 0 !important;
  height: 50px;
}

.box {
  margin-bottom: 2rem;
}

.mapsecprt {
  background: #e9e9e9e3;
}

.mapsecprt h6 {
  background: #ffd400;
  padding: 15px;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
}

.alphasecprt h6 {
  background: #ffd400;
  padding: 15px;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
}

.leftcnt h3 {
  color: #0572d1;
  font-weight: 500;
  margin: 0;
}

.leftcnt span {
  color: #0572d1;
  font-weight: 400;
}

.leftcnt p {
  color: #212529;
}

.cmnbtn {
  text-decoration: none;
  background: #646464;
  padding: 5px 11px;
  color: #fff;
  border-radius: 5px;
  display: inline-block;
  font-size: 15px;
}

.cmnbtn:hover {
  color: #fff;
}

.rightcnt ul {
  list-style: none;
}

.rightcnt a {
  text-decoration: none;
  color: #0572d1;
}

.rightcnt a:hover {
  color: #0572d1;
}

.cntprt {
  border-top: 1px solid #555;
  padding: 15px 0;
}

.mapsecprt .cntprt p {
  color: #222;
}

.alphasecprt .mainbx {
  padding: 30px;
  background: #efefef;
  /*height: 570px;*/
}

.formprt {
  width: 85%;
}

/*.locatdt input[type=submit] {*/
/*   width: 90px;*/
/*   margin-left: -20px;*/
/*   background: #00adef;*/
/*   color: #fff;*/
/*   font-size: 16px;*/
/*   font-weight: 600;*/
/*}*/

.mapservsec {
  height: 100vh;
}

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

/*--------Alpha's CSS-------------*/

.mt-1 {
  margin-top: 0.25rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.alphasecprt .row {
  margin-right: -15px;
  margin-left: -15px;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
  display: flex;
  flex-wrap: wrap;
}

.alphasecprt .col-md-6 {
  width: 50%;
  flex: 0 0 auto;
  float: none;
}

.mapsecprt h2 {
  color: #212529;
  font-weight: 500;
}

.mapsecprt h4 {
  color: #212529;
  font-size: 24px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .alphasecprt .col-12 {
    width: 100%;
  }

  .alphasecprt .row {
    margin: 0 auto;
  }

  .alphasecprt .row .cntprt .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}

/*-----------Location------------*/

.locationsec .locatdt {
  padding: 28px 25px;
  background: #00adef1c;
}

.locationsec .d-inline-block {
  display: inline-block !important;
}

.locationsec .formprt {
  width: 85%;
}

.locationsec .row {
  display: flex;
}

.locatdt input[type="submit"] {
  width: 90px;
  margin-left: -20px;
  background: #00adef !important;
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
}

.locatdt .form-control {
  width: 100%;
  margin-left: 0;
}

.justify-content-center {
  justify-content: center !important;
}

/*-----------Newsletter Area------------*/

.newsletter-area .form-control {
  width: 100%;
  margin-left: 0;
}

.mapsecprt .cntprt p {
  margin: 7px 0 !important;
}

.cntprt p {
  color: #222;
  margin-bottom: 8px;
}

.cntprt p span {
  color: #222;
}

/*---------Calculator-----------*/

.minbody .pricingpg .calculetorbox {
  /*box-shadow: 2px 2px 10px 3px #ccc;*/
  /*padding:30px 15px;*/
  /*border-radius: 10px;*/
  /*box-shadow: 2px 2px 10px 3px var(--primary-color);*/
  border-radius: 25px;
  padding: 25px;
  margin-top: 23px;
}

.minbody .pricingpg h4 {
  font-size: 22px;
  color: #212222;
  font-weight: 600;
  margin-bottom: 10px;
}

#jus {
  margin-top: 10px;
}

#selCourtBlock {
  margin-top: 10px;
}

.calcuoptn .form-control {
  width: 100%;
  margin: 5px 0;
  border: 1px solid #aaa;
  height: 40px;
}

.calcuoptn .form-select {
  width: 100%;
  height: 40px;
  border: 1px solid #aaa;
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  margin: 5px 0;
}

.calcuoptn .form-select:focus {
  outline: none;
}

.calcuoptn button {
  width: 100%;
  background: #2374ee;
  color: #fff;
}

.calcuoptn button:hover {
  color: #fff;
}

.calcuoptn .btn:focus {
  outline: none;
}

.pricingpg p.addcls {
  font-size: 23px;
  margin-top: 15px;
  color: #222;
  font-weight: 600;
}

.pricingpg p {
  font-size: 23px;
  margin-top: 15px;
  color: #222;
  font-weight: 600;
}

.pricingpg ol li {
  font-size: 20px;
  color: #444;
  padding: 8px 0;
  font-weight: 600;
}

.pricingpg ol {
  margin: 0;
  padding-left: 15px;
}

.pricingpg .my-5 {
  margin: 40px 0;
}

.answer {
  box-shadow: 2px 2px 10px 3px var(--primary-color);
  border-radius: 25px;
  padding: 25px;
}

.answer .form-control {
  width: 100%;
  margin: 10px auto;
  height: 40px;
  border-radius: 0;
}

.answer label {
  width: 100%;
  text-align: left;
}

/*----------Pricingpage Utilities CSS----------*/

.pricingpg .align-items-baseline {
  align-items: baseline !important;
}

.pricingpg .d-flex {
  display: flex !important;
}

.pricingpg .justify-content-around {
  justify-content: space-around !important;
}

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

.pricingpg .text-center {
  text-align: center !important;
  margin-bottom: 0;
}

.pricingpg .align-items-center {
  align-items: center !important;
}

.pricingpg .justify-content-between {
  justify-content: space-between !important;
}

.pricingpg .justify-content-end {
  justify-content: flex-end !important;
}

.pricingpg .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.pricingpg .py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pricingpg .contentbox h1 {
  font-family: var(--heading-font);
  margin-top: 0;
  margin-bottom: 30px;
}

.additioncharge p {
  display: none;
}

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

.pricingpg .py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pricingpg .mb-5 {
  margin-bottom: 3rem !important;
}

.pricingpg .mb-4 {
  margin-bottom: 1.5rem !important;
}

.pricingpg .mt-0 {
  margin-top: 0 !important;
}

@media screen and (max-width: 769px) {
  .hero-slider .swiper-wrapper .swiper-slide .slide-inner .container {
    padding-left: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .pricingpg .row {
    --bs-gutter-x: 0 !important;
  }

  .pricingpg .d-flex {
    display: block !important;
  }

  .locationsec .formprt {
    width: 100%;
  }

  .locatdt input[type="submit"] {
    width: 150px;
    margin-left: 0;
  }
}

/*----------Agent Page CSS----------*/

.agentspg .cmpnycontentbox {
  margin-top: 10px;
}

.agentspg .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.agentspg .form-control {
  width: 100%;
  margin-left: 0;
  height: 42px;
  border-radius: 0;
}

.agentspg textarea.form-control {
  height: 100px;
}

.agentspg .form-select {
  width: 100%;
  height: 42px;
  border-radius: 0;
  border: 1px solid #ccc;
}

.agentspg .mb-3 {
  margin-bottom: 10px;
}

.agentspg .cform {
  /*box-shadow: 2px 2px 10px 3px #ccc;*/
  /*padding: 20px;*/
  box-shadow: 2px 2px 10px 3px var(--primary-color);
  border-radius: 25px;
  padding: 25px;
  margin-bottom: 20px;
}

.agentspg .sbmtbtn {
  width: 200px;
  margin: 10px auto;
}

.agentspg .w-100 {
  width: 100%;
}

.agentspg h5 {
  font-size: 25px;
  color: #333;
  font-weight: 400;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .agentspg .col-12 {
    width: 100%;
  }

  .agentspg h5 {
    font-size: 20px;
  }

  .hero-slider .swiper-wrapper .swiper-slide .slide-inner .container {
    padding-top: 100px !important;
    padding-left: 0 !important;
  }
}

#jus {
  display: none;
}

#setCountyForCourtFiling {
  display: none;
}

#getJursForCourtFiling {
  display: none;
}

#case {
  display: none;
}

/* --------- akash --------- */
.contact-section .contact-form form .form-control {
  margin-left: 0;
  color: #fff;
}

.contact-section .contact-form form select {
  color: #a9a9a9 !important;
}

.contact-pg-section .form-control {
  margin-left: 0;
}

.contact-pg-section .contact-form form {
  box-shadow: 2px 2px 10px 3px var(--primary-color);
  border-radius: 25px;
  padding: 25px;
  margin-top: 20px;
  height: 450px;
}

.contact-section .contact-form form .form-pos {
  position: relative;
}

.contact-section .contact-form form label {
  position: absolute;
}

.contact-section-s3 .contact-form form .form-pos {
  position: relative;
}

.contact-section-s3 .contact-form form label {
  position: absolute;
}

.sev_proc .proce_cnt a {
  color: #337ab7;
  transition: all 0.2s;
}

.sev_proc .proce_cnt a:hover {
  color: #23527c;
}

/* --------- akash --------- */

.sev_proc .proce_cnt strong {
  font-family: "Segoe UI";
}

/*----------skip tracing---------------*/

.skipimg {
  width: 500px;
  overflow: hidden;
  margin: 15px auto;
  box-shadow: 2px 2px 10px 3px #ccc;
  border-radius: 15px;
}

.skipimg img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.imghusc .container {
  /*box-shadow: 2px 2px 10px 3px var(--primary-color);*/
  padding: 20px;
  border-radius: 20px;
}

.imghusc .skipcny ul {
  display: flex;
  flex-wrap: wrap;
}

.imghusc .skipcny ul li {
  width: 33%;
  display: inline-block;
  padding: 5px 0;
  font-size: 18px;
}

.imghusc .skipcny ul li i {
  color: var(--primary-color);
}

.imghusc .skipcny h3 {
  font-weight: 500;
  color: var(--primary-color);
}

.imghusc .skipcny h5 {
  color: #8d8d8d;
  font-size: 18px;
  font-weight: 500;
}

/*----------subpoena_dmestication----------*/

.odr_deadline h4 {
  padding-top: 15px;
  font-weight: 500;
  color: #333;
  font-size: 22px;
}

.odr_deadline h3 {
  color: var(--primary-color);
}

.odr_deadline .tblsct .table tr th {
  font-size: 18px;
}

.odr_deadline span.stphn {
  font-weight: 600;
  color: #111;
}

.service-single-section ul.tistxt {
  display: flex;
  flex-wrap: wrap;
}

.service-single-section ul.tistxt li {
  width: 33%;
  display: inline-block;
  padding: 5px 0;
  font-size: 18px;
}

.service-single-section ul.tistxt li i {
  color: var(--primary-color);
}

.service-single-section {
  margin: 50px 0 0 0;
  padding-top: 0;
}

/*.page-title p {*/
/*	display: none;*/
/*}*/

.policy-heading h2 {
  font-weight: 400;
  font-size: 36px;
  margin: 50px 0 50px 0;
}

.policy-content span {
  font-weight: 600;
}

.policy-content h3 {
  font-weight: 600;
}

.policy-content p {
  font-weight: 400;
  margin: 0 0 25px 0;
}

.policy-content {
  padding: 0 0 50px 0;
}

.policy-content ul {
  padding-bottom: 25px;
}

.policy-content .dot {
  list-style: disc;
}

.policy-content .number {
  list-style: auto;
}

.imgppl {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
}

.imgppl img {
  width: 100%;
  object-fit: cover;
}

/* akash */

.about-section .left-col .section-title h2 {
  color: #060606;
  font-size: 28px;
  font-weight: 500;
}

.about-section .right-col p {
  color: #060606;
}

.feature-section .feature-grid p {
  color: #060606;
}

.ftr_cstm .section-title-s3 p {
  color: #060606;
}

.history-section p {
  color: #060606;
}

.support-section .support-grid p {
  color: #060606;
}

.hero-slider .swiper-wrapper .swiper-slide {
  position: relative;
}

/*.hero-slider .swiper-wrapper .swiper-slide:before {*/
/*    content: "";*/
/*    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8));*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    z-index: 2;*/
/*}*/
/*.hero-slider .swiper-wrapper .swiper-slide .slide-inner {*/
/*    position: relative;*/
/*    z-index: 6;*/
/*    background: linear-gradient(rgb(0 0 0 / 4%),rgb(0 0 0 / 28%));*/
/*}*/
.hero-slider .swiper-wrapper .swiper-slide .slide-inner .container {
  background: linear-gradient(rgb(0 0 0 / 34%), rgb(0 0 0 / 41%));
  height: 450px;
  height: 100%;
  width: 100%;
  padding-top: 220px;
  padding-left: 90px;
}

/*Teethi*/
.courtesy-banner {
  background: url(../images/Courtesy_Copy.jpg) center center/cover no-repeat local;
}

.document_research {
  background: url(../images/Document_Research.jpg) center center/cover no-repeat local;
}

.e_filing {
  background: url(../images/eFiling_Service.jpg) center center/cover no-repeat local;
}

.e_recording {
  background: url(../images/eRecording_Image.jpg) center center/cover no-repeat local;
}

.physical_court_filing {
  background: url(../images/Physical_Court_Filing.jpg) center center/cover no-repeat local;
}

.process_serving {
  background: url(../images/process_service.jpg) center center/cover no-repeat local;
}

.subpoena_domestication {
  background: url(../images/Subpoena_Domestication.jpg) center center/cover no-repeat local;
}

.page-title {
  position: relative;
}

.page-title:before {
  content: "";
  background-color: #00000075;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  transform: translate(-50%, 0);
}

/*.hero-slider {*/
/*   position: relative;*/
/*}*/
/*.hero-slider:before {*/
/*    content: "";*/
/*    background-color: #00000075;*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, 0);*/
/*    z-index: 2;*/
/*}*/

.case-studies-section .case-studies-grids .owl-stage {
  /*display: flex;*/
  /*flex-wrap: wrap;*/
  /*width: 100% !important;*/
  margin: 0 auto;
}

/*.case-studies-section .case-studies-grids .owl-stage .owl-item {*/
/*    width: 25% !important;*/
/*}*/

/*tab css*/

.tabs-container {
  padding: 2rem;
}

/*.tabs {*/
/*	display: flex;*/
/*}*/

.tabs ul {
  margin: 0;
  padding: 0;
  /*width: 15%;*/
  list-style: none;
  border: 1px solid #eaeaea;
  border-bottom: 0;
  height: fit-content;
}

.tabs ul li {
  display: block;
  border-bottom: 1px solid #eaeaea;
}

.tabs ul li a {
  font-size: 0.9375rem;
  background: #fcfcfc;
  font-weight: 600;
  display: block;
  color: #262b3e;
  padding: 16px 24px;
  text-decoration: none;
}

/*.tabs > ul li a,*/
/*.tabs > ul li a:visited {*/
/*	display: flex;*/
/*	border-bottom: none;*/
/*	text-decoration: none;*/
/*	background-color: #000;*/
/*	color: #fff;*/
/*	padding: 1rem 1.5rem;*/
/*	transition: all 0.2s ease-in-out;*/
/*	word-wrap: break-word;*/
/*}*/

.tabs ul li a:hover,
.tabs ul li a:focus,
.tabs ul li a:active {
  border-bottom: none;
  outline: 0;
}

.tabs ul li a.active {
  background-color: #1d84cf;
  color: #fff;
}

.tabs ul li a:hover:not(.active) {
  color: #0067b8;
}

.tabs ul li a span {
  width: 100%;
  display: flex;
  align-items: center;
}

.tabs ul li a span.tab-label {
  display: none;
}

.tabs section {
  width: 100%;
  background-color: #fff;
  padding: 1rem;
  display: none;
  word-wrap: break-word;
  /*border-bottom: 6px solid #0067b8;*/
}

.tabs section * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s, transform 0.2s;
}

.tabs section *:nth-child(1) {
  transition-delay: 0.2s;
}

.tabs section *:nth-child(2) {
  transition-delay: 0.3s;
}

.tabs section *:nth-child(3) {
  transition-delay: 0.4s;
}

.tabs section *:nth-child(4) {
  transition-delay: 0.5s;
}

.tabs section *:nth-child(5) {
  transition-delay: 0.6s;
}

.tabs section *:nth-child(6) {
  transition-delay: 0.7s;
}

.tabs section *:nth-child(7) {
  transition-delay: 0.8s;
}

.tabs section *:nth-child(8) {
  transition-delay: 0.9s;
}

.tabs section *:nth-child(9) {
  transition-delay: 1s;
}

.tabs section *:nth-child(10) {
  transition-delay: 1.1s;
}

.tabs section *:nth-child(11) {
  transition-delay: 1.2s;
}

.tabs section *:nth-child(12) {
  transition-delay: 1.3s;
}

.tabs section *:nth-child(13) {
  transition-delay: 1.4s;
}

.tabs section *:nth-child(14) {
  transition-delay: 1.5s;
}

.tabs section *:nth-child(15) {
  transition-delay: 1.6s;
}

.tabs section *:nth-child(16) {
  transition-delay: 1.7s;
}

.tabs section *:nth-child(17) {
  transition-delay: 1.8s;
}

.tabs section *:nth-child(18) {
  transition-delay: 1.9s;
}

.tabs section *:nth-child(19) {
  transition-delay: 2s;
}

.tabs section *:nth-child(20) {
  transition-delay: 2.1s;
}

.tabs section.active {
  display: block;
}

.tabs section.active-content * {
  opacity: 1;
  transform: translateY(0);
}

.site-wrapper {
  padding: 50px 0;
}

.site-wrapper li i {
  color: var(--primary-color);
}

.site-wrapper h2 {
  padding-bottom: 30px;
}

.site-wrapper .accordion_head {
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  font-size: 16px;
  margin: 0 0 1px 0;
  padding: 18px 12px;
  font-weight: bold;
}

.site-wrapper .accordion_body {
  background: #fff;
}

.site-wrapper .accordion_body p {
  padding: 18px 5px;
  margin: 0px;
}

.site-wrapper .plusminus {
  float: right;
  font-size: 20px;
}

.site-wrapper h6 {
  font-size: 17px;
  color: #333;
  padding-top: 25px;
}

.accordion_body ul {
  border: none;
}

.accordion_body ul li {
  border: none;
  padding: 8px 0;
}

/*tab css*/

.top-cont-section {
  padding: 50px 0;
}

.top-cont-section .top-cont {
  width: 80%;
  margin: 0 auto;
}

.top-cont-section p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 25px 0;
}

.history-section .section-title-s3 .icon i:before {
  font-weight: 600 !important;
  font-size: 20px;
  color: #fff;
}

.erlst ul li .subul {
  list-style: disc;
  padding-left: 40px;
}

.no-office ul {
  list-style: disc;
  padding-left: 40px;
}

.notice p {
  margin-bottom: 25px;
}

.contact-section-s3 form .submit-area {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.service-section .service-grids .grid {
  padding-left: 0;
  display: flex;
  align-items: center;
}

.service-section .service-grids .grid h3 {
  padding-left: 15px;
}

.service-section .service-grids .grid img {
  width: 50px;
  height: 50px;
}

.hero-slider .swiper-cust-pagination .swiper-pagination-bullet i:before {
  font-size: 0;
}

.hero-slider .swiper-cust-pagination .swiper-pagination-bullet:first-child:before {
  content: "";
  background-image: url(/new_front_assets/images/process-serving.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 25px;
}

.hero-slider .swiper-cust-pagination .swiper-pagination-bullet:nth-child(2):before {
  content: "";
  background-image: url(/new_front_assets/images/e-filing.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 25px;
}

.hero-slider .swiper-cust-pagination .swiper-pagination-bullet:nth-child(3):before {
  content: "";
  background-image: url(/new_front_assets/images/e-recording.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 25px;
}

.hero-slider .swiper-cust-pagination .swiper-pagination-bullet:last-child:before {
  content: "";
  background-image: url(/new_front_assets/images/courtsy-copy.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 25px;
}

.feature-section.ftr_cstm .feature-grid {
  text-align: center;
}

.icn_img {
  text-align: center;
}

.site-header .topbar .social a:first-child {
  background-color: #1d84cf;
  color: #fff;
  padding: 8px 20px;
  border: 1px solid #1d84cf;
  transition: all 0.3s ease-in-out;
  margin-right: 5px;
}

.site-header .topbar .social a:first-child:hover {
  background-color: transparent;
}

.site-header .topbar .social a:last-child {
  background-color: transparent;
  color: #fff;
  padding: 8px 20px;
  border: 1px solid #1d84cf;
  transition: all 0.3s ease-in-out;
}

.site-header .topbar .social a:last-child:hover {
  background-color: #1d84cf;
}

.site-header .topbar .social {
  display: flex;
}

.ml-10 {
  margin-left: 10px;
}

.p-v-100 {
  padding: 50px 0;
}

.reviewMain {
  background: #f8f8f8;
  margin: 100px 0;
}

.tiTles {
  flex: 0 0 78%;
}

.reviewMain .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.d-flex {
  display: flex;
}

.g_review {
  width: 100%;
}

.swiper-pagination {
  display: none;
}

.g_review li a {
  padding: 0 2px;
  font-size: 25px;
  color: #fbc223;
  margin: 10px 0 0;
  height: auto;
  display: block;
}

.g_review li a h1 {
  margin: 0;
}

.review_slide div.d-flex {
  flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 15px;
  padding: 15px;
}

.justify-content-center {
  justify-content: center;
}

.review_pic {
  margin-right: 10px;
}

.review_slide .d-flex .g_review li a {
  padding: 0 2px;
  font-size: 14px;
  color: #fbc223;
  margin: 10px 0 0;
}

.review_slide .d-flex .mCustomScrollbar {
  height: 150px;
  margin-top: 10px;
}

.review_slide .d-flex a {
  color: #666;
}

.review_slide .d-flex h5 a {
  color: #000;
  font-size: 18px;
}

.review_slide .d-flex h5 small {
  display: block;
  font-weight: 400;
  color: #666;
}

.review_slide .d-flex h5 small a {
  color: #666;
  font-size: 80%;
}

.review_slide .g_review {
  justify-content: flex-start !important;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(0, 137, 172, 0.75) !important;
  opacity: 1 !important;
}

.off_viewPort .row {
  height: auto;
}

.off_viewPort .row .row {
  flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}

.off_viewPort .row .row .d-flex {
  flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 15px;
  padding: 15px;
  float: left;
}

.off_viewPort.review_slide .d-flex .mCustomScrollbar {
  height: auto;
  margin-top: 10px;
}

.review_slide .g_review {
  justify-content: flex-start !important;
  padding: 0 !important;
}

.off_viewPort .row .row .col-sm-6>.d-flex {
  background-color: #fff;
  -webkit-box-shadow: -1px 1px 37px -23px rgba(0, 0, 0, 0.46);
  -moz-box-shadow: -1px 1px 37px -23px rgba(0, 0, 0, 0.46);
  box-shadow: -1px 1px 37px -23px rgba(0, 0, 0, 0.46);
  margin: 20px 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .reviewMain {
    background: #f8f8f8;
    margin: 0 0 50px 0;
  }

  .col-sm-4,
  .col-sm-7 {
    width: 100%;
  }

  .reviewMain .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .minbody .calculetorbox .col-md-4 {
    width: 100%;
  }

  .minbody .calculetorbox .col-md-6 {
    text-align: center !important;
    width: 100%;
  }

  .minbody .pricingpg .calculetorbox .col-md-6 h4 {
    text-align: center !important;
  }

  .minbody .pricingpg .calculetorbox .col-md-6 h1 {
    text-align: center !important;
  }

  .team-section .row:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .team-section .row:last-child .col-xs-4 {
    width: 50%;
  }

  .skipimg {
    width: 100%;
  }

  .service-sidebar {
    margin-top: 30px;
    max-width: 100%;
  }

  .imghusc .skipcny ul li {
    width: 100%;
  }

  .history-section {
    padding-top: 50px;
  }

  .history-section .history-grids>.grid+.grid {
    margin-top: 25px;
  }

  .crtsec .tblrtg {
    overflow-x: auto;
  }

  .contact-pg-section .contact-form form {
    margin-left: 0;
    margin-right: 0;
  }
}

.reviewMain.off_viewPort {
  margin-top: 0;
}

.thankMain {
  padding: 25px 0;
}

.thankMain .thankMain {
  position: relative;
  padding: 150px 0 50px;
  z-index: 1;
  min-height: 100vh;
}

.thankMain .thankMain::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.thankMain .box {
  background: #fff;
  color: #333;
  padding-bottom: 50px;
}

.thankMain .box h2 {
  background: #13b5ea;
  color: #fff;
  padding: 10px 15px;
  margin-bottom: 30px;
  font-weight: bold;
}

.thankMain .box p {
  font-size: 20px;
  line-height: 1.5;
  color: #666;
}

.thankMain .box2 .theme-btn {
  margin-left: 15px;
  float: right;
}

.thankMain .box2 ul {
  display: flex;
  align-items: center;
  margin: 15px 0;
  padding: 15px 15px;
  background: rgba(255, 255, 255, 0.7);
  color: #333;
  font-size: 16px;
  font-weight: bold;
}

.thankMain .btn-style-three .icon {
  position: absolute;
  right: -1px;
  top: 0px;
  color: #ffffff;
  width: 50px;
  height: 50px;
  font-size: 17px;
  line-height: 50px;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  background-color: #333333;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.thankMain .btn-style-three:hover .icon {
  color: #333333;
  background-color: #ffffff;
}

.thankMain .box2 .btn-style-three {
  position: relative;
  color: #222222;
  font-size: 14px;
  display: inline-block;
  background-color: #ffffff;
  text-transform: uppercase;
  border: 1px solid #cccccc;
  padding: 13px 80px 13px 30px !important;
  border-radius: 0;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  width: 100%;
  display: flex;
}

.thankMain .btn-style-three:hover {
  color: #ffffff;
  background-color: #333333;
}

.thankMain .btn-style-three .icon:after {
  position: absolute;
  content: "";
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border: 5px solid rgba(51, 51, 51, 0.5);
  margin-left: 0;
}

.cta-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.cta-section .row .cta-conetnt h5 {
  margin-top: 0;
  font-size: 45px;
}

.cta-section .row .cta-conetnt h2 {
  font-size: 55px;
}

.cta-section .row .cta-conetnt a {
  font-size: 20px;
  border: 1px solid #b99c69;
}

.thankMain ul li {
  text-transform: capitalize;
  font-size: 22px;
}

.thankMain h1 {
  margin-top: 50px;
}

.thankMain ul li img {
  width: 27px;
}

.bx_design {
  display: flex;
  padding: 35px 0;
}

.bx_design li {
  width: 22.75%;
  margin-right: 33px;
  padding: 0;
}

.bx_design li:last-child {
  margin-right: 0;
}

.bx_design li .bx_heading {
  text-align: center;
  font-size: 34px;
  background-color: transparent;
  padding-top: 25px;
  padding-bottom: 20px;
  margin-bottom: 0px;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
  border: 2px solid #2085b1;
}

.bx_design li .bx_heading h2 {
  margin: 0;
  padding-bottom: 10px;
}

.bx_design li .bx_content {
  background-color: transparent;
  padding-top: 25px;
  padding-bottom: 20px;
  padding-right: 12px;
  padding-left: 12px;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
  border: 2px solid #2085b1;
  border-top: 0;
  min-height: 212px;
}

.courtfiling .bx_design li .bx_content {
  height: 300px;
}

.courtfiling .crlsty {
  margin-top: 35px;
}

.courtfiling .crlsty li {
  /*box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.3);*/
  padding-top: 25px;
  padding-bottom: 20px;
  padding-right: 12px;
  padding-left: 12px;
  width: 45%;
  margin-bottom: 40px;
  margin-right: 40px;
  text-align: center;
  border: 2px solid #2085b1;
}

.courtfiling .crlsty li i {
  display: none;
}

.service-single-section.service_sec .service-single-content .table {
  border: 1px solid #000;
}

.service-single-section.service_sec .service-single-content .table tr td a {
  background-color: #1d84cf;
  color: #fff;
  font-weight: 700 !important;
  padding: 15px 10px !important;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  text-transform: capitalize;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
}

.service-single-section.service_sec .service-single-content .table tr td:first-child {
  border-right: 1px solid #000;
}

.service-single-section.service_sec .service-single-content .table tr td:last-child {
  padding-left: 25px;
}

.service-single-section.service_sec .service-single-content .table tr td a:hover {
  background-color: #b99c69;
}

.odr_deadline .tblsct .table {
  border: 1px solid #000;
}

.odr_deadline .tblsct .table tbody tr td:first-child {
  border-right: 1px solid #000;
}

.odr_deadline .tblsct .table tbody tr td:last-child {
  padding-left: 25px;
}

.service-single-section.service_sec .service-single-content .table th:first-child {
  border-right: 1px solid #000;
}

.service-single-section.service_sec .service-single-content .table th:last-child {
  padding-left: 25px;
}

.odr_deadline .tblsct .table th:first-child {
  border-right: 1px solid #000;
}

.odr_deadline .tblsct .table th:last-child {
  padding-left: 25px;
}

/* akash */

.service-section .service-grids .grid .grid_inner {
  display: flex;
  align-items: center;
}

.service-section .service-grids .grid {
  position: relative;
}

.service-section .service-grids .grid .grid_hover {
  background-color: #fff;
  border-radius: 12px;
  position: absolute;
  top: -60px;
  padding: 15px 10px;
  width: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 10px solid #1d84cf;
}

.service-section .service-grids .grid .grid_inner:hover .grid_hover {
  transform: scale(1.2);
}

.service-section .service-grids .grid .grid_hover .gridhov_inner_btn {
  display: flex;
  justify-content: space-evenly;
  padding-top: 10px;
}

.service-section .service-grids .grid .grid_hover .gridhov_inner_btn a {
  background-color: #1d84cf;
  color: #fff;
  font-size: 12px;
  padding: 5px 15px;
  border-radius: 16px;
  border: 1px solid #1d84cf;
}

.service-section .service-grids .grid .grid_hover .gridhov_inner_btn a:hover {
  background-color: transparent;
  color: #1d84cf;
}

.service-section .service-grids .grid .grid_hover p {
  color: #000;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

.service-section .service-grids .grid .grid_hover .gridhov_inner {
  text-align: center;
  position: relative;
}

.service-section .service-grids .grid .grid_hover .gridhov_inner img {
  padding: 5px;
  background: #fff;
  width: 50px;
  height: 50px;
}

.service-section .service-grids .grid .grid_hover .gridhov_inner .gridhov_image {
  position: absolute;
  top: -68px;
  left: 50%;
  transform: translate(-50%, 0);
}

.service-section .service-grids .grid .grid_hover .gridhov_inner:before {
  content: "";
  border: 10px solid #1d84cf;
  width: 70px;
  height: 52px;
  position: absolute;
  left: 50%;
  top: -77px;
  transform: translate(-50%, 0);
  border-radius: 12px;
}

.service-section .service_btns {
  display: flex;
  justify-content: space-around;
}

.service-section .service_btns a {
  background-color: #1d84cf;
  color: #fff;
  padding: 10px 25px;
  font-size: 14px;
  margin: 0 20px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #1d84cf;
}

.service-section .service_btns a:hover {
  background-color: transparent;
}

.pricingpg .calcuoptn span {
  font-size: 20px;
  line-height: 28px !important;
  font-weight: 600;
  height: 36px;
  text-align: left;
}

.pricingpg .calcuoptn select {
  font-size: 20px;
  padding-left: 10px;
  font-weight: 600;
}

.pricingpg .calcuoptn #goButton {
  font-size: 18px;
  margin-top: 10px;
}

.pricingpg label {
  font-size: 22px;
}

#selItemBlock {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pricingpg .calcuoptn .btn {
  font-size: 20px;
}

.btn {
  font-size: 20px;
}

.calculators .container {
  max-width: 1200px;
  padding-left: 50px;
  padding-right: 50px;
}

.calculators .calculator {
  width: 100%;
  max-width: 50%;
  padding: 0 15px;
}

.calculators .cal_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.calculators .cal_wrap .cal_inner {
  background-color: #f2f4f5;
  padding: 5px 20px 50px 20px;
  -webkit-box-shadow: 0px 5px 0px 1px rgba(216, 216, 216, 1);
  -moz-box-shadow: 0px 5px 0px 1px rgba(216, 216, 216, 1);
  box-shadow: 0px 5px 0px 1px rgba(216, 216, 216, 1);
  height: 480px;
  border-radius: 6px;
}

.calculators .cal_wrap h2.calculator__title {
  font-size: 34px;
  color: #232323;
  margin-bottom: 15px;
}

.calculators .cal_wrap h3.calculator__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #232323;
}

.calculators .cal_wrap select {
  border: none;
  background-color: #dfdfdf;
  font-size: 20px;
  font-weight: 600;
  color: #5b5b5b;
  padding: 10px 10px 10px 10px;
  width: 100%;
  margin-bottom: 15px;
  cursor: pointer;
}

.calculators .cal_wrap h3.price {
  font-size: 42px;
  color: #0070db;
  text-align: center;
  padding: 0 0px 0 0;
}

.calculators .cal_wrap p.calculator__your-quote--info {
  font-size: 18px;
  font-weight: 400;
  color: #232323;
}

.calculators .cal_wrap button.button-style {
  display: block;
  padding: 12px 12px;
  font-weight: 500;
  margin-top: 5px;
  border: none;
  outline: none;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.calculators .cal_wrap .additioncharge ol li {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.calculators .cal_wrap .cal_inner .addcls {
  font-weight: 700;
  font-size: 24px;
  margin: 15px 0 25px 0;
}

.calculators .cal_wrap button.button-style--green {
  background-color: #23c873;
  -webkit-box-shadow: 0px 2px 0px 1px rgba(24, 186, 102, 1);
  -moz-box-shadow: 0px 2px 0px 1px rgba(24, 186, 102, 1);
  box-shadow: 0px 2px 0px 1px rgba(24, 186, 102, 1);
}

.calculators .cal_wrap .cal_your-quote h4 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 15px;
}

.page_calculators .dropdown-toggle {
  padding: 0;
  font-size: 30px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

.page_calculators .dropdown-toggle:hover {
  color: var(--primary-color);
}

.page_calculators .calculators {
  /*display: none;*/
  margin: 25px 0 50px 0;
}

.page_calculators .hyprlnk_wrap {
  display: flex;
  align-items: baseline;
  /*justify-content: space-between;*/
  margin-bottom: 25px;
}

.page_calculators .calculators .cal_wrap .cal_inner .select2 {
  margin-bottom: 25px;
  width: 100% !important;
}

.page_calculators .calculators .cal_wrap .cal_inner .select2-selection {
  height: 50px;
}

.calculators .cal_wrap .cal_inner .select2-selection__rendered {
  border: none;
  background-color: #dfdfdf;
  font-size: 20px;
  font-weight: 600;
  color: #5b5b5b;
  padding: 10px 10px 10px 10px;
  width: 100%;
  margin-bottom: 15px;
  cursor: pointer;
}

.page_calculators .hyprlnk_wrap .dropdown-toggle {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 700 !important;
  padding: 16px 30px !important;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  text-transform: capitalize;
  display: inline-block;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
}

.page_calculators .hyprlnk_wrap .dropdown-toggle:hover,
.page_calculators .hyprlnk_wrap .dropdown-toggle:focus,
.page_calculators .hyprlnk_wrap .dropdown-toggle:active {
  background-color: #b99c69;
  color: #fff;
}

.erdrcnt h4 a {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 700 !important;
  padding: 18px 30px !important;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  text-transform: capitalize;
  display: inline-block;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  margin-left: 280px;
}

.erdrcnt h4 a:hover {
  background-color: #b99c69;
  color: #fff;
}

.partner2 {
  font-size: 18px;
  margin-bottom: 35px;
}

.bottom-indivutual-part-text h2 {
  margin-bottom: 3rem;
}

.bottom-indivutual-part-text2 {
  margin: -1rem 0 1rem 0;
}

.bottom-indivitual-text2 h2 {
  font-size: 25px;
}

.about-sec {
  padding: 70px 0 70px 0;
}

.inner-page-agent-box {
  box-shadow: 0 0 10px #1f8ceb52;
  padding: 30px 30px 0;
  text-align: center;
  height: 100%;
  margin-top: 25px;
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.about-sec.about-sec-1 .col-lg-12 .service-wrp h5 p {
  font-size: 17px !important;
}

.inner-page-agent-box h4 {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 17px;
  line-height: 30px;
}

.agent-box-icon {
  background-color: #3c83f61a;
  height: 4rem;
  width: 4rem;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #0067b8;
  flex: 0 0 4rem;
}

/* .inner-page-agent-box:hover {
  transform: translateY(-2rem);
} */

/* .inner-page-agent .col-md-4:nth-child(2) .inner-page-agent-box {
  background-color: #0d6efd;
  color: #fff;
}

.inner-page-agent .col-md-4:nth-child(2) .inner-page-agent-box h4 {
  color: #fff;
}

.inner-page-agent .col-md-4:nth-child(2) .inner-page-agent-box p {
  color: #fff;
} */

.service-wrp h2 {
  color: #333;
  font-size: 40x;
  padding-bottom: 6px;
  text-align: center;
}

.faq .accordion-item {
  margin-bottom: 22px;
}

.faq .accordion-button {
  border-top: 1px solid #dfdfdf;
  border-bottom: transparent;
  box-shadow: none !important;
}

.faq .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.accordion-item:first-of-type {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.accordion-item {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  overflow: hidden;
}

.accordion-header {
  padding-bottom: 0 !important;
}

.faq .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.countylists {
  padding: 80px 0;
  background: #eaeaea5e;
}

.countylists .county_list ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 12px;

}

.countylists .county_list ul li {
  width: 18%;
}

.countylists .county_list ul li a {
  padding: 15px;
  text-align: center;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  background: rgb(249 250 251);
  color: rgb(55 65 81);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  border: 2px solid rgb(229 231 235);
}



.countylists .county_list ul li a:hover {
  /* background-color: #0d6efd; */
  /* background-color: #1f8ceb; */
  /* border: 1px solid #0d6efd; */
  border: 2px solid #1f8ceb;
  color: #1f8ceb;
}

.countylists .heading h2 {
  text-align: center;
  /* margin: 0 0 35px 0; */
  font-size: 2.25rem;
}

.countylists a {
  text-decoration: none !important;
}

.stellarnav>ul>li>a {
  padding: 20px 10px !important;
}

.headerTop .logo a {
  text-decoration: none !important;
  color: #fff !important;
  /* font-size: 30px; */
  font-size: 18px;
  font-weight: 600;
}

.headerTop .logo a span {
  /* width: 45px; */
  /* height: 45px; */
  /* flex: 0 0 45px; */
  font-size: 20px;
}

.headerTop a {
  text-decoration: none !important;
}

header .right ul li a {
  color: #fff !important;
  padding-left: 21px;
  font-size: 16px;
}

header .nevmenu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

header .theme-btn {
  background-color: #ffffff;
  color: #2E76EA !important;
  font-weight: 500 !important;
  padding: 9px 16px !important;
  border: 0;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 10px;
  text-transform: capitalize;
  /* display: inline-block; */
  color: #509dfc;
}

.bottomform_section {
  padding: 40px 0;
  margin-bottom: 50px;
}

.indi_Box h2,
.indi_Box li {
  color: #fff !important;
  text-align: center;
}

.indi_Box li {
  justify-content: center;
  margin-bottom: 10px !important;
}

.bottomform_section .heading,
.indi_Box {
  /* background-color: #ffff; */
  /* background: url(../images/wave.jpg) no-repeat top right #1f8ceb; */
  /* background-size: auto 100%; */
  /* box-shadow: 0 0 10px #d0d0d0; */
  border-radius: 5px;
  padding: 51px;
  margin: 0;
  /* box-shadow: 10px 10px 0 0 #163a5a; */
  position: relative;
  z-index: 1;
}

.bottomform_section h2 {
  font-size: 2.25rem;
  /* margin-bottom: 15px; */
  color: #fff;
}

.bottomform_section p {
  color: rgb(219 234 254);
  margin: 20px 0;
  font-size: 20px;
}

.bottomform_section a {
  text-decoration: none !important;
}

.bottomform_section .theme-btn {
  background-color: #fff;
  color: #1f8ceb;
  line-height: 1.5;
  border-radius: 10px;
  transition: 0.2s ease;
  font-size: 18px;
}

.bottomform_section .theme-btn:hover,
.ban_sec .btn:hover {
  background-color: rgb(239 246 255) !important;
  /* color: #fff;  */
}

.ban_sec .btn.contact-btn:hover {
  background-color: hsl(0deg 0% 100% / 10%) !important;
}

.changebox {
  margin: 0 auto;
  color: #fff;
  overflow: hidden;
  transition: 0.5s;
  white-space: nowrap;
}

/* .changebox span { font-family: Raleway, sans-serif;
   font-size: 32px;
   font-weight: bold;}; */

body {
  line-height: unset !important;
}

.footer {
  /* background-color: #245b86; */
  background-color: rgb(43 61 79);
  color: #fff;
  padding: 40px 0 0;
}

.footer a {
  color: #a8c6e6;
  text-decoration: none;
}

.footer a:hover {
  /* text-decoration: underline; */
  color: #fff !important;
}

.footer h5 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  /* border-bottom: 1px solid #fff; */
  padding-bottom: 10px;
}

.footer h3 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 20px;
  /* border-bottom: 1px solid #fff; */
  padding-bottom: 10px;
}

.footer .social-icons a {
  margin-right: 10px;
  display: inline-block;
  color: #fff !important;
  margin-bottom: 9px;
  font-size: 14px;
}

.list-unstyled a {
  font-size: 14px;
  /* color: #a8c6e6 !important; */
  color: #D1D5DB !important;
}

.list-unstyled li {
  /* border-bottom: 1px solid #fff; */
  margin-bottom: 10px;
}

.footer-bottom {
  background-color: rgb(43 61 79);
  /* color: #cfe2f3; */
  color: rgb(156 163 175) !important;
  padding: 15px 0;
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 25px;
  border-top: 1px solid rgb(55 65 81);
}

.footer-bottom a {
  color: rgb(156 163 175) !important;
  margin-left: 15px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* sonali */

.ban_sec h4 {
  color: rgb(219 234 254);
  margin-top: 1.5rem;
  font-weight: 400;
  font-size: 24px;
}

.individual-text ul {
  padding-left: 0;
}

/* ria */
.local-process-box {
  padding: 0 0 70px 0;
  background-color: #F9FAFC;
}

.local-process-box img {
  width: 40px;

}

.whybox {
  margin: 0;
  padding: 30px 15px 40px;
  /* background-color: #ffffff15; */
  border: none;
  /* border-width: 1px;
  border-color: #c0c0c0; */
  border-radius: 10px;
  /* box-shadow: 0 4px 16px -4px #327df51f; */
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  height: 100%;
  position: relative;
}

.whybox .icon {

  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-color: hsl(217deg 82% 55% / 10%);
  /* padding: 0.7em 0.55em;
  width: 116px;
  height: 116px;
  display: inline-block;
  line-height: 90px; */
  padding: 20px 10px;
  width: 70px;
  height: 70px;
  display: inline-block;
  line-height: 95px;
  top: -55px;
  left: 0;
  right: 0;
  border-radius: 50%;
}

.local-process-box.local-process-box2 .col-lg-4:nth-child(3) .whybox .icon {
  padding: 15px;
}

/* .whybox:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
transform: translateY(-0.25rem);
}
*/
/* .whybox:hover .icon {
  background-color: #0067b8;
} */

.whybox:before,
.whybox:after {
  content: "";
  position: absolute;
  z-index: 2;
  transition: all 0.5s ease-out;
}

.whybox:after {
  bottom: 0;
  right: 0;
  width: 4px;
  height: 0;
}

.whybox:before {
  right: 0;
  bottom: 0;
  height: 4px;
  width: 0;
}

/* .whybox:before,
.whybox:after {
  background-color: #0067b8;
} */

.whybox:hover:after {
  height: 100%;
}

.whybox:hover:before {
  width: 100%;
}

.img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.whybox h4,
.join-about ul h4 {
  /* font-size: 30px; */
  font-size: 1.5rem;
  color: #0067b8;
  font-weight: 600;
  margin-bottom: 17px;
}

.cityinner-banner {
  /* height: 48vh; */
  background-size: 53%;
  /* background-position: right; */
  background: linear-gradient(90deg, rgba(30, 58, 138, 1) 70%, rgba(29, 78, 216, 1) 100%) !important;
  padding: 100px 0 48px 0 !important;
  z-index: auto;
}

/* .cityinner-banner .banner-text {
  /* padding-top: 150px; */
/* } */

*/ .joint-pages .banner-text p {
  color: #fff;
}

.cityindividual-page h2 {
  font-size: 23px !important;
}

/* .cityindividual-page h4 {
  color: #0067b8;
} */
.cityindividual-page h4 {
  color: #0067b8;
  font-size: 39px;
  font-weight: 600;
}

.individual-page .text ul {
  padding-left: 0;
}

.cityindividual-page .dot {
  width: 5px;
  height: 5px;
  background-color: #0067b8;
  border-radius: 50%;
  display: flex;
  margin-top: 8px;
}

.cityindividual-page .text p {
  font-size: 16px;
}

.joinPage p {
  color: #fff;
}

.join-page .individual-page__overlay {
  height: 300px;
}

.cityindividual-page .text li {
  /* font-size: 18px; */
  font-size: 14px;
  display: flex;
  color: #000;
  gap: 7px;
  margin-bottom: 6px;
}

.cityindividual-page .city-box img {
  width: 111px;
  height: 111px;
}

.city-box {
  gap: 77px;
  background: #fff;
  border-radius: 12px;
  padding: 22px 19px;
}

.local-process-box .whybox h4 {
  padding-top: 15px;
}

.local-process-box .whybox {
  background-color: #fff;
  box-shadow: 2px 3px 7px 4px #1f8ceb47;
  padding: 20px 30px;
  transition: 0.4s;
}

/* .local-process-box .whybox:hover{
  background-color: #3798ec;
    box-shadow: none;
    transition: 0.4s;
} */
.local-process-box .whybox:hover h4 {
  color: #fff;
  transition: 0.4s;
}

.local-process-box .whybox:hover .process-description {
  color: #fff;
  transition: 0.4s;
}

.process-description {
  color: rgb(75 85 99);
}

/* .city-box .btn {
  background-color: #0067b8;
  color: #fff;
  width: 100%;
  margin-bottom: 10px;
  font-size: 15px;
} */
.city-box .btn {
  background-color: #0067b8;
  color: #fff;
  width: 100%;
  margin-bottom: 10px;
  font-size: 15px;
  padding: 10px 35px;
  border-radius: 30px;
}

.hidden-row {
  display: none;
}

.city-box .btn:hover {
  background: #000;
  color: #fff;
}

.cityindividual-page .dot {
  margin-right: 10px;
}

.service-list .dot {
  width: 8px;
}

.city-about .content-box h2 {
  color: #1f8ceb;
  font-weight: 600;
  font-size: 39px;
}

.city-about .content-box h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0067b8;
}

.city-about .content-box>ul {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
}

.city-about .content-box>ul li {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px #0000002e;
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  height: 100%;
}

.city-about.join-about .content-box>ul>li {
  gap: 0.5rem;
  height: 100%;
}

.city-about .content-box>ul li:hover {
  box-shadow: 0 0 20px #1f8ceb;
}

.expertise-icon {
  width: 4rem;
  height: 4rem;
  flex: 0 0 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  background: #1f8ceb;
  color: #fff;
  font-size: 1.7rem;
  border-radius: 0.8rem;
}

.city-about .content-box a {
  text-decoration: none;
}

.city-about {
  padding: 50px 0;
}

.city-about .button-group a {
  margin-bottom: 8px;
  margin-left: 1.6rem;
}

.city-about .button-group a.btn,
.citybtn-custom a.btn {
  background-color: #1f8ceb;
  color: #fff;
  line-height: 1.5;
  border-radius: 30px;
  transition: 0.2s ease;
  font-weight: 700;
  padding: 16px 30px;
}

.citybutton-sec {
  padding-top: 3rem;
}

.city-about .button-group a.btn:hover,
.citybtn-custom a.btn:hover {
  background: #000;
}

.city-faq {
  padding: 0;
}

/* .city-faq .accordion-button {
  background-color: #1469e5;
  border-radius: 10px;

  color: #fff;
} */

.city-faq .accordion-button {
  font-size: 1.2rem;
}

.city-faq .accordion-item {
  border-color: transparent;
}

.city-faq .accordion-body {
  background-color: #1469e512;
}

.city-faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  rotate: -90deg;
}

.city-faq .accordion-button:not(.collapsed)::after {
  transform: rotate(89deg);
}

.citybutton-sec .citybtn-custom {
  text-align: center;
  padding: 15px;
}

.citybutton-sec .col-md-4:last-child .citybtn-custom {
  border-color: transparent;
}

.city-review ul {
  gap: 5px;
  padding-left: 0;
}

.about-sec.about-sec-1 .col-lg-10 .service-wrp h5 p {
  font-size: 20px;
  font-weight: 600;
  color: #0067b8;
}

.city-review ul li {
  gap: 5px;
  color: #ff9f31;
}

/* .city-review {
  padding: 50px 0;
} */

.city-review .review-box {
  background-color: #fff;
  box-shadow: 0 0 10px #00000021;
  padding: 14px;
}

.citybutton-sec {
  padding-bottom: 25px;
}

.city-faq .service-list li {
  margin-bottom: 10px;
}

.city-faq .service-list .dot {
  width: 5px;
}

.faq.cityindividual-page .sidebar {
  background: #1f8ceb;
  position: sticky;
  top: 80px;
}

.faq.cityindividual-page .click-icon {
  background: #fff;
}

.faq.cityindividual-page .click-icon i {
  color: #1f8ceb !important;
}

.faq.cityindividual-page .sidebar li a,
.faq.cityindividual-page .sidebar h3 {
  color: #fff;
}

.individual-page {
  position: relative;
}

.individual-page__overlay {
  /* width: 500px; */
  /* height: 503px; */
  /* height: 100%; */
  /* background-color: #b2d8f8ad; */
  position: absolute;
  top: -1px;
  right: 0;
}

.individual-page__inner {
  position: relative;
  z-index: 1;
}

.individual-page__inner::before {
  content: "";
  width: 400px;
  height: 400px;
  border: 2px solid #fff;
  position: absolute;
  top: -26px;
  right: -28px;
  border-radius: 40px;
  animation: zumpBottom 2s linear infinite;
  z-index: -1;
}

.individual-page.individual-page-2 .individual-page__inner img {
  border-radius: 40px;
  box-shadow: 0px 4px 4px 0px #00000029;
}

@keyframes zumpBottom {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.headerTop.sticky-header {
  position: fixed;
  top: 0;
  /* background: #1f8ceb; */
  background-color: rgb(46, 118, 234, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
  width: 100%;
  opacity: 1;
}

.cityindividual-page .sidebar {
  background: #fff;
  padding: 25px;
  border-radius: 25px;
}

.cityindividual-page .sidebar .service-list {
  padding-left: 0;
}

.sidebar h2 {
  color: #0067b8;
}

.sidebar .service-list li a,
.sidebar .service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: bold;
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.inner {
  position: relative;
  z-index: 1;
}

.cd-headline.slide span {
  display: inline-block;
  text-align: center;
}

.cd-headline.slide .cd-words-wrapper {
  /* overflow: hidden; */
  vertical-align: top;
}

.cd-headline.slide b {
  opacity: 0;
  top: 0.2em;
}

.cd-headline.slide b.is-visible {
  top: 0;
  opacity: 1;
  -webkit-animation: slide-in 0.6s;
  -moz-animation: slide-in 0.6s;
  animation: slide-in 0.6s;
}

.cd-headline.slide b.is-hidden {
  -webkit-animation: slide-out 0.6s;
  -moz-animation: slide-out 0.6s;
  animation: slide-out 0.6s;
}

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    -moz-transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
}

@-moz-keyframes slide-out {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }

  60% {
    opacity: 0;
    -moz-transform: translateY(120%);
  }

  100% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
}

@keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
    -moz-transform: translateY(120%);
    -ms-transform: translateY(120%);
    -o-transform: translateY(120%);
    transform: translateY(120%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.accordion-header {
  margin-top: 0;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #0c63e4;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.individual-page.cityindividual-page .sidebar h6.mt-3 {
  font-size: 16px;
}

.joint-pages {
  height: 75vh;
}

/* Santati --> 28/10 */
.individual-page.cityindividual-page .question {
  font-size: 27px;
}

.search-page-wrap h1 {
  color: #1f8ceb;
  font-size: 39px;
}

.search-page-wrap .inner-page-agent-box {
  background-color: #fff;
}

.search-page-wrap .inner-page-agent-box h2 a {
  color: #1f8ceb;
  font-weight: 600;
}

.search-page-wrap .inner-page-agent-box:hover {
  transform: translateY(0);
}

.search-page-wrap .content {
  padding: 11px 0 5px;
}

.search-page-wrap ul li {
  font-size: 12px;
}

.search-page-wrap ul li i {
  color: #0067b8;
}

header .stellarnav {
  display: flex;
  align-items: center;
  justify-content: end;
}

@media only screen and (max-width: 1156px) {
  ul.steps li {
    min-height: 163px;
  }
}

@media only screen and (max-width: 1200px) {
  .ban_sec h1 {
    font-size: 40px;
  }

  .ban_sec h4 {
    font-size: 20px;
  }

  .ban_sec .form-control {
    padding-left: 2.8rem;
    font-size: 14px;
    padding-right: 213px;
  }

  .ban_sec .btn {
    padding: 3px 11px;
    font-size: 13px;
  }

  .cityindividual-page h4 {
    font-size: 35px;
  }

  .city-box {
    margin-bottom: 18px !important;
  }

  .city-about .content-box .mt-5 {
    margin-top: 1rem !important;
  }

  .city-review {
    padding: 38px 0;
  }
}

@media only screen and (max-width: 1024px) {
  .cityinner-banner {
    height: 93vh;
  }
}

@media only screen and (max-width: 991px) {
  ul.steps li {
    min-height: 133px;
    width: 50%;
  }

  ul.steps.flat-colorimeter li:nth-child(2)::after {
    display: none;
  }

  ul.steps.flat-colorimeter li:nth-child(2)::after,
  ul.steps.flat-colorimeter li:nth-child(3)::before {
    display: none;
  }


  .expertise-icon {
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    font-size: 19px;
  }

  .city-about .content-box.mt-5 {
    margin-top: 0 !important;
  }

  .city-about .content-box h2 {
    font-size: 35px;
  }

  .cityindividual-page .sidebar {
    padding: 21px;
  }

  .city-about .button-group a.btn,
  .citybtn-custom a.btn {
    padding: 11px 21px;
    font-size: 12px;
  }

  .sidebar .service-list li a,
  .sidebar .service-list li {
    gap: 7px;
    margin-bottom: 7px;
    font-size: 12px;
  }

  .click-icon {
    flex: 0 0 16px;
    width: 16px;
    height: 17px;
    font-size: 9px;
  }

  .citybutton-sec {
    padding-top: 0rem;
  }

  .city-review .review-box {
    margin-bottom: 21px;
  }

  .city-about .content-box>ul li {
    padding: 11px;
    font-size: 13px;
  }

  .city-faq .accordion-button {
    font-size: 14px;
  }

  .city-about .button-group a {
    margin-left: 0.4rem;
  }

  .city-faq {
    padding-top: 0 !important;
  }

  .cityinner-banner.ban_sec h1 {
    font-size: 36px;
  }

  .search-page-wrap h1 {
    font-size: 30px;
  }

  .cityinner-banner {
    height: 93vh !important;
    padding: 0em 0 6rem 0 !important;
  }

  .headerTop .logo a {
    font-size: 22px;
  }

  .ban_sec {
    height: 69vh;
    padding: 9em 0 6rem 0;
  }

  .ban_sec h1 {
    font-size: 34px;
  }

  .ban_sec h4 {
    font-size: 16px;
    margin-top: 1rem;
  }

  .local-process-box {
    padding: 82px 0 1px;
    text-align: center;
  }

  .whybox .icon {
    width: 90px;
    height: 84px;
    top: -25px;
  }

  .whybox {
    height: 266px;
    margin-bottom: 43px;
  }

  .individual-page .text {
    font-size: 26px;
    margin-bottom: 17px !important;
  }

  .individual-text ul li {
    font-size: 15px;
  }

  .individual-page__overlay {
    width: 345px;
    height: 370px;
  }

  .individual-page__inner::before {
    width: 252px;
    height: 281px;
    top: -34px;
  }

  .about-sec {
    padding: 60px 0;
  }

  .inner-page-agent-box {
    padding: 23px 17px 0;
    margin-top: 16px;
  }

  .individual-page {
    padding: 42px 0;
  }

  .bottomform_section .heading,
  .indi_Box {
    padding: 27px;
  }

  .inner-page-agent-box h4 {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .faq {
    padding: 32px 0;
  }

  .bottomform_section {
    padding: 36px 0;
  }

  .countylists .county_list ul li a {
    margin-bottom: 2px;
  }

  .countylists .county_list ul li {
    width: 24%;
  }

  .countylists .county_list ul {
    gap: 7px;
  }

  .countylists {
    padding: 42px 0;
  }

  .bottomform_section h2 {
    font-size: 32px;
  }

  .bottomform_section p {
    margin: 13px 0;
  }

  .bottomform_section p br {
    display: none;
  }

  .theme-btn {
    padding: 10px 25px !important;
  }

  .service-wrp h2 {
    font-size: 33px;
  }

  .service.inner-page-agent br {
    display: none;
  }

  header .right ul li a {
    font-size: 16px;
  }

  .stellarnav>ul>li>a {
    padding: 20px 11px !important;
  }
}

@media only screen and (max-width: 768px) {
  .cityinner-banner {
    height: 46vh !important;
    padding: 0em 0 6rem 0 !important;
  }
}

@media only screen and (max-width: 767px) {
  .cityinner-banner h1 {
    font-size: 21px !important;
  }

  .cityinner-banner {
    height: auto !important;
    padding: 0em 0 3rem 0 !important;
    background-size: 100%;
  }

  .cityindividual-page h4 {
    font-size: 23px;
  }

  .city-box ul {
    display: flex;
    gap: 5px;
  }

  .city-box .btn {
    font-size: 15px;
    padding: 11px 16px;
    border-radius: 50%;
  }

  .individual-page.cityindividual-page .question {
    font-size: 22px;
  }

  .cityindividual-page .sidebar {
    padding: 16px 12px;
  }

  .city-about .content-box h2 {
    font-size: 28px;
  }

  .city-about .content-box>ul {
    grid-template-columns: auto;
  }

  .city-box {
    flex-direction: column;
    gap: 10px;
  }

  .cityinner-banner .banner-text {
    padding-top: 100px;
  }

  .cityinner-banner.ban_sec h1 {
    font-size: 24px;
  }

  .search-page-wrap h1 {
    font-size: 22px;
    margin-bottom: -4px !important;
  }

  .search-page-wrap .inner-page-agent-box {
    padding: 12px 17px 12px;
    margin-top: 0;
  }

  .search-page-wrap {
    padding: 20px 0 20px !important;
  }

  .headerTop .logo a {
    font-size: 18px;
  }

  header .nevmenu {
    display: none;
  }

  .stellarnav .menu-toggle span.bars span {
    width: 24px !important;
    height: 3px !important;
    margin: 0 0 4px !important;
    background: #fff !important;
  }

  .stellarnav.mobile ul {
    background: rgb(255 255 255) !important;
    margin-right: 0 !important;
  }

  .stellarnav .icon-close {
    width: 33px !important;
    height: 24px !important;
  }

  .stellarnav .icon-close:after,
  .stellarnav .icon-close:before {
    width: 19px !important;
    border-bottom: solid 3px #000000 !important;
  }

  .ban_sec h1 {
    font-size: 23px;
  }

  .stellarnav.mobile>ul>li>a {
    color: #000 !important;
    font-size: 18px;
    padding-bottom: 5px !important;
  }

  .ban_sec {
    height: 71vh;
    padding: 14em 0 8rem 0;
  }

  .ban_sec .btn {
    padding: 3px 9px;
    font-size: 11px;
  }

  .local-process-box {
    padding: 29px 0 1px;
  }

  .whybox {
    padding: 15px 15px 1px;
    height: 100%;
  }

  .whybox .icon {
    margin-bottom: 17px;
    position: static;
  }

  .individual-page__overlay {
    width: 345px;
    height: 370px;
    bottom: 0;
    top: unset;
  }

  .individual-page__inner::before {
    width: 252px;
    height: 281px;
    top: -17px;
    right: 0;
  }

  .about-sec {
    padding: 23px 0;
  }

  .individual-page .text {
    font-size: 23px;
  }

  .individual-text ul li {
    font-size: 14px;
    text-align: start;
  }

  .click-icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    font-size: 9px;
  }

  .service-wrp h2 {
    font-size: 24px;
    margin-bottom: 17px;
  }

  .faq {
    padding: 32px 0 0;
  }

  .countylists {
    padding: 20px 0 0;
  }

  /* .countylists .county_list ul li {
    width: 49%;
  } */

  .bottomform_section h2 {
    font-size: 23px;
  }

  .bottomform_section .heading,
  .indi_Box {
    padding: 22px 18px;
  }

  .footer-bottom .footer-para {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .ban_sec button {
    position: static;
    height: 49px;
    margin-top: 11px;
  }

  .banner-form .search {
    top: 27%;
  }

  .ban_sec .form-control {
    padding-left: 2.8rem;
    font-size: 14px;
    padding-right: 17px;
  }

  .ban_sec .btn {
    padding: 3px 30px;
    font-size: 14px;
  }

  .banner-form {
    margin-top: 2px;
  }

  .ban_sec h4 {
    font-size: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .footer {
    padding: 20px 0 0;
  }

  .ban_sec {
    height: auto;
    padding: 8em 0 2rem 0;
  }
}

@media only screen and (max-width: 375px) {
  .ban_sec h1 {
    font-size: 21px;
  }

  .ban_sec h4 {
    font-size: 14px;
  }

  .ban_sec .form-control {
    height: 54px;
  }

  .banner-form .search {
    top: 25%;
  }

  .individual-page__inner {
    margin-top: 14px;
  }

  .individual-page .text {
    font-size: 21px;
  }

  .service-wrp h2 {
    font-size: 22px;
  }

  .countylists .county_list ul li {
    width: 100%;
  }

  .ban_sec .form-control {
    font-size: 11px;
  }

  .stellarnav .menu-toggle span.bars span {
    width: 20px !important;
    height: 2px !important;
  }
}

@media only screen and (max-width: 320px) {
  .ban_sec h1 {
    font-size: 19px;
  }

  .ban_sec h4 {
    font-size: 13px;
  }

  .individual-page .text {
    font-size: 19px;
  }

  .service-wrp h2 {
    font-size: 19px;
  }

  .bottomform_section .heading,
  .indi_Box {
    padding: 22px 14px;
  }

  .bottomform_section h2 {
    font-size: 18px;
  }

  .bottomform_section p {
    margin: 4px 0;
    font-size: 12px;
  }

  .theme-btn {
    padding: 6px 25px !important;
    font-size: 12px;
  }

  .ban_sec {
    padding: 7em 0 2rem 0;
  }
}

.single-city-box svg {
  width: 14px;
  height: 14px;
}

.single-city-box li {
  padding: 15px;
  margin-bottom: 10px;
  background: #145d9214;
  border-radius: 7px;
}

.single-city-box li:hover {
  background-color: #1f8ceb;
}

.single-city-box li a {
  color: #000;
}

.single-city-box li:hover a {
  color: #fff;
}

.single-city-box li span {
  display: flex;
  gap: 11px;
}

.single-city-box li span a {
  margin-left: 7px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.single-city-box h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

/* 7-11-2025 */
.cityInner h2 {
  font-size: 20px;
  font-weight: 600;
}

.no-bg {
  background: none !important;
}

.alphas {
  display: flex;
  flex-wrap: wrap;
}

.alphas li a {
  border: #ddd 1px solid;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 8px 15px;
  color: #333;
  display: block;
  text-align: center;
  margin: 0 10px 10px 0;
  text-transform: capitalize;
  font-weight: 600;
}

.alphas li a:hover {
  background: #1f8ceb;
  color: #fff;
  border-color: #1f8ceb;
}

/* .box_one {
  background: #f8f8f8;
  border: #ddd 1px solid;
  padding: 25px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
} */

.box_City li a {
  display: block;
  color: #1f8ceb;
  padding: 6px 0;
}

.box_City li a:hover {
  color: #333;
}

.cityInner2 h4 {
  background: #1f8ceb;
  color: #fff;
  padding: 15px;
}

.box_two {
  padding: 15px;
  border: #eee 1px solid;
}

.mr-2 {
  margin-right: 0.5rem;
}

.box_two .theme-btn {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 13px;
  font-weight: 400 !important;
  padding: 10px 15px !important;
  border: 0;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  text-transform: capitalize;
  display: inline-block;
}

/* .box_two .theme-btn:hover {
  background-color: #b99c69;
} */

.searchResults li a {
  font-size: 20px;
  padding: 35px 0;
  border-top: #ddd 1px solid;
  display: block;
  color: #666;
}

.searchResults li a i {
  margin-right: 10px;
}

.searchResults li a:hover {
  color: #1f8ceb;
  text-decoration: underline;
}

.stateList {
  display: flex;
  flex-wrap: wrap;
}

.stateList li {
  padding: 5px 0;
  color: #1f8ceb;
  text-decoration: underline;
  width: 33.333%;
  flex: 0 0 33.333%;
}

.cityBox {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.cityBox .features li {
  margin-right: 10px;
  font-size: 18px;
  color: #999;
}

.smallLogo {
  width: 50px;
  float: right;
}

/* 13.11.2025 */
.cust_box {
  margin-bottom: 25px;
  padding: 0.75rem;
  border: 1px solid #d5d9e1;
}

.cust_box .cols_pad_small {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.cust_box .cols_pad_small .pad_tb_25 {
  /* padding-left: 0.75rem; */
  padding-right: 0.75rem;
  /* padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  flex: unset; */
}

.cust_box .cols_pad_small .pad_tb_25 .btn {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.95em 1.4em;
  border: none;
  border-radius: 3px;
  background-color: #488ccb;
  color: #eef0f3;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.31);
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
  font-size: 13px;
}

.cust_box .cols_pad_small .pad_tb_25 .btn svg {
  width: 16px;
  margin-right: 10px;
}

.cust_box .cols_pad_small .color_gray {
  color: #697995;
  font-weight: 400;
  font-size: 16px !important;
  line-height: 1.3;
  margin-bottom: 0;
}

.dashboard #v-pills-dashboard h3 {
  margin-bottom: 1.2rem;
}

.dashboard #v-pills-dashboard h5 {
  font-size: 20px;
  color: #0067b8;
  font-weight: 600;
  margin: 20px 0;
}

.dashboard #v-pills-dashboard .city-box ul {
  display: flex;
  gap: 26px;
}

.dashboard #v-pills-dashboard .city-box ul li {
  background: #0d6efd26;
  padding: 8px;
}

/* server details page css */
.server-details-page {
  padding: 100px 0;
}

.server-details-page .profile-wrapper {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  font-family: unset;
}

.server-details-page .left-content,
.profile-wrapper.topPanel .left-content {
  width: 66%;
}

.profile-wrapper.topPanel {
  margin-bottom: 3rem;
}

.server-details-page .title {
  font-size: 32px;
  margin-bottom: 20px;
}

.server-details-page .cols_center .btn {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.95em 1.4em;
  border: none;
  border-radius: 3px;
  background-color: #488ccb;
  color: #eef0f3;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.31);
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
}

.server-details-page .btn.outline {
  background: transparent;
  color: #0366d6;
  border: 1px solid #0366d6;
}

.offerServe .offer-box {
  background: #e4f9f2;
  border: 1px solid #b4eddb;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 3px;
  /* margin-bottom: 2rem; */
  font-size: 0.86em;
  text-align: center;
}

.offerServe .offer-box .special,
.offerServe .offer-box p {
  margin-bottom: 0;
}

.offerServe .offer-box p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #0c4a6e;
}

.offerServe .offer-box .special {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.server-details-page .description p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.server-details-page .list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.server-details-page h2 {
  margin-top: 30px;
}

.server-details-page hr {
  clear: both;
  border: none;
  border-bottom: 1px solid #9fa5b2;
  height: 0;
  margin: 24px 0;
  padding: 0;
}

.color_gray_400 {
  color: #a3adbe;
}

.server-details-page .right-sidebar {
  /* width: 33.33%; */
  position: sticky;
  top: 100px;
  height: fit-content;
  color: #344256;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.server-details-page .box {
  box-sizing: border-box;
  border-radius: 3px;
  margin-bottom: 32px;
  padding: 1.5rem;
  border: 1px solid #d5d9e1;
}

.server-details-page .box h3 {
  margin-bottom: 15px;
}

.server-details-page .box p {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 23px;
}

.table_index,
.table_padded,
.table_layout {
  display: table;
  width: 100%;
}

.table_row,
.table_row_header {
  display: table-row;
}

.table_padded .table_cell {
  padding: 0.3em 1.7em 0.3em 0;
}

.color_gray,
.text_light {
  color: #697995;
}

.table_cell {
  display: table-cell;
}

.cell_collapse {
  width: 1px;
  white-space: nowrap;
}

.pricingCard ul li {
  padding: 20px 10px !important;
  position: relative;
}

@media screen and (min-width: 767px) {
  .server-details-page .box {
    padding: 1.5rem;
  }

  .server-details-page h4 {
    font-size: 1.42803em;
    margin-bottom: 1.38rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: 600;
  }

  .server-details-page .profile-wrapper {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .profile_actions {
    margin-bottom: 3rem;
  }

  .margin_r_25 {
    margin-right: 0.375rem;
  }

  .spec_profile_social ul {
    max-width: none;
    column-count: 2;
    column-gap: 3rem;
  }

  .profile_services h2 {
    font-size: 2.03926em;
    margin-bottom: 1.38rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: 600;
  }

  .profile_services ul {
    max-width: none;
    /* column-count: 3; */
    column-gap: 3rem;
    margin-bottom: 1.5rem;
  }

  div[class^="cols"] {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  div[class^="cols"]>div {
    box-sizing: border-box;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .pad_tb_25 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .text_large,
  .font_large {
    font-size: 1.42803em;
  }

  .cols_center {
    align-items: center;
  }

  div[class^="cols"]>div {
    box-sizing: border-box;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .profile-wrapper.topPanel .cols_center .col {
    flex: unset;
  }
}

.spec_profile_social li,
.profile_services ul li {
  margin-bottom: 0.6em;
}

.profile_services ul {
  margin: 0 0 1.5rem 1em;
  list-style: disc;
}

@media (max-width: 900px) {
  .server-details-page .profile-wrapper {
    flex-direction: column;
  }

  .server-details-page .left-content,
  .server-details-page .right-sidebar {
    width: 100%;
  }

  .server-details-page .list-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .server-details-page .list-grid {
    grid-template-columns: 1fr;
  }
}

.btn_gray,
input.btn_gray[type="submit"] {
  background-color: #d5d9e1;
  color: #525e73;
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.08);
}

.profile_actions .btn,
input[type="submit"],
button {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.95em 1.4em;
  border: none;
  border-radius: 3px;
  background-color: #d5d9e1;
  color: #525e73;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
}

.svg-inline--fa {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}

.icon_left {
  margin-right: 0.75em;
}

.svg-inline--fa.fa-w-18 {
  width: 1.125em;
}

svg:not(:root).svg-inline--fa {
  overflow: visible;
}

.topSideImg {
  text-align: center;
}

.innerListing li {
  display: block;
  gap: 0;
  box-shadow: unset !important;
  transition: all 0.4s ease-in-out;
  height: unset !important;
  padding: 9.5px 10px !important;
  display: flex;
  gap: 8px !important;
  font-size: 12px !important;
  color: #000;
  line-height: 1.625;
  background-color: #f0f5f5;
  border: 1px solid transparent;
  border-radius: 24px;
  transition: all 500ms ease;
  flex-direction: row !important;
  padding-top: 9.5px !important;
}

.innerListing li+li {
  margin-top: 20px;
}

.innerListing span {
  position: relative;
  top: 2px;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 16px;
  color: #0365d3;
  transition: all 500ms ease;
}

.city-about.join-about .content-box>ul>li h5 small {
  font-size: 14px;
}

.pricingCard p.color-gray {
  font-size: 12px;
  color: gray;
}

.list-title {
  width: 100%;
  margin: 0;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  text-transform: capitalize;
  line-height: 1.318;
  background-color: #0070db;
  z-index: 1;
}

.list-title h4 {
  color: #fff !important;
  margin-bottom: 0 !important;
}

.pricingCard ul li.p33 {
  padding-top: 5.5rem !important;
}

.pricingCard .expertise-icon {
  margin-bottom: 1rem;
  display: none;
}

.pricingCard ul li.p33 h5 {
  font-size: 1.5rem;
}

.joinNew {
  text-align: left;
}

.joinNew h1 {
  font-size: 3rem;
  line-height: 1;
}

.joinNew p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  opacity: 0.9;
  color: #fff;
}

.opacity-80 {
  opacity: 0.8;
}

.joinNew p.smalltext {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.waitlist {
  padding: 4rem 0;
  background: rgb(248 250 252);
}

.waitlist .row {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  background-color: hsl(0 0% 100%);
  border-radius: 1rem;
}

.waitlist .joinImage img {
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.waitlist h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: rgb(52, 66, 86);
}

.waitlist p {
  font-size: 1.125rem;
  line-height: 1.625;
  color: #65758b;
  margin-bottom: 1.5rem;
}

.btn-primary {
  width: auto;
  color: hsl(0 0% 100%);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-inline: 2rem;
  border-radius: 6px;
  white-space: nowrap;
  gap: 0.5rem;
  height: 2.75rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn-primary:hover {
  background-color: hsl(210deg 100% 50% / 90%);
}

#pricingSec {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: rgb(248 250 252);
}

.preciseLegal h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.preciseLegal p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #65758b;
}

.mainList {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
}

.pricingPlan {
  list-style: none;
  height: 100%;
}

.pricingCards {
  position: relative;
  background: #ffffff;
  color: #111;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pricingCards:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricingCards-header {
  padding: 24px;
  padding-bottom: 32px;
}

.pricingCards-header h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing {
  margin-top: 16px;
}

.price-big {
  font-size: 36px;
  font-weight: bold;
  color: #000;
}

.price-msg {
  font-size: 14px;
  color: #6b7280;
}

.price-month {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin-top: 12px;
}

.pricingCards-body {
  padding: 24px;
}

#pricingSec .description {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
}

#pricingSec .features {
  margin: 0;
  padding: 0;
}

#pricingSec .features li {
  display: flex;
  gap: 8px;
  align-items: start;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

#pricingSec .icon {
  background: rgba(36, 99, 235, 0.1);
  color: #2563eb;
  font-size: 14px;
  padding: 4px 6px;
  border-radius: 50%;
}

#pricingSec .icon svg {
  width: 1rem;
  height: 1rem;
}

#pricingSec .pricingCards-footer {
  padding: 24px;
  padding-top: 24px;
}

#pricingSec .btn {
  width: 100%;
  height: 44px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #d1d5db;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

#pricingSec .btn:hover {
  background: #f3f4f6;
  color: #111;
}

.pricingCards.popular {
  border: 2px solid #2563eb;
  /* primary color */
  transform: scale(1.05);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
}

.pricingCards .badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2563eb;
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  box-shadow: 0 6px 10px -2px rgba(0, 0, 0, 0.1);
}

.pricingCards.popular .btn {
  background-color: hsl(210 100% 50%) !important;
  color: #fff !important;
}

.partnership {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: hsl(0 0% 100%);
}

.partnership ul {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 2rem;
  align-items: flex-start;
}

.partnership ul li {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 1rem;

  padding: 20px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  height: 100%;
  border: 1px solid hsl(214 32% 91%);
  background-color: hsl(0 0% 100%);
  color: hsl(215 25% 27%);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.partnership ul li h4 {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #0067b8;
  min-height: 65px;
}

.preciseLegal {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: hsl(0 0% 100%);
}

.preciseLegalImg img {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
}

.preciseLegal .row {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  background-color: hsl(0 0% 100%);
  padding: 3rem;
}

.preciseLegal h4 {
  color: hsl(210 100% 50%);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}

.process-serverBanner {
  padding: 2rem 0;
  position: relative;
  background-repeat: no-repeat;
  z-index: 1;
  color: #fff;
}

.process-serverBanner h1,
.process-serverBanner p {
  color: #fff;
}

.process-serverBanner::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1f8ceb;
  z-index: -1;
}

.single-process_server header {
  position: relative;
  background: #1f8ceb;
}

.legalBtn {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.95em 1.4em;
  border: none;
  border-radius: 8px;
  background-color: #fff;
  color: #0070db;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.31);
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
  font-family: unset;
}

.process-serverBanner .cols_center .col {
  flex: unset;
}

/* Page background */
.server-details-page {
  /* background: #f5f7fb; */
  padding: 2rem 0;
}

/* Main two-column wrapper */
.profile-wrapper {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* LEFT SIDE */
.left-content {
  /* background: #ffffff;
  border-radius: 8px;
  padding: 24px 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
  flex: 0 0 66%;
}

.right-sidebar .contact-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #d5d9e1;
}

.left-content .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1d3557;
}

.left-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 0;
  /* color: #0070db; */
}

.left-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.left-content hr {
  border: 0;
  border-top: 1px solid #e3e7ee;
  margin: 24px 0;
}

/* Lists styling */
.profile_services ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.profile_services ul li::before {
  content: "✓";
  margin-right: 6px;
  color: #0d6efd;
  font-weight: 600;
}

.profile_services ul li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
}

/* 3-column list (Affiliations) */
.profile_services ul.cols_three_flow {
  column-count: 2;
  column-gap: 32px;
}

@media (min-width: 992px) {
  .profile_services ul.cols_three_flow {
    column-count: 3;
  }
}

/* Coverage area – more columns on large screens */
.profile_services h2 {
  column-count: 2;
  column-gap: 32px;
}

@media (min-width: 992px) {

  .profile_services h2,
  .offerService ul {
    column-count: 2;
  }
}

/* RIGHT SIDE */
.right-sidebar {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Generic card box on right */
.right-sidebar .box {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-size: 13px;
  color: #444;
}

/* Top image/logo */
.topSideImg {
  text-align: center;
}

.topSideImg img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Headings in right column */
.right-sidebar h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: hsl(215 25% 27%);
}

/* Table-style info in right column */
.table_padded {
  width: 100%;
}

.right-sidebar a {
  color: hsl(217 82% 55%);
}

.right-sidebar .socialMedia i {
  font-size: 20px;
}

.socialMedia a {
  color: hsl(215 25% 27%);
}

.socialMedia a:hover i {
  color: #0067b8;
}

.table_row {
  display: flex;
  padding: 4px 0;
}

.table_cell {
  font-size: 13px;
  line-height: 1.5;
}

.table_cell.cell_collapse {
  /* flex: 0 0 80px; */
  font-weight: 500;
  color: #7b8495;
}

.table_cell.cell_collapse .svg-inline--fa {
  margin-right: 10px;
}

.table_cell:not(.cell_collapse) {
  flex: 1;
}

.table_cell a {
  color: #0d6efd;
  text-decoration: none;
}

.table_cell a:hover {
  text-decoration: underline;
}

/* Social links */
.spec_profile_social ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.spec_profile_social li {
  margin-bottom: 6px;
}

.spec_profile_social a {
  font-size: 13px;
  color: #0d6efd;
  text-decoration: none;
}

.spec_profile_social a:hover {
  text-decoration: underline;
}

/* Buttons on right bottom */
.right-sidebar .box .btn,
.right-sidebar .btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  border-radius: 4px;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  text-decoration: none;
  border: 1px solid #d5d9e1;
}

/* primary blue button */
.btn_primary {
  background-color: #0d6efd;
  color: #ffffff !important;
}

.btn_primary i {
  color: #fff !important;
}

/* gray buttons */
.btn_gray {
  background-color: #fff;
  color: #1d3557;
  border-color: #d0d7e6;
}

.btn_primary:hover {
  background-color: #0b5ed7;
  color: #ffffff;
}

.btn_gray:hover {
  background-color: #0d6efd;
  color: #fff;
}

.locationOffice i {
  color: #0d6efd;
}

/* Utilities */
.w-100 {
  width: 100%;
}

/* Responsive stacking */
@media (max-width: 991.98px) {
  .profile-wrapper {
    flex-direction: column;
  }

  .left-content,
  .right-sidebar {
    flex: 0 0 100%;
  }

  .left-content {
    margin-bottom: 16px;
  }
}

.nationwideAffilition ul,
.offerService ul {
  list-style: disc;
  padding-left: 1rem;
}

.guranteeLogo {
  width: 64px;
  height: 64px;
  display: block;
}

.guranteeLogo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.guaranteeText {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guaranteeText p {
  width: 72%;
  font-size: 14px;
  line-height: 23px;
  color: #344256;
  margin-bottom: 0;
}

.veryfied {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.likeComment {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.veryfied .icon {
  font-size: 16px;
}

.veryfied .icon,
.veryfied {
  color: rgb(22 101 52);
}

.veryfied .text {
  padding: 0.125rem 0.625rem;
  background-color: rgb(220 252 231);
  border-radius: 30px;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  border: 1px solid rgb(134 239 172);
}

.likeComment {
  color: #0070db;
}

.socialMedia ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.server-details-page .left-content p,
.server-details-page .left-content li {
  font-size: 16px;
  line-height: 26px;
  color: #344256;
}

.server-details-page .left-content li {
  margin-bottom: 8px;
  padding: 12px;
}

.locationOffice ul li a {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  /* padding: 0.5rem; */
  font-size: 0.875rem;
  line-height: 1.25rem;
  /* margin-top: 8px; */
}

.locationOffice ul li a.items-start {
  align-items: flex-start;
  margin-top: 0;
}

.companyArea svg {
  color: #0070db;
}

.companyList {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 8px;
}

.subscriptionPriceBox {
  padding: 15px;
}

.subscribeCard {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  border: 2px solid #ddd;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.5s ease-in-out;
}

.title-wrap {
  text-align: center;
  margin-bottom: 25px;
}

.title-wrap h2 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
}

.title-wrap p {
  color: #65758b;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  margin-top: 8px;
}

.plan-box {
  background: #f7f7f7;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 24px;
}

.plan-box.addon {
  background: linear-gradient(135deg, #007bff, #4bb5ff);
  color: #fff;
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 15px;
}

.plan-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #fff;
}

.plan-box .plan-header h3 {
  color: #1d2530;
}

.plan-header p {
  margin: 3px 0 0;
  font-size: 14px;
  line-height: 20px;
  color: hsl(215 15% 50%);
  font-weight: 400;
  margin-top: 4px;
  margin-bottom: 0;
}

.price {
  text-align: right;
}

.price .value {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  color: #127ae2;
}

.plan-box.addon .value,
.plan-box.addon,
.plan-box.addon p {
  color: #fff;
}

.plan-box.addon p {
  font-size: 16px;
  line-height: 24px;
}

.plan-box.addon .plan-header h3 {
  color: #fff;
}

.price .duration {
  font-size: 14px;
  color: inherit;
  /* opacity: 0.8; */
}

.iconCheck i {
  color: hsl(147 65% 45%);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet {
  list-style: disc;
  padding-left: 1rem;
  display: grid;
  grid-template-columns: auto auto auto;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
}

.bullet li {
  font-size: 16px;
  line-height: 24px;
}

.feature-list li:before {
  content: "✔";
  font-weight: bold;
  color: #007bff;
  position: absolute;
  left: 0;
  top: 2px;
}

.feature-lists {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1rem;
}

.feature-lists li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0;
  background-color: #fff;
  padding: 0.7rem;
  border-radius: 12px;
}

.feature-lists li:last-child {
  margin-bottom: 0;
}

.feature-lists li p {
  font-size: 14px;
  line-height: 20px;
  color: #6c7c93;
  margin-bottom: 0;
}

.feature-lists li p.medium {
  font-size: 16px;
  line-height: 24px;
  color: #1d2530;
}

.plan-box.addon .bullet li:before {
  color: #fff;
}

.feature-list span {
  font-size: 13px;
  color: #555;
}

.plan-box.addon .note {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#subscriptionPricing {
  font-family: system-ui;
}

/* .appearFeature {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: #ffffff;
} */

.feature-card {
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid hsl(147deg 65% 45% / 20%);
  box-shadow: 0px 6px 22px rgba(0, 0, 0, 0.06);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-align: center;
  margin-bottom: 24px;
}

.feature-header h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #1d2530;
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-item {
  display: flex;
  gap: 12px;
  padding: 1rem;
  background: hsl(210deg 30% 96% / 30%);
  border-radius: 12px;
}

.feature-item svg {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: hsl(147 65% 45%);
}

.title {
  font-weight: 600;
  font-size: 16px;
  color: #1d2530;
  margin: 0;
  line-height: 24px;
}

.desc {
  font-size: 14px;
  line-height: 20px;
  color: #6c7c93;
  font-weight: 400;
  margin-bottom: 0;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding-top: 16px;
}

.primary-btn {
  background: hsl(147 65% 45%);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}

.primary-btn:hover {
  background: hsl(147deg 65% 45% / 80%);
  color: #fff;
}

.readyToExpand {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.appearFeature {
  margin-top: 32px;
}

.expand-card {
  width: 100%;
  max-width: 900px;
  padding: 48px;
  text-align: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgb(40, 189, 107), rgb(66, 215, 133));
  color: #fff;
  box-shadow: 0px 6px 22px rgba(0, 0, 0, 0.08);
}

.expand-card h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 0;
  color: #fff;
}

.expand-card p {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.93;
  line-height: 24px;
  margin: 16px 0 0;
  color: #ffffffe6;
}

.cta-btn {
  display: inline-block;
  padding: 10px 32px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  border-radius: 10px;
  background: hsl(210 40% 98%);
  color: hsl(215 25% 15%);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.12);
  margin-top: 16px;
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* subscription */
#coverage_area_form,
#trial_summary_container {
  padding-top: 150px;
  padding-bottom: 100px;
}

.page-template-template-subscription header {
  position: fixed;
  top: 0;
  background: #1f8ceb;
  z-index: 999;
  width: 100%;
  opacity: 1;
}

#coverage_area_form h1 {
  color: #052861;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: 0.5rem;
}

#coverage_area_form p {
  color: #6b7280;
  font-size: 16px;
  line-height: 24px;
}

#coverage_area_form .topTitle {
  margin-bottom: 2rem;
}

.coverageBox,
.coverageSummary {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  color: #1d2025;
  background-color: white;
  border-radius: 12px;
  border: 1px solid #d7dfea;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.coverageBox h3,
.coverageSummary h2 {
  letter-spacing: -0.025em;
  line-height: 1;
  font-weight: 600;
  font-size: 1.5rem;
  gap: 0.5rem;
  display: flex;
  align-items: center;
}

.coverageBox h3 i,
.coverageSummary h2 i {
  color: #11b6c5;
}

.coverageBox p {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
  margin-top: 6px;
  margin-bottom: 0;
}

.converageContainer {
  padding-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.inputPanel {
  flex: 1 1 0%;
}

.inputPanel input {
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d7dfea;
  border-radius: 10px;
}

#search_btn {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  color: #fafafa;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 1rem;
  background-color: #052861;
  height: 2.5rem;
  border-radius: 10px;
}

.coverageSummary {
  border-color: #11b6c533;
}

#summary_counts h5 {
  display: flex;
  justify-content: space-between;
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

#summary_counts h5 span {
  color: #000;
}

#save_btn {
  width: 100%;
}

.coverageSummary .btn.btn-success {
  color: #fafafa;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: #052861;
  border-radius: 10px;
  white-space: nowrap;
  height: 2.75rem;
}

.coverageSummary .btn.btn-success.disable {
  opacity: 0.5;
}

.coverageBox .card-title {
  letter-spacing: -0.025em;
  line-height: 1;
  font-weight: 600;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.coverageBox .card-title img.emoji {
  width: 20px !important;
}

.coverageBox .nearest-zip-list {
  gap: 0.75rem;
  display: grid;
}

.coverageBox .nearest-zip-list li.nearest-zip-item {
  padding: 1rem;
  border: 2px solid #d7dfea;
  border-radius: 12px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}

.coverageBox .nearest-zip-list li.nearest-zip-item:hover {
  border-color: #11b6c580;
}

.coverageBox .nearest-zip-list li.nearest-zip-item.active {
  background-color: #11b6c51a;
  border-color: #11b6c5;
  color: #000;
}

.coverageBox .nearest-zip-list li.nearest-zip-item strong {
  display: block;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 4px;
}

.coverageBox .nearest-zip-list li.nearest-zip-item span {
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.125rem 0.625rem;
  border: 1px solid rgb(215, 223, 234);
  border-radius: 30px;
  margin-right: 5px;
}

.coverageBox .nearest-zip-list li.nearest-zip-item span.selected-label.badge {
  position: absolute;
  left: auto;
  right: 10px;
  top: 10px;
  background-color: #052861 !important;
  margin: 0;
}

.coverageBox .nearest-zip-list li.nearest-zip-item span.price-label {
  position: absolute;
  right: 2%;
  top: 50%;
  background-color: #052861 !important;
  color: #fff !important;
  margin: 0;
}

.coverageSummary #summary_counts #price_total_count,
.coverageSummary #summary_counts #price_total_count #total_price {
  position: relative;
}

.coverageSummary #summary_counts #price_total_count .total_price_manage {
  position: absolute;
  right: 15px;
}

#search_result .card {
  border-radius: 12px;
  box-shadow: none;
  background-color: #11b6c51a;
}

.subScriptionPay {
  padding: 1.5rem;
  color: #1d2025;
  background-color: white;
  border-radius: 12px;
  border: 1px solid #d7dfea;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.subScriptionPay .check-icon {
  height: 5rem;
  width: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #11b6c533;
  margin: auto;
  margin-bottom: 16px;
}

.subScriptionPay .check-icon svg {
  color: #11b6c5;
  width: 2.5rem;
  height: 2.5rem;
}

.subScriptionPay>.text-center h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  letter-spacing: -.025em;
  font-weight: 600;
  margin-bottom: .5rem;
}

.subScriptionPay>.text-center p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #6b7280;
}

.coverageBox #search_result .card-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.coverageBox #search_result .card-body ul li {
  background: #c9dbf4;
  padding: 2px 8px;
  font-size: 12px;
  /* font-weight: bold; */
  border-radius: 10px;
  color: black;
}

.coverageBox #search_result .card .card-header.bg-primary.text-white {
  display: none;
}

.coverageBox #search_result .card-body h5 {
  font-size: 17px;
}

#continue_payment_btn {
  background-color: #052861;
  border-color: #052861;
}

#trial_summary_container .subScriptionPay .card.card_footer_area {
  background-color: #e1e7ef;
  padding: 1.5rem;
  text-align: center;
  border: none;
  border-radius: 12px;
}

#trial_summary_container .subScriptionPay .card.card_footer_area h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: #052861;
  margin-bottom: 0;
}

#trial_summary_container .subScriptionPay.card_footer_area .card p {
  color: #6b7280;
  font-size: .875rem;
  line-height: 1.25rem;
  margin-bottom: 0;
  margin-top: 8px;
}

.payment_process_icon i {
  font-size: 20px;
  color: #11b6c5;
  margin-top: .25rem;
}

.payment_serve_location_area {
  background-color: #11b6c51a;
  border: none;
  padding: 1.5rem;
  border-radius: 12px;
  border-radius: 12px;
}

.process_additional_zip {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 15px;
  margin-top: 5px;
}

.process_additional_zip li {
  font-size: 12px;
  padding: 0px 5px;
  border: 1px solid;
  border-radius: 24px;
  line-height: 1.5;
}

.payment_serve_location_area_list li {
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .2rem;
  background: unset;
}

#payment_container {
  padding: 100px 0 0;
}

#payment_container .payment-card {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  color: #1d2025;
  border: 1px solid #d7dfea;
  width: 100%;
  max-width: 48rem;
  border-radius: 12px;
  background-color: #fff;
  padding: 1.5rem;
  text-align: center;
}

.no_charge_notice_box {
  background-color: #11b6c51a;
  border-radius: 12px;
  text-align: center;
  padding: 1rem;
}

.no_charge_icon i {
  font-size: 20px;
  color: #11b6c5;
}

.no_charge_icon {
  margin: auto;
  margin-bottom: .5rem;
}

.no_charge_text {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  display: block;
}

.no_carge_content span {
  margin-bottom: 0;
  margin-top: 8px;
  color: #6b7280;
  font-size: .875rem;
  line-height: 1.25rem;
}

.payment_process_card_icon {
  background-color: #11b6c533;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.payment_process_card_icon i {
  color: #11b6c5;
  font-size: 28px;
}

p.payment_reuired_text {
  font-size: .875rem;
  line-height: 1.25rem;
  color: #6b7280;
  margin-bottom: 0;
  margin-top: 6px;
}

.payment_method_content .payment_method_title {
  margin-bottom: 0;
  margin-top: 6px;
  letter-spacing: -.025em;
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.payment_method_content {
  padding-bottom: 1.5rem;
}



/* dashboard */
#v-pills-tab {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #d5d9e1;
  border-radius: 5px;
}

#v-pills-tab .nav-link {
  padding: .8rem 1rem;
  color: #052861;
  font-size: 14px;
}

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

.edit-account-wrapper {
  max-width: 100%;
  margin: 0;
  padding: 40px;
  background: #fff;
}

.form-actions .btn-logout {
  padding: 12px 30px;
  background: #052861;
  color: white;
  border: none;
  border-radius: 4px;
}

.dashboard #v-pills-dashboard .city-box ul li {
  padding: 12px 30px;
  background: #052861;
  color: white;
}

/* #v-pills-tabContent .city-box{
  border-radius: 5px;
  padding: 30px 30px 40px !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
          border: 1px solid #d5d9e1;
} */
#v-pills-tabContent #v-pills-coverage-areas,
#v-pills-tabContent #v-pills-add-zips,
#v-pills-tabContent .tab-pane.active {
  border-radius: 5px;
  padding: 30px 30px 10px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #d5d9e1;
  background: #fff;
}

#v-pills-tabContent #v-pills-add-zips,
#v-pills-tabContent .tab-pane.active {
  padding-bottom: 30px;
}

#v-pills-subscription-status .widefat.striped tr {
  border-bottom: 1px solid #052861;
  padding: .5rem .3rem;
}

#v-pills-subscription-status .widefat.striped tr th,
#v-pills-subscription-status .widefat.striped tr td {
  padding: .5rem .3rem;
}

#v-pills-subscription-status .subscription-status-wrapper .wrap h3,
#v-pills-tabContent #v-pills-coverage-areas .wrap h3 {
  margin-bottom: 1rem;
}


#addZipForm {
  display: grid;
  grid-template-columns: auto auto;
  gap: 25px;
  align-items: end;
}

#cancelSubscriptionBtn {
  padding: 15px 20px;
}

.open-fep-view-message,
#process-server-form .btn.btn-primary.btn-lg {
  background: #052861;
  padding: 15px 20px;
  font-size: 16px;
  color: #fff;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#process-server-form .select2-selection__choice {
  background-color: #052861 !important;
  color: #fff;
  padding: .2rem .3rem !important;
  display: inline-flex !important;
  gap: 14px;
  flex-wrap: wrap;
  padding-left: 1.5rem !important;
}

#process-server-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  left: 5px !important;
  top: 6px !important;
  background-color: #fff !important;
}

.search_display_box .trial-summary-container .card {
  border-radius: 5px;
  padding: 30px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #d5d9e1;
}

.search_display_box.last_box {
  margin-bottom: 50px;
}

.search_display_box .trial-summary-container .card .list-group .emoji {
  height: 1.5em !important;
  width: 1.5em !important;
}

.search_display_box .trial-summary-container .card .list-group .list-group-item {
  padding-left: 0;
}

.search_display_box .trial-summary-container .card .search_btn_group {
  margin-top: 1rem;
}

.search_display_box .trial-summary-container .card .search_btn_group .server-profile,
#fepMessageModal #fepMessageModalBody .fep-attachment-field-a,
#fepMessageModal #fepMessageModalBody .fep-button,
#fepMessageModal #fepMessageModalBody #fep-attachment-field-add,
#fepMessageModal #fepMessageModalBody .fep-attachment-field-add {
  background: #052861;
  padding: 10px 30px;
  font-size: 14px;
  color: #fff;
}


#fepMessageModal .front-end-pm-form .input-text {
  padding: 10px 20px;
  border-radius: 0;
  border: 1px solid #000;
}

#fepMessageModal .front-end-pm-form textarea.wp-editor-area {
  border: 1px solid #000;
}

#fepMessageModal .fep-form-field {
  margin-bottom: 15px;
  position: relative;
}

#fepMessageModal .front-end-pm-form .fep-form label {
  font-weight: bold;
  margin-bottom: 3px;
}

#fepMessageModal .modal-header {
  padding: 0;
  border: none;
  position: relative;
}

#fepMessageModal .modal-header .btn-close {
  position: absolute;
  top: 0;
  right: 0;
}

/* #fepMessageModal #fepMessageModalBody .fep-form-field.fep-form-field-message_content .fep-label label{
  position: absolute;
  top: 5px;
} */

#fepMessageModal #fepMessageModalBody .fep-form-field.fep-form-field-message_content .wp-editor-container textarea.wp-editor-area {
  resize: none;
  height: 100px;
}

/* 
#fepMessageModal #fepMessageModalBody .fep-form-field.fep-form-field-fep_upload #fep_upload{
  margin-bottom: 25px;
} */

#fepMessageModal .modal-content {
  padding: 2rem;
}

#fepMessageModal #fepMessageModalBody {
  padding: 2rem 0 0;
}

#fepMessageModal #fepMessageModalBody #fep-messagebox-search-form input[type=search] {
  border-radius: 0;
  margin-bottom: 15px;
  padding-left: 15px;
  border-color: #052861;
}

#fepMessageModal #fepMessageModalBody .fep-button {
  border-radius: 0;
  border-color: #052861;
}

#fepMessageModal #fepMessageModalBody .fep-message-table.form .fep-table.fep-action-table>div {
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  gap: 10px;
}

#fepMessageModal #fepMessageModalBody .fep-message-table.form .fep-table.fep-action-table>div .fep-bulk-action select,
#fepMessageModal #fepMessageModalBody .fep-message-table.form .fep-table.fep-action-table>div .fep-filter select.fep-filter.fep-ajax-load {
  padding: 10px 15px;
  color: #052861;
  border-color: #052861;
  margin-top: 10px;
}

#fepMessageModal #fepMessageModalBody .fep-message-table.form .fep-table.fep-action-table>div .fep-loading-gif-div {
  display: none;
}

#fepMessageModal #fepMessageModalBody #fep-box-content-main {
  padding-top: 1rem;
}

#fepMessageModal #fepMessageModalBody #fep-box-content-main .fep-cb-check-uncheck-all-div .fep-cb-check-uncheck-all,
#fepMessageModal #fepMessageModalBody #fep-box-content-main #fep-table .fep-cb {
  width: auto;
}

#fepMessageModal #fepMessageModalBody #fep-box-content-main .fep-column.fep-column-author .fep-message-date,
#fepMessageModal #fepMessageModalBody #fep-box-content-main .fep-column.fep-column-title .fep-unread-class {
  font-size: 12px;
  margin-left: 5px;
}

#fepMessageModal #fepMessageModalBody #fep-box-content-main #fep-table>div {
  border-radius: 5px;
  position: relative;
  padding: 1rem;
  padding-left: 2rem;
}

#fepMessageModal #fepMessageModalBody #fep-box-content-main #fep-table>div .fep-column.fep-column-fep-cb {
  position: absolute;
  left: 10px;
  top: 1.2rem;
}

#fepMessageModal #fepMessageModalBody #fep-box-content-main #fep-box-content-content .fep-cb-check-uncheck-all-div {
  margin-bottom: 10px;
}

#fepMessageModal #fepMessageModalBody #fep-box-content-main .fep-cb-check-uncheck-all-div .fep-cb-check-uncheck-all {
  margin-right: 5px;
}


body.search.search-results #fepMessageModal #fepMessageModalBody,
body.single-process_server.postid-892 #fepMessageModal #fepMessageModalBody {
  padding: 0;
}

body.search.search-results #fepMessageModal .modal-header .btn-close,
body.single-process_server.postid-892 #fepMessageModal .modal-header .btn-close {
  position: absolute;
  top: -15px;
  right: -10px;
}

body.search.search-results #fepMessageModal #fepMessageModalBody h2,
body.single-process_server.postid-892 #fepMessageModal h2 {
  font-size: 28px;
  margin-bottom: 1rem;
}


#fepMessageModal #fepMessageModalBody .fep-form-field.fep-form-field-fep_upload #fep_upload .fep-attachment-field-div {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}

#wp-message_content-editor-tools .wp-editor-tabs {
  display: none;
}

#fepMessageModal #fepMessageModalBody .front-end-pm-form form.fep-form.fep-form-newmessage button.fep-button {
  border-radius: 0;
  border-color: #052861;
  font-weight: 400;
}


#fepMessageModal .fep-form-field.fep-form-field-fep_upload .fep-field {
  display: flex;
  grid-template-columns: auto auto;
  gap: 10px;
  justify-content: space-between;
}

#fepMessageModal #fepMessageModalBody #fep-attachment-field-add {
  display: block;
  height: fit-content;
}

.fep-message .fep-message-title-heading,
.fep-per-message .fep-message-title {
  background-color: unset;
  margin-top: 10px;
}

.fep-message .fep-message-title-heading {
  font-size: 16px;
  font-weight: bold;
}

input.fep-attachment-field-input {
  padding: 5px;
  border-color: #000;
  margin-right: 10px;
  border-radius: 0;
}

#fep-content-single-content .fep-message .fep-per-message,
#fep-content-single-content .fep-message .fep-per-message.fep-per-message-own {
  display: flex;
  align-items: center;
  gap: 10px;
}

#fep-content-single-content .fep-message .fep-per-message .fep-message-title {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 10px;
}

#fep-content-single-content .fep-message .fep-per-message.fep-per-message-top {
  flex-direction: column;
  justify-content: start;
  align-items: self-start;
  margin-bottom: 10px;
}

#fep-content-single-content .fep-message .fep-per-message .fep-message-content p {
  margin-bottom: 0;
}

#fep-content-single-content .fep-message .fep-per-message .fep-message-title .date {
  font-size: 12px;
}

div#fep-notification-bar {
  display: none;
}




/* sourav */
.about-sec.pb-0.about-sec-1 .text-center {
  background-color: #fff;
  box-shadow: -1px 4px 14px 3px #1f8ceb1f;
  padding: 50px 50px 30px 50px;
  border-radius: 20px;
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* gap: 20px; */
}

.about-sec {
  background-color: #F9FAFC;
}

.about-sec.pb-0.about-sec-1 .text-center .icon {
  width: 130px;
  height: 130px;
  background-color: #0067b8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.about-sec.pb-0.about-sec-1 .text-center .icon img {
  width: 50px;
}

.about-sec.pb-0.about-sec-1 .text-center h5 p:nth-child(1) {
  font-size: 20px;
  line-height: 27px;
  padding-bottom: 3px;
}

.about-sec.pb-0.about-sec-1 .text-center h5 {
  width: auto;
}

.about-sec.pb-0.about-sec-1 .text-center h5 p {
  text-align: left;

}

/* .about-sec.pb-0.about-sec-2{
  background-image: url(../images/bg-img.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
  margin-top: 100px;
} */
.about-sec.pb-0.about-sec-2 .text-center {}

.individual-page.individual-page-2 {
  background-color: #2c5a83;
}






.local-process-box.pb-8.local-process-box2 .whybox {
  background-color: transparent;
  box-shadow: 2px 3px 7px 4px transparent;
  padding: 20px 30px;
  transition: 0.4s;
  text-align: center;
  position: relative;
  z-index: 3;
}

.local-process-box.pb-8.local-process-box2 .whybox:hover h4 {
  color: #0067b8;
}

.local-process-box.pb-8.local-process-box2 .whybox:hover .process-description {
  color: #212529;
}

.local-process-box.pb-8.local-process-box2 .container {
  position: relative;
}





.about-sec.inner-page-agent .inner-page-agent-box {
  display: flex;
  gap: 20px;
  text-align: left;
}

.individual-page.individual-page-3 .individual-text h2 {
  color: #000 !important;
  text-align: center;
  padding-bottom: 10px;
}

.individual-page.individual-page-3 li {
  color: #000 !important;
  position: relative;
  z-index: 4;
}

.individual-page.individual-page-3 p {
  text-align: center;
}

.individual-page.individual-page-3 .click-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;

}

.individual-page.individual-page-3 ul {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  max-width: 669px;
  margin: 35px auto 0;
}

.individual-page.individual-page-3 ul .line1 {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 2px;
  height: 85%;
  background-color: #999;
}

.individual-page.individual-page-3 ul lo {
  position: relative;
  z-index: 3;
}

.individual-page.individual-page-3 {
  padding-top: 0px;
}

.about-sec.about-sec-4 .content-wrapper {
  background-color: #fff;
  box-shadow: 2px 3px 7px 4px #1f8ceb47;
  padding: 50px 50px 0px 50px;
  border-radius: 15px;
}

.about-sec.about-sec-4 .content-wrapper .service-wrp h2 {
  text-align: left;
}

.about-sec.about-sec-4 .content-wrapper .service-wrp p {
  text-align: left;
}

.about-sec.about-sec-4 .icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: #0067b8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-sec.about-sec-4 .icon-wrapper .icon {
  border: 1px solid #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-sec.about-sec-4 .icon-wrapper .icon i {
  color: #fff;
}

.about-sec.about-sec-4 {
  padding: 0 0 60px 0;
}

.faq.service-wrp {
  margin-top: 20px;
}

.bottomform_section {
  background-color: #2e76ea;
}

.ban_sec.ban_sec-2 .icon-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  padding-top: 25px;
}

.ban_sec.ban_sec-2 .icon-wrapper .icon-box {
  display: flex;
  gap: 10px;
}

.ban_sec.ban_sec-2 .icon-wrapper .icon-box .icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffffba;
}

.ban_sec.ban_sec-2 .icon-wrapper .icon-box p {
  line-height: 10px;
  color: #fff;
  font-size: 18px;
}

.about-sec.pb-0.about-sec-2.pt-6 {
  padding-top: 70px !important;
}


/* .bottomform_section .heading.text-center{
 margin-bottom: 20px !important;
} */


.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}





/*custom css 15/01/2026 */

.why-choose-wrapper .section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.why-choose-wrapper .col {
  flex: 1;
  padding: 0 15px;
  min-width: 280px;
}

.why-choose-wrapper .why-choose-card {
  text-align: center;
  padding: 40px 10px;
}


.why-choose-wrapper .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}


.why-choose-wrapper .why-choose-card:hover .icon-wrapper {
  transform: scale(1.05);
}


.why-choose-wrapper .icon-wrapper.green {
  background-color: #d4f4dd;
}


.why-choose-wrapper .icon-wrapper.blue {
  background-color: #dae8fc;
}

.why-choose-wrapper .icon-wrapper.purple {
  background-color: #ead9f5;
}

.why-choose-wrapper .icon {
  width: 48px;
  height: 48px;
  stroke-width: 2;
}

.why-choose-wrapper .icon.green {
  stroke: #22c55e;
}

.why-choose-wrapper .icon.blue {
  stroke: #3b82f6;
}

.why-choose-wrapper .icon.purple {
  stroke: #a855f7;
}

.why-choose-wrapper .feature-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.why-choose-wrapper .feature-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.why-choose-card:hover .icon-wrapper {
  transform: scale(1.05);
}

.icon-wrapper.green {
  background-color: #d4f4dd;
}

.icon-wrapper.blue {
  background-color: #dae8fc;
}

.icon-wrapper.purple {
  background-color: #ead9f5;
}

.icon-wrapper img {
  width: 40px;
  height: 40px;
  display: block;
}

@media (max-width: 768px) {
  .why-choose-wrapper .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .why-choose-wrapper .why-choose-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .why-choose-wrapper .section-title {
    font-size: 1.75rem;
  }

  .why-choose-wrapper .icon-wrapper {
    width: 80px;
    height: 80px;
  }


  .why-choose-wrapper .icon {
    width: 40px;
    height: 40px;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .icon-wrapper img {
    width: 40px;
    height: 40px;
  }
}


/* indranil */
.ban_sec h1 span b {
  font-size: 30px;
  font-weight: 500;
  color: hsl(0deg 0% 100% / 90%);
}

.ban_sec .inner ul li a {
  color: #fff;
}

.ban_sec .inner ul li {
  background-color: hsl(0deg 0% 100% / 20%);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 20px;
}

.ban_sec .btn.contact-btn {
  background-color: transparent !important;
  border: 2px solid #fff;
  color: white !important;
}

.whybox h4 {
  color: black !important;
}

.city-about h3 {
  font-size: 20px;
}

.box_City ul li {
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
  color: rgb(55 65 81);
  font-size: 14px;
  margin: 5px 0;

  &:hover {
    color: hsl(217 82% 55%);
    background-color: hsl(217deg 82% 55% / 5%);
  }
}

.archive.tax-state.term-alabama h2,
.term-bibb h2 {
  font-size: 18px;
}

.tax-state.term-alabama .countylists .county_list ul li a,
.term-bibb .countylists .county_list ul li a {
  border: 0;
  color: #000;
  border: 1px solid transparent;

  &:hover {
    color: #000;
    border: 1px solid hsl(217 82% 55%);
    background-color: hsl(217deg 82% 55% / 5%);
  }
}

.ban_sec.ban_sec-2 #suggestionslist {
  top: 70px !important;
}

.tax-state.term-alabama .countylists,
.tax-county.term-bibb .countylists {
  background-color: white;
  padding: 24px;
  border: 1px solid #ddd;
  border-radius: 12px;
}

.archive.tax-state.term-alabama.term-2.logged-in.admin-bar.wp-theme-webart-inhouse.customize-support,
.archive.tax-county.term-bibb.term-36.logged-in.admin-bar.wp-theme-webart-inhouse.customize-support {
  background-color: rgb(249 250 251);
}

.hello {
  background-color: white;
  padding: 24px;
  border: 1px solid #ddd;
  border-radius: 12px;
}

.fs-24 {
  font-size: 24px;
}

.box_City li a {
  padding: 0;
  color: rgb(55 65 81);
}

.box_City ul li:hover>a {
  color: hsl(217 82% 55%) !important;
}


.countryInnerpages {
  background-color: rgb(249 250 251);
}

.countryInnerpages .cityBox {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 32px;
  max-width: 900px;
  margin: 0 auto;
  transition: box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.countryInnerpages .cityBox:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.countryInnerpages .card-header-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.countryInnerpages .company-logo {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  font-weight: 600;
  flex-shrink: 0;
}

.countryInnerpages .company-info {
  flex: 1;
}

.countryInnerpages .company-name {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.countryInnerpages .company-name a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 18px;
}

.countryInnerpages .company-name a:hover {
  color: #4A90E2;
}

.countryInnerpages .badge-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* background: #f0f4f8; */
  padding: 0px 10px;
  border-radius: 20px;
  font-size: 12px;
  /* color: #4a5568;  */
  margin-bottom: 16px;
  border: 1px solid #e5e7eb;
  font-weight: 500;

}

.countryInnerpages .badge-info i {
  font-size: 12px;
}

.countryInnerpages .contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 5px;
}

.countryInnerpages .contact-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #4a5568;
}

.countryInnerpages .contact-item i {
  color: #718096;
  font-size: 16px;
  width: 20px;
}

.countryInnerpages .contact-item a {
  color: #4a5568;
  text-decoration: none;
}

.countryInnerpages .contact-item a:hover {
  color: #4A90E2;
}

.countryInnerpages .coverage-section {
  margin-bottom: 5px;
}

.countryInnerpages .coverage-label {
  font-size: 14px;
  color: #718096;
  /* margin-bottom: 6px; */
  margin-right: 6px;
}

.countryInnerpages .coverage-areas {
  font-size: 14px;
  color: #2d3748;
  line-height: 1.6;
}

.countryInnerpages .membership-info {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
}

.countryInnerpages .action-buttons {
  display: flex;
  gap: 12px;
  /* margin-top: 24px; */
  /* padding-top: 24px; */
  /* border-top: 1px solid #e2e8f0; */
  align-items: center;
  margin-left: 5rem;
}

.countryInnerpages .btn-primary {
  background: #4A90E2;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;

  i {
    width: 16px;
    height: 16px;
  }
}

.countryInnerpages .btn-primary:hover {
  background: #357ABD;
  /* transform: translateY(-1px); */
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.countryInnerpages .btn-secondary,
.login .register-btn-wrapper a {
  background: white;
  color: #000;
  border: 1px solid #e2e8f0;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.countryInnerpages .btn-secondary:hover,
.login .register-btn-wrapper a:hover {
  background: #4A90E2;
  border-color: #cbd5e0;
  /* transform: translateY(-1px);  */
  color: #fff;
}

@media (max-width: 768px) {
  .countryInnerpages .cityBox {
    padding: 20px;
  }

  /* .countryInnerpages .card-header-section {
    flex-direction: column;
  } */

  .countryInnerpages .company-logo {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .countryInnerpages .company-name {
    font-size: 20px;
  }

  /* .countryInnerpages .action-buttons {
    flex-direction: column;
  } */

  .countryInnerpages .btn-primary,
  .countryInnerpages .btn-secondary {
    /* width: 100%; */
    justify-content: center;
  }
}


/*sidebar*/
.countryInnerpages .sidebar {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 24px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.countryInnerpages .sidebar h2 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  /* margin-bottom: 24px; */
  padding-bottom: 12px;
  /* border-bottom: 1px solid #e5e7eb; */
}

.countryInnerpages .sidebar h6 {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 8px;
  margin-top: 0;
}

.countryInnerpages .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.countryInnerpages .service-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 15px;
  color: #374151;
  /* border-bottom: 1px solid #f3f4f6; */
}

.countryInnerpages .service-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.countryInnerpages .service-list li:first-child {
  padding-top: 0;
}

.countryInnerpages .service-label {
  font-weight: 400;
  color: #6b7280;
}

.countryInnerpages .service-value {
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.countryInnerpages .service-value:hover {
  color: #1d4ed8;
}

.countryInnerpages .service-value.text-dark {
  color: #1a1a1a;
}

.countryInnerpages .click-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  margin-right: 12px;
  flex-shrink: 0;
}

.countryInnerpages .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  /* border-bottom: 1px solid #f3f4f6; */
}

.countryInnerpages .info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.countryInnerpages .info-row:first-child {
  padding-top: 0;
}

.countryInnerpages .info-label {
  font-size: 15px;
  color: #6b7280;
  font-weight: 400;
}

.countryInnerpages .info-value {
  font-size: 15px;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.countryInnerpages .info-value:hover {
  color: #1d4ed8;
}

.countryInnerpages .info-value.text-dark {
  color: #1a1a1a;
}

/* Alternative style with checkmarks */
.countryInnerpages .service-list.with-checks li {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
}

.countryInnerpages .service-list.with-checks li .service-text {
  flex: 1;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .countryInnerpages .sidebar {
    padding: 24px 15px !important;
  }

  .countryInnerpages .sidebar h2 {
    font-size: 20px !important;
  }
}

.countryInnerpages.cityindividual-page h4 {
  font-size: 24px;
  color: #000;
}

.countryInnerpages.cityindividual-page p {
  font-size: 14px;
  color: rgb(107 114 128);
}

.countryInnerpages .sidebar.unique {
  background-color: hsl(217 82% 55%);
  text-align: center;
  padding: 24px;

  h2,
  p {
    color: #fff;
  }

  h2 {
    font-size: 1.125rem;
    margin-bottom: 0;
  }

  p {
    font-size: 14px;
    padding-bottom: 12px;
  }

  a {
    background-color: #fff;
    color: hsl(217 82% 55%);
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 500;
  }
}

.countryInnerpages.faq.service-wrp {
  margin-top: 0 !important;
}

.countryInnerpages .accordion-button {
  background-color: rgb(249 250 251);
  color: #000;
  border: 0;
  padding-left: 0;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
}

.countryInnerpages .accordion-body {
  background-color: rgb(249 250 251);
  padding-left: 0;
  color: hsl(215.4 16.3% 46.9%);
  font-size: 14px;
  padding-top: 0;
}

.countryInnerpages.city-faq .accordion-button::after {
  background-image: url("data: image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529' %3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' /%3e%3c/svg%3e") !important;
  rotate: -180deg;
}

.countryInnerpages .accordion-button:not(.collapsed)::after {
  background-image: url("data: image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529' %3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' /%3e%3c/svg%3e") !important;
  rotate: -90deg !important;
}

.countryInnerpages .bg-greenLight {
  background-color: rgb(220 252 231);
  border-color: transparent;
}

.countryInnerpages.cityinner-banner {
  background-color: #1e3a8a;
}

.login h2,
.register h2 {
  font-size: 30px !important;
}

.login p,
.register p {
  font-size: 16px;
  color: rgb(75 85 99);
}

.login h2 span,
.register h2 span {
  background-color: rgb(37 99 235);
  padding: 12px;
  border-radius: 12px;
  display: inline-block;
  width: 56px;
  /* height: 56px;   */

}

.login .register-btn-wrapper a {
  padding: 8px 25px;
  font-size: 14px;
}

.register .login-container {
  max-width: 608px;
}

.process-server-wrapper .card-header {
  padding-left: 0;
}

.server-details-page {
  background-color: rgb(249 250 251);
}

.box.profile_services,
.box.process-server-wrapper {
  background-color: white;
  border-radius: 12px;
}

.coverage-list .primary-badge {
  background: hsl(210 40% 96.1%);
  padding: 0px 10px;
  color: black;
}

.coverage-list .coverage-zip {
  border: 1px solid hsl(214.3 31.8% 91.4%);
  background: transparent;
  color: black;
  padding: 0px 10px;
  font-size: 12px;
}

.breadcrumb .breadcrumb-item a {
  color: rgb(75 85 99);

  &:hover {
    color: hsl(217 82% 55%);
  }
}

.breadcrumb .breadcrumb-item .active {
  color: #000 !important;
}

.verified-badge {
  font-size: 12px !important;
  padding: 0px 10px !important;
}

.quote-button::before {
  content: none !important;
}

.quote-button {
  gap: 0px !important;
}

.server-details-page .profile-wrapper {
  flex-wrap: nowrap;
  flex-direction: column;
  padding-right: 45px;
}

.left-content {
  flex: 0;
  color: #6b7280;
}

.process-server-wrapper {
  color: #6b7280;
}

.requestQuote .modal-content {
  padding: 24px;
  border-radius: 12px;
}

.requestQuote h1 {
  font-size: 34px;
}

.requestQuote label {
  font-weight: 500;
}

.requestQuote .section-title {
  padding: 0;
}

.requestQuote .service-level-option {
  display: flex;
  padding: 12px;
  border-radius: 12px;
}

.requestQuote input,
.requestQuote .section {
  border-radius: 12px;
}

.requestQuote h2 {
  margin-top: 0 !important;
}

.offerService li {
  padding: 8px 12px;
}

.box.offerService {
  border-radius: 12px;
  background-color: white;
}






/*================================ sourav {06/02/2026} ================================*/


/* ============================.membership-levels==================== */
.membership-levels {
  padding: 60px 0;
}

.f-16 {
  font-size: 16px;
}

.ban_sec.cityinner-banner .f-16 {
  font-size: 16px;
}

#city-banner .banner-text .heading-buttom {
  margin-top: 10px;
}

.membership-levels .box-wrapper h3 {
  font-size: 1.40rem;
  font-weight: 600;
  color: #1a1a1a;
}

.membership-levels .box-wrapper h6 {
  font-size: 16px;
  font-weight: 600;
}

.membership-levels .box-wrapper p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  /* padding-bottom: 15px;
  border-bottom: 1px solid #ddd; */
}

.membership-levels .box-wrapper ul li {
  font-size: 14px;
  list-style: disc;
}

.membership-levels .box-wrapper ul {
  margin-bottom: 30px;
}

.membership-levels .box-wrapper ul {
  padding-left: 20px;
}

.membership-levels .box-wrapper {
  padding: 35px 35px 50px 35px;
  border-radius: 12px;
  gap: 15px;
  background-color: #f7f7f7;
}

.membership-levels .box-wrapper ul li {
  padding-bottom: 12px;
  color: rgb(55 65 81);
}

.membership-levels .box-wrapper .icon {
  width: 60px;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  height: 60px;
  background-color: rgb(46, 118, 234, 1);
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  flex: 0 0 60px;
}

.membership-levels .box-wrapper span a {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  padding: 12px 30px;
  border-radius: 12px;
  color: #fff;
  font-weight: 500;
  transition: 0.4s;
  background-color: #1f8ceb;
}

.membership-levels {
  background-color: rgb(248 250 252);
}

.section-heading center h2 {
  padding-bottom: 40px;
}

.levels-wrap {
  background-color: #f7f7f7;
}



.membership-levels .levels-wrap .list p b {
  display: block;
  padding-bottom: 5px;
}

.membership-levels .levels-wrap .prising {
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 36px;
  font-weight: 600;
  color: #2e76ea;
}

.membership-levels .levels-wrap .prising span {
  font-size: 14px;
  color: #000;
}

.membership-levels .all-content-wrapper {
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 40px 40px;
}

.membership-levels .all-content-wrapper .inner-box .number {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  font-size: 16px;
  /* background-color: #0067b8; */
  color: #0067b8;
  font-weight: 500;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid #0067b8;
}

.membership-levels .all-content-wrapper .inner-box {
  background-color: #fff;
  padding: 10px 10px 10px 10px;
  border-radius: 10px;
  gap: 15px;
}

.membership-levels .box-wrapper .text-content {
  margin-bottom: 20px;
}

.membership-levels .button a {
  padding: 13px 20px;
  background-color: #0067b8;
  color: #fff;
  border-radius: 6px;

}

.membership-levels .button {
  margin-top: 20px;
}


@import url(https://fonts.googleapis.com/css?family=Raleway:400,700,900,100,200,300);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700);

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: #eee;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small,
.h1 small,
.h1 .small,
.h2 small,
.h2 .small,
.h3 small,
.h3 .small,
.h4 small,
.h4 .small,
.h5 small,
.h5 .small,
.h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

h1 small,
h1 .small,
.h1 small,
.h1 .small,
h2 small,
h2 .small,
.h2 small,
.h2 .small,
h3 small,
h3 .small,
.h3 small,
.h3 .small {
  font-size: 65%;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

h4 small,
h4 .small,
.h4 small,
.h4 .small,
h5 small,
h5 .small,
.h5 small,
.h5 .small,
h6 small,
h6 .small,
.h6 small,
.h6 .small {
  font-size: 75%;
}

h1,
.h1 {
  font-size: 36px;
}

h2,
.h2 {
  font-size: 30px;
}

h3,
.h3 {
  font-size: 24px;
}

h4,
.h4 {
  font-size: 18px;
}

h5,
.h5 {
  font-size: 14px;
}

h6,
.h6 {
  font-size: 12px;
}

p {
  margin: 0 0 10px;
}

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

small,
.small {
  font-size: 85%;
}

mark,
.mark {
  background-color: #fcf8e3;
  padding: 0.2em;
}

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

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase,
.initialism {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-muted {
  color: #777777;
}

.text-primary {
  color: #337ab7;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}

.text-success {
  color: #3c763d;
}

a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

.bg-primary {
  color: #fff;
}

.bg-primary {
  background-color: #337ab7;
}

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}

.bg-success {
  background-color: #dff0d8;
}

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

.list-inline>li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dt,
dd {
  line-height: 1.42857;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

.dl-horizontal dd:before,
.dl-horizontal dd:after {
  content: " ";
  display: table;
}

.dl-horizontal dd:after {
  clear: both;
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}

.initialism {
  font-size: 90%;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857;
  color: #777777;
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "\2014 \00A0";
}

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}

.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: "";
}

.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: "\00A0 \2014";
}

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857;
}

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container:before,
.container:after {
  content: " ";
  display: table;
}

.container:after {
  clear: both;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-fluid:before,
.container-fluid:after {
  content: " ";
  display: table;
}

.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row:before,
.row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:focus,
.btn.focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}

.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:hover,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block+.btn-block {
  margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

/* .fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
} */

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-inner>.item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}

.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}

.carousel-inner>.active,
.carousel-inner>.next,
.carousel-inner>.prev {
  display: block;
}

.carousel-inner>.active {
  left: 0;
}

.carousel-inner>.next,
.carousel-inner>.prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner>.next {
  left: 100%;
}

.carousel-inner>.prev {
  left: -100%;
}

.carousel-inner>.next.left,
.carousel-inner>.prev.right {
  left: 0;
}

.carousel-inner>.active.left {
  left: -100%;
}

.carousel-inner>.active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-control.left {
  background-image: -webkit-linear-gradient(left,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}

.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left,
      rgba(0, 0, 0, 0.0001) 0%,
      rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.0001) 0%,
      rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

.carousel-control:hover,
.carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}

.carousel-control .icon-prev:before {
  content: "\2039";
}

.carousel-control .icon-next:before {
  content: "\203a";
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: transparent;
}

.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
  text-shadow: none;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

.visible-print {
  display: none !important;
}

.visible-print-block {
  display: none !important;
}

.visible-print-inline {
  display: none !important;
}

.visible-print-inline-block {
  display: none !important;
}

/* ======================== */
/*   Typography   			*/
/* ========================	*/
html {
  box-sizing: border-box;
  font-size: 87.5%;
  line-height: 1.71429em;
  overflow-y: scroll;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  color: #333333;
  font-family: Raleway;
  font-weight: 400;
  word-wrap: break-word;
}

a {
  text-decoration: none;
}

/* Make image responsive by default */
img {
  max-width: 100%;
}

/* All block elements get one rhythm of bottom margin. */
h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
ul,
ol,
dl,
dd,
p,
figure,
pre,
table,
fieldset,
blockquote,
form,
noscript,
iframe,
img,
hr {
  margin: 0;
  /* margin-bottom: 1.71429rem; */
  padding: 0;
}

blockquote {
  margin: 1.71429rem 4.28571rem;
}

b,
strong {
  font-weight: 700;
}

hr {
  background: #cccccc;
  border: none;
  height: 1px;
  margin-bottom: calc(1.71429rem - 1px);
}

ol,
ul {
  list-style-position: outside;
  margin-left: 1.71429rem;
}

ul li,
ol li {
  padding-left: 0;
}

code,
kbd,
pre,
samp {
  font-size: 0.85rem;
  line-height: 1.71429rem;
}

table {
  font-size: 1rem;
  line-height: 2.57143rem;
  width: 100%;
}

thead {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333333;
  font-family: Lato, sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 2.82843rem;
  line-height: 3.42857rem;
}

h2 {
  font-size: 2rem;
  line-height: 2.57143rem;
}

h3 {
  font-size: 1.41421rem;
  line-height: 1.71429rem;
}

h4 {
  font-size: 1.25992rem;
  line-height: 1.71429rem;
}

h5 {
  font-size: 1.12246rem;
  line-height: 1.71429rem;
}

h6 {
  font-size: 1rem;
  line-height: 1.71429rem;
}

@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }

  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dl-horizontal dd {
    margin-left: 180px;
  }

  .container {
    width: 750px;
  }

  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }

  .col-sm-1 {
    width: 8.33333%;
  }

  .col-sm-2 {
    width: 16.66667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.33333%;
  }

  .col-sm-5 {
    width: 41.66667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.33333%;
  }

  .col-sm-8 {
    width: 66.66667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.33333%;
  }

  .col-sm-11 {
    width: 91.66667%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-pull-1 {
    right: 8.33333%;
  }

  .col-sm-pull-2 {
    right: 16.66667%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-4 {
    right: 33.33333%;
  }

  .col-sm-pull-5 {
    right: 41.66667%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-7 {
    right: 58.33333%;
  }

  .col-sm-pull-8 {
    right: 66.66667%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-10 {
    right: 83.33333%;
  }

  .col-sm-pull-11 {
    right: 91.66667%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-push-1 {
    left: 8.33333%;
  }

  .col-sm-push-2 {
    left: 16.66667%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-4 {
    left: 33.33333%;
  }

  .col-sm-push-5 {
    left: 41.66667%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-7 {
    left: 58.33333%;
  }

  .col-sm-push-8 {
    left: 66.66667%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-10 {
    left: 83.33333%;
  }

  .col-sm-push-11 {
    left: 91.66667%;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media screen and (min-width: 768px) {

  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }

  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }

  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }

  .carousel-indicators {
    bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table !important;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }

  .visible-sm-block {
    display: block !important;
  }

  .visible-sm-inline {
    display: inline !important;
  }

  .visible-sm-inline-block {
    display: inline-block !important;
  }

  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }

  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }

  .col-md-1 {
    width: 8.33333%;
  }

  .col-md-2 {
    width: 16.66667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33333%;
  }

  .col-md-5 {
    width: 41.66667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.33333%;
  }

  .col-md-8 {
    width: 66.66667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.33333%;
  }

  .col-md-11 {
    width: 91.66667%;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-pull-1 {
    right: 8.33333%;
  }

  .col-md-pull-2 {
    right: 16.66667%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-4 {
    right: 33.33333%;
  }

  .col-md-pull-5 {
    right: 41.66667%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-7 {
    right: 58.33333%;
  }

  .col-md-pull-8 {
    right: 66.66667%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-10 {
    right: 83.33333%;
  }

  .col-md-pull-11 {
    right: 91.66667%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-push-1 {
    left: 8.33333%;
  }

  .col-md-push-2 {
    left: 16.66667%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-4 {
    left: 33.33333%;
  }

  .col-md-push-5 {
    left: 41.66667%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-7 {
    left: 58.33333%;
  }

  .col-md-push-8 {
    left: 66.66667%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-10 {
    left: 83.33333%;
  }

  .col-md-push-11 {
    left: 91.66667%;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table !important;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }

  .visible-md-block {
    display: block !important;
  }

  .visible-md-inline {
    display: inline !important;
  }

  .visible-md-inline-block {
    display: inline-block !important;
  }

  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }

  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }

  .col-lg-1 {
    width: 8.33333%;
  }

  .col-lg-2 {
    width: 16.66667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.33333%;
  }

  .col-lg-5 {
    width: 41.66667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.33333%;
  }

  .col-lg-8 {
    width: 66.66667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.33333%;
  }

  .col-lg-11 {
    width: 91.66667%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-pull-1 {
    right: 8.33333%;
  }

  .col-lg-pull-2 {
    right: 16.66667%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-4 {
    right: 33.33333%;
  }

  .col-lg-pull-5 {
    right: 41.66667%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-7 {
    right: 58.33333%;
  }

  .col-lg-pull-8 {
    right: 66.66667%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-10 {
    right: 83.33333%;
  }

  .col-lg-pull-11 {
    right: 91.66667%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-push-1 {
    left: 8.33333%;
  }

  .col-lg-push-2 {
    left: 16.66667%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-4 {
    left: 33.33333%;
  }

  .col-lg-push-5 {
    left: 41.66667%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-7 {
    left: 58.33333%;
  }

  .col-lg-push-8 {
    left: 66.66667%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-10 {
    left: 83.33333%;
  }

  .col-lg-push-11 {
    left: 91.66667%;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table !important;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }

  .visible-lg-block {
    display: block !important;
  }

  .visible-lg-inline {
    display: inline !important;
  }

  .visible-lg-inline-block {
    display: inline-block !important;
  }

  .hidden-lg {
    display: none !important;
  }
}

@media print {

  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .navbar {
    display: none;
  }

  .btn>.caret,
  .dropup>.btn>.caret {
    border-top-color: #000 !important;
  }

  .label {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }

  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table !important;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }

  .visible-print-block {
    display: block !important;
  }

  .visible-print-inline {
    display: inline !important;
  }

  .visible-print-inline-block {
    display: inline-block !important;
  }

  .hidden-print {
    display: none !important;
  }
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .carousel-inner>.item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }

  .carousel-inner>.item.next,
  .carousel-inner>.item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }

  .carousel-inner>.item.prev,
  .carousel-inner>.item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }

  .carousel-inner>.item.next.left,
  .carousel-inner>.item.prev.right,
  .carousel-inner>.item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table !important;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }

  .visible-xs-block {
    display: block !important;
  }

  .visible-xs-inline {
    display: inline !important;
  }

  .visible-xs-inline-block {
    display: inline-block !important;
  }

  .hidden-xs {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 1.728rem;
    line-height: 2.57143rem;
  }

  h2 {
    font-size: 1.44rem;
    line-height: 2.57143rem;
  }

  h3 {
    font-size: 1.2rem;
    line-height: 1.71429rem;
  }

  h4 {
    font-size: 1.12924rem;
    line-height: 1.71429rem;
  }

  h5 {
    font-size: 1.06266rem;
    line-height: 1.71429rem;
  }

  h6 {
    font-size: 1rem;
    line-height: 1.71429rem;
  }
}

/* =================== */
/*   Pricing Wrapper   */
/* =================== */
.pricing-wrapper {
  font-family: roboto;
}

.pricing-wrapper:hover .current {
  top: 0;
  padding-bottom: 20px;
  padding-top: 20px;
}

.pricing-wrapper:hover .current .pricing-card {
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  box-shadow: none;
}

.pricing-wrapper:hover .current .pricing-footer {
  height: 80px;
}

.pricing-wrapper:hover .current .pricing-footer a {
  bottom: 0;
  position: relative;
}

.pricing-wrapper:hover .current:hover {
  top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.pricing-wrapper:hover .current:hover .pricing-card {
  box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.25);
}

.pricing-wrapper:hover .current:hover .pricing-footer {
  height: 120px;
}

.pricing-wrapper:hover .current:hover .pricing-footer a {
  bottom: -20px;
  position: relative;
}

.stripped-table [class*="col-"] {
  padding: 0;
  margin: -1px;
}

.stripped-table .pricing-col {
  padding: 20px 0;
}

.stripped-table.current {
  padding-left: 0;
  padding-right: 0;
}

.stripped-table .ribbon {
  left: calc(100% - 124px);
}

/* =================== */
/*   Pricing Cards     */
/* =================== */
.pricing-card {
  position: relative;
  border: 1px solid #ddd;
  width: 100%;
  top: 0;
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  z-index: 99;
}

/* =================== */
/*   Pricing Header    */
/* =================== */
.pricing-header {
  background: #fff;
  position: relative;
  height: 200px;
  border-bottom: 1px solid #1976d2;
  margin: -1px;
  margin-bottom: 0;
  text-align: center;
}

.pricing-header h5 {
  background: #2196f3;
  color: #fff;
  font-size: 16px;
  line-height: normal;
  margin: 0 auto;
  padding: 15px 20px;
  text-transform: uppercase;
}

.pricing-header p {
  margin: 0 auto;
  color: #fff;
  display: inline-block;
  font-style: italic;
}

/* =================== */
/*   Pricing Box       */
/* =================== */
.price-box {
  border-radius: 100px;
  display: block;
  margin: 25px auto;
  position: relative;
  line-height: 100px;
  height: 100px;
  width: 100px;
}

.price-box:before {
  border-radius: 50%;
  box-shadow: 0 0 0 5px white inset, 0 1px 2px transparent;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.price-box .price {
  color: #fff;
  display: inline-block;
  font-family: roboto;
  font-size: 34px;
  font-weight: 600;
  position: relative;
  letter-spacing: -2px;
}

.price-box .currency {
  font-size: 50%;
  font-weight: 600;
  left: -10px;
  line-height: inherit;
  position: absolute;
  top: -6px;
  letter-spacing: 0;
}

.price-box .plan {
  bottom: -26px;
  font-family: roboto;
  font-size: 36%;
  font-weight: 400;
  left: 0;
  letter-spacing: 0px !important;
  margin: 0 auto;
  position: absolute;
  right: 0;
  text-transform: capitalize;
}

/* ============================ */
/*   Pricing Feature(Content)   */
/* ============================ */
.pricing-feature {
  position: relative;
  text-align: left;
}

.pricing-feature li {
  list-style: none;
  padding: 13px 0;
  border-bottom: 1px solid #ddd;
  background: #eee;
}

.pricing-feature li:last-child {
  border-bottom: none;
}

.pricing-feature li span {
  text-transform: capitalize;
  font-weight: bold;
}

.pricing-feature li span,
.pricing-feature li i {
  float: right;
}

.pricing-feature li p {
  margin: 0;
  font-size: 13.5px;
  text-transform: capitalize;
  padding: 0 20px;
  line-height: normal;
}

/* ============================ */
/*   Pricing Footer             */
/* ============================ */
.pricing-footer {
  border-top: 1px solid #ddd;
  padding: 0 20px;
  height: 80px;
  -webkit-transition: height 0.2s linear 0s;
  transition: height 0.2s linear 0s;
  text-align: center;
}

.pricing-footer a {
  bottom: 0;
  margin-top: 20px;
  position: relative;
}

/* =================== */
/*   Pricing Ribbons     */
/* =================== */
.ribbon {
  background: #222;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.23), 0 1px 5px rgba(0, 0, 0, 0.16);
  height: 35px;
  line-height: 35px;
  margin: 0 auto;
  position: absolute;
  left: calc(100% - 110px);
  top: 70px;
  width: 35px;
  z-index: 10;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border-radius: 100px;
  float: right;
  cursor: pointer;
}

.ribbon:hover {
  width: 90px;
}

.ribbon:hover span {
  visibility: visible;
  -webkit-transition: all 0.2s linear 0.18s;
  transition: all 0.2s linear 0.18s;
}

.ribbon span {
  top: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  float: left;
  visibility: hidden;
}

.ribbon i {
  color: #ffc61b;
  font-weight: 800;
  font-size: 14px;
  margin: 11px;
  z-index: 10;
  float: left;
}

/* ======================= */
/*   Pricing Comparison    */
/* ======================= */
.comparison-table [class*="col-"] {
  padding: 0;
  margin: -1px;
}

.comparison-table .pricing-col {
  padding: 20px 0;
}

.comparison-table.current {
  padding-left: 0;
  padding-right: 0;
}

.comparison-table [class*="col-"]:first-child {
  margin: 0;
}

.comparison-table [class*="col-"]:first-child:hover {
  top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.comparison-table [class*="col-"]:first-child:hover .pricing-card {
  margin: 0;
  box-shadow: none;
}

.comparison-table .pricing-feature li {
  background: #fff;
  text-align: center;
}

.comparison-table .pricing-feature li i {
  line-height: normal;
}

.comparison-table .pricing-feature li span,
.comparison-table .pricing-feature li i {
  float: none;
}

.comparison-table .pricing-feature li:nth-child(2n + 1) {
  background: #eee;
}

.comparison-table .ribbon {
  left: calc(100% - 124px);
}

.list-feature {
  z-index: 0;
}

.list-feature .pricing-header {
  background: #fff !important;
  padding: 30px 15px;
  border-bottom-color: #ddd !important;
  text-align: center;
  margin-top: -2px;
}

.list-feature .pricing-header h5 {
  background: #fff !important;
  color: #424242;
  font-weight: 500;
  font-size: 39px;
  padding: 0;
  margin-top: 30px;
}

.list-feature .pricing-header p {
  color: #444;
  margin-top: 5px;
}

.list-feature .pricing-feature {
  text-align: left;
}

.pricing-col {
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  padding-top: 20px;
  padding-bottom: 20px;
}

.pricing-col:hover {
  padding-bottom: 0;
  padding-top: 0;
}

.pricing-col:hover>.pricing-card {
  top: 0px;
  box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  z-index: 101;
}

.pricing-col:hover>.pricing-card .pricing-footer {
  height: 120px;
}

.pricing-col:hover>.pricing-card .pricing-footer a {
  bottom: -20px;
  position: relative;
}

.pricing-col.current {
  padding-top: 0;
  padding-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.current {
  top: 0;
}

.current .pricing-card {
  z-index: 100;
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.25);
}

.current .pricing-footer {
  height: 120px;
}

.current .pricing-footer a {
  bottom: -20px;
  position: relative;
}

.current:hover {
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  top: -20px;
}

.current:hover .pricing-footer {
  height: 120px;
}

.current:hover .pricing-footer a {
  bottom: -20px;
  position: relative;
}

/* ======================== */
/*   Tooltips               */
/* ======================== */
.tooltip {
  outline: none;
  color: inherit;
  position: relative;
  -webkit-font-smoothing: antialiased;
  /* webkit text rendering fix */
  cursor: help;
  border-bottom: 1px dotted;
  font-weight: normal !important;
}

.tooltip .tooltip-content {
  border-radius: 4px;
  position: absolute;
  color: #111;
  border: 1px solid #ddd;
  background: #f9f9f9;
  line-height: 1.6;
  font-weight: normal;
  font-size: 12px;
  font-family: Roboto;
  padding: 15px;
  bottom: 36px;
  left: -10px;
  margin: 0 auto;
  z-index: 9999;
  width: 200px;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  visibility: hidden;
  opacity: 0;
  display: block;
}

.tooltip .tooltip-content:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 20px;
  height: 20px;
  background: #f9f9f9;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 0;
}

.tooltip:hover span {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

/* ======================== */
/*   Button Color       */
/* ======================== */
.btn-act {
  font-family: Roboto;
  line-height: normal;
  padding: 9px 26px;
  border: 2px solid;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: #666;
  vertical-align: middle;
  will-change: opacity, transform;
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}

.btn-act.rounded {
  border-radius: 50px;
}

.btn-act.boxed {
  border-radius: 0;
}

.btn-act.btn-uppercase {
  text-transform: uppercase;
  font-size: 13px;
}

.btn-act.btn-capitalize {
  text-transform: capitalize;
}

.btn-act span {
  position: relative;
  left: 0;
  -webkit-transition: left 0.2s linear;
  transition: left 0.2s linear;
}

.btn-act i {
  -webkit-transition: margin-left 0.2s linear;
  transition: margin-left 0.2s linear;
  opacity: 0;
  margin-left: 0;
  position: absolute;
  line-height: inherit;
}

.btn-act:hover {
  border-color: initial;
  background: initial;
}

.btn-act:hover span {
  left: -0.3em;
}

.btn-act:hover i {
  opacity: 1;
  margin-left: 0.25em;
}

.btn-act.btn-line {
  background: #fff;
  border-color: #616161;
  color: #616161;
}

.btn-act.btn-line:hover {
  border-color: #212121;
  background: #212121;
  color: #fff;
}

.btn-act.btn-bg {
  background: #616161;
  border-color: #616161;
  color: #fff;
}

.btn-act.btn-bg:hover {
  background: #212121;
  border-color: #212121;
}

.title-page {
  margin-bottom: 60px;
  color: #484848;
  font-size: 30px;
}

.content {
  padding: 60px 0;
  /* padding-bottom: 200px; */
}

/*=====================================================================
    MENU
======================================================================*/
.matraz_menu {
  width: 100%;
  padding: 15px 0;
  z-index: 999;
  display: block;
  float: left;
  background: #eee;
  border-bottom: 1px solid #dedede;
  margin-bottom: 120px;
}

.matraz_mainmenu {
  float: right;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.matraz_mainmenu li {
  float: left;
  margin: 0 5px 0 auto;
  overflow: hidden;
  padding: 15px 0;
}

.matraz_mainmenu li a {
  border-radius: 2px 2px 2px 2px;
  color: #2c3e50;
  font-family: Helvetica;
  padding: 10px;
  font-weight: 600;
}

.matraz_mainmenu li:hover a,
.matraz_mainmenu li.active a {
  background: #1abc9c;
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.matraz_mainmenu li.active:hover a {
  background: #424242;
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/*=====================================================================
    MOBILE MENU
======================================================================*/
.matraz_menu .logo {
  margin-left: auto;
  margin-top: 5px;
  width: 150px;
}

.trac_mobtrac_menu {
  text-align: center;
  display: none;
}

.trac_mobtrac_menu li {
  padding: 10px 0;
}

.trac_mobilelink_button {
  display: none;
  margin-right: 10px;
  cursor: pointer;
  margin-top: 10px;
}

.logo {
  float: left;
}

.logo h1 {
  margin-bottom: 0;
  margin-top: 10px;
}

.style-2 .pricing-card,
.style-2 .pricing-footer {
  border: none;
}

.style-2 .pricing-header {
  margin: 0;
  border: none;
  height: 160px;
}

.style-2 .pricing-feature li {
  background: none;
  border-color: #42a5f5;
}

.style-2 .pricing-feature li p {
  color: #e3f2fd;
}

.style-2 .pricing-feature li p span,
.style-2 .pricing-feature li p i {
  float: right;
  color: #fff;
}

.style-2 .pricing-feature li p .tooltip-content {
  color: #444;
}

.style-2 .pricing-feature li:last-child {
  border-bottom: 1px solid transparent;
}

.style-2 .price-box {
  margin: 20px auto;
  border-radius: 0;
  width: auto;
  height: auto;
  line-height: normal;
}

.style-2 .price-box:before {
  display: none;
  position: relative;
}

.style-2 .plan {
  bottom: 12px;
  left: auto;
  margin: 0;
  left: calc(100% + 5px);
  font-weight: 400;
  font-size: 12px;
  width: 50px;
  text-align: left;
}

.style-2 .currency {
  top: auto;
  font-size: 30px;
  left: -20px;
  line-height: inherit;
  position: absolute;
  bottom: 10px;
  letter-spacing: 0;
  font-weight: 300;
}

.style-2 .price {
  font-size: 60px;
  font-weight: 400;
}

.style-2 .ribbon {
  top: 35%;
  right: -10px;
  left: auto;
  border-radius: 0;
}

.style-2 .ribbon:after {
  border-right: 10px solid transparent;
  border-top: 7px solid rgba(0, 0, 0, 0.5);
  bottom: -7px;
  content: "";
  position: absolute;
  right: 0;
}

.style-2 .pricing-footer a:before {
  background: inherit;
}

.style-2.comparison-table .pricing-feature li:nth-child(2n + 1) {
  background: inherit;
}

.style-2.comparison-table .pricing-feature li p {
  color: #fff;
}

.style-2.comparison-table .pricing-feature li p span,
.style-2.comparison-table .pricing-feature li p i {
  float: none;
}

.style-2.comparison-table .list-feature .pricing-header {
  margin: 0;
  margin-bottom: -1px;
}

.style-2.comparison-table .list-feature .pricing-header h5 {
  margin-top: 0;
  font-size: 38px;
}

.style-2 .btn-act.btn-line {
  background: none;
  border-color: #fff;
  color: #fff;
}

.style-2 .btn-act.btn-bg:hover {
  background: #212121;
  border-color: #212121;
}

.style-3 .pricing-card {
  border: 1px solid #ddd;
}

.style-3 .pricing-header {
  border-bottom: none;
  margin: 0;
  height: 160px;
}

.style-3 .pricing-header h5 {
  background: #fff;
  color: #424242;
  border-bottom: 1px solid #ddd;
}

.style-3 .price-box {
  border-radius: 0;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
}

.style-3 .price {
  color: #616161;
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
}

.style-3 .currency {
  top: 0px;
  font-size: 14px;
  left: -12px;
  font-weight: 300;
}

.style-3 .plan {
  bottom: 12px;
  left: auto;
  margin: 0;
  left: calc(100% + 5px);
  font-weight: 400;
  font-size: 12px;
  width: 50px;
  text-align: left;
  line-height: normal;
}

.style-3 .pricing-feature li {
  background: #f5f5f5;
}

.style-3 .pricing-feature li:first-child {
  border-top: 1px solid #ddd;
}

.style-3 .pricing-feature li span,
.style-3 .pricing-feature li i {
  float: right;
}

.style-3 .pricing-feature li:nth-child(2n + 1) {
  background: #eee;
}

.style-3 .ribbon {
  top: 35%;
  right: -10px;
  left: auto;
  border-radius: 0;
}

.style-3 .ribbon:after {
  border-right: 10px solid transparent;
  border-top: 7px solid rgba(0, 0, 0, 0.5);
  bottom: -7px;
  content: "";
  position: absolute;
  right: 0;
}

.style-3 .person .price {
  color: #2196f3;
}

.style-3 .person .plan {
  color: #757575;
}

.style-3 .corp .price {
  color: #4caf50;
}

.style-3 .corp .plan {
  color: #757575;
}

.style-3 .unlim .price {
  color: #f44336;
}

.style-3 .unlim .plan {
  color: #757575;
}

.style-3 .business .price {
  color: #ffc107;
}

.style-3 .business .plan {
  color: #757575;
}

.style-3 .pricing-footer {
  background: #fff;
}

.style-3.comparison-table [class*="col-"]:first-child {
  margin: -1px;
}

.style-3.comparison-table .list-feature .pricing-header h5 {
  margin-top: 0;
  border-bottom: none;
}

.style-3.comparison-table .pricing-feature li p,
.style-3.comparison-table .pricing-feature li i,
.style-3.comparison-table .pricing-feature li span {
  float: none;
}

.style-3 .pricing-footer .btn-act.btn-line {
  background: none;
  border-color: #2196f3;
  color: #2196f3;
}

.style-3 .pricing-footer .btn-act.btn-line:hover {
  background: #2196f3;
  border-color: #2196f3;
  color: #fff;
}

.style-3 .pricing-footer .btn-act.btn-bg {
  background-color: #2196f3;
  border-color: #2196f3;
}

.style-3 .pricing-footer .btn-act.btn-bg:hover {
  background: #212121;
  border-color: #212121;
}

section.footer {
  background: #f5f5f5;
  text-align: center;
  font-size: 20px;
}



/* cta sec */
.bottomform_section.cta_sec {
  background-color: unset;
  color: #fff;
}

.bottomform_section .heading {
  /* background-color: #ffff; */
  background: url(../images/wave.jpg) no-repeat top right #1f8ceb;
  background-size: auto 100%;
  box-shadow: 0 0 10px #d0d0d0;
  border-radius: 5px;
  padding: 51px;
  margin: 0;
  box-shadow: 10px 10px 0 0 #163a5a;
  position: relative;
  z-index: 1;
}

.bottomform_section.cta_sec p {
  font-size: 14px;
}

.bottomform_section.cta_sec h4 {
  color: #fff;
}

.bottomform_section.cta_sec .click_btn {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.3rem;
}

.click_btn .theme-btn {
  font-size: 14px;
}

.bullet.local_list {
  display: grid;
  grid-template-columns: auto auto;
}

.impactList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  list-style: none;
  margin-top: 2rem;
  margin-left: 0;
}

.impactList li {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #0f1729;
  background-color: #fff;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
  border: 2px solid #e1e7ef;
  border-radius: 12px;
  animation: fade-in 0.6s ease-out;
  position: relative;
}

.impactList li::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
  opacity: 0;
  background-image: linear-gradient(135deg,
      hsla(221, 83%, 53%, 0.1) 0%,
      hsla(189, 94%, 43%, 0.1) 100%);
  top: 0;
  left: 0;
}

.impactBox {
  padding: 1rem;
  position: relative;
  z-index: 10;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-align: start;
}

.impactBox h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.impactBox p {
  /* color: #65758bfc; */
  line-height: 1.4;
  margin-bottom: 0;
  font-size: 14px;
}

.impactBox .icon {
  height: 3rem;
  width: 3rem;
  display: inline-flex;
  margin-bottom: 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #2463eb1a;
  color: #2463eb;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
  flex: 0 0 3rem;
}

.impactBox .icon svg {
  width: 1.4rem;
  height: 1.4rem;
  color: inherit;
}

.impactList li:hover {
  box-shadow: 0 0 15px rgba(36, 99, 235, 0.5);
  border-color: #2463eb80;
}

.impactList li:hover .icon {
  background-color: #2463eb;
  color: #f8fafc;
  transform: scale(1.1);
}

.impactList li:hover .icon svg {
  color: #f8fafc;
}

.impactList li:hover::after {
  opacity: 1;
}

.subscriptionPriceBox.pricing_sub {
  padding: 15px 0 0;
}

.bullet.local_list .flex_wrap p {
  margin-bottom: 0;
  font-size: 14px;
}

.bullet.local_list .flex_wrap p.prim_flex {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: bold;
}

.bullet.local_list {
  margin: 0;
  padding: 0;
  gap: 1rem;
  list-style: none;
}

.bullet.local_list li {
  background-color: #007bff63;
  padding: 10px 15px;
  border-radius: 10px;
}

.member_tab_list .title-wrap h2 {
  font-size: 34px;
  margin-bottom: 4rem;
  margin-top: 2rem;
}

.member_tab_list #myTab {
  justify-content: center;
}

.member_tab_list #myTab .nav-link {
  font-size: 18px;
  color: #000;
  border: none;
  box-shadow: none;
}

.member_tab_list #myTab .nav-item.show .nav-link,
.member_tab_list #myTab .nav-link.active {
  font-weight: bold;
  color: #007bff;
  border: none;
  box-shadow: none;

}

.member_tab_list #myTab .nav-link.active {
  border-bottom: 2px solid;
  border-radius: 0;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: unset;
  isolation: unset;
}

.member_tab_list .plan-header h3 {
  color: #1d2530;
}

.coverage-list-wrapper {
  border-radius: 12px;
  background-color: white;
  border: 1px solid #d5d9e1;
  padding: 20px 10px;
  display: flex;
  flex-wrap: wrap;

}

/* .coverage-list-wrapper .coverage-title {
  padding-top: 20px;
} */


.coverage-list-wrapper li .text {
  gap: 7px;

}

.coverage-list-wrapper .content-wrap {
  background-color: #f9fafb;
  padding: 8px 10px;
}

.coverage-list-wrapper .content-wrap .list-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
  flex: 0 0 8px;
  margin-right: 12px;
  margin-top: 8px;
}

.coverage-list-wrapper li .text h6 {
  font-size: 14px;
  color: #111827;
}

.coverage-list-wrapper li .text {
  width: 100%;
}

.coverage-list-wrapper li .text span {
  font-size: 13px;
}

.coverage-list-wrapper .button-wrap {
  justify-content: space-between;
  width: 100%;
  gap: 6px;
}

.coverage-list-wrapper .button-wrap span {
  /* padding: 0px 6px;
  border: 1px solid rgba(0, 0, 0, 0.301);
  background-color: rgba(255, 255, 255, 0.301);
  border-radius: 7px;*/
  margin-top: 6px;
  border: none;
  background-color: transparent;
  color: rgb(46, 118, 234, 1);
  font-family: 600;
}

.coverage-list-wrapper .button-wrap .primary {
  border: none;
  background-color: transparent;
  color: rgb(46, 118, 234, 1);
  padding: 0px 6px;
  border: 1px solid rgba(0, 0, 0, 0.301);
  background-color: rgba(255, 255, 255, 0.301);
  border-radius: 7px;
}

.profile-wrapper-1 h6 {
  font-size: 20px;
  font-weight: 600;
  color: hsl(215 25% 27%);
}

.profile-wrapper-1 .content-wrapper .image-wrapper {
  width: 100%;
  height: 100px;
  background-color: #00000021;
  margin-right: 7px;

}

.profile-wrapper-1 .content-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-wrapper-1 .name {
  margin-bottom: 10px;
}

.profile-wrapper-1 .text h6 {
  margin-bottom: 7px;
  font-size: 18px;
}

.profile-wrapper-1 .text p {
  font-size: 13px;
  line-height: 17px;
}

.profile-wrapper-1 .button-wrapper {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.profile-wrapper-1 {
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #d5d9e1;
  background-color: #fff;
}

.profile-wrapper-1 .button-wrapper span a {
  width: 90px;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e5e7eb;
  transition: 0.3s;
}

.profile-wrapper-1 .button-wrapper span:nth-child(2) a {
  background-color: #be123c;
  color: #fff;
}

.profile-wrapper-1 .button-wrapper span a:hover {
  background-color: #0073aa;
  color: #fff;
}


@media (min-width: 600px) {
  .coverage-list-wrapper .col-md-6 {
    margin: 0 10px;
  }
}