:root {
  --shadowColor: rgba(0, 0, 0, 1);
  --black: #000000;
  --white: #ffffff;
  --primary-color: #00a3a5;
  --themeColor: #696969;
  --start-top: 120px;
  --gap: 20px;
}

/*=============================================
  =             Font Family Css                 =
  =============================================*/
/* @charset "UTF-8"; */

@font-face {
  font-family: "CerebriSans";
  src: url(../fonts/cerebrisans/CerebriSans-Regular.eot);
  src: url(../fonts/cerebrisans/CerebriSans-Regular.eot#iefix) format("embedded-opentype"),
    url(../fonts/cerebrisans/CerebriSans-Regular.ttf) format("truetype"),
    url(../fonts/cerebrisans/CerebriSans-Regular.woff) format("woff"),
    url(../fonts/cerebrisans/CerebriSans-Regular.svg) format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CerebriSans";
  src: url(../fonts/cerebrisans/CerebriSans-Italic.eot);
  src: url(../fonts/cerebrisans/CerebriSans-Italic.eot#iefix) format("embedded-opentype"),
    url(../fonts/cerebrisans/CerebriSans-Italic.ttf) format("truetype"),
    url(../fonts/cerebrisans/CerebriSans-Italic.woff) format("woff"),
    url(../fonts/cerebrisans/CerebriSans-Italic.svg) format("svg");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "CerebriSans";
  src: url(../fonts/cerebrisans/CerebriSans-Light.eot);
  src: url(../fonts/cerebrisans/CerebriSans-Light.eot#iefix) format("embedded-opentype"),
    url(../fonts/cerebrisans/CerebriSans-Light.ttf) format("truetype"),
    url(../fonts/cerebrisans/CerebriSans-Light.woff) format("woff"),
    url(../fonts/cerebrisans/CerebriSans-Light.svg) format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CerebriSans";
  src: url(../fonts/cerebrisans/CerebriSans-Medium.eot);
  src: url(../fonts/cerebrisans/CerebriSans-Medium.eot#iefix) format("embedded-opentype"),
    url(../fonts/cerebrisans/CerebriSans-Medium.ttf) format("truetype"),
    url(../fonts/cerebrisans/CerebriSans-Medium.woff) format("woff"),
    url(../fonts/cerebrisans/CerebriSans-Medium.svg) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CerebriSans";
  src: url(../fonts/cerebrisans/CerebriSans-SemiBold.eot);
  src: url(../fonts/cerebrisans/CerebriSans-SemiBold.eot#iefix) format("embedded-opentype"),
    url(../fonts/cerebrisans/CerebriSans-SemiBold.ttf) format("truetype"),
    url(../fonts/cerebrisans/CerebriSans-SemiBold.woff) format("woff"),
    url(../fonts/cerebrisans/CerebriSans-SemiBold.svg) format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CerebriSans";
  src: url(../fonts/cerebrisans/CerebriSans-Bold.eot);
  src: url(../fonts/cerebrisans/CerebriSans-Bold.eot#iefix) format("embedded-opentype"),
    url(../fonts/cerebrisans/CerebriSans-Bold.ttf) format("truetype"),
    url(../fonts/cerebrisans/CerebriSans-Bold.woff) format("woff"),
    url(../fonts/cerebrisans/CerebriSans-Bold.svg) format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CerebriSans";
  src: url(../fonts/cerebrisans/CerebriSans-ExtraBold.eot);
  src: url(../fonts/cerebrisans/CerebriSans-ExtraBold.eot#iefix) format("embedded-opentype"),
    url(../fonts/cerebrisans/CerebriSans-ExtraBold.ttf) format("truetype"),
    url(../fonts/cerebrisans/CerebriSans-ExtraBold.woff) format("woff"),
    url(../fonts/cerebrisans/CerebriSans-ExtraBold.svg) format("svg");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CerebriSans";
  src: url(../fonts/cerebrisans/CerebriSans-Heavy.eot);
  src: url(../fonts/cerebrisans/CerebriSans-Heavy.eot#iefix) format("embedded-opentype"),
    url(../fonts/cerebrisans/CerebriSans-Heavy.ttf) format("truetype"),
    url(../fonts/cerebrisans/CerebriSans-Heavy.woff) format("woff"),
    url(../fonts/cerebrisans/CerebriSans-Heavy.svg) format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.74;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  visibility: visible;
  font-family: "CerebriSans";
  color: #696969;
  position: relative;
  background-color: var(--white);
  overflow-x: hidden;
}

body.no-overflow {
  overflow: hidden;
}

.container {
  max-width: 1400px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333333;
  font-family: "CerebriSans";
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.41;
}

h1 {
  font-size: 50px;
}
h2 {
  font-size: 48px;
}
h3 {
  font-size: 40px;
}
h4 {
  font-size: 34px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 18px;
}
p:last-child {
  margin-bottom: 0;
}

a,
button {
  color: var(--primary-color);
  display: inline;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

a,
button,
img,
input {
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

*:focus {
  outline: none !important;
}

a:focus {
  outline: none;
  text-decoration: none;
}

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

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

button,
input[type="submit"] {
  cursor: pointer;
}

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

.form-messege.success,
.form-messege-2.success {
  color: green;
}

.form-messege.error,
.form-messege-2.error {
  color: red;
}

.mark,
mark {
  padding: 0 0;
  background-color: transparent;
}

.font-weight--light {
  font-weight: 300;
}
.font-weight--normal {
  font-weight: 400;
}
.font-weight--reguler,
.font-medium {
  font-weight: 500 !important;
}
.font-semibold {
  font-weight: 600 !important;
}
.font-weight--bold {
  font-weight: 800;
}

/* -- Default Class -- */
.text-color-primary {
  color: var(--primary-color) !important;
}

.text-color-secondary {
  color: #d2a98e;
}

.text-black {
  color: #333333 !important;
}

.bg-white {
  background: var(--white);
}

.bg-black {
  background: #333;
}

.bg-gray {
  background: #f9fafb;
}

.bg-gray-2 {
  background: #f6fafe;
}

.bg-gray-3 {
  background: #f6f6f6;
}

.bg-theme-default {
  background: var(--primary-color);
}

.sub-heading {
  color: #6d70a6;
}

.black-bg {
  background: #000000;
}

.theme-color {
  color: var(--themeColor) !important;
}

.border-radus-5 {
  border-radius: 5px;
}

.text-green {
  color: #d2a98e;
}

.bg-gradient {
  background: -webkit-linear-gradient(top, #fff 0, #f5f5f5 100%);
}

.box-shadow-top {
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.border {
  border: 1px solid #ededed !important;
}

.border-top {
  border-top: 1px solid #ededed !important;
}

.border-right {
  border-right: 1px solid #ededed !important;
}

.border-bottom {
  border-bottom: 1px solid #ededed !important;
}

.border-left {
  border-left: 1px solid #ededed !important;
}

.border-top-dash {
  border-top: 1px dashed #ddd !important;
}

.border-bottom-dash {
  border-bottom: 1px dashed #ddd !important;
}

.border-top-thick {
  border-top: 2px solid #ededed !important;
}

.border-bottom-thick {
  border-bottom: 2px solid #ededed !important;
}

.border-top-drak {
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.border-bottom-drak {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.section-sub-title {
  font-size: 14px;
  line-height: 1.43;
  margin-top: -5px;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
}

.section-under-heading {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
}

.section-under-heading a {
  color: var(--primary-color);
  border-bottom: 1px solid #ccc;
  position: relative;
}

.section-under-heading a::before {
  content: "";
  width: 0;
  height: 1px;
  bottom: -1px;
  position: absolute;
  left: auto;
  right: 0;
  z-index: 1;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: currentColor;
}

.section-under-heading a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.img-width {
  width: 100%;
}

.title-dec-text {
  text-align: center;
  max-width: 760px;
  margin: auto;
}

form input:focus::-webkit-input-placeholder {
  color: transparent;
}

form input:focus::-moz-placeholder {
  color: transparent;
}

form input:focus:-ms-input-placeholder {
  color: transparent;
}

form input::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder {
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

form input::-moz-placeholder,
form textarea::-moz-placeholder {
  -moz-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

form input:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
  -ms-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

form input::-ms-input-placeholder,
form textarea::-ms-input-placeholder {
  -ms-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

form input::placeholder,
form textarea::placeholder {
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus,
select:focus,
textarea:focus {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

input[type="checkbox"] {
  position: relative;
  background: 0 0;
  border-width: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0 10px 0 3px;
  cursor: pointer;
}

/*-- Tab Content & Pane Fix --*/
select {
  padding: 3px 20px;
  height: 56px;
  max-width: 100%;
  width: 100%;
  outline: none;
  border: 1px solid #f8f8f8;
  border-radius: 5px;
  background: #f8f8f8;
  background-color: #f8f8f8;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

select:focus {
  background: #f8f8f8 !important;
}

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

/*=============================================
  =              05. Header Css            =
  =============================================*/
.header-area {
  position: relative;
  z-index: 9;
}
.header-area .is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
  animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
  z-index: 999;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.header-area--default {
  border-color: #e4e8f6;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}
.header {
  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;
}
.header__logo {
  -webkit-flex-basis: 20%;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  padding: 14px 0;
  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;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header__logo a img {
  width: 230px;
}
.header.default-menu-style .header__logo {
  -webkit-flex-basis: 23.5%;
  -ms-flex-preferred-size: 23.5%;
  flex-basis: 23.5%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 0;
}

.header.default-menu-style .header-midle-box {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header-bottom-inner {
  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;
}
.header-bottom-left-wrap {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.top-message {
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.78;
}

.top-message a {
  color: var(--primary-color);
  font-weight: 500;
}

.top-message a:hover {
  color: var(--primary-color);
}
.header.default-menu-style .header-right-box {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-flex-basis: 23.5%;
  -ms-flex-preferred-size: 23.5%;
  flex-basis: 23.5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.header.default-menu-style .header-right-box .header-right-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header-right-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -12px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0 12px;
}

.header-search-form {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.header-search-form .search-form-top {
  position: relative;
  background-color: rgba(0, 47, 166, 0.3);
}

.header-search-form .search-form-top input::-webkit-input-placeholder,
.header-search-form .search-form-top textarea::-webkit-input-placeholder {
  color: #333;
}

.header-search-form .search-form-top input::-moz-placeholder,
.header-search-form .search-form-top textarea::-moz-placeholder {
  color: #333;
}

.header-search-form .search-form-top input:-ms-input-placeholder,
.header-search-form .search-form-top textarea:-ms-input-placeholder {
  color: #333;
}

.header-search-form .search-form-top input::-ms-input-placeholder,
.header-search-form .search-form-top textarea::-ms-input-placeholder {
  color: #333;
}

.header-search-form .search-form-top input::placeholder,
.header-search-form .search-form-top textarea::placeholder {
  color: #333;
}

.header-search-form.default-search {
  height: 100%;
}

.header-area .is-sticky .header-search-form .search-form-top .search-field {
  color: #000;
}

.header-area .is-sticky .header-search-form .search-form-top .search-submit {
  color: #333;
}

.header-area .is-sticky .header__logo .dark-logo {
  display: inherit;
}

.header-area .is-sticky .header__logo .light-logo {
  display: none;
}

.header-area .is-sticky .header-search-form-two.white-icon a {
  color: #333;
}

.header-search-form .search-form-top .search-field {
  width: 270px;
  border-radius: 0;
  border: 0 !important;
  background: 0 0 !important;
  min-height: 60px;
  padding-right: 50px;
  padding-left: 10px;
  color: #fff;
}

.header-search-form.default-search .search-form-top .search-field {
  max-width: 225px;
  color: #333;
  min-height: 80px;
  box-shadow: none;
}

.header-search-form.default-search .search-form-top .search-submit {
  color: #000000;
}

.header-search-form .search-form-top .search-submit {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  font-size: 18px;
  background: 0 0;
  width: 48px;
  height: 48px;
  line-height: 50px;
  padding: 0;
  border: 0;
  color: var(--white);
}

.header-search-form.default-search .search-form-top {
  background: transparent;
  border-left: 1px solid #eee;
  margin-right: 5px;
}

/*============================== 
    - Navigation Menu Css
===============================*/
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item.mega-menu-megamenu
  > ul.mega-sub-menu {
  padding: 20px;
  box-shadow: 0px 4px 6px -2px #10182821, -2px 2px 15px -1px #71717138;
}
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item.mega-menu-tabbed
  > ul.mega-sub-menu
  > li.mega-menu-item {
  margin: 1px 0px;
}

nav
  #mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item
  > ul.mega-sub-menu
  > li.mega-menu-item
  > a.mega-menu-link {
  background: var(--white);
  font-weight: 500 !important;
  text-decoration: none;
  color: var(--black);
  border-radius: 8px;
}
nav
  #mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item
  > ul.mega-sub-menu
  > li.mega-menu-item.mega-current-menu-item
  > a.mega-menu-link,
nav
  #mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item
  > ul.mega-sub-menu
  > li.mega-menu-item.mega-current-menu-parent
  > a.mega-menu-link,
nav
  #mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-item
  > ul.mega-sub-menu
  > li.mega-menu-item
  > a.mega-menu-link:hover {
  color: var(--white);
  background: linear-gradient(to right, #004041, #00a4a7);
  font-weight: 500;
}
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-tabbed
  > ul.mega-sub-menu
  > li.mega-menu-item.mega-menu-grid
  > ul.mega-sub-menu {
  border: 1px solid #e4e7ee;
  box-shadow: 0px 4px 6px -2px #10182808, -2px 2px 15px -1px #7171711f;
  margin: 0 20px;
  top: 20px;
  padding: 20px;
  min-height: calc(100% - 40px);
  width: calc(70% - 40px);
}
#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-tabbed
  > ul.mega-sub-menu
  > li.mega-menu-item.mega-menu-grid
  > ul.mega-sub-menu
  li.mega-custom-content-section {
  border-left: 1px solid #e4e7ee;
  padding-left: 24px;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column-standard > a.mega-menu-link,
#mega-menu-wrap-primary
  #mega-menu-primary
  li.mega-menu-column
  > ul.mega-sub-menu
  > li.mega-menu-item
  > a.mega-menu-link {
  display: flex;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column-standard > a.mega-menu-link:before,
#mega-menu-wrap-primary
  #mega-menu-primary
  li.mega-menu-column
  > ul.mega-sub-menu
  > li.mega-menu-item
  > a.mega-menu-link:before {
  content: "";
  display: inline-block;
  height: 18px;
  flex: 0 0 18px;
  background: url("../images/service-sprite.png") no-repeat scroll -339px -11px transparent;
  margin: 0 5px 0 0px;
}

#mega-menu-wrap-primary
  #mega-menu-primary
  li.mega-menu-column-standard
  > a.mega-menu-link:hover:before,
#mega-menu-wrap-primary
  #mega-menu-primary
  li.mega-menu-column-standard.mega-current_page_item
  > a.mega-menu-link:before,
#mega-menu-wrap-primary
  #mega-menu-primary
  li.mega-menu-column
  > ul.mega-sub-menu
  > li.mega-menu-item
  > a.mega-menu-link:hover:before {
  background-position: -298px -11px !important;
}
#mega-menu-wrap-primary
  #mega-menu-primary
  li.mega-menu-column-standard.mega-current_page_item
  > a.mega-menu-link {
  color: var(--primary-color) !important;
  text-decoration: underline !important;
}
#mega-menu-wrap-primary
  #mega-menu-primary
  li.mega-menu-item
  > ul.mega-sub-menu
  .menu-cta-section
  p {
  margin: 24px 0 15px;
  font-size: 18px;
  line-height: 24px;
}
#mega-menu-wrap-primary .menu-cta-section a {
  text-decoration: underline;
  font-size: 18px;
  line-height: 20px;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item > ul.mega-sub-menu input,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item > ul.mega-sub-menu img {
  height: 315px;
} 
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
  box-shadow: 0px 4px 6px -2px #10182821, -2px 2px 15px -1px #71717138;
  border-radius: 16px !important;
}
.menu-what-we-do {
  position: absolute;
  top: 0;
  color: #fff;
  padding: 20px;
  font-size: 18px;
}
.menu-what-we-do .menu-custom-title {
  position: relative;
  color: var(--white);
  font-size: 22px;
  margin-bottom: 20px;
  border-left: 3px solid var(--primary-color);
  padding: 0 0 0px 15px;
  line-height: 26px;
}

/*=====  End of Header  ======*/
/*=========================================
  =               Footer Css            =
  ===========================================*/
.footer-widget__title {
  margin-top: -3px;
  color: var(--white);
  font-size: 18px;
}
.footer-widget__list li {
  margin-bottom: 10px;
  color: var(--white);
}
.footer-widget__list li a {
  color: var(--white) !important;
}
.footer-widget__list p {
  line-height: 22px;
}
.footer-widget__list .align-top {
  margin-top: 2px;
}
.footer-widget__list li:last-child {
  margin-bottom: 0;
}
.copyright-text,
.copyright-text a {
  display: inline-block;
  color: var(--white) !important;
}
.hover-style-link {
  position: relative;
}
.hover-style-link:after {
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
}
.hover-style-link:hover {
  color: var(--primary-color) !important;
}
.hover-style-link:hover:after {
  left: 0;
  width: 100%;
  right: auto;
}
.hover-style-link {
  color: #696969 !important;
}
.site-footer {
  margin-top: 0px;
  background: linear-gradient(92.08deg, #002627 -2.22%, #004445 156.42%);
  color: #fff;
  font-size: 16px !important;
  background-color: #002627;
}
.footer-area-wrapper:before {
  content: "";
  background: #516060;
  height: 300px;
  width: 250px;
  position: absolute;
  bottom: -10px;
  left: -80px;
  opacity: 0.2;
  border-radius: 30px;
  transform: rotate(45deg);
}
.bg-shap:before,
.bg-shap:after {
  content: "";
  position: absolute;
  transform: rotate(-45deg);
  border-radius: 30px;
}
.bg-shap:before {
  background: #3d6767;
  height: 340px;
  width: 240px;
  position: absolute;
  top: -160px;
  right: 120px;
  opacity: 0.2;
  z-index: 1;
}
.bg-shap:after {
  background: #1e3f3f;
  height: 340px;
  width: 240px;
  top: -60px;
  right: -100px;
}
.footer-certificate-section img {
  height: 100px;
  width: 100px;
}
.footer-copyright-area {
  border-top: 1px solid #403f3f;
}
footer ul li {
  margin-top: 0 !important;
}

/*=============================================
=        26. Social Networks Css            =
=============================================*/
.ht-social-networks.solid-rounded-icon .social-link {
  font-size: 18px;
  display: block;
  text-align: center;
  height: 48px;
  width: 48px;
  line-height: 46px;
  background: #ffffff0a;
  color: var(--white);
  border-radius: 50%;
  position: relative;
  border: 1px solid #ffffff0a;
}

.ht-social-networks.flat-round .social-link:hover,
.ht-social-networks.solid-rounded-icon .social-link:hover {
  color: var(--white);
  background: var(--primary-color);
}

.ht-social-networks.solid-rounded-icon .social-link:hover {
  border: 1px solid var(--primary-color);
  color: var(--white);
}

.ht-social-networks.solid-rounded-icon.social-white .social-link {
  color: var(--white);
}

.ht-social-networks.solid-rounded-icon.social-white .social-link:hover {
  border: 1px solid var(--white);
  color: var(--primary-color);
  background: var(--white);
}
/* Mobile Mavigation icon */

.mobile-navigation-icon {
  width: 24px;
  height: 25px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  margin-left: 30px;
}

.mobile-navigation-icon:hover i {
  background-color: var(--primary-color);
}

.mobile-navigation-icon:hover i:before {
  width: 80%;
  background-color: var(--primary-color);
}

.mobile-navigation-icon:hover i:after {
  background-color: var(--primary-color);
  width: 60%;
}

.mobile-navigation-icon i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #333;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-navigation-icon i:before {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  content: "";
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-navigation-icon i:after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  content: "";
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hidden-icons-menu {
  margin-left: 15px;
}

.hidden-icons-menu > div {
  color: #6d70a6;
  font-size: 20px;
}

.hidden-icons-menu > div:hover {
  color: var(--primary-color);
}

/*================================ 
    - Mobile Menu Overlay Css
==================================*/
.mobile-menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
  overflow: auto;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
}

.mobile-menu-overlay__inner {
  -webkit-transform: translateX(120%);
  -ms-transform: translateX(120%);
  transform: translateX(120%);
  width: 400px;
  height: 100%;
  float: right;
  cursor: default;
  background: var(--primary-color);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-overlay.active .mobile-menu-overlay__inner {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu-overlay__header {
  background-color: var(--white);
  padding: 15px 0;
}

.mobile-menu-overlay__header .mobile-navigation-close-icon {
  position: relative;
  cursor: pointer;
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: inline-block;
}

.mobile-menu-overlay__header .mobile-navigation-close-icon:before {
  position: absolute;
  top: 23px;
  left: 8px;
  content: "";
  width: 24px;
  height: 3px;
  background: #333333;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-menu-overlay__header .mobile-navigation-close-icon:after {
  position: absolute;
  top: 23px;
  left: 8px;
  content: "";
  width: 24px;
  height: 3px;
  background: #333333;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-menu-overlay__header .mobile-navigation-close-icon:hover {
  color: var(--primary-color);
}

.mobile-menu-overlay__header .mobile-navigation-close-icon:hover:before,
.mobile-menu-overlay__header .mobile-navigation-close-icon:hover:after {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.mobile-menu-overlay__body {
  padding: 20px 40px 100px;
}
/*=============================================
   - Scroll top
=============================================*/
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: -60px;
  z-index: 999;
  -webkit-box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
  display: block;
  padding: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  line-height: 60px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background-color: var(--primary-color);
  background-size: 200% auto;
  background-position: left center;
  color: var(--white);
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: hidden;
}

.scroll-top.show {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}

.scroll-top i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--white);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.scroll-top .arrow-top {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.scroll-top .arrow-bottom {
  -webkit-transform: translate(-50%, 80px);
  -ms-transform: translate(-50%, 80px);
  transform: translate(-50%, 80px);
}

.scroll-top:hover {
  background-position: right center;
}

.scroll-top:hover .arrow-top {
  -webkit-transform: translate(-50%, -80px);
  -ms-transform: translate(-50%, -80px);
  transform: translate(-50%, -80px);
}

.scroll-top:hover .arrow-bottom {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.feature-images-wrapper,
.feature-images-wrapper > .container {
  position: relative;
  /* overflow: hidden; */
}

@-webkit-keyframes boxImageAnimationSignal {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  1% {
    opacity: 0.14;
  }
  20% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.4;
  }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes boxImageAnimationSignal {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  1% {
    opacity: 0.14;
  }
  20% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.4;
  }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
.ht-box-images.style-01 {
  position: relative;
  display: flex;
  height: 100%;
  margin-bottom: 50px;
  transition: all 0.4s ease-in-out;
}
.ht-box-images.style-01:hover {
  transform: translateY(-4px);
}
.ht-box-images.style-01 .image-box-wrap {
  background: #fff;
  padding: 50px 30px 63px;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  text-align: center;
  margin-top: 60px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
  -webkit-box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
}
.ht-box-images.style-01:hover .image-box-wrap {
  -webkit-box-shadow: 1px 1px 14px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 1px 14px rgba(0, 0, 0, 0.08);
}
.ht-box-images.style-01 .image-box-wrap .box-image {
  text-align: center;
  margin-bottom: 41px;
  height: 108px;
  color: var(--primary-color);
}
.ht-box-images.style-01 .image-box-wrap .box-image img {
  transition: all 0.4s ease-in-out;
  height: 100%;
}
.ht-box-images.style-01:hover .image-box-wrap .box-image img {
  /* filter: brightness(0) invert(1); */
  transform: rotateY(180deg);
}

.ht-box-images.style-01 .image-box-wrap .content {
  text-align: center;
}

.ht-box-images.style-01 .image-box-wrap .content .heading {
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 12px;
}

.ht-box-images.style-01 .image-box-wrap .content .h-60 {
  height: 60px;
}

.ht-box-images.style-01 .image-box-wrap .content .service_text {
  color: #696969;
}

.ht-box-images.style-01:hover .icon-box-wrap {
  border-color: #fff;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  background: #fff;
  -webkit-box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
}

.ht-box-images.style-01 .circle-arrow {
  position: absolute;
  left: 50%;
  bottom: 0px;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  height: 56px;
  width: 56px;
}

.ht-box-images.style-01 .circle-arrow .middle-dot {
  pointer-events: none;
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  opacity: 0;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.ht-box-images.style-01 .circle-arrow a {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  color: #fff !important;
  background: var(--primary-color);
}

.ht-box-images.style-01:hover .circle-arrow a {
  background: var(--primary-color);
}
.ht-box-images.style-01 .circle-arrow a > i {
  transform: rotate(-45deg);
  transition: all 0.1s ease;
}
.ht-box-images.style-01 .circle-arrow a:hover > i {
  transform: rotate(0deg);
}

.ht-box-images.style-01:hover .circle-arrow .middle-dot {
  -webkit-animation: boxImageAnimationSignal cubic-bezier(0, 0.55, 0.55, 1) 2s;
  animation: boxImageAnimationSignal cubic-bezier(0, 0.55, 0.55, 1) 2s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  animation-fill-mode: none;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.ht-box-icon.style-03 .icon-box-wrap {
  padding: 30px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ht-box-icon.style-03 .icon-box-wrap .content-header {
  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;
}

.ht-box-icon.style-03 .icon-box-wrap .content-header .icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 48px;
  font-weight: normal;
  min-width: 60px;
  margin-right: 10px;
  color: #d2a98e;
}

.ht-box-icon.style-03 .icon-box-wrap .content-header .heading {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.ht-box-icon.style-03 .icon-box-wrap .content .service_text {
  color: #696969;
}

.ht-box-icon.style-03:hover .icon-box-wrap {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  background: #fff;
  -webkit-box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
}

/*============================================
=           02. Section Spacing Css          =
=============================================*/

.section-space--ptb_120 {
  padding-top: 120px;
  padding-bottom: 120px;
}
.section-space--ptb_100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-space--ptb_80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section-space--ptb_70 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.section-space--ptb_60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.section-space--ptb_30 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.section-space--ptb_15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.section-space--pt_100 {
  padding-top: 100px;
}
.section-space--pt_90 {
  padding-top: 90px;
}
.section-space--pt_80 {
  padding-top: 80px;
}
.section-space--pt_70 {
  padding-top: 70px;
}
.section-space--pt_60 {
  padding-top: 60px;
}
.section-space--pt_40 {
  padding-top: 40px;
}
.section-space--pt_30 {
  padding-top: 30px;
}

.section-space--pb_90 {
  padding-bottom: 90px;
}
.section-space--pb_80 {
  padding-bottom: 90px;
}
.section-space--pb_70 {
  padding-bottom: 70px;
}
.section-space--pb_60 {
  padding-bottom: 60px;
}
.section-space--pb_40 {
  padding-bottom: 40px;
}
.section-space--pb_30 {
  padding-bottom: 30px;
}

.section-space--mt_15 {
  margin-top: 15px;
}
.section-space--mt_20 {
  margin-top: 20px;
}
.section-space--mt_30 {
  margin-top: 30px;
}
.section-space--mt_40 {
  margin-top: 40px;
}
.section-space--mt_50 {
  margin-top: 50px;
}
.section-space--mt_60 {
  margin-top: 60px;
}
.section-space--mt_70 {
  margin-top: 70px;
}
.section-space--mt_80 {
  margin-top: 80px;
}
.section-space--mt_100 {
  margin-top: 100px;
}
.section-space--mt_120 {
  margin-top: 120px;
}

.section-space--mb_15 {
  margin-bottom: 15px;
}
.section-space--mb_20 {
  margin-bottom: 20px;
}
.section-space--mb_30 {
  margin-bottom: 30px;
}
.section-space--mb_40 {
  margin-bottom: 40px;
}
.section-space--mb_50 {
  margin-bottom: 50px;
}
.section-space--mb_60 {
  margin-bottom: 60px;
}
.section-space--mb_100 {
  margin-bottom: 100px;
}
.section-space--mb_120 {
  margin-bottom: 120px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

/*=====  End of spacing  ======*/
/*=================================
=         35. Infotechno Css        =
===================================*/
.infotechno-bg {
  margin-bottom: 50px;
  background: url("../images/topBannerBG.png") no-repeat scroll 0 0 transparent;
  background-size: cover;
  background-color: var(--black);
}
.shapeSVGHexagon {
  height: 100%;
}
.shape1-svg {
  filter: drop-shadow(-7px 7px 10px var(--shadowColor));
}

.shape2-svg {
  filter: drop-shadow(-2px 5px 8px var(--shadowColor));
}

.shape3-svg {
  filter: drop-shadow(-5px 6px 7px var(--shadowColor));
}

.shape-1 {
  left: -290px;
  top: 160px;
}

.shape-2 {
  left: -220px;
  top: 120px;
}

.shape-3 {
  left: -150px;
  top: -320px;
}

.shape-4 {
  left: 150px;
  top: 170px;
}

.shape-5 {
  left: 185px;
  top: 315px;
}

.shape-6 {
  left: 35px;
  top: 380px;
}

.shape-7 {
  left: 70px;
  top: 545px;
}

.shape-8 {
  left: -50px;
  top: 540px;
}

.shape-9 {
  left: -55px;
  top: -35px;
}

.shape-10 {
  left: 150px;
  top: -70px;
  z-index: 1;
}

.shape-11 {
  left: 185px;
  top: -85px;
}

.shape-12 {
  left: 340px;
  top: 90px;
}

.shape-13 {
  left: 500px;
  top: -125px;
}

.shape-14 {
  left: 635px;
  top: 15px;
}

.shape-15 {
  right: -400px;
  bottom: -430px;
}

.shape-16 {
  right: 80px;
  bottom: 190px;
}

.shape-17 {
  right: -45px;
  top: 160px;
}

.shape-18 {
  right: -140px;
  top: -20px;
}

.shape-19 {
  right: -65px;
  bottom: -120px;
}

.shape-20 {
  right: 190px;
  bottom: 40px;
}

.shape-21 {
  right: 240px;
  bottom: -95px;
}

.shape-1 .shapeSVGHexagon {
  width: 450px;
  animation: shape_one 10s infinite alternate ease-in-out;
}

@keyframes shape_one {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100px);
  }
}

.shape-2 .shapeSVGHexagon {
  width: 300px;
  animation: shape_two 15s infinite alternate ease-in-out;
}

@keyframes shape_two {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50px);
  }
}

.shape-3 .shapeSVGHexagon {
  width: 500px;
}
.shape-3 > span,
.shape-3 .shapeSVGHexagon {
  animation: shape_three 25s infinite alternate ease-in-out;
}

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

.shape-4 .shapeSVGHexagon {
  width: 150px;
  animation: shape_four 20s infinite alternate;
}

@keyframes shape_four {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(0.5) translateY(-50px);
  }
}

.shape-5 .shapeSVGHexagon {
  width: 150px;
  animation: shape_five 25s infinite alternate ease-in-out;
}

@keyframes shape_five {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100px);
  }
}

.shape-6 .shapeSVGHexagon {
  width: 60px;
  animation: shape_six 15s infinite alternate ease-in-out;
}

@keyframes shape_six {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1.3) translateY(100px);
  }
}

.shape-7 .shapeSVGHexagon {
  width: 60px;
}
.shape-7 > span,
.shape-7 .shapeSVGHexagon {
  animation: shape_seven 40s infinite alternate ease-in-out;
}

@keyframes shape_seven {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(0, 100px);
  }
  50% {
    transform: translate(100px, 0) rotate(360deg) scale(1.5);
  }
  100% {
    transform: translate(0, 0);
  }
}

.shape-8 .shapeSVGHexagon {
  width: 100px;
}
.shape-8 > span,
.shape-8 .shapeSVGHexagon {
  animation: shape_eight 5s infinite alternate ease-in-out;
}

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

.shape-9 .shapeSVGHexagon {
  width: 130px;
}
.shape-9 > span,
.shape-9 .shapeSVGHexagon {
  animation: shape_nine 15s infinite linear;
}

@keyframes shape_nine {
  100% {
    transform: rotate(-360deg);
  }
}

.shape-10 .shapeSVGHexagon {
  width: 140px;
  animation: shape_ten 5s infinite alternate ease-in-out;
}

@keyframes shape_ten {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}

.shape-11 .shapeSVGHexagon {
  width: 250px;
  animation: shape_eleven 30s infinite alternate ease-in-out;
}

@keyframes shape_eleven {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-130px);
  }
}

.shape-12 .shapeSVGHexagon {
  width: 60px;
}
.shape-12 > span,
.shape-12 .shapeSVGHexagon {
  animation: shape_twelve 30s infinite reverse ease-in-out;
}

@keyframes shape_twelve {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(100px, 0);
  }
  50% {
    transform: translate(100px, 100px) rotate(180deg);
  }
  100% {
    transform: translate(0, 0);
  }
}

.shape-13 .shapeSVGHexagon {
  width: 170px;
}
.shape-13 > span,
.shape-13 .shapeSVGHexagon {
  animation: shape_thirteen 15s infinite reverse cubic-bezier(1, 0.2, 0.25, 1);
}

@keyframes shape_thirteen {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(200px) rotate(0deg);
  }
  50% {
    transform: translateY(0) rotate(360deg);
  }
  75% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

.shape-14 .shapeSVGHexagon {
  width: 60px;
  animation: shape_fourteen 5s infinite alternate ease-in-out;
}

@keyframes shape_fourteen {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(2);
  }
}

.shape-15 .shapeSVGHexagon {
  width: 800px;
}
.shape-15 > span,
.shape-15 .shapeSVGHexagon {
  animation: shape_fifteen 30s infinite alternate ease-in-out;
}

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

.shape-16 .shapeSVGHexagon {
  width: 250px;
}
.shape-16 > span,
.shape-16 .shapeSVGHexagon {
  animation: shape_sixteen 15s infinite alternate ease-in-out;
}

@keyframes shape_sixteen {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-160px) rotate(360deg) scale(0.6);
  }
}

.shape-17 .shapeSVGHexagon {
  width: 130px;
}
.shape-17 > span,
.shape-17 .shapeSVGHexagon {
  animation: shape_seventeen 10s infinite alternate ease-in-out;
}

@keyframes shape_seventeen {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(160px);
  }
}

.shape-18 .shapeSVGHexagon {
  width: 200px;
  animation: shape_eighteen 15s infinite alternate ease-in-out;
}

@keyframes shape_eighteen {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50px);
  }
}

.shape-19 .shapeSVGHexagon {
  width: 250px;
}
.shape-19 > span,
.shape-19 .shapeSVGHexagon {
  animation: shape_nineteen 10s infinite alternate ease-in-out;
}

@keyframes shape_nineteen {
  0% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(0.5) rotate(180deg);
  }
}

.shape-20 .shapeSVGHexagon {
  width: 60px;
}
.shape-20 > span,
.shape-20 .shapeSVGHexagon {
  animation: shape_twenty 20s infinite alternate ease-in-out;
}

@keyframes shape_twenty {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-160px) rotate(180deg) scale(2);
  }
}

.shape-21 .shapeSVGHexagon {
  width: 250px;
  animation: shape_twenty_one 10s infinite alternate ease-in-out;
}

@keyframes shape_twenty_one {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}

/*=============================================
=            08. Button Css           =
=============================================*/
.ht-btn {
  font-size: 15px;
  font-weight: 500;
  border-style: solid;
  border-radius: 5px;
  border-color: transparent;
  padding: 0 36px;
  text-align: center;
  color: var(--white) !important;
  background: var(--primary-color);
  border-width: 1px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.ht-btn:hover,
.ht-btn:active,
.ht-btn:focus {
  color: var(--white);
  background: var(--primary-color);
  /* -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px); */
}

.ht-btn.ht-btn-xs {
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  padding: 0 20px;
}

.ht-btn.ht-btn-sm {
  padding: 0 30px;
  height: 48px;
  line-height: 48px;
  font-size: 14px;
}

.ht-btn.ht-btn-md {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: 54px;
  height: 54px;
}

.ht-btn.ht-btn-lg {
  padding: 0 40px;
  height: 64px;
  line-height: 64px;
  font-size: 16px;
}

.ht-btn.ht-btn-custom {
  min-width: 280px;
}

.ht-btn.ht-btn-full {
  width: auto;
  display: block;
}

.ht-btn--outline {
  border-width: 1px;
  line-height: 54px;
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.ht-btn--outline:hover,
.ht-btn--outline:focus,
.ht-btn--outline:active {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  border-color: transparent;
  background: var(--primary-color);
  color: var(--white);
}

.ht-btn--solid {
  border-width: 1px;
  line-height: 54px;
  background: transparent;
  border-color: #ddd;
  color: var(--primary-color);
}

.ht-btn--solid:hover,
.ht-btn--solid:focus,
.ht-btn--solid:active {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  border-color: transparent;
  background: var(--primary-color);
  color: var(--white);
}

.ht-btn--circle {
  border-radius: 30px;
}

.ht-btn--no-round {
  border-radius: 0px;
}

.ht-btn.ht-btn-default {
  padding: 0 30px;
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  width: 180px;
}

.ht-btn .btn-icon {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  font-size: 20px;
  margin-left: 10px;
}

a.btn,
.btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 8px !important;
  position: relative;
  overflow: hidden;
  background-color: var(--primary-color);

  font-size: 15px;
  font-weight: 500;
  border-style: solid;
  border-color: transparent;
  padding: 0 22px;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  height: 54px;
  line-height: 50px;
  letter-spacing: 0em;
  color: var(--white);
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  box-shadow: none;
  text-transform: capitalize;
}
a.btn::before,
.btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: linear-gradient(98.04deg, #007779 19.82%, #27bbbd 86.16%);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
a.btn:hover::before,
.btn:hover::before {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
a.btn:hover:after,
.btn:hover:after {
  transform: rotate(0deg);
}
a.btn:after,
.btn:after {
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  transform: rotate(-45deg);
  font-weight: 900;
  margin-left: 8px;
  font-size: 0.875rem;
  line-height: 1;
  transition: all 0.1s ease;
  display: inline-block;
}

.btn:hover,
.btn:active,
.btn:focus {
  color: var(--white);
  background: var(--primary-color);
}

.btn--secondary {
  background-image: none;
  background-color: var(--primary-color);
}

.hover-style-default {
  position: relative;
}

.hover-style-default:hover:after {
  left: 0;
  width: 100%;
  right: auto;
}

/* video pay link */
.video-play i {
  color: #d2a98e;
}

.video-play span {
  font-weight: 500;
  letter-spacing: 3px;
  margin-left: 10px;
}

/*=====  End of Button  ======*/

/*======================================
=         Contact Us Css            =
=======================================*/

.box-contact-section {
  background-image: url(https://www.weetechsolution.com/wp-content/uploads/2023/03/home-infotechno-contact-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 25px;
}

.conact-us-wrap-one .heading {
  font-weight: 600;
  line-height: 1.4;
}

.conact-us-wrap-one .sub-heading {
  margin-top: 15px;
  font-size: 18px;
  margin-left: 34px;
  color: #696969;
}

.contact-info-one .icon {
  font-size: 40px;
  color: var(--primary-color);
}

.contact-info-one .heading {
  font-size: 15px;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 10px;
  margin-top: 10px;
}

.contact-info-one .call-us {
  line-height: 1.17;
  color: #006769;
  position: relative;
  display: inline-block;
}

.contact-info-one .call-us::before {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: 1;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: #006769;
}

.contact-info-one .call-us:hover {
  color: #002fa6;
}

.contact-info-one .call-us:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.contact-info-one .call-us a:hover {
  color: #006769;
}

.contact-info-one .btn--secondary {
  min-width: 230px;
}

.contact-info-one .btn--secondary:hover {
  background: var(--primary-color);
}

.contact-info.sytle-one .contact-info-title-wrap .sub-text {
  margin-top: 20px;
  color: var(--white);
  font-size: 18px;
}

.contact-info.sytle-one .contact-list-item .single-contact-list {
  display: block;
}

.contact-info.sytle-one .contact-list-item .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 55px;
}

.contact-info.sytle-one .contact-list-item .content .icon {
  color: #fff;
  border-color: #fff;
  font-size: 40px;
  margin-right: 10px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 54px;
}

.contact-info.sytle-one .contact-list-item .content .main-content .heading {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.78;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info.sytle-one .contact-list-item .content .main-content .text {
  color: #d2a98e;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.17;
}

.conact-info__list li {
  margin-bottom: 7px;
}

.conact-us-wrap-one.managed-it .heading {
  line-height: 1.67;
  font-weight: 800;
}

.infotechno-contact-us-bg {
  background: url("https://www.weetechsolution.com/wp-content/uploads/2026/01/cta_bg.png") no-repeat scroll 0 0 transparent;
  border-radius: 24px;
  padding: 44px 29px;
  width: calc(100% - 30px);
  background-size: cover;
}
.services-pages-wrap .infotechno-contact-us-bg {
  position: relative;
}
.services-pages-wrap .lets-start-section {
  min-height: 400px;
}

/*======================================
=        Contact Us Css            =
=======================================*/

.infotechno-blog-list li {
  margin-left: 0;
  margin-bottom: 0;
}

/*===================================
=          32. Project Css           =
====================================*/
.projects-wrap.style-01 {
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.projects-wrap.style-01 .projects-image-box {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 18px 40px -10px rgba(51, 51, 51, 0.1);
  box-shadow: 0 18px 40px -10px rgba(51, 51, 51, 0.1);
  position: relative;
  margin-bottom: 30px;
}

.projects-wrap.style-01 .content {
  padding: 25px 26px 94px;
  padding-bottom: 88px;
}

.projects-wrap.style-01 .content .heading {
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 2px;
  color: #333 !important;
  display: none;
}

.projects-wrap.style-01 .content .post-categories {
  color: var(--primary-color);
  margin-bottom: 2px;
}

.projects-wrap.style-01 .content .text {
  color: #696969;
  margin-top: 13px;
}

.projects-wrap.style-01 .content .box-projects-arrow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 56px;
  line-height: 55px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid #eee;
  color: var(--primary-color);
}

.projects-wrap.style-01 .content .box-projects-arrow::before {
  background-color: var(--primary-color);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: -1;
}

.projects-wrap.style-01:hover a {
  color: inherit;
}

.projects-wrap.style-01 .content .box-projects-arrow ul,
.projects-wrap.style-01 .content .box-projects-arrow li {
  margin: 0;
}

.projects-wrap.style-01:hover .content .heading {
  color: var(--primary-color);
}

.projects-wrap.style-01:hover .content .box-projects-arrow {
  color: var(--white);
}

.projects-wrap.style-01:hover .content .box-projects-arrow::before {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/*=====================================
=        34. Blog Pages Css           =
======================================*/
.single-blog__item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100%;
  -webkit-transition: all 0.5s cubic-bezier(0.57, 0.21, 0.69, 1);
  -o-transition: all 0.5s cubic-bezier(0.57, 0.21, 0.69, 1);
  transition: all 0.5s cubic-bezier(0.57, 0.21, 0.69, 1);
}

/*-------------------------
    custome css
--------------------------*/
.check-list {
  margin: 0 !important;
}
.check-list .list-item {
  margin-left: 0;
}
.h-381 {
  height: 381px;
}

.z-index-1 {
  z-index: 2;
  position: relative;
}
.ngg-breadcrumbs {
  display: none;
}
.entry-meta .byline {
  display: none;
}
.forminator-input,
.forminator-textarea {
  height: 56px !important;
  border-color: #f8f8f8 !important;
  background-color: #f8f8f8 !important;
  border-color: #f8f8f8 !important;
  background-color: #f8f8f8 !important;
  border-radius: 5px !important;
  padding: 12px !important;
  color: #000 !important;
  font-size: 15px !important;
}
.forminator-button {
  color: var(--white) !important;
  background: var(--primary-color) !important;
  padding: 0 36px !important;
  border-radius: 5px !important;
  height: 54px !important;
}
.forminator-button:hover,
.forminator-button:focus {
  box-shadow: none !important;
}
.forminator-row-last {
  margin-bottom: 0 !important;
}
.wp-block-columns {
  margin-bottom: 0 !important;
  justify-content: center;
}
.wp-block-column ul {
  list-style-type: disc;
  margin: 0 !important;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: var(--primary-color);
}
.posts-navigation .nav-links a {
  background: var(--primary-color);
  border-radius: 5px;
  letter-spacing: 0;
  text-transform: capitalize;
}
.posts-navigation .nav-links a:hover {
  color: var(--white);
}
.post ul {
  list-style-type: disc;
}
.ngg-albumoverview {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.post h2 {
  font-size: 26px !important;
}
.post h3 {
  font-size: 22px;
}

.wp-block-search__button {
  border: 0;
  border-radius: 5px;
}
.wp-block-search__input,
.comments-area textarea,
.comment-form input {
  background: #eee !important;
  box-shadow: none !important;
  border-radius: 5px;
}

.wp-block-search__input:focus,
.comments-area textarea:focus,
.comment-form input:focus {
  background: #eee;
  box-shadow: none;
}

.open_tm_preloader {
  position: fixed;
  background-color: transparent;
  z-index: 9999;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
  top: 0;
  bottom: 0;
}

.open_tm_preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.open_tm_preloader.loaded:before,
.open_tm_preloader.loaded:after {
  width: 0%;
}

.open_tm_preloader:before,
.open_tm_preloader:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  background-color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.open_tm_preloader:before {
  top: 0;
  left: 0;
}

.open_tm_preloader:after {
  bottom: 0;
  right: 0;
}

.widget-area aside:last-child {
  margin-bottom: 0;
}
.type-page .infotechno-bg h5 {
  font-weight: 400;
  margin-top: 16px;
}
.crp_related ul {
  display: flex;
  grid-gap: inherit;
}
.crp_related li {
  margin-left: 0;
  list-style-type: none;
  margin-bottom: 24px;
}
.crp_title {
  text-align: center;
  line-height: 1.5;
  padding-top: 8px;
}

.forminator-label {
  color: #000 !important;
  font-weight: 400 !important;
  font-size: 15px !important;
}
.error {
  color: red;
  font-size: 14px;
}
.crp_related ul li img {
  margin: 0 !important;
}
.wp-block-image img {
  width: auto;
  margin: 0 auto;
}
.comments-area .form-submit input {
  border-radius: 5px;
  line-height: 54px;
  height: 54px;
  padding: 0 36px;
  box-shadow: none;
  letter-spacing: inherit;
  text-transform: capitalize;
  background: var(--primary-color) !important;
}
.comments-area .form-submit input:hover,
.comments-area .form-submit input:focus {
  opacity: 1;
  color: #fff !important;
}

.list-article-thumb img {
  height: 170px;
  object-fit: cover;
}
.wp-container-1 .wp-block-image img {
  width: 100%;
}

.ngg-albumoverview.default-view .ngg-album-compact {
  margin: 0 10px 20px !important;
}

.ngg-albumoverview .ngg-album-compact:nth-child(3) {
  margin-bottom: 0 !important;
}
.comment-form input {
  height: 56px;
  padding: 12px;
}

.wp-block-search__button-outside input[type="search"]:focus,
.comment-form input:focus {
  color: #000 !important;
}
.comment-form input[type="checkbox"] {
  margin: 0;
}
.wp-block-cover {
  margin-bottom: 50px;
}
.site-wrapper-reveal {
  position: relative;
  z-index: 2;
  background: var(--white);
}
.post h2 {
  margin-bottom: 1rem !important;
  line-height: 1.2;
}
.comment-form-cookies-consent input {
  height: auto !important;
}

.comment-form-cookies-consent label {
  display: inline-block !important;
  margin-left: 8px;
}
.site-info {
  display: none;
}

.table-list {
  position: relative;
}

.table-list:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50px;
}

.table-ul {
  margin: 6px 0 0 2.5em !important;
}

.list-decimal {
  list-style-type: decimal !important;
}
.site-content {
  border-top: 0 !important;
}
h5,
h6 {
  text-transform: inherit !important;
  letter-spacing: inherit !important;
}
.fs-30 {
  font-size: 30px !important;
}

.check-list .list-item {
  margin-top: 0;
}

.infotechno-blog-list li {
  margin-top: 0;
}

.sidebar .widget {
  margin-bottom: 0 !important;
}

.sidebar .widget_search,
.sidebar .widget_recent_entries,
.sidebar .wtpsw_post_list_widget {
  margin-bottom: 40px !important;
}

.crp_related.crp-grid ul li a.crp_link {
  grid-template-rows: 150px auto;
}

#respond label {
  text-transform: inherit !important;
  color: #000;
  font-size: 15px !important;
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font-family: "CerebriSans" !important;
}

.nav-links {
  margin-bottom: 0 !important;
}

.forminator-button {
  margin: 0 10px 0 0 !important;
}

/* ------- common css start ------- */
.home .why-choose-us,
.service-process-block {
  background: linear-gradient(92.08deg, #002627 -2.22%, #004445 156.42%);
  position: relative;
  overflow: hidden;
}
#whyChooseUs-bg,
#serviceProcessBlock {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  opacity: 0.16;
}
.fun-fact-wrapper {
  background-image: url("../images/fun-fact-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: #f9fafb;
}
.expertise-text {
  border-radius: 15px;
  box-shadow: 1px 1px 14px rgba(0, 0, 0, 0.08);
}
.video-content-wrap {
  border: 2px dashed #00a3a5;
  padding: 20px 10px;
  margin: 0 0;
  border-radius: 15px;
}
.fadeInZoomIn {
  animation: fadeInZoomIn 1.5s forwards;
}
@keyframes fadeInZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* ------- common css end ------- */

/* ------- portfolio section css start ------- */
.projects-wrapper .projects-wrap {
  border-radius: 16px;
  border: none;
  position: relative;
  overflow: hidden;
  margin: 0px auto 30px;
  z-index: 8;
  transition: all 0.4s ease-in-out;
  background: var(--white);
  padding: 0px;
  display: flex;
  box-shadow: 0px 4px 6px -2px #10182808, -2px 2px 15px -1px #7171711f;
}

.project-installation-btns a {
  border-radius: 8px;
  overflow: hidden;
  height: 38px;
  width: 38px;
  background: #00a4a7;
  text-align: center;
  line-height: 33px;
}
.projects-wrapper .projects-wrap .project-details-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 39px 40px;
  position: relative;
}
.project-technology-icon {
  box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  flex: 0 0 auto;
  display: inline-flex;
  height: 40px;
  margin-right: 0.5rem;
  overflow: hidden;
  width: 40px;
  padding: 3px;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #5f666c;
  background-color: #fff;
}
.project-logo img {
  height: 50px;
}

.portfolio-tab-list a.portfolio-tab {
    font-size: 18px;
    font-weight: 500;
    border-bottom: 3px solid;
    border-color: transparent;
    color: #696969;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin: 0px 12px;
    display: block;
    transition: none;
}
.portfolio-tab-list a.portfolio-tab.active,
.portfolio-tab-list a.portfolio-tab:hover {
  border-color: var(--primary-color);
  color: var(--black);
}

.project-portfolio-page .project-card.projects-wrap {
  flex: 0 0 calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);
  margin: 0 8px 15px;
  padding: 0;
  border: none;
  background: #fff;
  box-shadow: 0px 4px 6px -2px #10182808, -2px 2px 15px -1px #7171711f;
  border-radius: 16px;
}

.project-portfolio-page .project-card.projects-wrap .project-details-wrap {
  padding: 15px;
  width: 100%;
}
.project-portfolio-page .project-card.projects-wrap .projects-image-box {
  padding: 0px;
  width: 100%;
}
.projects-image-box {
  padding: 15px;
}
.portfolio-tabs-wrapper {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
}
.portfolioTabsSwiper .swiper-slide {
  width: auto !important; 
  /* width: fit-content;  */
}
.portfolio-tabs-wrapper .portfolioTabsSwiper{
    margin: 0 50px;
}
.portfolio-tabs-wrapper div.swiper-button-next{
  right: 0px;
}
.portfolio-tabs-wrapper div.swiper-button-prev{
  left: 0px;
}
.portfolio-tabs-wrapper div.swiper-button-next,
.portfolio-tabs-wrapper div.swiper-button-prev {
  width: 35px;
  height: 35px;
  top: 20px;
}
.portfolio-tabs-wrapper div.swiper-button-next svg, .portfolio-tabs-wrapper div.swiper-button-prev svg {
    height: 18px;
    width: 18px;
}
.portfolio-tabs-wrapper div.swiper-button-next svg path, .portfolio-tabs-wrapper div.swiper-button-prev svg path{
  fill: #141B34;
}
/* ------- portfolio section css end ------- */

.popup-back-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.5;
  padding: 0;
}

.projects-masonary-wrapper .projects-wrap {
  border: none;
  background: transparent;
  margin: 0;
}

.mega-menu-item .wtpsw-post-items > ul {
  display: flex;
  align-items: flex-start;
}
.mega-menu-item .wtpsw-post-items li.wtpsw-post-li {
  clear: both;
  padding: 10px 15px !important;
  border: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 1px 1px 14px rgba(0, 0, 0, 0.08);
}
li.menu-blog-block .wtpsw-post-items li.wtpsw-post-li {
  flex: 0 0 calc(100% - 68.33%);
  max-width: calc(100% - 68.33%);
  margin: 10px !important;
}
li.wtpsw-post-li .wtpsw-post-thumb-left {
  width: 100%;
  padding: 0;
  display: block;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 10px;
}
li.wtpsw-post-li .wtpsw-post-thumb-left img {
  margin-right: 0;
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
li.wtpsw-post-li:hover .wtpsw-post-thumb-left img {
  transform: scale(1.1);
}
li.wtpsw-post-li:hover .wtpsw-post-thumb-right a.wtpsw-post-title {
  color: var(--primary-color);
}
li.menu-blog-block .mega-menu-item.widget_block {
  text-align: center !important;
}

.is-header-sticky .page-header {
  margin-top: 81px;
}
.page-header .container {
  position: relative;
}
.service-info-section img.img-fluid {
  border-radius: 15px;
}

@media screen and (min-width: 1140px) {
  .page-header.page--cover .entry-tagline {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .mobile-menu-overlay__body {
    padding: 20px 20px 100px !important;
  }
}
@media (max-width: 991px) {
  html {
    font-size: inherit !important;
  }
  .certificate-section .swiper-slide {
    width: 100%;
  }
  .certificate-section .swiper-slide.col-md-3 {
    width: 25%;
  }
  button.offcanvas-button{
    display: none;
  }
}
@media screen and (max-width: 940px) {
  .page-header.page--cover .entry-tagline {
    font-size: 18px;
  }
}
@media screen and (max-width: 720px) {
  .page-header.page--cover .entry-tagline {
    font-size: 16px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .header__logo {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .header.default-menu-style .header-right-box {
    -webkit-flex-basis: 23%;
    -ms-flex-preferred-size: 23%;
    flex-basis: 23%;
  }

  .header-search-form.default-search .search-form-top .search-field {
    max-width: 160px;
  }

  .header.default-menu-style .header__logo {
    -webkit-flex-basis: 13%;
    -ms-flex-preferred-size: 13%;
    flex-basis: 13%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 46px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 30px;
  }

  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    padding: 0 9px !important;
  }
  .service-process-block .container {
    width: 960px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 28px;
  }

  .section-space--ptb_120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-space--ptb_100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-space--ptb_80 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-space--ptb_70 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-space--ptb_60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-space--pt_100 {
    padding-top: 80px;
  }
  .section-space--pt_90 {
    padding-top: 60px;
  }
  .section-space--pt_80 {
    padding-top: 60px;
  }
  .section-space--pt_70 {
    padding-top: 40px;
  }
  .section-space--pt_60 {
    padding-top: 60px;
  }
  .section-space--pt_40 {
    padding-top: 30px;
  }

  .section-space--pb_90 {
    padding-bottom: 60px;
  }
  .section-space--pb_80 {
    padding-bottom: 60px;
  }
  .section-space--pb_70 {
    padding-bottom: 40px;
  }
  .section-space--pb_60 {
    padding-bottom: 60px;
  }
  .section-space--pb_40 {
    padding-bottom: 30px;
  }

  .section-space--mt_120 {
    margin-top: 80px;
  }
  .section-space--mt_80 {
    margin-top: 50px;
  }
  .section-space--mt_70 {
    margin-top: 50px;
  }
  .section-space--mt_60 {
    margin-top: 50px;
  }
  .section-space--mt_50 {
    margin-top: 40px;
  }

  .section-space--mb_120 {
    margin-bottom: 80px;
  }
  .section-space--mb_100 {
    margin-bottom: 80px;
  }
  .section-space--mb_60 {
    margin-bottom: 50px;
  }
  .section-space--mb_50 {
    margin-bottom: 40px;
  }
  .section-space--mb_50 {
    margin-bottom: 30px;
  }
  .section-space--mb_40 {
    margin-bottom: 30px;
  }

  .tablet-mt__0 {
    margin-top: 0px;
  }
  .tablet-mt__30 {
    margin-top: 30px;
  }
  .tablet-mt__40 {
    margin-top: 40px;
  }
  .tablet-mt__50 {
    margin-top: 50px;
  }
  .tablet-mt__60 {
    margin-top: 60px;
  }
  .tablet-mb__30 {
    margin-bottom: 30px;
  }
  .tablet-mb__40 {
    margin-bottom: 40px;
  }
  .tablet-mb__50 {
    margin-bottom: 50px;
  }
  .tablet-mb__60 {
    margin-bottom: 60px;
  }

  .header.default-menu-style .header-right-box {
    -webkit-flex-basis: 60%;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
  }
  .ht-box-images.style-01 .image-box-wrap {
    padding: 30px 20px 43px;
  }
  .project-portfolio-page .project-card.projects-wrap {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 991px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  }
  #mega-menu-wrap-primary
    ul#mega-menu-primary
    > li.mega-menu-tabbed
    > ul.mega-sub-menu
    > li.mega-menu-item
    > a.mega-menu-link {
    width: 100%;
    margin: 2px 0px;
    line-height: 16px;
    padding: 10px 8px;
    font-size: 14px;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-tabbed
    > ul.mega-sub-menu
    > li.mega-menu-item.mega-menu-grid
    > ul.mega-sub-menu {
    margin: 0 0 15px;
    top: 8px;
    padding: 15px 15px 5px !important;
    width: calc(100% - 0px);
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item.mega-menu-megamenu
    > ul.mega-sub-menu {
    padding: 10px;
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-item
    > a.mega-custom-icon.mega-menu-link:before {
    background-size: 20px 20px !important;
    width: 20px !important;
    height: 20px !important;
    line-height: 20px !important;
    flex: 0 0 20px;
  }
  .mobile-menu-overlay__inner .mobile-menu-overlay__body {
    padding: 20px 10px 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 20px;
  }

  .section-space--ptb_120 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-space--ptb_100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-space--ptb_80 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-space--ptb_60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-space--ptb_70 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-space--pt_100 {
    padding-top: 60px;
  }
  .section-space--pt_90 {
    padding-top: 40px;
  }
  .section-space--pt_80 {
    padding-top: 40px;
  }
  .section-space--pt_70 {
    padding-top: 30px;
  }
  .section-space--pt_60 {
    padding-top: 60px;
  }
  .section-space--pt_40 {
    padding-top: 30px;
  }

  .section-space--pb_90 {
    padding-bottom: 40px;
  }
  .section-space--pb_80 {
    padding-bottom: 40px;
  }
  .section-space--pb_70 {
    padding-bottom: 30px;
  }
  .section-space--pb_60 {
    padding-bottom: 60px;
  }
  .section-space--pb_40 {
    padding-bottom: 30px;
  }

  .section-space--mt_120 {
    margin-top: 60px;
  }
  .section-space--mt_100 {
    margin-top: 60px;
  }
  .section-space--mt_80 {
    margin-top: 30px;
  }
  .section-space--mt_70 {
    margin-top: 30px;
  }
  .section-space--mt_60 {
    margin-top: 30px;
  }
  .section-space--mt_50 {
    margin-top: 30px;
  }

  .section-space--mb_100 {
    margin-bottom: 60px;
  }
  .section-space--mb_120 {
    margin-bottom: 60px;
  }
  .section-space--mb_60 {
    margin-bottom: 30px;
  }
  .section-space--mb_50 {
    margin-bottom: 30px;
  }
  .section-space--mb_40 {
    margin-bottom: 30px;
  }

  .small-mt__0 {
    margin-top: 0px;
  }
  .small-mt__10 {
    margin-top: 10px;
  }
  .small-mt__20 {
    margin-top: 20px;
  }
  .small-mt__30 {
    margin-top: 30px;
  }
  .small-mt__40 {
    margin-top: 40px;
  }
  .small-mt__50 {
    margin-top: 50px;
  }
  .small-mt__60 {
    margin-top: 60px;
  }
  .small-mb__30 {
    margin-bottom: 30px;
  }
  .small-mb__40 {
    margin-bottom: 40px;
  }
  .small-mb__50 {
    margin-bottom: 50px;
  }
  .small-mb__60 {
    margin-bottom: 60px;
  }

  a.btn,
  .btn {
    padding: 0 15px;
    height: 48px;
    line-height: 42px;
  }

  .topBanner p {
    font-size: 16px;
  }

  .header.default-menu-style .header-right-box {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }

  .header-search-form.default-search .search-form-top .search-field {
    min-height: 40px;
  }

  .header.default-menu-style .header__logo {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .header__logo {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }

  .ngg-albumoverview.default-view .ngg-album-compact {
    margin: 0 20px 20px !important;
  }

  .wp-block-column p:last-child {
    margin-bottom: 1rem;
  }

  .certificate-section .swiper-slide.col-6 {
    width: 50%;
  }
  .testimonial-slider__single {
    padding: 20px 15px !important;
  }

  .project-portfolio-page .project-card.projects-wrap {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  .footer-certificate-section img {
    height: 70px;
    width: 70px;
  }
  .infotechno-contact-us-bg .contact-image-block {
    order: -1;
    margin-bottom: 40px;
    display: none;
  }
  .services-pages-wrap .h6 {
    font-size: 16px !important;
  }
  .portfolio-tab-list a.portfolio-tab {
    font-size: 16px;
  }
}

@media only screen and (max-width: 575px) {
  .header.default-menu-style .header-right-box .header-right-inner {
    margin: auto;
    justify-content: center;
  }
  .header-right-inner {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;
    -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    background-color: var(--white);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header-right-inner.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    z-index: 999;
  }
  .header-right-box .header-right-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .ht-box-icon.style-03 .icon-box-wrap {
    padding: 37px 10px;
  }
  .ht-box-icon.style-03 .icon-box-wrap .image {
    height: 100px;
    width: 100px;
    line-height: 100px;
  }
  .crp_title {
    text-align: left;
  }
  .header-search-form.default-search .search-form-top {
    margin-top: 15px;
    background: #eee;
  }
  .project-portfolio-page .project-card.projects-wrap {
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}

@media only screen and (max-width: 479px) {
  .mobile-menu-overlay__inner {
    width: 300px;
  }
  .scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .home .feature-images-wrapper:before,
  .home .feature-images-wrapper:after,
  .work-process-section::before,
  .work-process-section::after,
  .home .projects-wrapper:before,
  .home .projects-wrapper:after,
  .certificate-section::before,
  .blog-section-wrapper:after,
  .home-about:before,
  .home-about:after {
    animation: none !important;
  }
}
.user-top-banner img {
  aspect-ratio: 1 / 1;
}