@import url("https://fonts.googleapis.com/css?family=Mulish:400,600,700&display=swap");

html {
  --primary-color: #c2272d;
  --secondary-color: #131e38;
  --black-color: #333;
  --white-color: #fff;
}

body {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--black-color);
  overflow-x: hidden;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  text-rendering: optimizeLegibility;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  --text-opacity: 1;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -ms-touch-action: auto;
  touch-action: auto;
  position: relative;
}

@media (max-width: 991px) {
  body {
    font-size: 15px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  padding: 0;
  margin: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: var(--primary-color);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none;
  outline: none;
  border: none;
}

a:hover,
a:active,
a:focus {
  color: var(--secondary-color);
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  padding-left: 20px;
}

button {
  border: none;
}

button:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/* ---------------------------- Theme Heading CSS Start --------------------------- */
.main-heading {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.main-heading h2 {
  font-size: 28px;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  padding-bottom: 14px;
}

.main-heading h2::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  height: 3px;
  width: 100px;
  background-color: var(--primary-color);
  display: block;
  z-index: -1;
}

@media (max-width: 767px) {
  .main-heading h2 {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .main-heading h2 {
    font-size: 19px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .main-heading h2 {
    font-size: 24px;
  }
}

.main-heading p {
  margin-bottom: 0;
}

.main-heading.heading-black h2 {
  color: var(--secondary-color);
}

.main-heading.heading-black p {
  color: var(--black-color);
}

.main-heading.heading-white h2 {
  color: var(--white-color);
}

.main-heading.heading-white h2::after {
  background-color: var(--white-color);
}

.main-heading.heading-white p {
  color: var(--white-color);
}

/* ---------------------------- Theme Heading CSS End --------------------------- */
/* ------------------------------------- Page Banner CSS Start  ---------------------------------*/
.page-banner-section {
  padding-top: 125px !important;
  padding: 125px 0 90px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  text-align: left;
}

.page-banner-section::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  z-index: -1;
}

@media (max-width: 767px) {
  .page-banner-section {
    padding-top: 100px !important;
    padding: 100px 0 50px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-banner-section {
    padding-top: 100px !important;
    padding: 100px 0 50px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-banner-section {
    padding-top: 125px !important;
    padding: 125px 0 90px;
  }
}

.page-banner-section h1 {
  font-size: 32px;
  color: var(--white-color);
}

@media (max-width: 767px) {
  .page-banner-section h1 {
    font-size: 24px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-banner-section h1 {
    font-size: 26px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-banner-section h1 {
    font-size: 28px;
  }
}

/* ------------------------------------- Page Banner CSS End  ---------------------------------*/
/*---------------------------- Header CSS Start ------------------------- */
.site-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 11;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 991px) {
  .site-header {
    position: fixed;
    padding: 10px 0px;
    background-color: var(--white-color);
  }
}

@media (max-width: 991px) {
  .site-header .container {
    max-width: 100%;
    padding: 0;
  }
}

.site-header .navbar-brand {
  margin: 0;
  padding: 0;
}

.site-header .navbar-brand img {
  max-width: 175px;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.site-header .navbar-brand img.white-logo {
  display: block;
}

@media (max-width: 991px) {
  .site-header .navbar-brand img.white-logo {
    display: none;
  }
}

.site-header .navbar-brand img.colored-logo {
  display: none;
}

@media (max-width: 991px) {
  .site-header .navbar-brand img.colored-logo {
    display: block;
  }
}

@media (max-width: 991px) {
  .site-header .navbar-brand img {
    max-width: 150px;
  }
}

.site-header .navbar {
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
}

@media (max-width: 991px) {
  .site-header .navbar {
    padding: 0 15px;
  }
}

.site-header .navbar .navbar-nav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 991px) {
  .site-header .navbar .navbar-nav {
    margin: 0;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
}

.site-header .navbar .navbar-nav li {
  display: inline-block;
}

.site-header .navbar .navbar-nav li.dropdown:nth-last-child(2) .dropdown-menu {
  left: auto;
  right: 0;
}

.site-header .navbar .navbar-nav li.dropdown.show a::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

@media (max-width: 767px) {
  .site-header .navbar .navbar-nav li {
    display: block;
  }
}

.site-header .navbar .navbar-nav li a {
  text-transform: uppercase;
  padding: 15px;
  font-size: 15px;
  line-height: 37px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white-color);
  display: block;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.site-header .navbar .navbar-nav li a:hover,
.site-header .navbar .navbar-nav li a:active,
.site-header .navbar .navbar-nav li a:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--white-color);
  background: 0 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 991px) {
  .site-header .navbar .navbar-nav li a {
    color: var(--black-color);
    font-size: 16px;
    line-height: 26px !important;
    border-top: 1px solid #eee;
  }

  .site-header .navbar .navbar-nav li a:hover,
  .site-header .navbar .navbar-nav li a:active,
  .site-header .navbar .navbar-nav li a:focus {
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--primary-color);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .site-header .navbar .navbar-nav li a {
    font-size: 13px;
    padding: 10px 7px;
  }
}

.site-header .navbar .navbar-nav li:last-child>a {
  background-color: var(--white-color);
  color: var(--primary-color) !important;
  border-radius: 35px;
  padding: 7px 25px;
  line-height: 25px;
}

@media (max-width: 991px) {
  .site-header .navbar .navbar-nav li:last-child>a {
    border-radius: 0;
    padding: 15px;
    line-height: 35px;
  }
}

@media (max-width: 991px) {
  .site-header .navbar .navbar-nav li:last-child>a {
    border-bottom: 1px solid #eee;
  }
}

@media (min-width: 992px) {
  .site-header .navbar .navbar-nav li.dropdown:hover .dropdown-menu {
    display: block;
  }
}

.site-header .navbar .navbar-nav li .dropdown-menu {
  border: none;
  border-top: none;
  border-bottom: none;
  top: 55px;
  background-color: var(--white-color);
  border-radius: 5px;
  padding: 0;
  min-width: 13rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-top: 0px;
  -webkit-box-shadow: 9px 11px 29px rgba(125, 138, 152, 0.15);
  box-shadow: 9px 11px 29px rgba(125, 138, 152, 0.15);
}

@media (max-width: 991px) {
  .site-header .navbar .navbar-nav li .dropdown-menu {
    margin: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .site-header .navbar .navbar-nav li .dropdown-menu {
    left: auto;
    right: 0;
  }
}

.site-header .navbar .navbar-nav li ul li {
  display: block;
}

.site-header .navbar .navbar-nav li ul li a {
  padding: 15px;
  font-size: 14px;
  line-height: 1;
  background: 0 0;
  text-transform: capitalize;
  color: var(--black-color);
  border-bottom: 1px dotted #ddd;
  display: block;
  text-align: left;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.site-header .navbar .navbar-nav li ul li a:hover {
  color: var(--primary-color);
  background: 0 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 992px) {
  .site-header .navbar .navbar-nav li ul li a {
    text-align: center;
  }
}

.site-header .navbar .navbar-nav li ul li:last-child>a {
  border-bottom: 0px dotted var(--white-color);
}

.site-header .navbar .navbar-toggler {
  background: transparent;
  border-radius: 0;
  outline: none;
  padding: 0;
  margin: 0;
}

.site-header .navbar .navbar-toggler:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.site-header .navbar .navbar-toggler .icon-bar {
  width: 22px;
  height: 2px;
  background-color: var(--primary-color);
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin: 4px 0;
}

.site-header .navbar .navbar-toggler .top-bar {
  -webkit-transform: rotate(-42deg);
  transform: rotate(-42deg);
  -webkit-transform-origin: 90% 90%;
  transform-origin: 90% 90%;
}

.site-header .navbar .navbar-toggler .middle-bar {
  opacity: 0;
}

.site-header .navbar .navbar-toggler .bottom-bar {
  -webkit-transform: rotate(42deg);
  transform: rotate(42deg);
  -webkit-transform-origin: 90% 10%;
  transform-origin: 90% 10%;
}

.site-header .navbar .navbar-toggler.collapsed .top-bar {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.site-header .navbar .navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}

.site-header .navbar .navbar-toggler.collapsed .bottom-bar {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.site-header.site-header-active {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--white-color);
  -webkit-box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.07);
  box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.07);
  -webkit-animation: smoothScroll 1s forwards;
  animation: smoothScroll 1s forwards;
}

.site-header.site-header-active .navbar-brand img.white-logo {
  display: none;
}

.site-header.site-header-active .navbar-brand img.colored-logo {
  display: block;
}

.site-header.site-header-active .navbar .navbar-nav li a {
  color: var(--black-color);
}

.site-header.site-header-active .navbar .navbar-nav li:last-child>a {
  background-color: var(--primary-color);
  color: var(--white-color) !important;
}

@-webkit-keyframes smoothScroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0) translateY(-35px);
    transform: translate3d(0, 0, 0) translateY(-35px);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0) translateY(0px);
    transform: translate3d(0, 0, 0) translateY(0px);
  }
}

@keyframes smoothScroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0) translateY(-35px);
    transform: translate3d(0, 0, 0) translateY(-35px);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0) translateY(0px);
    transform: translate3d(0, 0, 0) translateY(0px);
  }
}

.site-header .navbar-collapse {
  position: relative;
}

@media (max-width: 991px) {
  .site-header .navbar-collapse {
    position: absolute;
    top: 43px;
    left: -100%;
    padding: 0;
    width: 100%;
    text-align: center;
    overflow-y: scroll;
    height: calc(100vh - 43px);
    display: block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    overflow-y: scroll;
  }

  .site-header .navbar-collapse.collapsing {
    height: calc(100vh - 43px);
    margin-right: 50%;
    display: block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }

  .site-header .navbar-collapse.show {
    left: 0;
    background: var(--white-color);
  }
}

/*---------------------------- Header CSS End ------------------------- */
.contact-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0;
}

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

.contact-info ul li a {
  font-size: 12px;
  font-weight: 500;
  display: block;
  color: var(--black-color);
  margin-right: 15px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contact-info ul li a:hover {
  text-decoration: underline;
}

.contact-info ul li a img {
  margin-right: 5px;
  max-width: 14px;
}

.contact-info ul li:last-child>a {
  margin-right: 0;
}

.contact-social ul {
  margin: 0;
  padding: 0;
  font-size: 0;
}

.contact-social ul li {
  display: inline-block;
  margin-right: 8px;
}

.contact-social ul li a {
  display: block;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contact-social ul li a img {
  max-width: 24px;
}

.site-footer {
  position: relative;
  z-index: 1;
}

.site-footer .pre-footer {
  padding: 50px 0;
  background-color: var(--secondary-color);
}

@media (max-width: 767px) {
  .site-footer .pre-footer .col {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 50%;
  }

  .site-footer .pre-footer .col:last-child {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .site-footer .pre-footer .col {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 33.33%;
  }
}

@media (max-width: 991px) {
  .site-footer .footer-menu {
    margin: 15px 0;
  }
}

.site-footer .footer-menu .widget-title {
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  z-index: 1;
  position: relative;
}

.site-footer .footer-menu ul {
  padding-left: 15px;
}

@media (max-width: 767px) {
  .site-footer .footer-menu ul {
    padding-left: 12px;
  }
}

.site-footer .footer-menu ul li {
  list-style: square;
  color: var(--white-color);
  padding: 3px 0;
}

.site-footer .footer-menu ul li:hover {
  color: var(--white-color);
}

.site-footer .footer-menu ul li a {
  font-size: 14px;
  position: relative;
  color: var(--white-color);
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 400;
}

@media (max-width: 991px) {
  .site-footer .footer-menu ul li a {
    font-size: 13px;
    text-transform: capitalize;
    padding: 3px 0;
    letter-spacing: -0.5px;
  }
}

.site-footer .footer-menu ul li a::before {
  position: absolute;
  content: '';
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--white-color);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: inline-block;
}

.site-footer .footer-menu ul li a:hover {
  opacity: 0.75;
  text-decoration: none;
}

.site-footer .footer-menu ul li a:hover::before {
  width: 100%;
}

.site-footer .footer-menu .contact-info ul {
  padding: 0;
}

.site-footer .footer-menu .contact-info ul li {
  display: block;
}

.site-footer .footer-menu .contact-info ul li a {
  margin-right: 0;
}

.site-footer .footer-menu .contact-social {
  margin-top: 15px;
}

.site-footer .footer-menu .contact-social ul {
  padding: 0;
}

.site-footer .footer-menu .contact-social ul li a::before {
  height: 0;
}

.site-footer .copyright-footer {
  padding: 25px 0;
  background-color: #0e172a;
  text-align: center;
}

.site-footer .copyright-footer p {
  margin-bottom: 0;
  color: var(--white-color);
  font-size: 14px;
  line-height: 1.5;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.site-footer .copyright-footer p a {
  color: var(--primary-color);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.site-footer .copyright-footer p:hover a {
  text-decoration: underline;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.theme-btn a {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 20px;
  min-width: 165px;
  border-radius: 30px;
  text-transform: capitalize;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .theme-btn a {
    padding: 8px 15px;
    min-width: 125px;
    font-size: 14px;
  }
}

.theme-btn.primary-btn a {
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
}

.theme-btn.primary-btn a:hover,
.theme-btn.primary-btn a:focus,
.theme-btn.primary-btn a:active {
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
}

.theme-btn.secondary-btn a {
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
}

.theme-btn.secondary-btn a:hover,
.theme-btn.secondary-btn a:focus,
.theme-btn.secondary-btn a:active {
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
}

.theme-btn.white-btn a {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background-color: var(--white-color);
}

.theme-btn.white-btn a:hover,
.theme-btn.white-btn a:focus,
.theme-btn.white-btn a:active {
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  background-color: var(--white-color);
}

.blog-box-wrapper {
  margin-top: 35px;
  position: relative;
  overflow: hidden;
}

.blog-box-wrapper .blog-box-linking {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  font-size: 0;
  cursor: pointer;
}

.blog-box-wrapper .blog-box-image {
  overflow: hidden;
  border-radius: 5px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}

.blog-box-wrapper .blog-box-image img {
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.blog-box-wrapper .blog-box-content {
  position: relative;
  padding: 15px 0 0;
}

.blog-box-wrapper .blog-box-content .blog-box-metas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-box-wrapper .blog-box-content .blog-box-metas span {
  font-size: 12px;
  font-weight: 700;
  margin-right: 10px;
  color: #a4b5c2;
}

.blog-box-wrapper .blog-box-content .blog-box-metas span img {
  margin-right: 3px;
  max-width: 12px;
}

.blog-box-wrapper .blog-box-content .blog-box-metas span a {
  display: inline-block;
  color: #a4b5c2;
  position: relative;
  z-index: 3;
}

.blog-box-wrapper .blog-box-content .blog-box-title {
  font-size: 20px;
  color: var(--black-color);
  margin: 5px 0 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .blog-box-wrapper .blog-box-content .blog-box-title {
    font-size: 17px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .blog-box-wrapper .blog-box-content .blog-box-title {
    font-size: 18px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-box-wrapper .blog-box-content .blog-box-title {
    font-size: 19px;
  }
}

.blog-box-wrapper .blog-box-content p {
  font-size: 15px;
  color: var(--black-color);
  margin-bottom: 0;
}

.blog-box-wrapper:hover .blog-box-image img {
  -webkit-transform: scale3d(1.05);
  transform: scale3d(1.05);
}

.blog-box-wrapper:hover .blog-box-content .blog-box-title {
  color: var(--primary-color);
}

.singlePage-heading {
    padding-top: 30px;
    padding-bottom: 30px
}

.singlePage-heading h1 {
    font-size: 28px;
    line-height: 1.5;
    padding-bottom: 5px;
    margin-bottom: 0;
    color: var(--secondary-color);
    position: relative;
    text-transform: capitalize
}

.singlePage-heading h1::after {
    content: '';
    display: block;
    left: 0;
    bottom: 0;
    position: absolute;
    background-color: var(--primary-color);
    width: 60px;
    height: 5px
}

.singlePage-postDate p {
    margin-bottom: 5px;
    text-align: center;
    padding: 5px 20px;
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 10px
}

.singlePage-blogContent h2,
.singlePage-blogContent h3,
.singlePage-blogContent h4,
.singlePage-blogContent h5,
.singlePage-blogContent h6 {
    margin-bottom: 5px;
    color: var(--black-color);
}

.singlePage-blogContent h2 {
    font-size: 20px !important
}

.singlePage-blogContent h3 {
    font-size: 18px !important
}

.singlePage-blogContent h4 {
    font-size: 16px !important
}

.singlePage-blogContent h5 {
    font-size: 13px !important
}

.singlePage-blogContent h6 {
    font-size: 11px !important
}

.singlePage-blogContent .table-responsive {
    margin-bottom: 25px
}

.singlePage-blogContent table {
    width: 100%;
    color: var(--black-color)
}

.singlePage-blogContent table th,
.singlePage-blogContent table td {
    padding: 8px 10px
}

.singlePage-blogContent table tr:first-child th {
    border-bottom: 4px solid var(--primary-color)
}

.singlePage-blogContent p {
    margin-bottom: 5px;
    word-break: break-word;
    overflow-wrap: break-word
}

.singlePage-blogContent p:last-child {
    margin-bottom: 25px;
}

.singlePage-blogContent img {
    margin-bottom: 25px;
    max-width: 100%
}

.singlePage-blogContent ul,
.singlePage-blogContent ol {
    margin-bottom: 10px;
    padding-left: 25px
}

.singlePage-blogContent ul li {
    color: var(--black-color);
    list-style: disc
}

.singlePage-blogContent ol li {
    color: var(--black-color);
    list-style: decimal!important;
}

.singlePage-leftSide {
    padding-bottom: 50px
}

.singlePage-blogImg {
    position: relative;
    margin-bottom: 25px
}

.singlePage-blogImg img {
    width: 100%;
    position: relative
}

.blogSidebar-fixed {
    top: 15px !important;
    z-index: 5 !important
}

.blogSidebar-fixed p.blogSidebar-heading {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px
}

.blogSidebar-fixed p.blogSidebar-heading::after {
    content: '';
    display: block;
    left: 0;
    bottom: 0;
    position: absolute;
    background-color: var(--primary-color);
    width: 60px;
    height: 2px
}

.blogSidebar-categoriesBox {
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px
}

@media (max-width:767px) {
    .blogSidebar-categoriesBox {
        margin-top: 30px
    }
}

.blogSidebar-categoriesBox ul {
    margin-top: 15px;
    list-style: square
}

.blogSidebar-categoriesBox ul li {
    margin: 4px 0 10px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 5px;
    color: var(--secondary-color)
}

.blogSidebar-categoriesBox ul li:last-child {
    border-bottom: 0 solid #f1f1f1
}

.blogSidebar-categoriesBox ul li a {
    display: block;
    color: var(--secondary-color)
}

.blogSidebar-categoriesBox ul li a span {
    float: right
}

.scrollToTop {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  bottom: 20px;
  display: block;
  height: 32px;
  width: 32px;
  opacity: 1;
  position: fixed;
  right: 20px;
  line-height: 30px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  z-index: 100;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.scrollToTop:hover,
.scrollToTop:focus,
.scrollToTop:active {
  background-color: var(--secondary-color);
  color: var(--white-color);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.home-banner-section {
  position: relative;
  overflow: hidden;
  padding: 125px 0 100px;
}

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

@media (min-width: 992px) and (max-width: 1199px) {
  .home-banner-section {
    padding: 100px 0 50px;
  }
}

@media (min-width: 1200px) and (max-width: 1449px) {
  .home-banner-section {
    padding: 125px 0 75px;
  }
}

.home-banner-section::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-0.83%, #c2272d), to(#fbf8f0));
  background: linear-gradient(180deg, #c2272d -0.83%, #fbf8f0);
  display: block;
  z-index: -1;
}

.home-banner-section h1 {
  color: var(--white-color);
  font-size: 48px;
  line-height: 1.05;
}

@media (max-width: 767px) {
  .home-banner-section h1 {
    font-size: 22px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .home-banner-section h1 {
    font-size: 28px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .home-banner-section h1 {
    font-size: 32px;
  }
}

@media (min-width: 1200px) and (max-width: 1449px) {
  .home-banner-section h1 {
    font-size: 40px;
  }
}

.home-banner-section h2 {
  color: var(--white-color);
  font-size: 28px;
  line-height: 1.25;
  margin: 15px 0;
}

@media (max-width: 767px) {
  .home-banner-section h2 {
    font-size: 18px;
    margin: 10px 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .home-banner-section h2 {
    font-size: 19px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .home-banner-section h2 {
    font-size: 22px;
  }
}

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

@media (max-width: 767px) {
  .home-banner-section p {
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .home-banner-section p {
    font-size: 16px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .home-banner-section p {
    font-size: 18px;
  }
}

.home-banner-section .theme-btn {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .home-banner-section .home-banner-img {
    margin-top: 30px;
  }
}

.consultation-section {
  padding-top: 100px !important;
  padding: 100px 0;
  position: relative;
  background-position: center top;
  background-size: cover;
  z-index: 1;
}

@media (max-width: 767px) {
  .consultation-section {
    padding-top: 40px !important;
    padding: 40px 0;
  }
}

.consultation-section::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(45, 66, 106, 0.75)), to(rgba(173, 216, 230, 0.6)));
  background: linear-gradient(to top, rgba(45, 66, 106, 0.75), rgba(173, 216, 230, 0.6));
  opacity: 0.5;
  display: block;
  z-index: -1;
}

.consultation-section .main-heading h2::after {
  right: unset;
}

.consultation-section .main-heading p {
  max-width: 475px;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 25px;
}

.consultation-section .contact-form-box {
  background: var(--white-color);
  border-radius: 40px;
  padding: 40px;
  -webkit-box-shadow: 0px 0px 30px 0px #0000001A;
  box-shadow: 0px 0px 30px 0px #0000001A;
  margin-top: -175px;
}

@media (max-width: 767px) {
  .consultation-section .contact-form-box {
    margin-top: 30px;
    padding: 20px;
  }
}

.consultation-section .contact-form-box h3 {
  font-size: 24px;
}

@media (max-width: 767px) {
  .consultation-section .contact-form-box h3 {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .consultation-section .contact-form-box h3 {
    font-size: 19px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .consultation-section .contact-form-box h3 {
    font-size: 22px;
  }
}

.consultation-section .contact-form-box h3::after {
  width: 50px;
  background-color: var(--secondary-color);
}

.consultation-section .contact-form-box .contact-form-wrapper {
  margin-top: 25px;
}

.home-blog-section {
  background-color: var(--white-color);
  padding-top: 75px !important;
  padding: 75px 0 125px;
  position: relative;
}

@media (max-width: 767px) {
  .home-blog-section {
    padding-top: 40px !important;
    padding: 40px 0;
  }
}

.home-blog-section .nav-tabs {
  border-bottom: 0px solid #dee2e6;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.home-blog-section .nav-tabs .nav-link {
  margin-bottom: 0px;
  background: #f9f9f9;
  border: 1px solid transparent;
  border-radius: 20px;
  min-width: 110px;
  margin: 0 10px;
  font-weight: 700;
  color: var(--black-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
}

@media (max-width: 767px) {
  .home-blog-section .nav-tabs .nav-link {
    min-width: 80px;
    margin: 0 5px;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: capitalize;
    font-size: 14px;
    padding: 8px 5px;
  }
}

.home-blog-section .nav-tabs .nav-link:hover,
.home-blog-section .nav-tabs .nav-link:focus {
  color: var(--black-color);
  border: 1px solid transparent;
  background-color: #f9f9f9;
  -webkit-box-shadow: 0 0.313rem 1rem 0.188rem rgba(13, 18, 30, 0.11);
  box-shadow: 0 0.313rem 1rem 0.188rem rgba(13, 18, 30, 0.11);
}

.home-blog-section .nav-tabs .nav-link.active {
  -webkit-box-shadow: 0 0.313rem 1rem 0.188rem rgba(13, 18, 30, 0.11);
  box-shadow: 0 0.313rem 1rem 0.188rem rgba(13, 18, 30, 0.11);
  color: var(--white-color);
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.about-us-section {
  background-color: var(--white-color);
  padding-top: 75px !important;
  padding: 75px 0;
  position: relative;
}

@media (max-width: 767px) {
  .about-us-section {
    padding-top: 50px !important;
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .about-us-section .main-heading {
    margin-top: 30px;
  }
}

.about-us-section .main-heading h2::after {
  right: unset;
}

.about-us-section ul {
  margin-top: 15px;
}

.about-us-section ul li {
  position: relative;
  z-index: 1;
  padding: 3px 0;
  list-style: none;
}

.about-us-section ul li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 8px;
  width: 15px;
  height: 15px;
  display: block;
  background-image: url("../images/checkmark.svg");
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.about-us-section .about-us-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.about-us-section .about-us-image .image-box {
  max-width: 300px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.about-us-section .about-us-image .image-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

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

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

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

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.about-us-section .about-us-image .image-box:hover::before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
}

.about-us-section .about-us-image .image-box img {
  overflow: hidden;
}

.about-us-section .about-us-image .image-box.box1 {
  margin-right: 15px;
}

.about-us-section .about-us-image .image-box.box1 img {
  border-top-right-radius: 100px;
  border-bottom-left-radius: 200px;
  border-bottom-right-radius: 200px;
}

.about-us-section .about-us-image .image-box.box2 img {
  border-top-left-radius: 50px;
  border-bottom-right-radius: 150px;
}

@media (max-width: 767px) {
  .about-us-section .about-us-image .image-box.box2 img {
    border-bottom-right-radius: 50px;
  }
}

.about-us-section .about-us-image .counter-box {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 40px;
}

@media (max-width: 767px) {
  .about-us-section .about-us-image .counter-box {
    padding-top: 15px;
  }
}

.about-us-section .about-us-image .counter-box p {
  margin: 0;
}

.about-us-section .about-us-image .counter-box p.counter-counting {
  font-weight: 700;
  font-size: 40px;
  color: var(--primary-color);
}

@media (max-width: 767px) {
  .about-us-section .about-us-image .counter-box p.counter-counting {
    font-size: 24px;
  }
}

.about-us-section .about-us-image .counter-box p.counter-text {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 600;
}

.about-us-section .about-us-image .counter-box::after {
  content: '';
  position: absolute;
  left: -20px;
  top: 8px;
  max-width: 300px;
  width: 100%;
  height: 150px;
  display: block;
  background-image: url("../images/about-map.png");
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.about-us-section .about-profile-demo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-us-section .about-profile-demo .about-profile-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 15px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--white-color);
  -webkit-box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.07);
  box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.07);
  width: 75px;
  height: 60px;
  display: block;
}

.about-us-section .about-profile-demo .about-profile-img img {
  max-width: 75px;
}

.about-us-section .about-profile-demo .about-profile-content {
  width: 100%;
}

.about-us-section .about-profile-demo .about-profile-content h3 {
  font-size: 20px;
  color: var(--secondary-color);
}

.about-us-section .about-profile-demo .about-profile-content p {
  font-size: 15px;
  color: var(--black-color);
  margin: 0;
  margin-top: 5px;
}

.our-service-section {
  background-color: #f8f8f0;
  position: relative;
  padding: 75px 0;
}

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

.our-service-section .main-heading h2 {
  font-size: 20px;
}

@media (max-width: 767px) {
  .our-service-section .main-heading h2 {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .our-service-section .main-heading h2 {
    font-size: 19px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .our-service-section .main-heading h2 {
    font-size: 22px;
  }
}

.our-service-section .main-heading h2::after {
  width: 50px;
  background-color: var(--secondary-color);
}

.our-service-section .service-box-wrapper {
  padding: 2.5rem;
  text-align: center;
  border-radius: 2.5rem;
  background-color: var(--white-color);
  -webkit-box-shadow: 4px 34px 20px -10px rgba(0, 0, 0, 0.06);
  box-shadow: 4px 34px 20px -10px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 991px) {
  .our-service-section .service-box-wrapper {
    padding: 15px;
    margin: 15px 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .our-service-section .service-box-wrapper {
    padding: 20px;
  }
}

.our-service-section .service-box-wrapper .service-box-image {
  margin: 0 auto;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  width: 110px;
  height: 110px;
  line-height: 108px;
  border-radius: 50%;
  -webkit-box-shadow: 4px 44px 40px -10px rgba(0, 0, 0, 0.08);
  box-shadow: 4px 44px 40px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid #eeeeee45;
}

.our-service-section .service-box-wrapper .service-box-image img {
  max-width: 60px;
}

.our-service-section .service-box-wrapper .service-box-link {
  margin-top: 5px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
}

.our-service-section .service-box-wrapper:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 4px 44px 40px -10px rgba(0, 0, 0, 0.08);
  box-shadow: 4px 44px 40px -10px rgba(0, 0, 0, 0.08);
}

.our-service-section .service-box-wrapper:hover h2 {
  color: var(--primary-color);
}

.our-service-section .service-box-wrapper:hover h2::after {
  background: var(--primary-color);
}

.why-choose-section {
  padding-top: 100px;
  padding-bottom: 40px;
  background-position: center top;
  background-size: cover;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .why-choose-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.why-choose-section::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(26, 37, 60, 0.9)), to(#0d0f0f));
  background: linear-gradient(to top, rgba(26, 37, 60, 0.9), #0d0f0f);
  opacity: 0.85;
  z-index: -1;
}

.why-choose-section .main-heading {
  margin-bottom: 20px;
  max-width: 575px;
  width: 100%;
}

.why-choose-section .main-heading h2::after {
  right: unset;
}

.why-choose-section ul {
  -webkit-column-count: 2;
  column-count: 2;
}

@media (max-width: 991px) {
  .why-choose-section ul {
    -webkit-column-count: 1;
    column-count: 1;
  }
}

.why-choose-section ul li {
  position: relative;
  z-index: 1;
  padding-bottom: 8px;
  color: var(--white-color);
}

.why-choose-section ul li::after {
  content: '';
  position: absolute;
  left: -20px;
  top: 8px;
  width: 15px;
  height: 15px;
  display: block;
  background-image: url("../images/checkmark.svg");
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.why-choose-section .why-choose-img {
  margin-bottom: -100px;
  border-bottom-left-radius: 300px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .why-choose-section .why-choose-img {
    margin-top: 40px;
  }
}

@media (max-width: 991px) {
  .why-choose-section .why-choose-img {
    border-radius: 10px;
  }
}

.why-choose-section .why-choose-img::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.why-choose-section .why-choose-img:hover::before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
}

.service-process-section {
  padding-top: 125px;
  padding-bottom: 75px;
  background-color: var(--secondary-color);
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .service-process-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-process-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.service-process-section .main-heading h2 {
  font-size: 20px;
}

@media (max-width: 767px) {
  .service-process-section .main-heading h2 {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-process-section .main-heading h2 {
    font-size: 19px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-process-section .main-heading h2 {
    font-size: 19px;
  }
}

.service-process-section .main-heading h2::after {
  width: 50px;
}

.service-process-section .service-process-wrapper {
  position: relative;
}

.service-process-section .service-process-wrapper.step-1::after {
  position: absolute;
  content: '';
  top: 30px;
  right: -60px;
  width: 100px;
  height: 50px;
  background: url("../images/process-arrow.svg") no-repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  background-position: center center;
  background-size: cover;
  z-index: 0;
}

@media (max-width: 767px) {
  .service-process-section .service-process-wrapper.step-1::after {
    width: 0;
    height: 0;
    top: 0;
    right: 0;
  }
}

.service-process-section .service-process-wrapper.step-2::after {
  position: absolute;
  content: '';
  top: 60px;
  right: -60px;
  width: 100px;
  height: 50px;
  background: url("../images/process-arrow.svg") no-repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  background-position: center center;
  background-size: cover;
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  z-index: 0;
}

@media (max-width: 767px) {
  .service-process-section .service-process-wrapper.step-2::after {
    width: 0;
    height: 0;
    top: 0;
    right: 0;
  }
}

@media (max-width: 767px) {
  .service-process-section .service-process-wrapper {
    margin: 15px 0;
  }
}

.service-process-section .service-process-wrapper .process-count {
  position: absolute;
  right: 80px;
  top: 0;
  height: 30px;
  width: 30px;
  display: block;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  z-index: 5;
  text-align: center;
  line-height: 28px;
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .service-process-section .service-process-wrapper .process-count {
    display: none;
  }
}

.service-process-section .service-process-wrapper .service-process-img {
  position: relative;
  width: 150px;
  height: 150px;
  line-height: 150px;
  background-color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);
  margin: 0 auto 30px auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 3;
}

@media (max-width: 767px) {
  .service-process-section .service-process-wrapper .service-process-img {
    width: 75px;
    height: 75px;
    line-height: 75px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-process-section .service-process-wrapper .service-process-img {
    width: 90px;
    height: 90px;
    line-height: 90px;
  }
}

.service-process-section .service-process-wrapper .service-process-img::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  inset: 15px;
  border-radius: 50%;
  background-color: var(--white-color);
  border: 1px dashed var(--primary-color);
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .service-process-section .service-process-wrapper .service-process-img::before {
    width: 60px;
    height: 60px;
    inset: 8px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-process-section .service-process-wrapper .service-process-img::before {
    width: 75px;
    height: 75px;
    inset: 8px;
  }
}

.service-process-section .service-process-wrapper .service-process-img img {
  max-width: 50px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .service-process-section .service-process-wrapper .service-process-img img {
    max-width: 35px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-process-section .service-process-wrapper .service-process-img img {
    max-width: 40px;
  }
}

.service-process-section .service-process-wrapper .service-process-img:hover::before {
  background-color: var(--primary-color);
}

.service-process-section .service-process-wrapper .service-process-img:hover img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-filter: invert(1);
  filter: invert(1);
}

.contact-form-wrapper {
  position: relative;
}

.contact-form-wrapper label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact-form-wrapper .form-group .form-control {
  height: 40px;
  padding: 0;
  padding-left: 15px;
  outline: 0;
}

.contact-form-wrapper .form-group .form-control:focus {
  border: 1px solid #ced4da;
}

.contact-form-wrapper .form-group select {
  width: 100%;
  height: 40px;
  background-color: var(--white-color);
  border: 1px solid #ced4da;
  border-radius: .25rem;
  padding: 0;
  padding-left: 15px;
  font-size: 1rem;
  font-weight: 400;
}

.contact-form-wrapper .form-group textarea.form-control {
  height: 100px;
}

.contact-form-wrapper .form-group:last-child {
  margin-bottom: 0;
}

.contact-form-wrapper .theme-btn {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 20px;
  min-width: 165px;
  border-radius: 30px;
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  text-transform: capitalize;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .contact-form-wrapper .theme-btn {
    padding: 8px 15px;
    min-width: 125px;
    font-size: 14px;
  }
}

.contact-form-wrapper .theme-btn:hover,
.contact-form-wrapper .theme-btn:focus,
.contact-form-wrapper .theme-btn:active {
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
}

.aboutus-section {
  position: relative;
  padding: 50px 0;
  padding-top: 50px !important;
}

@media (max-width: 767px) {
  .aboutus-section {
    padding: 30px 0;
    padding-top: 30px !important;
  }
}

.aboutus-section .aboutus-section-img {
  border-radius: 5px;
  overflow: hidden;
}

.aboutus-section .aboutus-section-img img {
  border-radius: 5px;
}

.aboutus-section .main-heading.heading-black h2 {
  font-size: 24px;
}

.aboutus-section .main-heading h2::after {
  right: unset;
}

.aboutus-section .main-heading .aboutus-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

.aboutus-section .main-heading .aboutus-btn .theme-btn {
  margin-right: 15px;
}

@media (max-width: 767px) {
  .aboutus-section .main-heading .aboutus-btn .theme-btn {
    margin-right: 5px;
  }
}

.aboutus-section .main-heading .aboutus-btn .theme-btn:last-child {
  margin-right: 0;
}

.aboutus-section .main-heading .aboutus-btn .theme-btn a {
  min-width: 180px;
}

@media (max-width: 767px) {
  .aboutus-section .main-heading .aboutus-btn .theme-btn a {
    min-width: 135px;
    padding: 7px 5px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .aboutus-section .main-heading .aboutus-btn .theme-btn a {
    min-width: 165px;
    padding: 7px 5px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
  }
}

.contact-page-section {
  padding: 75px 0;
  padding-top: 75px !important;
  position: relative;
}

.contact-page-section .contact-form-wrapper {
  position: relative;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 25px;
  border-radius: 10px;
  background-color: #f9f9f9;
  margin-top: 15px;
}

.contact-page-info-section {
  padding-bottom: 75px;
  padding-top: 0 !important;
  position: relative;
}

.contact-page-info-wrapper {
  border-top: 1px solid #eee;
  background-color: var(--white-color);
  padding: 30px 15px 25px;
  text-align: center;
  margin: 15px 0;
  -webkit-box-shadow: 0 3px 4px -1px rgba(0, 0, 0, 0.07);
  box-shadow: 0 3px 4px -1px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contact-page-info-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  height: 3px;
  width: 0;
  background-color: var(--primary-color);
  display: block;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contact-page-info-wrapper h2 {
  color: var(--black-color);
  font-size: 20px;
  letter-spacing: .5px;
}

.contact-page-info-wrapper p {
  line-height: 1.25;
  margin: 12px 0;
  margin-bottom: 12px !important;
  min-height: 45px;
}

.contact-page-info-wrapper p a {
  display: block;
  color: var(--black-color);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contact-page-info-wrapper .contact-info-img {
  text-align: center;
  width: 90px;
  height: 90px;
  line-height: 85px;
  position: relative;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  -webkit-animation: one-animated 10s infinite;
  animation: one-animated 10s infinite;
  overflow: hidden;
  background-color: var(--primary-color);
  display: block;
  margin: 0 auto !important;
  margin-bottom: 30px !important;
}

.contact-page-info-wrapper .contact-info-img img {
  max-width: 40px;
  width: 100%;
}

@-webkit-keyframes one-animated {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    -webkit-box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
  }

  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }

  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
    -webkit-box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.2);
    box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.2);
  }

  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }
}

@keyframes one-animated {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    -webkit-box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
  }

  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }

  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
    -webkit-box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.2);
    box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.2);
  }

  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }
}

.contact-page-info-wrapper .contact-page-info-btn a {
  font-size: 15px !important;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0 !important;
  background: var(--white-color) !important;
  border: 0 !important;
  color: var(--primary-color);
  text-transform: uppercase;
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contact-page-info-wrapper:hover {
  -webkit-box-shadow: 0 5px 7px -2px rgba(0, 0, 0, 0.07);
  box-shadow: 0 5px 7px -2px rgba(0, 0, 0, 0.07);
  background-color: #f9f9f9;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contact-page-info-wrapper:hover::after {
  width: 95%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contact-page-info-wrapper:hover .contact-page-info-btn a {
  background-color: #f9f9f9 !important;
  color: var(--black-color);
}

.client-map-section {
  position: relative;
}

.client-map-section iframe {
  width: 100%;
}

.client-map-section .vc_column_container>.vc_column-inner {
  padding: 0px !important;
}

.servicePage-section {
  padding: 75px 0;
  padding-top: 75px !important;
  background-color: var(--white-color);
  position: relative;
}

@media (max-width: 767px) {
  .servicePage-section {
    background-position: right bottom;
  }
}

.servicePage-section .main-heading {
  max-width: 100%;
  width: 100%;
}

.servicePage-section .main-heading h2::after {
  right: unset;
}

.servicePage-section .main-heading p {
  margin-bottom: 10px;
}

.servicePage-section .main-heading ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.servicePage-section .main-heading ul li {
  list-style: square;
  padding-bottom: 10px;
}

.servicePage-section p:last-child {
  margin-bottom: 0;
}

.team-section {
  padding: 50px 0;
  position: relative;
  background-color: #f9f9f9;
}

.team-wrapper-box {
  background-color: var(--white-color);
  box-shadow: 0 3px 4px 1px rgba(0, 0, 0, 0.07);
  text-align: center;
  border-radius: 5px;
  border: 1px solid #eee;
  border-bottom: 2px solid var(--primary-color);
  min-height: 575px;
}

@media (max-width: 767px) {
  .team-wrapper-box {
    min-height: auto;
  } 
}

.team-wrapper-box .team-wrapper-img {
  background-color: #f9f9f9;
}

.team-wrapper-box .team-wrapper-img img {
  max-width: 225px;
  width: 100%;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  height: 160px;
}

.team-wrapper-box .team-wrapper-content {
  padding: 15px 20px;
}

.team-wrapper-box h3 {
  color: var(--primary-color);
  font-size: 20px;
}

.team-wrapper-box h4 {
  color: var(--secondary-color);
  font-size: 14px;
  margin-top: 5px;
}

.team-wrapper-box p {
  color: var(--black-color);
  margin-bottom: 0;
  font-size: 14px;
  margin-top: 10px;
}