@import url("linear.css");
@import url("fontawesome.css");

:root {
  --theme-color1: #0f0f0fdb;
  --theme-color2: #0f9cf7;
  --theme-color2-dark: #007cce;
  --bg-theme-color1: var(--theme-color1);
  --bg-theme-color2: var(--theme-color2);
  --bg-theme-color2-dark: var(--theme-color2-dark);
  --text-color: #444444;
  --text-font: "mulish", sans-serif;
  --title-font: "oswald", sans-serif;
  --body-font-size: 15px;
  --body-line-height: 30px;
  --body-font-weight: 500;
  --body-font-weight-bold: 700;
  --line-height-heading-h1: 1em;
  --line-height-heading: 1.2em;
  --line-height-heading-small: 1.4em;
  --h1-font-size: 90px;
  --h2-font-size: 46px;
  --h3-font-size: 36px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 20px;
  --h1-font-weight: 700;
  --h2-font-weight: 700;
  --h3-font-weight: 700;
  --h4-font-weight: 700;
  --h5-font-weight: 700;
  --h6-font-weight: 700;

  --sec-title-color: var(--headings-color);
  --sec-title-font-size: var(--h2-font-size);
  --sec-title-font-family: var(--title-font);
  --sec-title-font-weight: var(--h2-font-weight);
  --theme-light-background: #f8f6f1;
  --theme-light-background-text-color: var(--headings-color);

  --container-width: 1200px;
  --small-container-width: 1000px;
  --large-container-width: 1550px;
  --container-pt: 120px;
  --container-pb: 120px;
}

/*
 * typography.scss
 * -----------------------------------------------
*/
::-moz-selection {
  background: var(--theme-color1);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: var(--theme-color1);
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--theme-color1); /* Firefox */
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: var(--theme-color1); /* Safari */
  color: #fff;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: #7c858c;
}

::-moz-input-placeholder {
  color: #7c858c;
}

::-ms-input-placeholder {
  color: #7c858c;
}

body {
  background-color: #fff;
  background-attachment: fixed;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  counter-reset: my-sec-counter;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

p,
.text {
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

/* -------- Headings ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--headings-color);
  font-family: var(--title-font);
  position: relative;
  line-height: var(--line-height-heading-);
  letter-spacing: -0.04em;
}
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: var(--headings-color);
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  line-height: var(--line-height-heading-h1);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  line-height: var(--line-height-heading);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  line-height: var(--line-height-heading);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  line-height: var(--line-height-heading);
}

h5 {
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  line-height: var(--line-height-heading);
}

h6 {
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  line-height: var(--line-height-heading-small);
}

/* -------- Body Text ---------- */
table p {
  margin-bottom: 0;
}

p {
  margin-bottom: 20px;
}
p a:not(.button):not(.btn):hover,
p a:not(.button):not(.btn):focus {
  text-decoration: underline;
}

/* -------- other ---------- */
a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: var(--body-font-weight);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a b,
a strong {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a img {
  border: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 10px;
}

ol,
ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

b,
strong {
  color: #333;
  font-weight: var(--body-font-weight-bold);
}

iframe {
  border: none !important;
}

/*
 * container.scss
 * -----------------------------------------------
*/
.container .container {
  width: 100%;
}

.container .container,
.container .container-fluid,
.container-fluid .container,
.container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

section {
  scroll-margin-top: 80px; /* adjust to your header height */
}

section > .container,
section > .container-fluid {
  padding-top: var(--container-pt);
  padding-bottom: var(--container-pt);
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: var(--container-width);
  }
}
/*=== Default Form ===*/
.form-control,
.input-text {
  height: calc(2.25rem + 27px);
  padding: 14px 30px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
}
.form-control::-webkit-input-placeholder,
.input-text::-webkit-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-moz-placeholder,
.input-text::-moz-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder,
.input-text:-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-ms-input-placeholder,
.input-text::-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::placeholder,
.input-text::placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder,
.input-text:-ms-input-placeholder {
  color: #686a6f;
}
.form-control::-ms-input-placeholder,
.input-text::-ms-input-placeholder {
  color: #686a6f;
}

textarea.form-control {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

/*
 *	boxed-layout.scss
 * -----------------------------------------------
*/
.tm-boxed-layout {
  background-color: #444;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
}
.tm-boxed-layout.layer-overlay:before {
  z-index: -1;
}
.tm-boxed-layout .page-wrapper {
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .tm-boxed-layout .page-wrapper {
    width: 1170px;
  }
}
.tm-boxed-layout .container .container {
  width: 100%;
}
@media (min-width: 1200px) {
  .tm-boxed-layout .container {
    width: 1140px;
  }
}
@media (min-width: 1000px) {
  .tm-boxed-layout.tm-container-970px .page-wrapper {
    width: 970px;
  }
}
.tm-boxed-layout.tm-container-970px .container,
.tm-boxed-layout.tm-container-970px .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
.tm-boxed-layout.tm-container-970px .container .container,
.tm-boxed-layout.tm-container-970px .container .container-fluid,
.tm-boxed-layout.tm-container-970px .container-fluid .container,
.tm-boxed-layout.tm-container-970px .container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1300px) {
  .tm-boxed-layout.tm-container-1230px .page-wrapper {
    width: 1230px;
  }
}
.tm-boxed-layout.tm-container-1230px .container,
.tm-boxed-layout.tm-container-1230px .container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.tm-boxed-layout.tm-container-1230px .container .container,
.tm-boxed-layout.tm-container-1230px .container .container-fluid,
.tm-boxed-layout.tm-container-1230px .container-fluid .container,
.tm-boxed-layout.tm-container-1230px .container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1400px) {
  .tm-boxed-layout.tm-container-1300px .page-wrapper {
    width: 1300px;
  }
}
.tm-boxed-layout.tm-container-1300px .container,
.tm-boxed-layout.tm-container-1300px .container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.tm-boxed-layout.tm-container-1300px .container .container,
.tm-boxed-layout.tm-container-1300px .container .container-fluid,
.tm-boxed-layout.tm-container-1300px .container-fluid .container,
.tm-boxed-layout.tm-container-1300px .container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1400px) {
  .tm-boxed-layout.tm-container-1340px .page-wrapper {
    width: 1340px;
  }
}
.tm-boxed-layout.tm-container-1340px .container,
.tm-boxed-layout.tm-container-1340px .container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.tm-boxed-layout.tm-container-1340px .container .container,
.tm-boxed-layout.tm-container-1340px .container .container-fluid,
.tm-boxed-layout.tm-container-1340px .container-fluid .container,
.tm-boxed-layout.tm-container-1340px .container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1400px) {
  .tm-boxed-layout.tm-container-1440px .page-wrapper {
    width: 1440px;
  }
}
.tm-boxed-layout.tm-container-1440px .container,
.tm-boxed-layout.tm-container-1440px .container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.tm-boxed-layout.tm-container-1440px .container .container,
.tm-boxed-layout.tm-container-1440px .container .container-fluid,
.tm-boxed-layout.tm-container-1440px .container-fluid .container,
.tm-boxed-layout.tm-container-1440px .container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1560px) {
  .tm-boxed-layout.tm-container-1500px .page-wrapper {
    width: 1500px;
  }
}
.tm-boxed-layout.tm-container-1500px .container,
.tm-boxed-layout.tm-container-1500px .container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.tm-boxed-layout.tm-container-1500px .container .container,
.tm-boxed-layout.tm-container-1500px .container .container-fluid,
.tm-boxed-layout.tm-container-1500px .container-fluid .container,
.tm-boxed-layout.tm-container-1500px .container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1660px) {
  .tm-boxed-layout.tm-container-1600px .page-wrapper {
    width: 1600px;
  }
}
.tm-boxed-layout.tm-container-1600px .container,
.tm-boxed-layout.tm-container-1600px .container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.tm-boxed-layout.tm-container-1600px .container .container,
.tm-boxed-layout.tm-container-1600px .container .container-fluid,
.tm-boxed-layout.tm-container-1600px .container-fluid .container,
.tm-boxed-layout.tm-container-1600px .container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.tm-boxed-layout.tm-container-100pr .page-wrapper {
  width: 95%;
}
.tm-boxed-layout.tm-container-100pr .page-wrapper .container,
.tm-boxed-layout.tm-container-100pr .page-wrapper .container-fluid {
  width: 100%;
}
.tm-boxed-layout.container-shadow .page-wrapper {
  -webkit-box-shadow: 0 0 25px 0 #777;
  box-shadow: 0 0 25px 0 #777;
}
.tm-boxed-layout .header,
.tm-boxed-layout section,
.tm-boxed-layout .footer {
  background-color: #fff;
}
.tm-boxed-layout .header .navbar-default {
  background-color: #fff;
  border-color: #fff;
  padding: 0;
}
.tm-boxed-layout .header .navbar-default .navbar-nav > li > a {
  padding: 30px 5px;
}
.tm-boxed-layout .header .navbar-default .navbar-collapse {
  background-color: #fff;
  border-color: #fff;
  margin-right: 30px;
}
.tm-boxed-layout .header #header-logo {
  margin: 0;
  padding-top: 27px;
}
.tm-boxed-layout .banner-section .slide-item {
  min-height: 540px;
}
.tm-boxed-layout .banner-section .slide-item .content-box {
  padding: 150px 0 220px;
}
.tm-boxed-layout .banner-section-two .content-box {
  padding: 250px 0 150px;
}
.tm-boxed-layout .banner-section-three .content-box {
  padding: 250px 0 150px;
}
.tm-boxed-layout .banner-section-four .content-box {
  padding: 130px 0;
}

@media (max-width: 1200px) {
  .tm-boxed-layout {
    padding-top: 15px;
  }
  .tm-boxed-layout .header .navbar-default .navbar-nav > li > a {
    padding: 10px;
  }
  .tm-boxed-layout .header .navbar-default .navbar-collapse {
    margin-right: 15px;
  }
  .tm-boxed-layout .navbar-header {
    padding: 15px 0;
  }
  .tm-boxed-layout .navbar-collapse .navbar-nav li a .caret {
    margin-right: 0;
  }
}
/*** 

====================================================================
Reset
====================================================================

***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}

/*** 

====================================================================
Global Settings
====================================================================

***/
textarea {
  overflow: hidden;
  resize: none;
}

button {
  outline: none !important;
  cursor: pointer;
}

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

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.blockquote-one {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: #242323;
  font-weight: 700;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 20px 40px;
}
.blockquote-one::before {
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  background-color: var(--bg-theme-color2);
  content: "";
  border-radius: 5px;
}

.title a {
  color: inherit;
}

.color1 {
  color: var(--theme-color1);
}

.color2 {
  color: var(--theme-color2-dark);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
  z-index: 99;
  background-color: #ffffff;
}

.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.small-container {
  position: static;
  max-width: var(--small-container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.dropdown-toggle::after {
  display: none;
}

.style-font {
  font-family: var(--style-font);
}

/*=======================
    Preloader
=======================*/
.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
}

.preloader:after {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100px;
  width: 200px;
  margin-left: -100px;
  margin-top: -60px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/preloader.gif);
  background-size: 70px;
  content: "";
}

.preloader:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 200px;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  padding-top: 10px;
  color: var(--theme-color1);
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: none;
  transition: none;
  border-top: 2px solid var(--border-theme-color4);
  content: "Loading";
}

/*=======================
Scroll To Top style
=======================*/
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  font-size: 16px;
  line-height: 40px;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background-color: var(--theme-color2);
  z-index: 100;
  display: none;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.scroll-to-top:hover {
  background: var(--theme-color1);
  color: #ffffff;
}

/*Social Icon One*/
.social-icon-one {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.social-icon-one li {
  position: relative;
  margin-left: 27px;
}
.social-icon-one li:first-child {
  margin-left: 0;
}
.social-icon-one li a {
  position: relative;
  display: block;
  line-height: 40px;
  height: 40px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.social-icon-one li a:hover {
  color: var(--theme-color2);
}

/*Social Icon Two*/
.social-icon-two {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social-icon-two li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
}
.social-icon-two li:first-child {
  margin-left: 0;
}
.social-icon-two li a {
  position: relative;
  display: block;
  line-height: 42px;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  border-radius: 50%;
  background-color: var(--bg-theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.social-icon-two li a:hover {
  color: #ffffff;
  background-color: var(--bg-theme-color2);
}

.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 0;
}

/*Btn Style One*/
.btn-style-one {
  position: relative;
  font-size: 16px;
  line-height: 28px;
  padding: 15px 50px;
  font-weight: 800;
  overflow: hidden;
  color: #ffffff;
  background: var(--bg-theme-color2);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 10px;
  overflow: hidden;
}
.btn-style-one:before {
  left: 0;
  top: 0;
  content: "";
  background-color: var(--bg-theme-color2-dark);
  border-radius: 10px;
  height: 100%;
  width: 24px;
  position: absolute;
  -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.btn-style-one:hover {
  color: #ffffff;
}
.btn-style-one:hover .btn-title {
  color: #ffffff;
}
.btn-style-one:hover:before {
  width: 100%;
}
.btn-style-one.light {
  background-color: #ffffff;
  color: var(--theme-color1);
}
.btn-style-one.light:before {
  background-color: #e8e8e8;
}
.btn-style-one.light:hover .btn-title {
  color: var(--theme-color1);
}
.overlay-anim {
  position: relative;
}
.overlay-anim:after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.overlay-anim:hover:after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

/*** 

====================================================================
Main Header
====================================================================

***/
.header-span {
  position: relative;
  height: 110px;
  display: block;
  width: 100%;
}

.main-header {
  position: relative;
  width: 100%;
  z-index: 999;
}

.header-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--bg-theme-color1);
}
.header-top .inner-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 0 80px;
}
.header-top .top-left {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-top .top-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-top .social-icon-one {
  margin-left: 35px;
}
.header-top .useful-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 0;
}
.header-top .useful-links li {
  position: relative;
  padding-left: 15px;
  margin-left: 15px;
  font-size: 14px;
  color: #8f8f8f;
  line-height: 20px;
}
.header-top .useful-links li:first-child {
  margin-left: 0;
  padding-left: 0;
}
.header-top .useful-links li:before {
  position: absolute;
  left: -3px;
  top: 0;
  content: "/";
}
.header-top .useful-links li a {
  color: #808287;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.header-top .useful-links li a:hover {
  color: #ffffff;
}

.main-header .header-lower {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header {
  width: 100%;
  z-index: 999;
}
.main-header .logo {
  position: relative;
  display: block;
}
.main-header .logo img {
  max-width: 100%;
  height: auto;
}
.main-header .main-box {
  position: relative;
  left: 0px;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-header .main-box .nav-outer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.main-menu {
  position: relative;
}

.main-menu .navbar-header {
  display: none;
}

.main-menu .navbar-collapse {
  padding: 0px;
}

.main-menu .navigation {
  position: relative;
  margin: 0px;
}

.main-menu .navigation > li {
  position: relative;
  float: left;
  padding: 25px 0px;
  margin-right: 55px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li:last-child {
  margin-right: 0;
}
.main-menu .navigation > li:before {
  position: absolute;
  left: 50%;
  bottom: 23px;
  height: 2px;
  width: 0%;
  background-color: var(--bg-theme-color2);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li:hover:before,
.main-menu .navigation > li.current:before {
  left: 0;
  width: 100%;
}
.main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  opacity: 1;
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > a .icon {
  position: relative;
  font-size: 22px;
  line-height: 24px;
  margin-left: 10px;
}
.main-menu .navigation > li > a:hover {
  color: #ffffff;
}
.main-menu .navigation > li.current > a {
  color: #ffffff;
  font-weight: 700;
}
.main-menu .navigation > li.dropdown > a {
  padding-right: 14px;
  margin-right: -14px;
}
.main-menu .navigation > li.dropdown > a:after {
  content: "\f107";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 20px;
  display: block;
  line-height: 24px;
  font-size: 12px;
  z-index: 5;
  font-family: "Font Awesome 6 Pro";
  margin-top: -2px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main-menu .navigation > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
  margin-top: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation > li > ul {
  position: absolute;
  left: 0px;
  top: 100%;
  width: 220px;
  z-index: 100;
  padding: 10px 0 0;
  background-color: #ffffff;
  margin-top: 30px;
  opacity: 0;
  display: none;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.main-menu .navigation > li > ul.from-right {
  left: auto;
  right: 0px;
}
.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #ebf1f5;
}
.main-menu .navigation > li > ul > li:last-child {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 0px;
  line-height: 29px;
  font-weight: 400;
  font-size: 16px;
  color: var(--bg-theme-color1);
  text-align: left;
  margin: 0 30px;
  text-transform: capitalize;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.main-menu .navigation > li > ul > li:hover > a {
  color: var(--theme-color2);
}
.main-menu .navigation > li > ul > li.dropdown > a:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  position: absolute;
  right: 0;
  top: 11px;
  display: block;
  line-height: 24px;
  font-size: 14px;
  font-weight: 900;
  z-index: 5;
}
.main-menu .navigation > li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 0px;
  margin-top: 20px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 0px;
  width: 220px;
  z-index: 100;
  display: none;
  background-color: #ffffff;
  opacity: 0;
  padding: 10px 0 0;
  margin-top: 10px;
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  border-bottom: 1px solid #ebf1f5;
  width: 100%;
}
.main-menu .navigation > li > ul > li > ul > li:last-child {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 0;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: var(--theme-color1);
  text-align: left;
  margin: 0 30px;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li > ul > li > a:hover {
  color: var(--theme-color2);
}

.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 30px;
  border: 1px solid #ffffff;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
  display: none;
}

.main-header .outer-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.main-header .outer-box .theme-btn {
  margin-left: 40px;
  font-size: 12px;
  text-transform: uppercase;
}
.main-header .outer-box .ui-btn-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 0;
  margin-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4px;
}

.main-header .ui-btn {
  position: relative;
  display: block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  background: none;
  font-size: 26px;
  color: #ffffff;
  margin-left: 20px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-header .ui-btn:hover {
  color: var(--theme-color2);
}

.main-header .info-btn {
  position: relative;
  display: block;
  font-size: 16px;
  padding: 8px 0;
  padding-left: 60px;
  color: #ffffff;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
  line-height: 20px;
  margin-left: 30px;
}
.main-header .info-btn small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #d6d6d6;
}
.main-header .info-btn i {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -25px;
  line-height: 50px;
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background-color: var(--bg-theme-color2);
  font-size: 16px;
}
.main-header .info-btn:hover {
  color: var(--bg-theme-color2);
}

/*** 

====================================================================
Header Style One
====================================================================

***/
.header-style-one::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(var(--bg-theme-color1)),
    to(transparent)
  );
  background: linear-gradient(var(--bg-theme-color1), transparent);
  min-height: 200px;
  content: "";
}
.header-style-one .container-fluid {
  padding: 0 80px;
}
.header-style-one .header-lower {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
}
.header-style-one .logo {
  min-height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-style-one .main-box {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header-style-one .main-box .nav-outer {
  width: auto;
}

/*** 

====================================================================
Sticky Header
====================================================================

***/
.sticky-header {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 0px;
  top: 0px;
  width: 100%;
  padding: 0px 0px;
  z-index: 99999;
  background: #ffffff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.sticky-header.fixed-header {
  opacity: 1;
  z-index: 9999;
  visibility: visible;
}

.sticky-header .logo {
  padding: 10px 0;
}
.sticky-header .logo img {
  max-height: 40px;
}
.sticky-header .nav-outer {
  position: relative;
  background: none;
}
.sticky-header .inner-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sticky-header .main-menu .navigation > li {
  margin: 0;
  margin-left: 40px;
  padding: 20px 0;
}

.sticky-header .main-menu .navigation > li > a {
  color: #000;
}

.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li:hover > a {
  color: var(--theme-color2);
}

.sticky-header .main-menu .navigation > li:before {
  display: none;
}

.sticky-header .outer-box,
.sticky-header .navbar-header {
  display: none;
}

.sticky-header .mobile-nav-toggler {
  color: var(--theme-color1);
}

/*** 

====================================================================
      Mobile Menu
====================================================================

***/
.mobile-nav-toggler {
  position: relative;
  font-size: 24px;
  line-height: 20px;
  cursor: pointer;
  color: var(--theme-color1);
  display: none;
  top: 0px;
  margin-left: 25px;
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}
.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
}
.mobile-menu .upper-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 20px 20px;
}
.mobile-menu .close-btn {
  position: relative;
  top: -10px;
  text-align: center;
  font-size: 18px;
  color: var(--theme-color2);
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}
.mobile-menu .close-btn:hover {
  opacity: 0.5;
}
.mobile-menu .nav-logo {
  position: relative;
  text-align: left;
  width: 100%;
}
.mobile-menu .nav-logo img {
  max-height: 40px;
}
.mobile-menu .menu-box {
  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;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: var(--bg-theme-color1);
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  transform: translateX(101%);
}

.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease 200ms;
  transition: all 0.4s ease 200ms;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.mobile-menu-visible .scroll-to-top {
  opacity: 0;
  visibility: hidden;
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > ul > li:last-child {
  border-bottom: none;
}
.mobile-menu .navigation li > ul > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 20px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  text-transform: capitalize;
}
.mobile-menu .navigation li:hover > a,
.mobile-menu .navigation li.current > a {
  color: var(--theme-color2);
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  text-align: center;
  font-size: 16px;
  line-height: 44px;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
}
.mobile-menu .navigation li.dropdown .dropdown-btn:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  width: 1px;
  height: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li.dropdown .dropdown-btn.active i:before {
  content: "\f106";
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
  display: none;
}

.mobile-menu .navigation li > ul > li {
  padding-left: 20px;
}

.contact-list-one {
  position: relative;
  padding: 30px 20px 20px;
}
.contact-list-one li {
  position: relative;
  margin-bottom: 20px;
}
.contact-list-one li:last-child {
  margin-right: 0;
}
.contact-list-one li .contact-info-box {
  position: relative;
  padding-left: 54px;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
}
.contact-list-one li .contact-info-box a {
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.contact-list-one li .contact-info-box .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 34px;
  line-height: 50px;
  color: var(--theme-color2);
}
.contact-list-one li .contact-info-box .title {
  display: block;
  font-size: 12px;
  color: #b2c1c0;
  font-weight: 400;
  text-transform: uppercase;
}

.mobile-menu .social-links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: var(--bg-theme-color1);
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}
.mobile-menu .social-links li {
  position: relative;
  text-align: center;
  width: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .social-links li a {
  position: relative;
  display: block;
  line-height: 50px;
  height: 50px;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.mobile-menu .social-links li a:hover {
  color: var(--theme-color2);
}

/*** 

====================================================================
Section Title
====================================================================

***/

.sec-title .sub-title {
  position: relative;
  top: -8px;
  font-size: var(--sec-title-subtitle-font-size);
  color: var(--text-color);
  line-height: var(--sec-title-subtitle-line-height);
  font-weight: var(--sec-title-subtitle-font-weight);
  font-family: var(--sec-title-subtitle-font-family);
  display: inline-block;
  padding-left: 20px;
}
.sec-title .sub-title:before {
  position: absolute;
  left: 0;
  top: 0;
  letter-spacing: 0.2em;
  content: "//";
  color: var(--theme-color2);
}
.sec-title h1 {
  position: relative;
  font-size: 60px;
  line-height: 1em;
  color: var(--sec-title-color);
  font-family: var(--sec-title-font-family);
  font-weight: var(--sec-title-font-weight);
}
.sec-title h2 {
  position: relative;
  font-size: var(--sec-title-font-size);
  color: var(--sec-title-color);
  font-family: var(--sec-title-font-family);
  font-weight: var(--sec-title-font-weight);
  margin-top: -5px;
  margin-bottom: 0;
  color: var(--bg-theme-color1);
}

.sec-title .row .text {
  max-width: 450px;
  width: 100%;
}

.sec-title.light h3,
.sec-title.light h2,
.sec-title.light h1 {
  color: #fff;
}
.sec-title.light .sub-title,
.sec-title.light .text {
  color: #8f8f8f;
}

/*** 

====================================================================
  Main Slider
====================================================================

***/
.main-slider {
  position: relative;
  z-index: 99;
}
.carousel-item {
  height: 600px;
  min-height: 50px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.main-slider h1 {
  position: relative;
  display: block;
  font-size: 60px;
  line-height: 1em;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 1px 1px 1px #666;
}

.main-slider .text {
  font-size: 18px;
  line-height: 36px;
  color: rgba(255, 255, 255, 0.5);
}
.main-slider .btn-box {
  position: relative;
}
.main-slider .theme-btn {
  display: inline-block;
  white-space: nowrap;
  min-width: 200px !important;
}

/*** 

====================================================================
		About Section
====================================================================

***/
.about-section {
  position: relative;
  padding: 120px 0 70px;
  background-repeat: no-repeat;
  background-position: center right;
  background-image: url(../images/shape.png);
}

.about-section .content-column .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-section .content-column .info-btn {
  position: relative;
  display: block;
  font-size: 22px;
  padding: 8px 0;
  padding-left: 90px;
  color: #181818;
  text-align: left;
  font-weight: 800;
  white-space: nowrap;
  line-height: 20px;
  margin-right: 30px;
}
.about-section .content-column .info-btn small {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #6a6a6a;
  margin-bottom: 10px;
}
.about-section .content-column .info-btn i {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -34px;
  line-height: 68px;
  height: 68px;
  width: 68px;
  text-align: center;
  border-radius: 50%;
  color: var(--bg-theme-color2);
  background-color: #edf0f5;
  font-size: 24px;
}
.about-section .content-column .info-btn:hover {
  color: var(--bg-theme-color2);
}

.about-section .image-column {
  position: relative;
  margin-bottom: 35px;
}
.about-section .image-column .inner-column {
  position: relative;
  padding-right: 110px;
}

.about-section .image-column .image-1 {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0px;
}
.about-section .image-column .image-1 img {
  width: 100%;
}

/*** 

====================================================================
    Services Section Three
====================================================================

***/
.services-section-three {
  position: relative;
  padding: 120px 0 70px;
  z-index: 1;
  counter-reset: count;
}

.service-block-three {
  position: relative;
  margin-bottom: 70px;
  z-index: 1;
}
.service-block-three .inner-box {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block-three .inner-box:hover {
  background-color: var(--bg-theme-color2);
  border-radius: 15px;
}
.service-block-three .inner-box:hover .text,
.service-block-three .inner-box:hover .title,
.service-block-three .inner-box:hover .icon {
  color: #ffffff;
}
.service-block-three .inner-box:hover .icon-box:before {
  color: #fd6667;
}
.service-block-three .content {
  position: relative;
  padding: 15px;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  text-align: center;
}
.service-block-three .content::before {
  position: absolute;
  right: 0;
  bottom: 0px;
  height: 130px;
  width: 130px;
  background-color: #ffffff;
  border-radius: 100% 0 0 0;
  opacity: 0.08;
  content: "";
}
.service-block-three .content::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 180px;
  width: 180px;
  background-color: #ffffff;
  border-radius: 0 0 100% 0;
  opacity: 0.08;
  content: "";
}
.service-block-three .icon-box {
  position: relative;
  margin-bottom: 25px;
}
.service-block-three .icon-box .icon {
  display: inline-block;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: var(--theme-color2);
  font-size: 64px;
}
.service-block-three .title {
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 10px;
}
.service-block-three .title:hover {
  color: var(--theme-color2);
}
.service-block-three .text {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-bottom: 0px;
}
.service-block-three .read-more {
  position: absolute;
  right: 35px;
  bottom: -32px;
}
.service-block-three .read-more i {
  background-color: #ffffff;
  height: 54px;
  width: 54px;
  font-size: 18px;
  color: var(--theme-color1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 100ms ease;
  transition: all 100ms ease;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/***

====================================================================
    Process Section
====================================================================

***/
.process-section {
  position: relative;
  padding: 120px 0 80px;
}
.process-section .auto-container {
  max-width: 1050px;
}

.process-block {
  position: relative;
  margin-bottom: 40px;
}
.process-block:last-child .image-box:before {
  display: none;
}
.process-block .inner-box {
  position: relative;
}
.process-block .inner-box:hover .info-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}
.process-block .inner-box:hover .icon {
  background-color: #ffffff;
  color: var(--theme-color2);
}
.process-block .inner-box:hover .icon:after {
  height: 136px;
  width: 136px;
}
.process-block .icon-box {
  position: relative;
  padding-top: 60px;
}
.process-block .icon-box::before {
  position: absolute;
  left: 60px;
  top: 0;
  width: 190px;
  height: 146px;
  background-image: url(../images/icons/process-arrow.png);
  content: "";
}
.process-block .icon-box .icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 136px;
  width: 136px;
  border-radius: 50%;
  margin-bottom: 50px;
  color: #ffffff;
  font-size: 72px;
  background-color: var(--bg-theme-color2);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.process-block .icon-box .icon:after {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 160px;
  width: 160px;
  display: block;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  content: "";
}
.process-block .icon-box .count {
  position: absolute;
  left: 140px;
  top: 40px;
  font-size: 120px;
  color: #f3f3f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 900;
  z-index: 2;
  opacity: 0.5;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
.process-block .title {
  z-index: 2;
  font-weight: 800;
  margin-bottom: 15px;
}

/***

==================================================================
    Pricing Section
==================================================================

***/
.pricing-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.pricing-section .bg {
  max-height: 670px;
}
.pricing-block {
  position: relative;
  margin-bottom: 40px;
  z-index: 2;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.pricing-block .inner-box {
  position: relative;
  padding: 25px 30px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 100%;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  border: 1px solid #eee;
}
.pricing-block .inner-box:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  z-index: 99;
  background-color: #f5f5f5;
}
.pricing-block .title-box {
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 10px;
}
.pricing-block .title {
  position: relative;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 15px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-size: 30px;
}
.pricing-block .text {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: #6c6a72;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.pricing-block .price {
  position: relative;
  display: block;
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 25px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.pricing-block .price s {
  color: var(--bg-theme-color2);
}
.pricing-block .price sup {
  position: relative;
  top: -18px;
  font-size: 28px;
  font-weight: 700;
  margin-right: 3px;
}
.pricing-block .price sub {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: #6c6a72;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-left: 10px;
  bottom: 0px;
}
.pricing-block .sub-title {
  position: relative;
  color: var(--theme-color2);
  margin-bottom: 25px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.pricing-block .features {
  position: relative;
  margin-bottom: 40px;
}
.pricing-block .features li {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #1d1729;
  font-weight: 600;
  padding-left: 24px;
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.pricing-block .features li:before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  line-height: 26px;
  color: var(--theme-color1);
  content: "\f101";
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.pricing-block .features li.false {
  opacity: 0.5;
}
.pricing-block .theme-btn {
  line-height: 24px;
  padding: 15px 40px;
}
.pricing-block.tagged .inner-box {
  background-color: #23252a;
}
.pricing-block.red .inner-box {
  background-color: #fc3e3e;
}
.pricing-block.tagged .inner-box:before {
  opacity: 1;
  top: 0;
}
.pricing-block.tagged .features li,
.pricing-block.tagged .features li:before,
.pricing-block.tagged .price,
.pricing-block.tagged .price sub,
.pricing-block.tagged .text,
.pricing-block.tagged .title,
.pricing-block.red .features li,
.pricing-block.red .features li:before,
.pricing-block.red .price,
.pricing-block.red .price sub,
.pricing-block.red .text,
.pricing-block.red .title {
  color: #fff;
}
.pricing-block.tagged .title-box {
  border-bottom: 1px solid #5d5d5d;
}

/*** 

====================================================================
    Why Choose Us Two
====================================================================

***/
.why-choose-us-two {
  position: relative;
  padding: 120px 0 70px;
  background-repeat: no-repeat;
  background-position: center right;
  background-image: url(../images/shape.png);
}

.why-choose-us-two .sec-title {
  margin-bottom: 50px;
}
.why-choose-us-two .sec-title .text {
  max-width: 505px;
  margin-top: 20px;
}

.why-choose-us-two .content-column {
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
}
.why-choose-us-two .content-column .inner-column {
  position: relative;
  padding-left: 20px;
}

.why-choose-us-two .image-column {
  position: relative;
  margin-bottom: 35px;
}
.why-choose-us-two .image-column .inner-column {
  position: relative;
  margin-right: -10px;
}
.why-choose-us-two .image-column .image-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.why-choose-us-two .image-column .image-box .image-1 {
  position: relative;
  margin-right: 20px;
  margin-bottom: 0;
}
.why-choose-us-two .image-column .image-box .image-1::before {
  position: absolute;
  bottom: -10px;
  right: -10px;
  height: 100%;
  width: 250px;
  background-color: var(--bg-theme-color2);
  content: "";
  z-index: -1;
  border-radius: 10px;
}
.why-choose-us-two .image-column .image-box .image-1 img {
  border-radius: 10px;
}
.why-choose-us-two .image-column .image-box .image-2 {
  position: relative;
  margin-bottom: 0px;
}
.why-choose-us-two .image-column .image-box .image-2::before {
  position: absolute;
  bottom: -10px;
  right: -10px;
  height: 100%;
  width: 150px;
  background-color: var(--bg-theme-color2);
  content: "";
  z-index: -1;
  border-radius: 10px;
}
.why-choose-us-two .image-column .image-box .image-2 img {
  border-radius: 10px;
}
.why-choose-us-two .image-column .image-box .logo {
  position: absolute;
  left: 204px;
  top: 185px;
}

.feature-block-six {
  position: relative;
  border-bottom: 1px solid #dcdce0;
}
.feature-block-six:last-child {
  margin-bottom: 0;
}
.feature-block-six .inner-box {
  position: relative;
  padding-left: 80px;
}

.feature-block-six .inner-box:hover .icon:after {
  right: 20px;
}
.feature-block-six .icon {
  position: absolute;
  left: 0;
  top: 20px;
  font-size: 50px;
  line-height: 1em;
  color: var(--theme-color2);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.feature-block-six .title {
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.feature-block-six .text {
  color: #6a6a6a;
  line-height: 26px;
  font-size: 14px;
}

/*** 

====================================================================
    Features Section Two
====================================================================

***/
.features-section-two {
  position: relative;
  z-index: 2;
}
.features-section-two .outer-box {
  margin: 0 -110px;
}
.features-section-two .outer-box .row {
  margin: 0 -5px;
}
.features-section-two .outer-box .row > div {
  padding: 0 5px;
}

.feature-block-two {
  position: relative;
  margin-bottom: 30px;
}
.feature-block-two:nth-child(3n + 1) .inner-box {
  background-image: url(../images/black-bg.png);
}
.feature-block-two:nth-child(3n + 1) .inner-box .title,
.feature-block-two:nth-child(3n + 1) .inner-box .text,
.feature-block-two:nth-child(3n + 1) .inner-box .icon {
  color: #ffffff;
}
.feature-block-two:nth-child(3n + 2) .inner-box {
  background-color: var(--bg-theme-color2);
  background-image: url(../images/black-bg.png);
}
.feature-block-two .inner-box::before {
  opacity: 0.1;
}
.feature-block-two .inner-box .icon,
.feature-block-two .inner-box .text,
.feature-block-two .inner-box .title {
  color: #ffffff;
}
.feature-block-two:nth-child(3n + 3) .inner-box {
  background-image: url(../images/black-bg.png);
}

.feature-block-two .inner-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 40px 50px 50px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 0 0 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.feature-block-two .inner-box:hover {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.feature-block-two .content {
  position: relative;
  padding-left: 90px;
}
.feature-block-two .icon {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 15px;
  top: 20px;
  font-size: 45px;
  line-height: 1em;
  color: var(--theme-color2);
  border-radius: 50px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.feature-block-two .title {
  display: block;
  color: var(--theme-color1);
  font-weight: 800;
  margin-bottom: 10px;
}
.feature-block-two .title a {
  color: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.feature-block-two .title a:hover {
  color: var(--theme-color1);
}
.feature-block-two .text {
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 0;
}

/***

====================================================================
    Contact Section
====================================================================

***/

.contact-section {
  position: relative;
  /* padding: 120px 0 70px; */
  background-repeat: no-repeat;
  background-position: center right;
  background-image: url(../images/shape.png);
}
.contact-section .image-column .inner-column {
  position: relative;
  padding-left: 70px;
  margin-right: -375px;
}
.contact-section .image-column .image {
  position: relative;
  margin-bottom: 0;
}
.contact-section .image-column .image:before {
  position: absolute;
  left: -20px;
  top: 60px;
  bottom: 0;
  width: 20px;
  background-color: var(--bg-theme-color2);
  border-radius: 10px 0 0 0;
  content: "";
}
.contact-section .image-column .image img {
  border-radius: 10px 0 0 0;
}

.contact-form {
  position: relative;
}
.contact-form .form-group {
  position: relative;
  margin-bottom: 20px;
}
.contact-form .form-group:last-child {
  margin-bottom: 0;
}
.contact-form .form-group label {
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 500;
  display: block;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.contact-form .form-group label.error {
  display: block;
  font-weight: 500;
  font-size: 12px;
  text-transform: capitalize;
  line-height: 24px;
  color: #ff0000;
  margin-bottom: 0;
}
.contact-form
  .form-group
  .select2-container--default
  .select2-selection--single,
.contact-form .form-group input:not([type="submit"]),
.contact-form .form-group textarea,
.contact-form .form-group select {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  padding: 15px 30px;
  line-height: 30px;
  font-size: 14px;
  color: #6a6a6a;
  font-weight: 400;
  background-color: #f3f3f3;
  border: 1px solid rgba(210, 210, 210, 0.15);
  border-radius: 5px;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.contact-form .form-group ::-webkit-input-placeholder {
  color: #6a6a6a;
}
.contact-form .form-group ::-moz-input-placeholder {
  color: #8c8f94;
}
.contact-form .form-group ::-ms-input-placeholder {
  color: #8c8f94;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--border-theme-color2);
}
.contact-form .form-group textarea {
  height: 150px;
  resize: none;
}
.contact-form .form-group input[type="submit"],
.contact-form .form-group button {
  margin-top: 5px;
}
.contact-form.style-two .select2-container--default .select2-selection--single,
.contact-form.style-two input:not([type="submit"]),
.contact-form.style-two textarea,
.contact-form.style-two select {
  background-color: #0a090f;
  border-color: #0a090f;
  color: #ffffff;
  height: 70px;
  padding: 20px 30px;
  line-height: 30px;
}
.contact-form.style-two input:focus,
.contact-form.style-two select:focus,
.contact-form.style-two textarea:focus {
  border-color: var(--border-theme-color2);
}
.contact-form.style-two textarea {
  height: 150px;
  resize: none;
}

/***

==================================================================
	Main Footer
==================================================================

***/
.main-footer {
  position: relative;
  background-color: #181818;
  padding-top: 30px;
}
.main-footer .subscribe-form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #0f0f0f;
  padding: 0 60px;
}
.main-footer .subscribe-form .title-column {
  position: relative;
  padding: 35px 0 0;
}
.main-footer .subscribe-form .title-column .title {
  position: relative;
  padding-left: 90px;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 35px;
}
.main-footer .subscribe-form .title-column .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 64px;
  color: var(--theme-color2);
}

/* Widget Section */

.main-footer .footer-column {
  position: relative;
  margin-bottom: 50px;
}
.main-footer .footer-widget {
  position: relative;
}
.main-footer .widget-title {
  position: relative;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2em;
  margin-bottom: 15px;
}

.main-footer .about-widget {
  position: relative;
  margin-right: -30px;
}
.main-footer .about-widget .logo {
  margin-bottom: 15px;
}
.main-footer .about-widget .logo img {
  height: 60px;
}
.main-footer .about-widget .text {
  font-size: 15px;
  line-height: 30px;
  color: #8f8f8f;
  margin-bottom: 20px;
}
.main-footer .about-widget .contact-info {
  position: relative;
}
.main-footer .about-widget .contact-info li {
  position: relative;
  padding: 5px 0;
  padding-left: 50px;
  font-size: 16px;
  line-height: 27px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-footer .about-widget .contact-info li a {
  color: inherit;
  font-weight: 700;
  -webkit-transition: none;
  transition: none;
}
.main-footer .about-widget .contact-info li i {
  position: absolute;
  left: 0;
  top: 0;
  height: 37px;
  width: 37px;
  background-color: #182838;
  color: var(--theme-color2);
  font-size: 16px;
  line-height: 37px;
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 50%;
}
.main-footer .about-widget .contact-info li:hover {
  color: var(--theme-color2);
}

.main-footer .links-widget {
  padding-left: 40px;
  padding-right: 30px;
}

/*=== User LInks ===*/
.user-links {
  position: relative;
}
.user-links li {
  position: relative;
  font-size: 15px;
  line-height: 28px;
  color: #8f8f8f;
  font-weight: 400;
  margin-bottom: 10px;
}
.user-links li:last-child {
  margin-bottom: 0;
}
.user-links li a {
  position: relative;
  display: inline-block;
  color: inherit;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.user-links li a:hover {
  color: #ffffff;
}
.user-links li a:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--bg-theme-color2);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.user-links li a:hover:before {
  width: 100%;
}

/* Gallery Widget */
.gallery-widget {
  position: relative;
  margin-left: -30px;
  padding-right: 40px;
}
.gallery-widget .outer {
  position: relative;
  padding-top: 5px;
  margin: 0px -5px 0;
}
.gallery-widget .outer .image {
  position: relative;
  float: left;
  width: 33.3333%;
  padding: 0px 5px;
  margin-bottom: 10px;
}
.gallery-widget .image img {
  display: block;
  width: 100%;
}
.gallery-widget .image a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-widget .image a:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--bg-theme-color2) padding-box content-box;
  opacity: 0.8;
  content: "";
  -webkit-transform: scale(0);
  transform: scale(0);
  border-radius: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.gallery-widget .image a:hover:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.gallery-widget .image a:hover:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.gallery-widget .image a:after {
  position: absolute;
  height: 20px;
  width: 20px;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
  content: "\f0c1";
  text-align: center;
  line-height: 20px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

/* Gallery Widget */
.contacts-widget {
  position: relative;
  padding-left: 30px;
}
.contacts-widget .text {
  color: #8f8f8f;
  margin-bottom: 20px;
}
.contacts-widget .contact-info {
  position: relative;
}
.contacts-widget .contact-info li {
  font-size: 15px;
  color: #ffffff;
  line-height: 26px;
  margin-bottom: 10px;
}
.contacts-widget .contact-info li a {
  color: inherit;
}
.contacts-widget .contact-info li i {
  color: var(--theme-color2);
  margin-right: 10px;
}

/*=== Footer Bottom ===*/
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom .inner-container {
  position: relative;
  padding: 35px 15px;
  text-align: center;
}
.footer-bottom .copyright-text {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: #8f8f8f;
}
.footer-bottom .copyright-text a {
  color: inherit;
}
.footer-bottom .copyright-text a:hover {
  color: #ffffff;
}
/*=== List Style Two ===*/
.list-style-two {
  position: relative;
}
.list-style-two li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--theme-color1);
  padding-left: 35px;
  margin-bottom: 8px;
}
.list-style-two li b {
  color: #000;
  font-size: 14px;
}

.list-style-two li i {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--theme-color2);
  font-size: 18px;
  line-height: 26px;
}
.list-style-two li a {
  display: inline-block;
  color: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.list-style-two li a:hover {
  color: #ffffff;
}

.badge-overlay {
  position: absolute;
  left: 0%;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 100;
  -webkit-transition: width 1s ease, height 1s ease;
  -moz-transition: width 1s ease, height 1s ease;
  -o-transition: width 1s ease, height 1s ease;
  transition: width 0.4s ease, height 0.4s ease;
}

/* ================== Badge CSS ========================*/
.badge {
  margin: 0;
  padding: 0;
  color: white;
  padding: 8px;
  text-align: center;
  line-height: normal;
  text-transform: uppercase;
  background: #ed1b24;
}

.badge::before,
.badge::after {
  content: "";
  position: absolute;
  top: 0;
  margin: 0 -1px;
  width: 100%;
  height: 100%;
  background: inherit;
  min-width: 55px;
}

.badge::before {
  right: 100%;
}

.badge::after {
  left: 100%;
}

/* ================== Badge Position CSS ========================*/
.top-right {
  position: absolute;
  top: 0;
  right: 0;
  -ms-transform: translateX(30%) translateY(0%) rotate(45deg);
  -webkit-transform: translateX(30%) translateY(0%) rotate(45deg);
  transform: translateX(30%) translateY(0%) rotate(45deg);
  -ms-transform-origin: top left;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

.getInTouch-container {
  position: relative;
    width: 100%;
    height: 200px; /* Adjust height as needed */
}

.getInTouch-text {
  color: black; /* Text color */
  font-size: 24px; /* Adjust font size as needed */
}

.getInTouch-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/getInTouchBanner.png"); /* Replace 'your-image.jpg' with your image URL */
  background-size: cover;
  background-position: center;
  opacity: 0.3; /* Adjust opacity as needed */
}

.myy-5 {
margin-top: 3rem;
}

.align-right {
  text-align: center;
  margin-left: 54%;
}

.align-right-email {
  text-align: center;
  margin-left: 51%;
  margin-top: -18px;
}

.big-email {
  font-size: x-large;
}
