/* Google fonts */
@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");

:root {
  --accent-indigo-100: rgba(75, 0, 130, 0.1);
  --accent-indigo-200: rgba(75, 0, 130, 0.2);
  --accent-indigo-300: rgba(75, 0, 130, 0.3);

  --accent-cyan-100: rgba(0, 128, 128, 0.1);
  --accent-cyan-200: rgba(0, 128, 128, 0.2);
  --accent-cyan-300: rgba(0, 128, 128, 0.3);

  --accent-primary-bg: rgb(44, 86, 156);
  --accent-primary-bg-100: rgba(44, 86, 156, 0.1);
  --accent-primary-bg-200: rgba(44, 86, 156, 0.2);
  --accent-primary-bg-300: rgba(44, 86, 156, 0.3);
  --accent-primary-bg-400: rgba(44, 86, 156, 0.4);
  --accent-primary-heading: rgb(29, 48, 102);
  --accent-primary-text: rgb(36, 27, 23);
  --accent-primary-text-white: rgb(246, 237, 233);

  --accent-secondary-bg: rgb(54, 96, 166);
  --accent-secondary-heading: rgb(29, 50, 95);
  --accent-secondary-text: rgb(41, 30, 27);
  --accent-secondary-text-white: rgb(255, 251, 240);

  font-size: 16px;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  border-radius: 0;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.15);
}

::-webkit-scrollbar-track:active {
  background-color: rgba(0, 0, 0, 0.25);
}

::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

::-webkit-scrollbar-button {
  background-color: rgba(0, 0, 0, 0.25);
}

::-webkit-scrollbar-thumb {
  background-color: transparent;
}

/* Basic style */
html,
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smooth: antialiased;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
  word-spacing: calc(1rem / 16);
  letter-spacing: calc(1rem / 28);
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: calc(2rem / 1.125);
  overflow-x: hidden !important;
}

p {
  font-size: calc(1rem / 1.025);
  font-weight: 400;
  line-height: calc(2rem / 1.05);
  color: var(--accent-primary-text);
}

h1 {
  font-size: 2.25rem;
  line-height: 2.25rem;
  margin: 0 0 calc(2.25rem / 2) 0;
}

h2 {
  font-size: 2.125rem;
  line-height: 2.125rem;
  margin: 0 0 calc(2.125rem / 2) 0;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin: 0 0 calc(1.5rem / 2) 0;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.25rem;
  margin: 0 0 calc(1.25rem / 2) 0;
}

h5 {
  font-size: 1.15rem;
  line-height: 1.15rem;
  margin: 0 0 calc(1.15rem / 2) 0;
}

h6 {
  font-size: 1.05rem;
  line-height: 1.05rem;
  margin: 0 0 calc(1.05rem / 2) 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  letter-spacing: calc(1rem / 32);
}

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

img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: transparent !important;
}

a {
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

span,
a,
a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

b {
  font-weight: 600;
  color: var(--accent-primary-heading);
}

/* Placeholder */
::-webkit-input-placeholder {
  color: var(--accent-secondary-text);
  font-size: 1rem;
  font-weight: 400;
}

:-moz-placeholder {
  color: var(--accent-secondary-text);
}

::-moz-placeholder {
  color: var(--accent-secondary-text);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--accent-secondary-text);
}

/* Important */
.ruby-container {
  padding: 0 4%;
}

.fg-white {
  color: var(--accent-secondary-text-white) !important;
}

.mx-unset {
  margin-left: unset;
  margin-right: unset;
}

.px-unset {
  padding-left: unset;
  padding-right: unset;
}

.o-hidden {
  overflow: hidden;
}

.position-re {
  position: relative;
}

.full-width {
  width: 100%;
}

.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-fixed {
  background-attachment: fixed;
}

.pattern {
  background-repeat: repeat;
  background-size: auto;
}

.bold {
  font-weight: 600;
}

.mt-15 {
  margin-top: 1rem !important;
}

.mt-30 {
  margin-top: 2rem !important;
}

.mt-90 {
  margin-top: 6rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-15 {
  margin-bottom: 1rem !important;
}

.mb-20 {
  margin-bottom: 1.25rem !important;
}

.mb-30 {
  margin-bottom: 2rem !important;
}

.mb-60 {
  margin-bottom: 4rem !important;
}

.mb-90 {
  margin-bottom: 6rem !important;
}

.mb-120 {
  margin-bottom: 8rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-15 {
  padding-top: 1rem !important;
}

.pt-30 {
  padding-top: 2rem !important;
}

.pt-60 {
  padding-top: 4rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-15 {
  padding-bottom: 1rem !important;
}

.pb-30 {
  padding-bottom: 2rem !important;
}

.pb-60 {
  padding-bottom: 4rem !important;
}

.no-padding {
  padding: 0 !important;
}

/* Preloader style */
.preloader-bg,
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--accent-primary-bg) !important;
  background: linear-gradient(90deg, var(--accent-primary-bg) 0%, var(--accent-secondary-bg) 66%) !important;
  z-index: 999999;
}

#preloader {
  display: table;
  table-layout: fixed;
}

#preloader-status {
  display: table-cell;
  vertical-align: middle;
}

.preloader-position {
  position: relative;
  margin: 0 auto;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.loader {
  position: relative;
  width: 110px;
  height: 110px;
  left: 50%;
  top: auto;
  margin-left: -44px;
  margin-top: 1px;
  -webkit-animation: rotate 1s infinite linear;
  -moz-animation: rotate 1s infinite linear;
  -ms-animation: rotate 1s infinite linear;
  -o-animation: rotate 1s infinite linear;
  animation: rotate 1s infinite linear;
  border: 2px solid var(--accent-primary-heading);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.loader span {
  position: absolute;
  width: 110px;
  height: 110px;
  top: -1px;
  left: -1px;
  border: 5px solid transparent;
  border-top: 5px solid var(--accent-secondary-text-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

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

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

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Owl-Theme custom style */
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0px;
  line-height: 0.7rem;
  display: block;
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 0 3px;
  border-radius: 50%;
  background: #ccc;
  border: 1px solid #ccc;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #2b2b2b;
  border: 1px solid #2b2b2b;
}

/*  Section style  */
.section-title {
  color: var(--accent-primary-heading);
  position: relative;
}

/*  Navbar style */
.navbar {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  background: var(--accent-primary-bg) !important;
  background: linear-gradient(90deg, var(--accent-primary-bg) 0%, var(--accent-secondary-bg) 66%) !important;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-toggler {
  padding: 0.25rem 0.5rem !important;
  color: var(--accent-primary-text-white) !important;
}

.nav-link {
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent-secondary-text-white);
  margin: calc(1rem / 4);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  letter-spacing: 0.5px;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--accent-primary-text-white) !important;
  transition: all 0.25s ease !important;
  border: none;
  outline: none;
}

.nav-scroll {
  position: fixed;
  top: -6rem;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(90px);
  transform: translateY(90px);
}

.logo {
  padding: calc((5rem - (15rem / 4.5)) / 2) 0;
  width: 15rem;
  text-align: center;
  color: var(--accent-primary-text-white);
}

.dropdown-item {
  position: relative;
}

.dropdown-menu {
  margin: unset !important;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  min-width: 12rem;
  width: auto;
  padding: calc(1rem / 4);
  border-radius: calc(1rem / 2);
  border: 0;
  background-color: var(--accent-secondary-text-white) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: fixed !important;
  top: unset !important;
  left: unset !important;
  overflow: auto;
  max-height: 22rem;
}

.dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.dropdown-menu .dropdown-item {
  padding: calc(1rem / 2);
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent-primary-text);
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: transparent;
}

.dropdown-menu .dropdown-item + .dropdown-item {
  border-top: calc(1rem / 16) solid rgba(55, 55, 55, 0.05);
}

.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:hover {
  color: var(--accent-secondary-bg);
}

.dropdown-menu .dropdown-item a {
  display: block;
}

/* Header style */
.header {
  overflow: hidden;
}

/* Slider style */
#slider-area {
  position: relative;
}

#slider-area:after {
  background: var(--accent-primary-bg);
  background: linear-gradient(90deg, var(--accent-primary-bg) 0%, var(--accent-secondary-bg) 66%);
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.slider-flex-container {
  display: flex;
  flex-direction: row-reverse;
  border-radius: calc(1rem / 8);
  background-color: rgba(0, 0, 0, 0.075);
  opacity: 1;
  background-image: radial-gradient(circle at center center, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.075)), repeating-radial-gradient(circle at 25% center, rgba(44, 86, 156, 0.075), rgba(44, 86, 156, 0.075), 2rem, transparent 4rem, transparent 3rem);
  background-blend-mode: multiply;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  .slider-flex-container {
    backdrop-filter: blur(calc(1rem / 8)) saturate(120%);
    -webkit-backdrop-filter: blur(calc(1rem / 8)) saturate(120%);
  }
}

.slider-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: calc((100% / 100) * 40);
}

.slider-image {
  margin: auto;
  width: 100% !important;
  height: auto !important;
  max-width: 20rem;
}

.slider-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: calc((100% / 100) * 60);
}

.slider-text {
  margin: auto;
  padding: 1rem;
}

.slider-text-heading {
  color: var(--accent-primary-text-white);
}

.slider-text-description {
  color: var(--accent-secondary-text-white);
}

.slider .owl-item,
.slider-fade .owl-item {
  height: calc(100vh - 5.25rem);
  position: relative;
}

.slider .item,
.slider-fade .item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}

/* owl-nav next and prev */
.owl-nav {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.owl-prev {
  float: left;
}

.owl-next {
  float: right;
}

.owl-theme .owl-nav [class*="owl-"] {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2rem;
  background: transparent;
  border-radius: 100%;
  color: #fff;
  font-size: 1rem;
  margin-right: calc(1rem / 2);
  cursor: pointer;
  border: calc(1rem / 16) solid rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease-in-out;
  transform: scale(1);
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  transform: scale(0.9);
  background: transparent;
  border: calc(1rem / 16) solid #fff;
  color: #fff;
}

/* About style */
.about {
  padding: 1.25rem 0;
}

.about .about-img {
  position: relative;
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

.about .about-img .img {
  position: relative;
  max-width: 24rem;
  margin: auto;
}

.about .about-img .img:after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  left: -1rem;
  background-color: var(--accent-primary-bg-100);
  width: calc(100% + 2rem);
  border-radius: 1rem;
}

.about .about-img .img img {
  border-radius: 1rem;
  padding: 1rem;
  position: relative;
  z-index: 2;
  background-color: var(--accent-primary-bg-100);
}

/* about list */
.about-list {
  position: relative;
  display: block;
}

.about-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-list li + li {
  margin-top: 1rem !important;
}

.about-list-icon {
  display: flex;
  align-items: center;
}

.about-list-icon span {
  margin: auto;
  font-size: 2rem;
  background-color: var(--accent-secondary-text-white);
  color: var(--accent-secondary-text);
  border: calc(1rem / 16) dashed var(--accent-secondary-text);
  padding: 0.625rem;
  border-radius: 2rem;
}

.about-list-text {
  margin-left: 1rem;
}

.about-list-text p {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  margin: 0;
  color: var(--accent-secondary-text);
  font-weight: 600;
}

/* signature */
.about-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  align-items: center;
  justify-content: center;
}

.image.about-signature {
  margin-right: 1.25rem;
  width: 5rem;
}

.about-name {
  color: var(--accent-primary-heading);
  font-size: 1.25rem;
}

.about-role {
  color: var(--accent-secondary-text);
  font-size: 0.875rem;
}

/* Service */

.service {
  overflow: hidden;
  padding: 1.25rem 0;
  position: relative;
  z-index: 1;
}

.service-card {
  margin: 0.5rem auto;
  max-width: 12rem;
  border: none;
  border-radius: calc(1rem / 8);
  transition: background-color 0.35s ease-in-out;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
}

.service-card-link {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem 0.25rem 0.5rem 0.25rem;
}

.service-icon {
  color: var(--accent-primary-bg-400);
  background-color: var(--accent-primary-bg-100);
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  font-size: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

.service-card:hover .service-icon,
.service-card.active .service-icon {
  background-color: var(--accent-secondary-bg);
  color: var(--accent-primary-text-white);
}

.service-title {
  margin: 1rem auto 0.5rem auto;
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  line-height: 1.1rem;
  color: var(--accent-secondary-text);
  transition: color 0.25s ease-in-out;
}

.service-card:hover .service-title::after {
  content: " Insurance";
}

.service-card:hover .service-title,
.service-card.active .service-title {
  color: var(--accent-primary-bg);
  font-weight: 600;
}

/* Gallery style */

.gallery {
  padding: 1.25rem 0;
}

.gallery-masonry-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: calc(1rem * 1.5);
}

.gallery-items .col-md-6:nth-child(2) {
  margin-top: 0;
}

.gallery-filter {
  width: 100%;
  padding-bottom: calc(1rem * 1.5);
  padding-left: 0;
  position: relative;
}

.gallery-filter li {
  margin-right: calc(1rem * 1);
  display: inline-block;
  font-size: calc(1rem * 1);
  cursor: pointer;
  color: var(--accent-secondary-text);
  font-weight: 400;
}

.gallery-filter li:last-child {
  margin-right: 0;
}

.gallery-filter li.active {
  color: var(--accent-secondary-heading);
  content: "";
  left: 0;
  bottom: calc((1rem / 4) * -1);
  border-bottom: calc(1rem / 16) solid;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.gallery-filter li:hover {
  color: var(--accent-secondary-heading);
}

.testimonial-text-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: calc(1rem / 8);
  width: 100%;
}

.excellence .testimonial-text-card {
  background-color: var(--accent-indigo-100);
  border: calc(1rem / 16) solid var(--accent-indigo-200);
}

.helpful .testimonial-text-card {
  background-color: var(--accent-cyan-100);
  border: calc(1rem / 16) solid var(--accent-cyan-200);
}

.testimonial-text {
  width: 100%;
  padding: 1rem 1rem 0.5rem 1rem;
  font-size: calc(1rem / 1.05);
  color: var(--accent-primary-text);
  text-align: left;
}

.testimonial-text::first-letter {
  padding-left: calc((1rem / 1.05) * 1.5);
}

.testimonial-text::before,
.testimonial-text::after {
  font-style: normal;
  font-size: 2rem;
  position: absolute;
  opacity: 0.75;
}

.testimonial-text::before {
  content: "\275D";
}

.testimonial-text::after {
  content: "\275E";
}

.excellence .testimonial-text::before,
.excellence .testimonial-text::after {
  color: var(--accent-indigo-300);
}

.helpful .testimonial-text::before,
.helpful .testimonial-text::after {
  color: var(--accent-cyan-300);
}

.testimonial-author {
  width: 100%;
  padding: 0.5rem 1rem 1rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-secondary-text);
  text-align: right;
}

/* footer style */

.footer {
  position: relative;
  background: var(--accent-primary-bg) !important;
  background: linear-gradient(90deg, var(--accent-primary-bg) 0%, var(--accent-secondary-bg) 66%) !important;
  margin-top: 8rem;
  padding-top: 1rem;
}

.footer:after {
  background: var(--accent-primary-bg) !important;
  background: linear-gradient(33deg, var(--accent-primary-bg) 0%, var(--accent-secondary-bg) 66%) !important;
  content: "";
  position: absolute;
  height: 18rem;
  left: 0;
  bottom: calc(100% - 0.125rem);
  width: 100%;
  opacity: 0.98;

  -webkit-clip-path: polygon(
    0% 100%,
    0% 75.5%,
    1.7% 77.33%,
    3.39% 79.14%,
    5.08% 80.91%,
    6.78% 82.62%,
    8.47% 84.25%,
    10.17% 85.79%,
    11.86% 87.21%,
    13.56% 88.51%,
    15.25% 89.66%,
    16.95% 90.66%,
    18.64% 91.49%,
    20.34% 92.14%,
    22.03% 92.62%,
    23.73% 92.9%,
    25.42% 93%,
    27.12% 92.9%,
    28.81% 92.62%,
    30.51% 92.14%,
    32.2% 91.49%,
    33.9% 90.66%,
    35.59% 89.66%,
    37.29% 88.51%,
    38.98% 87.21%,
    40.68% 85.79%,
    42.37% 84.25%,
    44.07% 82.62%,
    45.76% 80.91%,
    47.46% 79.14%,
    49.15% 77.33%,
    50.85% 75.5%,
    52.54% 73.67%,
    54.24% 71.86%,
    55.93% 70.09%,
    57.63% 68.38%,
    59.32% 66.75%,
    61.02% 65.21%,
    62.71% 63.79%,
    64.41% 62.5%,
    66.1% 61.34%,
    67.8% 60.34%,
    69.49% 59.51%,
    71.19% 58.86%,
    72.88% 58.38%,
    74.58% 58.1%,
    76.27% 58%,
    77.97% 58.1%,
    79.66% 58.38%,
    81.36% 58.86%,
    83.05% 59.51%,
    84.75% 60.34%,
    86.44% 61.34%,
    88.14% 62.5%,
    89.83% 63.79%,
    91.53% 65.21%,
    93.22% 66.75%,
    94.92% 68.38%,
    96.61% 70.09%,
    98.31% 71.86%,
    100% 73.67%,
    100% 100%
  );

  clip-path: polygon(
    0% 100%,
    0% 75.5%,
    1.7% 77.33%,
    3.39% 79.14%,
    5.08% 80.91%,
    6.78% 82.62%,
    8.47% 84.25%,
    10.17% 85.79%,
    11.86% 87.21%,
    13.56% 88.51%,
    15.25% 89.66%,
    16.95% 90.66%,
    18.64% 91.49%,
    20.34% 92.14%,
    22.03% 92.62%,
    23.73% 92.9%,
    25.42% 93%,
    27.12% 92.9%,
    28.81% 92.62%,
    30.51% 92.14%,
    32.2% 91.49%,
    33.9% 90.66%,
    35.59% 89.66%,
    37.29% 88.51%,
    38.98% 87.21%,
    40.68% 85.79%,
    42.37% 84.25%,
    44.07% 82.62%,
    45.76% 80.91%,
    47.46% 79.14%,
    49.15% 77.33%,
    50.85% 75.5%,
    52.54% 73.67%,
    54.24% 71.86%,
    55.93% 70.09%,
    57.63% 68.38%,
    59.32% 66.75%,
    61.02% 65.21%,
    62.71% 63.79%,
    64.41% 62.5%,
    66.1% 61.34%,
    67.8% 60.34%,
    69.49% 59.51%,
    71.19% 58.86%,
    72.88% 58.38%,
    74.58% 58.1%,
    76.27% 58%,
    77.97% 58.1%,
    79.66% 58.38%,
    81.36% 58.86%,
    83.05% 59.51%,
    84.75% 60.34%,
    86.44% 61.34%,
    88.14% 62.5%,
    89.83% 63.79%,
    91.53% 65.21%,
    93.22% 66.75%,
    94.92% 68.38%,
    96.61% 70.09%,
    98.31% 71.86%,
    100% 73.67%,
    100% 100%
  );

  z-index: -1;
}

.footer-banner-text {
  color: var(--accent-secondary-text-white);
  font-size: 0.875rem;
  padding: 0.5rem 0 1rem 0;
}

.footer-subheading {
  color: var(--accent-secondary-text-white);
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-title-icon {
  color: var(--accent-primary-text-white);
  padding: 0 0.25rem;
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 300 !important;
}

.footer-link {
  color: var(--accent-secondary-text-white);
  font-size: 1rem;
}

a.footer-link {
  opacity: 0.9;
}

a.footer-link:active,
a.footer-link:focus,
a.footer-link:hover {
  color: var(--accent-secondary-text-white);
  opacity: 1;
}

/* contact link style */
.contact-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  margin: 1rem auto 1rem 0;
}

.contact-link-icon {
  width: 52px;
  max-height: 52px;
  min-height: 52px;
  min-width: 52px;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.contact-link-icon img {
  background-color: rgba(0, 0, 0, 0.045) !important;
  padding: 1rem;
  border-radius: calc(1rem / 2);
}

.contact-link-title {
  margin-bottom: 0.25rem !important;
  color: var(--accent-secondary-text-white);
}

.contact-link-text {
  color: var(--accent-secondary-text-white);
  font-size: 0.875rem;
  opacity: 0.9;
}

.contact-link-text:active,
.contact-link-text:focus,
.contact-link-text:hover {
  color: var(--accent-secondary-text-white);
  opacity: 1;
}

/* Blog style */
.blog {
  padding: 1.25rem 0;
}

.blog-flex-container {
  display: flex;
  flex-direction: row;
}

.blog-subheading {
  color: var(--accent-secondary-text);
}

ul.timeline {
  list-style-type: none;
}

li.timeline-item {
  margin: 1rem 0 !important;
  padding: 1rem 1rem 1rem 2.5rem !important;
  position: relative;
}

li.timeline-item:after {
  content: " ";
  background: var(--accent-primary-bg-200);
  display: inline-block;
  position: absolute;
  top: calc(3rem / 0.9);
  width: calc(1rem / 4);
  height: calc(100% - ((-1 * (2rem / 1.2)) + (3rem / 0.9)));
  z-index: 400;
  border-radius: calc(1rem / 8);
  left: calc((2rem / 2) - (1rem / 8));
}

li.timeline-item:last-of-type:after {
  display: none;
}

li.timeline-item::before {
  content: "\2022";
  color: var(--accent-secondary-heading);
  text-align: center;
  vertical-align: middle;
  font-size: 3rem;
  padding-top: calc(1rem / 7.5);
  background: var(--accent-primary-bg-400);
  display: inline-block;
  position: absolute;
  border-radius: 1rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  z-index: 400;
}

.blog .blog-img {
  position: relative;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  border-radius: 1rem;
  background-image: radial-gradient(circle at center center, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.075)), repeating-radial-gradient(circle at center center, rgba(44, 86, 156, 0.075), rgba(44, 86, 156, 0.075), 2rem, transparent 4rem, transparent 3rem);
}

.blog .blog-img .img {
  position: relative;
  max-width: 24rem;
  margin: auto;
}

.blog .blog-img .img img {
  position: relative;
  z-index: 2;
}

/* blog list */
.blog-list {
  position: relative;
  display: block;
}

.blog-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-list li + li {
  margin-top: 1rem !important;
}

.blog-list-icon {
  display: flex;
  align-items: center;
}

.blog-list-icon span {
  margin: auto;
  font-size: 2rem;
  background-color: var(--accent-secondary-text-white);
  color: var(--accent-secondary-text);
  border: calc(1rem / 16) dashed var(--accent-secondary-text);
  padding: 0.625rem;
  border-radius: 2rem;
}

.blog-list-text {
  margin-left: 1rem;
}

.blog-list-text p {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  margin: 0;
  color: var(--accent-secondary-text);
  font-weight: 600;
}

.blog-brand-container {
  justify-content: flex-start;
}

.blog-brand-logo-container {
  margin: auto 0;
  padding: 1rem 0.25rem;
}

.blog-brand-logo-container img {
  margin: auto;
  max-width: calc(10rem - 0.5rem);
  mix-blend-mode: luminosity;
}

.blog-brand-logo-container img:active,
.blog-brand-logo-container img:focus,
.blog-brand-logo-container img:hover {
  mix-blend-mode: normal;
}

/* Responsive style */
@media screen and (max-width: 991px) {
  .slider-flex-container {
    flex-direction: column-reverse;
    background-image: radial-gradient(circle at center center, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.075)), repeating-radial-gradient(circle at center 25%, rgba(44, 86, 156, 0.075), rgba(44, 86, 156, 0.075), 2rem, transparent 4rem, transparent 3rem);
  }

  .blog-flex-container {
    flex-direction: column-reverse;
  }

  .slider-text-container {
    width: 100%;
    height: calc(((100vh - 5.25rem) / 100) * 45);
  }

  .slider-image-container {
    width: 100%;
    height: calc(((100vh - 5.25rem) / 100) * 55);
  }

  .slider-image {
    width: auto !important;
    height: 100% !important;
    max-height: 24rem;
  }

  .bg-fixed {
    background-attachment: scroll !important;
  }

  .navbar .logo {
    text-align: left;
  }

  .header {
    background-attachment: scroll !important;
    background-position: 50% 0% !important;
  }
}

@media screen and (max-width: 767px) {
  .owl-nav {
    display: none;
  }

  .navbar button {
    outline: none !important;
  }

  .navbar button:hover {
    background: rgba(0, 0, 0, 0.025);
  }

  .nav-scroll button,
  .nav-scroll button:hover {
    background: rgba(0, 0, 0, 0.025);
  }

  .dropdown-menu {
    position: static !important;
  }

  .about-list li + li {
    margin-top: 0.625rem;
  }

  .about-list-icon span {
    padding: 0.625rem;
  }

  .gallery-masonry-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}

@media all and (max-width: 575px) {
  .gallery-filter li {
    margin-right: calc(1rem / 2);
    font-size: 1rem;
  }

  .gallery-filter li:last-child {
    margin-right: 0;
  }

  .gallery-items .single-item {
    padding-bottom: calc(1rem * 1.5);
  }

  .text-left {
    text-align: center !important;
  }

  .text-center {
    text-align: center !important;
  }

  .text-right {
    text-align: center !important;
  }
}

@media screen and (max-width: 480px) {
  .gallery-masonry-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
