@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;1,400&display=swap");

/* Variables */
:root {
  --primary-font: "Roboto", sans-serif;
  --secondary-font: "Lato", sans-serif;
  --star-size: 18px;
  --star-color: #ccc;
  --star-background: var(--secondary-color);
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #383b44;
  --black: #000;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --heading-color: #121212;
  --paragraph-color: #666666;
  --list-color: #666666;
  --link-color: #666666;
  --main-bg-color: #f7f7f7;
  --alert-bg-color: rgba(219, 231, 242, 1);
  --alert-icon-color: #4858ff;
  --primary-button-color: #7189b7;
  --primary-button-hover-color: #2d3f61;
  --paragraph-font-size: 18px;
  --placeholder-color: #6a7076;
  --hover-bg: rgba(219, 231, 242, 1);
  --primary-light-bg-color: #f0f6fd;
}

.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: var(--star-size);
  font-family: Times;
  line-height: 1;
}
.Stars::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(
    90deg,
    var(--star-background) var(--percent),
    var(--star-color) var(--percent)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Common Style */
body {
  font-family: var(--primary-font);
  color: var(--paragraph-color);
  font-size: 18px;
  line-height: 26px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--primary-font);
  font-weight: bold;
}
h1,
.h1 {
  font-size: 46px;
  line-height: 54px;
}
h2,
.h2 {
  font-size: 34px;
  line-height: 40px;
}
h3,
.h3 {
  font-size: 30px;
  line-height: 35px;
}
h4,
.h4 {
  font-size: 24px;
  line-height: 30px;
}
h5,
.h5 {
  font-size: 18px;
  line-height: 26px;
}
h6,
.h6 {
  font-size: 16px;
  line-height: 22px;
}
p {
  font-family: var(--secondary-font);
}
a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
  outline: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: var(--primary-color);
  text-decoration: none;
}
svg {
  fill: var(--primary-color);
  stroke: var(--primary-color);
}
button:focus {
  outline: 0 !important;
  box-shadow: none;
}
.btn {
  /* border:none; */
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  padding: 0.7rem 1.4rem;
  outline: none;
  text-transform: uppercase;
  /* margin-bottom: 5px; */
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-sm {
  padding: 0.5rem 1rem;
  line-height: 1.5;
}
.btn-group-lg > .btn,
.btn-lg {
  font-size: 1.125rem;
  line-height: 1.8;
  padding: 0.8rem 2.05rem;
}
.btn-primary {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:hover {
  color: #000;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn-primary.focus,
.btn-primary:focus {
  color: #000;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #000;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.btn.btn-secondary {
  color: #000;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn-secondary:hover {
  color: var(--white);
  background-color: #000;
  border-color: #000;
}
.btn-secondary.focus,
.btn-secondary:focus {
  color: var(--white);
  background-color: #0b0b0b;
  border-color: #0b0b0b;
  box-shadow: 0 0 0 0 rgba(160, 163, 167, 0.5);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: var(--white);
  background-color: #8f9397;
  border-color: #8f9397;
}
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  color: var(--white);
  background-color: #757a7e;
  border-color: #6f7377;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(160, 163, 167, 0.5);
}
.btn-black {
  color: var(--white);
  background-color: #0b0b0b;
  border-color: #0b0b0b;
}
.btn-black:hover {
  color: var(--white);
  background-color: #000;
  border-color: #000;
}
.btn-black.focus,
.btn-black:focus {
  color: var(--white);
  background-color: #0b0b0b;
  border-color: #0b0b0b;
  box-shadow: 0 0 0 0 rgba(160, 163, 167, 0.5);
}
.btn-black.disabled,
.btn-black:disabled {
  color: var(--white);
  background-color: #8f9397;
  border-color: #8f9397;
}
.btn-black:not(:disabled):not(.disabled).active,
.btn-black:not(:disabled):not(.disabled):active,
.show > .btn-black.dropdown-toggle {
  color: var(--white);
  background-color: #757a7e;
  border-color: #6f7377;
}
.btn-black:not(:disabled):not(.disabled).active:focus,
.btn-black:not(:disabled):not(.disabled):active:focus,
.show > .btn-black.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(160, 163, 167, 0.5);
}
.btn-light {
  color: #000;
  background-color: #f6f2f3;
  border-color: #f6f2f3;
}
.btn-light:hover {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-light.focus,
.btn-light:focus {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0 rgba(160, 163, 167, 0.5);
}
.btn-light.disabled,
.btn-light:disabled {
  color: var(--white);
  background-color: #8f9397;
  border-color: #8f9397;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  color: var(--white);
  background-color: #757a7e;
  border-color: #6f7377;
}
.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(160, 163, 167, 0.5);
}
.btn.btn-white {
  color: #000;
  background-color: var(--white);
  border-color: var(--white);
}
.btn-white:hover {
  color: var(--white);
  background-color: #000;
  border-color: #000;
}
.btn-white.focus,
.btn-white:focus {
  color: var(--white);
  background-color: #000;
  border-color: #000;
  box-shadow: 0 0 0 0 rgba(160, 163, 167, 0.5);
}
.btn-white.disabled,
.btn-white:disabled {
  color: var(--white);
  background-color: #8f9397;
  border-color: #8f9397;
}
.btn-white:not(:disabled):not(.disabled).active,
.btn-white:not(:disabled):not(.disabled):active,
.show > .btn-white.dropdown-toggle {
  color: var(--white);
  background-color: #757a7e;
  border-color: #6f7377;
}
.btn-white:not(:disabled):not(.disabled).active:focus,
.btn-white:not(:disabled):not(.disabled):active:focus,
.show > .btn-white.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(160, 163, 167, 0.5);
}
.border-black {
  border-color: #000 !important;
}
.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}
.btn-outline-secondary {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}
.btn-outline-secondary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #000;
}
.btn-outline-black {
  border: 1px solid #000;
  color: #000;
}
.btn-outline-black:hover {
  background: #000;
  border-color: #000;
  color: var(--white);
}
.text-white * {
  color: var(--white);
}
.pt-6,
.py-6 {
  padding-top: 4.5rem !important;
}
.pr-6,
.px-6 {
  padding-right: 4.5rem !important;
}
.pb-6,
.py-6 {
  padding-bottom: 4.5rem !important;
}
.pl-6,
.px-6 {
  padding-left: 4.5rem !important;
}
.p-7 {
  padding: 6rem !important;
}
.pt-7,
.py-7 {
  padding-top: 6rem !important;
}
.pr-7,
.px-7 {
  padding-right: 6rem !important;
}
.pb-7,
.py-7 {
  padding-bottom: 6rem !important;
}
.pl-7,
.px-7 {
  padding-left: 6rem !important;
}
.p-8 {
  padding: 8rem !important;
}
.pt-8,
.py-8 {
  padding-top: 8rem !important;
}
.pr-8,
.px-8 {
  padding-right: 8rem !important;
}
.pb-8,
.py-8 {
  padding-bottom: 8rem !important;
}
.pl-8,
.px-8 {
  padding-left: 8rem !important;
}
.p-9 {
  padding: 11rem !important;
}
.pt-9,
.py-9 {
  padding-top: 11rem !important;
}
.pr-9,
.px-9 {
  padding-right: 11rem !important;
}
.pb-9,
.py-9 {
  padding-bottom: 11rem !important;
}
.pl-9,
.px-9 {
  padding-left: 11rem !important;
}
.p-10 {
  padding: 14rem !important;
}
.pt-10,
.py-10 {
  padding-top: 14rem !important;
}
.pr-10,
.px-10 {
  padding-right: 14rem !important;
}
.pb-10,
.py-10 {
  padding-bottom: 14rem !important;
}
.pl-10,
.px-10 {
  padding-left: 14rem !important;
}
.m-6 {
  margin: 4.5rem !important;
}
.mt-6,
.my-6 {
  margin-top: 4.5rem !important;
}
.mr-6,
.mx-6 {
  margin-right: 4.5rem !important;
}
.mb-6,
.my-6 {
  margin-bottom: 4.5rem !important;
}
.ml-6,
.mx-6 {
  margin-left: 4.5rem !important;
}
.m-7 {
  margin: 6rem !important;
}
.mt-7,
.my-7 {
  margin-top: 6rem !important;
}
.mr-7,
.mx-7 {
  margin-right: 6rem !important;
}
.mb-7,
.my-7 {
  margin-bottom: 6rem !important;
}
.ml-7,
.mx-7 {
  margin-left: 6rem !important;
}
.m-8 {
  margin: 8rem !important;
}
.mt-8,
.my-8 {
  margin-top: 8rem !important;
}
.mr-8,
.mx-8 {
  margin-right: 8rem !important;
}
.mb-8,
.my-8 {
  margin-bottom: 8rem !important;
}
.ml-8,
.mx-8 {
  margin-left: 8rem !important;
}
.m-9 {
  margin: 11rem !important;
}
.mt-9,
.my-9 {
  margin-top: 11rem !important;
}
.mr-9,
.mx-9 {
  margin-right: 11rem !important;
}
.mb-9,
.my-9 {
  margin-bottom: 11rem !important;
}
.ml-9,
.mx-9 {
  margin-left: 11rem !important;
}
.m-10 {
  margin: 14rem !important;
}
.mt-10,
.my-10 {
  margin-top: 14rem !important;
}
.mr-10,
.mx-10 {
  margin-right: 14rem !important;
}
.mb-10,
.my-10 {
  margin-bottom: 14rem !important;
}
.ml-10,
.mx-10 {
  margin-left: 14rem !important;
}
.bg-primary {
  background: var(--primary-color) !important;
}
.bg-light {
  background: var(--main-bg-color) !important;
}
.bg-secondary {
  background: var(--secondary-color) !important;
  color: #000 !important;
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.fluid-width-video-wrapper iframe,
.fluid-width-video-wrapper .player .vp-video-wrapper.transparent {
  width: 100% !important;
}
.fluid-width-video-wrapper #player {
  max-width: 100% !important;
}
.fluid-width-video-wrapper .player .vp-video-wrapper .vp-preview {
  background-size: cover !important;
}
/*scroll bar*/
body ::-webkit-scrollbar {
  width: 2px;
  height: 6px;
}
/* Track */
body ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
  width: 2px;
  height: 6px;
}
/* Handle */
body ::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.language a {
  justify-content: left;
  align-items: center;
  line-height: 20px;
}
.language .dropdown-menu {
  min-width: 9rem;
  left: 15px !important;
  margin-top: 0px !important;
}
.header-3 .language .dropdown-menu {
  right: 0 !important;
  left: auto;
}
.language-icon {
  width: 1.5rem;
  margin-right: 0.5rem;
  margin-top: -2px;
  height: 15px;
}
.node__content {
  font-size: unset;
}
.header-3 .breadcrumb-section,
.header-4 .breadcrumb-section {
  padding-top: 16rem;
}
/*spin*/
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.image-rotating {
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}
/* Code Block */
.code-block {
  background-color: #f8f9fa;
  color: #333;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: normal;
  padding: 1rem 1.5rem;
  display: inline-block;
  width: 100%;
  overflow-x: auto;
  word-wrap: break-word;
  word-break: break-word;
}
.code-block pre {
  padding: 0;
  margin-top: 0.65rem;
  margin-bottom: 0.65rem;
  white-space: pre;
  background-color: transparent;
  border: 0;
}
.code-block {
  position: relative;
}
.code-block:not(:last-child) {
  margin-bottom: 60px;
}
.code-block .clipboard {
  position: absolute;
  right: 10px;
  top: 10px;
  border: 1px solid #ccc;
}
.code-block .clipboard:before {
  content: "\f0ea";
  display: inline-block;
  font-family: "FontAwesome";
  font-weight: normal;
  margin-right: 5px;
  vertical-align: middle;
}
code[class*="language-"],
pre[class*="language-"] {
  color: #393a34;
  font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier,
    monospace;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  font-size: 0.95em;
  line-height: 1.2em;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection {
  background: #b3d4fc;
}
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
  background: #b3d4fc;
}
code[class*="language-"],
pre[class*="language-"] {
  line-height: 1.4em;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #c1c1c1;
}
pre[class*="language-"] {
  padding: 0;
  margin: 0;
  overflow: auto;
  border: none;
}
:not(pre) > code[class*="language-"] {
  padding: 0.2em;
  padding-top: 1px;
  padding-bottom: 1px;
  background: #f8f8f8;
  border: 1px solid #dddddd;
}
.custom-select:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}
.form-type-select {
  z-index: 3;
}
.form-style-2 .custom-select,
.form-style-3 .custom-select {
  z-index: 0;
  background: url(../images/arrow-24.png) no-repeat right 0.25rem center !important;
}
/*===============================
            HEADER  
=================================*/
.custom-navigation {
  justify-content: flex-end;
}
#header .header-1,
#header .header-2,
#header .header-3,
#header .header-4,
#header .header-5 {
  display: none;
}
#header .header-1.active,
#header .header-2.active,
#header .header-3.active,
#header .header-4.active,
#header .header-5.active {
  display: block;
}
.header-1 .navbar-top {
  background: var(--main-bg-color);
}
.header-1 .navbar-toggler-icon,
.header-2 .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.header-3 .navbar-toggler-icon,
.header-4 .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.header-1 .navbar-top {
  position: relative;
  font-size: 16px;
}
.header-1 .navbar-top li strong {
  font-weight: 500;
}
.header-1 .navbar-top:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--primary-color);
  width: 31%;
  height: 100%;
}
.header-1 .navbar-top-inner {
  position: relative;
}
.header-1 .navbar-top-left {
  background: var(--primary-color);
}
.header-1 .navbar-top-right li {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 2rem;
}
.header-1 .navbar-top-right li a {
  color: #848484;
}
.header-1 .navbar-top-right li a strong {
  color: #000;
}
.header-1 .navbar-top-right .language {
  padding-left: 2rem;
}
.header-1 .navbar-top-right .language a {
  font-size: 16px;
  font-weight: 500;
  justify-content: left;
  align-items: center;
  line-height: 20px;
}
.header .social-icons li {
  margin-bottom: 0;
}
.header .bg-dark {
  background: #121212 !important;
}
.header-2 .navbar-top-inner .fa {
  font-size: 14px;
}
.header-2 .navbar-top-inner .fa.fa-envelope-o {
  font-size: 18px;
}
.header-2 .navbar-top-left ul li,
.header-4 .navbar-top-left ul li {
  margin-right: 2.2rem;
}
.header-2 .language,
.header-4 .language {
  font-size: 16px;
  margin-left: 1.4rem;
}
.header-4 .navbar-top .fa {
  font-size: 14px;
}
.header-4 .navbar-top .fa.fa-envelope-o {
  font-size: 18px;
}
.header-4.navbar-transparent {
  background: rgba(0, 0, 0, 0.6);
}
.header-4 .navbar-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.language .dropdown-toggle:after {
  margin-left: 1.25rem;
  margin-top: -3px;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 11rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: var(--white);
  background-clip: padding-box;
  border-radius: 0;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.075);
}
.dropdown-item {
  text-transform: capitalize;
  position: relative;
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  transition: all 0.2s ease-in-out;
}
.dropdown-item:focus,
.dropdown-item:hover {
  color: var(--primary-color);
  text-decoration: none;
  background-color: transparent;
}
.dropdown-item.active,
.dropdown-item:active {
  color: var(--primary-color);
  text-decoration: none;
  background-color: transparent;
}
.dropdown-menu .dropdown-item-text {
  color: #212529;
  font-size: 0.8125rem;
}
.dropdown-item.active {
  color: var(--primary-color) !important;
}
.dropdown-toggle:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  margin-left: 1rem;
  font-weight: 900;
  vertical-align: middle;
  border: none;
}
.navbar-nav .nav-item > .dropdown-toggle:after {
  font-size: 16px;
}
.dropdown-item-icon {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 0.875rem;
  min-width: 1.5rem;
  max-width: 1.5rem;
  margin-right: 0.5rem;
  margin-top: -2px;
}
.dropdown-header {
  font-weight: 600;
  padding-top: 0.5rem;
  font-size: 0.875rem;
}
.dropdown-menu .dropdown-toggle:after {
  position: relative;
  right: 0px;
  float: right;
}
.dropdown-menu.show {
  display: block;
  margin-top: 11px;
}

.megamenu {
  position: static;
}
.megamenu .dropdown-menu {
  width: 1110px;
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 1.5rem 0;
}
.social-icons li {
  display: inline-block;
}
.navbar-nav .nav-link {
  font-weight: 500;
  white-space: nowrap;
}
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}
.breadcrumb-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}
.breadcrumb-section:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}
.breadcrumb-section h1 {
  font-weight: 500;
}
/*logo*/
.logo text {
  fill: #000;
  stroke: none;
}
#header-3 .logo text,
#header-4 .logo text {
  fill: #fff;
}
#header-3 .navbar-sticky.navbar-sticky-on .logo text,
#header-4 .navbar-sticky.navbar-sticky-on .logo text {
  fill: #000;
}
.logo path.primary {
  fill: var(--primary-color);
  stroke: var(--primary-color);
}
.logo path.secondary {
  fill: var(--secondary-color);
  stroke: var(--secondary-color);
}

.logo-footer text {
  fill: #000;
  stroke: none;
}
footer .logo-footer text,
footer .logo-footer text {
  fill: #fff;
}
.logo-footer path.primary {
  fill: var(--primary-color);
  stroke: var(--primary-color);
}
.logo-footer path.secondary {
  fill: var(--secondary-color);
  stroke: var(--secondary-color);
}
/* Footer */
.site-footer {
  padding: 0;
}
.footer h3,
.footer h4 {
  font-weight: 500;
}
.footer p,
.footer ul li {
  font-size: 15px;
  line-height: 1.6;
}
.bg-dark-blue {
  background-color: #010534;
}
.footer.bg-dark-blue h3,
.footer.bg-dark-blue h4,
.footer.bg-dark-blue p,
.footer.bg-dark-blue li,
.footer.bg-dark-blue li a {
  color: var(--white);
}
.footer .social-icons li {
  margin-right: 5px;
}
.footer .social-icons li:last-child {
  margin-right: 0;
}
.footer .social-icons li a {
  background: #ffffff17;
  display: block;
  text-align: center;
  font-size: 13px;
  border-radius: 3px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.footer .social-icons li a:hover,
.footer.bg-dark-blue .social-icons li a:hover {
  background: var(--secondary-color);
  color: var(--black);
}
.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-logo img {
  height: 60px;
}
.footer-widget h6 {
  color: var(--secondary-color);
  font-weight: normal;
  margin-bottom: 5px;
}
.footer-links li i {
  color: var(--secondary-color);
}
.footer-links li a {
  padding-left: 0;
  padding-right: 0;
}
.latest-news .news-image img {
  border-radius: 3px;
  width: 94px;
  height: 72px;
  object-fit: cover;
}
.latest-news h6 a {
  color: var(--white);
}
.footer .latest-news .news-date {
  color: var(--secondary-color);
  margin-top: 5px;
}
.footer-address li {
  margin-bottom: 25px;
}
.footer-address li p,
.footer-address li:last-child {
  margin-bottom: 0;
}
.footer.bg-dark-blue li a:hover {
  color: var(--secondary-color);
}
.footer-copyrights {
  background: #000324;
}
.footer-copyrights a {
  color: var(--white);
}
.footer-copyrights a:hover {
  color: var(--secondary-color);
}
.footer-copyrights p {
  margin-bottom: 0;
}
.link-text {
  color: var(--secondary-color);
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer .link-text {
  font-size: 14px;
}
.footer-about .btn {
  font-size: 16px;
  min-width: 190px;
  margin-top: 1.35rem;
}
.pt-section {
  padding: 6rem 0;
}

/* Shortcodes */
.section-title h2 {
  font-size: 46px;
  line-height: 52px;
  text-transform: capitalize;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 2.5rem;
}
.section-title h2::after {
  content: "";
  background-color: var(--primary-color);
  position: absolute;
  height: 3px;
  width: 62px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
}
.section-title h2.text-left::after {
  right: auto;
}
.section-title h2.text-white::after {
  background-color: var(--white);
}
/*Tooltip*/
.tooltip-text.text-secondary:hover {
  color: var(--secondary-color) !important;
}
.text-primary .tooltip-inner {
  background: var(--primary-color);
  color: #fff;
  padding: 10px;
  font-weight: 600;
  font-size: 13px;
}
.text-primary .arrow::before {
  content: "";
  position: absolute;
  width: 12px;
  top: -7px;
  border-width: 0;
  background-color: var(--primary);
  transform: rotate(45deg);
  height: 12px;
  border-left-color: var(--primary) !important;
  border-right-color: var(--primary) !important;
  left: -3px;
  border-bottom: 1px solid var(--primary) !important;
  border-right: 1px solid var(--primary) !important;
}

/* Blockquotes */
.blockquote {
  padding: 2rem;
  position: relative;
}
.blockquote-style-1::after,
.blockquote-style-2::after {
  position: absolute;
  content: "\f10e";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 20px;
  color: var(--primary-color);
  display: inline-block;
  right: 30px;
  top: 0;
  bottom: 0;
  background: #fff;
  width: 50px;
  height: 60px;
  line-height: 60px;
  margin: auto 0;
}
.blockquote p {
  font-style: italic;
}
.blockquote cite {
  font-style: normal;
  font-size: 17px;
  font-weight: 500;
  color: var(--primary-color);
}
.blockquote-style-1 {
  padding: 2rem 8rem 2rem 3rem;
}
.blockquote-style-2 {
  padding: 2rem 3rem 2rem 5rem;
}
.blockquote-style-2::after {
  border: 1px solid rgba(0, 0, 0, 0.15);
  left: -25px;
  right: auto;
}
/* Divider */
.divider-solid {
  border-top: 1px solid #4a4a4a;
}
.divider-dashed {
  border-top: 1px dashed #4a4a4a;
}
.divider-double {
  border: 1px double #989898;
}
.divider-dotted {
  border-top: 1px dotted #4a4a4a;
}

/* Dropcaps */
.drop-cap p .first-letter {
  font-size: 1.5em;
  font-weight: bold;
  margin-right: 6px;
  text-transform: uppercase;
  margin-bottom: 0;
  vertical-align: middle;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: var(--white);
  position: relative;
  top: -10px;
}
.drop-cap-style-1 p .first-letter {
  border-radius: 50%;
}

/* Highlights */
.highlight {
  padding: 0.2em 0.3em 0.2em 0.3em;
  margin: 0 3px;
}
.text-underline {
  text-decoration: underline;
}

/* Icons */
.icons-set li a {
  background: var(--primary-color);
  border-radius: 3px;
  color: var(--white);
  text-align: center;
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  font-size: 20px;
  margin: 0 15px 15px 0;
}
.icons-set li a:hover {
  background: var(--secondary-color);
  color: #000;
}

/* Image */
img.border {
  border: 2px solid #f1f1f1 !important;
  padding: 5px;
}

/* Accordion */
.accordion {
  margin-bottom: 30px;
}
.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.accordion-title {
  background-color: #f5f5f5;
}
.accordion-title a {
  position: relative;
  display: block;
  padding: 20px 70px 20px 15px;
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 17px;
  font-weight: 500;
  -webkit-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}
.accordion-title a:after {
  content: "\f063";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  line-height: 1.8;
  font-weight: bolder;
  font-size: 10px;
  right: 35px;
  padding: 15px;
  color: #343a40;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.accordion-title a.collapsed:after {
  content: "\f062";
}
.faq-page .accordion-title a:after {
  content: "\f063";
  font-size: 11px;
}
.faq-page .accordion-title a.collapsed:after {
  content: "\f062";
}
.accordion.accordion-primary.border-primary .accordion-title a:after {
  content: "\f067";
}
.accordion.accordion-primary.border-primary .accordion-title a.collapsed:after {
  content: "\f068";
}
.accordion-content {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  background: #f5f5f5;
  padding: 20px;
}
/*accordion primary color*/
.accordion.accordion-primary .accordion-title a,
.accordion.accordion-primary .accordion-content {
  background: var(--primary-color);
  color: var(--white);
}
.accordion.accordion-primary .accordion-title a.collapsed {
  background: #f5f5f5;
  color: var(--primary-color);
}
.accordion.accordion-primary .accordion-content {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.accordion.accordion-primary.border-primary .accordion-item {
  border-color: #c9e0ff;
}
.accordion.accordion-primary.border-primary .accordion-title,
.accordion.accordion-primary.border-primary .accordion-title a.collapsed {
  background: transparent;
}
.accordion.accordion-primary.border-primary .accordion-title a.collapsed {
  color: #000;
}
.accordion.accordion-primary.border-primary .accordion-title a:after {
  padding: 0 4px;
  border-radius: 3px;
  font-size: 12px;
  line-height: 1.5;
  background: #fff;
  color: var(--primary-color);
}
.accordion.accordion-primary.border-primary .accordion-title a.collapsed:after {
  background: var(--primary-color);
  color: var(--white);
}
.accordion.accordion-primary.border-primary .accordion-title a {
  padding-left: 35px;
}
.accordion.accordion-primary.border-primary .accordion-content {
  padding: 10px 65px 35px 35px;
}
/*toggle icon left*/
.accordion.toggle-icon-left .accordion-title a {
  padding-left: 75px;
  padding-right: 15px;
}
.accordion.toggle-icon-left .accordion-title a:after {
  left: 20px;
  right: auto;
}
.accordion.toggle-icon-left .accordion-title a:after {
  background: #fff;
  color: var(--primary-color);
  padding: 10px;
  width: 35px;
  height: 35px;
  line-height: 18px;
  text-align: center;
}
.waves-block {
  position: absolute;
  left: 5px;
  top: 5px;
}
/* wave */
.waves {
  position: absolute;
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: opacity(0);
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}
.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
.explore-our-business .play-icon {
  position: relative;
}
.explore-our-business .play-icon::after {
  position: absolute;
  content: "\f04b";
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.explore-our-business .play-icon img {
  width: 100px;
  height: 100px;
}
.explore-our-business .waves-block {
  position: absolute;
  top: 0;
  left: 78px;
  bottom: -20px;
}
.explore-our-business .waves {
  width: 160px;
  height: 160px;
}
.video-block .play-icon {
  z-index: 6;
}
.video-block .play-icon::after {
  position: absolute;
  content: "\f04b";
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  top: 0;
  bottom: 0;
  display: inline-flex;
  right: 0;
  left: 0;
  margin: auto;
  align-items: center;
  justify-content: center;
}
.video-block .waves-block {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 5;
  width: 70px;
  height: 70px;
}
.video-block .waves {
  width: 170px;
  height: 170px;
}
.play-icon .icon {
  position: relative;
}
.play-icon .icon .waves-block {
  position: absolute;
  top: 32px;
  left: 32px;
}
.icon .waves {
  width: 100px;
  height: 100px;
}
.process-bottom .play-icon img {
  position: relative;
  z-index: 2;
}
.process-bottom .waves-block {
  z-index: 1;
  left: 7px;
  top: 7px;
}
.process-bottom .waves {
  background-color: var(--secondary-color);
}
/* Video */
iframe {
  border: none;
  display: block;
}
/* Blog Pager*/
.custom-pager ul {
  margin-bottom: 0;
  margin-top: 25px;
}
.custom-pager ul li {
  padding: 0 5px;
}
.custom-pager ul li a {
  color: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-top-left-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
  border-top-right-radius: 50px !important;
  border-bottom-right-radius: 50px !important;
  padding: 0;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}
.custom-pager ul li a:focus {
  box-shadow: none;
}
.custom-pager ul li.is-active a,
.custom-pager ul li a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
/* Blog */
.post-item,
.post-image {
  position: relative;
}
.post-item {
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.blog .style-2 .post-image img {
  height: 222px;
}
.post-item .post-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.latest-blog .blog .post-item .post-image img {
  height: 212px;
  object-position: top;
  transition: transform 0.3s ease;
}

.post-item.style-1 .post-image .image-wrapper img {
  height: 222px;
  object-position: top;
  transition: transform 0.3s ease;
}

.style-2 .post-item .post-image img {
  height: 222px;
  object-position: top;
  transition: transform 0.3s ease;
}

.blog-grid .post-item.style-1 .post-image img {
  height: 290px;
  transition: transform 0.3s ease;
}

.blog-grid .post-item.style-1 .post-image,
.post-item .style-1 .post-image .image-wrapper,
.style-2 .post-item .post-image,
.latest-blog .blog .post-item .post-image .image-wrapper,
.post-item .post-image .image-wrapper {
  overflow: hidden;
}
.style-2 .post-item .post-image:hover img,
.post-item.style-1 .post-image:hover img,
.blog-grid .post-item.style-1 .post-image:hover img,
.latest-blog .blog .post-item .post-image .image-wrapper:hover img,
.post-item .post-image .image-wrapper:hover img {
  transform: scale(1.2);
}
.blog-grid .post-item.style-1.grid-4 .post-image img {
  height: 250px;
}
.blog-grid .post-item.style-1 {
  margin-bottom: 30px;
}
.post-item h5 {
  font-size: 18px;
}
.post-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}
.post-link {
  border-radius: 3px;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #dee2e5;
  line-height: 40px;
}
.post-link:hover {
  background: var(--primary-color);
  color: var(--white);
}
.post-item.style-1 .post-date {
  background: var(--primary-color);
  color: var(--white);
  position: absolute;
  bottom: -35px;
  right: 25px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 55px;
  text-align: center;
  padding: 0.5rem 0.25rem;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  border-radius: 3px;
}
.post-item .post-content {
  padding: 1.5rem;
}
.post-content ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}
.post-content ul li {
  border: none;
  padding: 0;
  padding-left: 30px;
  position: relative;
  margin: 0.425rem 0 0.425rem;
  list-style-type: none;
}
.post-content ul li:before {
  position: absolute;
  content: "\f35a";
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  display: inline-block;
  left: 0;
  top: 0;
}

.post-item p {
  color: #5e5e5e;
  margin-bottom: 30px;
}
.post-item.style-1 .post-date .date {
  font-size: 22px;
  font-weight: bold;
}
.post-item.style-1 .post-content {
  padding: 2.6rem 1.65rem 1.8rem;
}
.post-item.style-1 .post-content h2 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 5px !important;
}
.post-item.style-1 .post-author {
  color: #000;
}
.post-item.style-1 .post-author p {
  color: var(--black);
  font-weight: bold;
  line-height: normal;
  text-transform: capitalize;
}
.blog-grid .post-item.style-1.blog-list .post-date {
  top: 30px;
  left: 30px;
  right: unset;
  bottom: unset;
}
.post-item.style-2 .post-content {
  padding: 1.75rem;
}
.post-item.style-2 .date {
  font-size: 14px;
  font-weight: 500;
}
.post-item.style-2 p {
  margin-bottom: 1rem;
}
.post-item.style-2 .post-meta a {
  background: var(--primary-color);
  font-weight: lighter;
  margin-right: 1rem !important;
  border-radius: 3px;
  padding: 0.35rem 0.5rem;
  color: #fff;
  outline: 0;
  font-size: 75%;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
}
.post-item .post-content .read-more {
  color: var(--primary-color);
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
}
.badge {
  font-weight: 500;
  border-radius: 3px;
  padding: 0.35rem 0.5rem;
}
.badge-primary {
  background: var(--primary-color);
}
.badge-secondary {
  background: var(--secondary-color);
}
.post-item.style-3 h5 {
  font-size: 20px;
  font-weight: 500;
}
.post-item.style-3 .btn {
  padding: 0.25rem 1.2rem;
  text-transform: unset;
  font-size: 16px;
}
.post-item.style-3 .post-date {
  position: absolute;
  background: var(--primary-color);
  color: var(--white);
  font-size: 15px;
  padding: 0.45rem 1rem;
  border-radius: 30px;
  bottom: -20px;
  right: 20px;
}
.post-item.style-3 {
  background: var(--main-bg-color);
  border: none;
  padding: 8px;
}
.post-item.style-3 .post-content {
  padding: 3rem 1rem 1.5rem;
}
.post-item.style-4 {
  border: none;
  border-radius: 3px;
  overflow: hidden;
}
.post-item.style-4 h5 {
  font-size: 25px;
  font-weight: 500;
}
.post-item.style-4 .post-image {
  height: 400px;
}
.post-item.style-4 .post-image img {
  height: 100%;
}
.post-item.style-4 .date {
  font-size: 13px;
  text-transform: uppercase;
}
.post-item.style-4 .post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2rem 2.75rem;
  transform: translateY(50%);
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 1%,
    rgba(0, 0, 0, 0.8) 65%
  );
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.post-item.style-4:hover .post-content {
  transform: translateY(0%);
  background: rgba(0, 0, 0, 0.45);
}
.post-item.style-4 .post-content p {
  color: var(--white);
}
.post-item.style-4 .btn-outline-light {
  border-width: 2px;
  padding: 0.35rem 1.25rem;
  border-radius: 0;
  text-transform: unset;
  font-size: 15px;
}

/* list */
.list-group-borderless .list-group-item {
  border: none;
  padding: 0;
  padding-left: 30px;
  position: relative;
  margin: 0.425rem 0 0.425rem;
}
.list-group-borderless .list-group-item i {
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 3px;
}
/* whyus */
.why-us-s1 .why-us-img {
  position: relative;
}
.why-us-s1 .why-us-img .label {
  position: absolute;
  right: 25%;
  bottom: -20px;
  font-size: 20px;
  width: 150px;
  text-align: center;
  color: var(--heading-color);
  font-weight: bold;
  z-index: 1;
}
.why-us-s1 .why-us-img svg {
  position: absolute;
  right: 20%;
  bottom: -60px;
  z-index: 0;
  stroke: #f1f2f4;
}
.why-us-s1 .why-us-img .label span {
  display: block;
  font-size: 30px;
}
/* Forms */
.form-control {
  padding: 1rem 1.25rem;
}
.form-control,
.custom-select {
  border-radius: 3px;
  min-height: 50px;
}
.custom-select {
  padding-left: 1.25rem;
}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}
.form-control:active {
  background-color: #fff;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-wrap label {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0.7rem;
}
.form-wrap .btn {
  padding: 0.6rem 1.5rem;
  font-size: 16px;
  font-weight: 600;
}
.form-style-1 .form-control {
  background: #f6f6f6;
  border-color: #f6f6f6;
  min-height: 44px;
  color: #000;
  padding: 0.65rem 1rem;
}
.overlay-dark,
.overlay-primary,
.overlay-secondary,
.overlay-dark-blue {
  position: relative;
  z-index: 1;
}
.overlay-dark:before,
.overlay-primary:before,
.overlay-secondary:before,
.overlay-dark-blue:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: -1;
}
.overlay-primary:before {
  background: var(--primary-color);
  opacity: 0.8;
}
.overlay-secondary:before {
  background: var(--secondary-color);
  opacity: 0.8;
}
.overlay-dark-blue:before {
  background: #010534;
  opacity: 0.9;
}
.contact-s1 h3 {
  font-size: 42px;
  line-height: 52px;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.contact-s1 h3::after {
  content: "";
  background-color: var(--primary-color);
  position: absolute;
  height: 3px;
  width: 62px;
  left: 0;
  bottom: 0;
  right: auto;
  margin: 0 auto;
}
.contact-s1 .locations {
  display: flex;
}
.contact-s1 .locations p,
.contact-s1 .locations a {
  margin-bottom: 0;
  font-family: var(--secondary-font);
  color: var(--paragraph-color);
}
.contact-s1 .locations a:hover,
.contact-s2 .locations a:hover {
  color: var(--primary-color);
}
.contact-s1 .social-icons {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.contact-s1 .social-icons li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.contact-s1 .social-icons li .icon {
  width: 36px;
  height: 36px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 10px;
}
.contact-s1 .social-icons i {
  font-size: 14px;
}
.contact-s1 .social-icons li a {
  width: auto;
  font-size: 18px;
  font-weight: 600;
}
.contact-s2 h3 {
  font-size: 42px;
  line-height: 52px;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.contact-s2 h3::after {
  content: "";
  background-color: var(--primary-color);
  position: absolute;
  height: 3px;
  width: 62px;
  left: 0;
  bottom: 0;
  right: auto;
  margin: 0 auto;
}
.contact-s2 .locations span {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.contact-s2 .locations {
  margin-bottom: 30px;
}
.contact-s2 .address p {
  margin-bottom: 15px;
}
.contact-s2 .locations a {
  font-family: var(--secondary-font);
  color: var(--paragraph-color);
}
.contact-s2 .social-links a {
  margin-right: 5px;
  border-radius: 0;
  font-size: 20px;
  padding: 0;
  justify-content: center;
  width: 55px;
  height: 55px;
  align-items: center;
  display: inline-flex;
}
.form-style-2 .form-fields {
  background: #fff;
  padding: 3rem 2.25rem;
}
.form-style-2 .form-fields .form-fields {
  padding: 0;
}
.form-style-2 .form-content {
  min-height: 400px;
}
.form-style-2 .form-content .call-us {
  background: var(--secondary-color);
  color: #000;
  font-size: 20px;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 1rem;
  text-align: center;
  width: 100%;
}
.form-style-2 .form-group {
  margin-bottom: 0.5rem;
}
.form-style-2 .form-group.form-action {
  margin-bottom: 0;
  margin-top: 1rem;
}
.form-area .form-group.form-action {
  margin-bottom: 0;
}
.form-style-2 .form-group i {
  display: none;
}
.form-style-3 {
  background: #f1f2f4;
}
.form-style-3 .form-control,
.form-style-3 .custom-select {
  border: 2px solid #ddddde;
  background-color: transparent;
}
.form-style-3 .form-group {
  margin-bottom: 0.5rem;
}
.form-style-3 .form-group.form-action {
  margin-bottom: 0;
  margin-top: 1rem;
}
.form-style-3 .form-group i {
  display: none;
}
.form-style-3 .form-group {
  margin-bottom: 1rem;
}
.form-style-4 .form-inner {
  background: #fff;
  position: relative;
}
.form-style-4 .form-fields {
  padding-left: 3rem !important;
}
.form-style-4 .form-fields .form-group {
  margin-bottom: 3rem !important;
}
.form-style-4.overlay-dark:before {
  height: 50%;
}
.form-style-4 .form-control,
.form-style-4 .custom-select {
  border-radius: 0;
  min-height: auto;
  padding: 0 2rem 1rem 0;
  border-width: 0 0 1px;
  border-color: rgba(0, 0, 0, 0.35);
  font-weight: 500;
}
.form-style-4 .custom-select {
  background: transparent;
}
.form-style-4 .form-group {
  position: relative;
}
.form-style-4 .form-group i {
  color: var(--primary-color);
  font-weight: 900;
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 0;
}

/* Progressbar */
.skill-item {
  overflow-x: hidden;
  margin-bottom: 1rem;
}
.skill-item h6 {
  font-weight: 500;
  margin: 10px 0 3px;
}
.skill-item .progress {
  background: #f1f2f4;
  border-radius: 0;
  box-shadow: none;
  height: 8px;
  margin-bottom: 8px;
  overflow: visible;
}
.skill-item .progress-bar {
  background-color: var(--primary-color);
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}
.skill-item .skill-percent {
  color: #000;
  font-weight: 500;
  line-height: 24px;
  position: absolute;
  right: 0;
  top: -24px;
  font-size: 16px;
}
.skill-type-2 .skill-item {
  background: #f1f2f4;
  margin-bottom: 10px;
}
.skill-type-2 h6 {
  display: inline-block;
  background: var(--secondary-color);
  padding: 15px 10px;
  min-width: 130px;
  text-align: center;
  position: relative;
  margin: 0;
  z-index: 1;
}
.skill-type-2 .skill-item .progress {
  background: #fff;
  width: calc(100% - 165px);
  margin: 0 auto;
}
.skill-type-2 .skill-item .skill-percent {
  font-size: 13px;
  top: -22px;
}
.skill-type-3 .skill-item-inner {
  background: #f1f2f4;
  padding: 0.8rem 2rem 0.8rem 0.8rem;
}
.skill-type-3 .skill-item h6 {
  margin-bottom: 12px;
}
.skill-type-3 .skill-percent {
  position: relative;
  top: 0;
  width: 60px;
  background: #fff;
  color: var(--primary-color);
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  z-index: 1;
}
.skill-type-3 .skill-item .progress {
  background: #fff;
  width: calc(100% - 90px);
  margin: 0;
  overflow: hidden;
}

/* Carousel */
.testimonial-carousel .item {
  position: relative;
  overflow: visible;
  padding: 15px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.single-item img {
  width: 75px;
  border-radius: 50%;
}
.single-item h6 {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 0px;
  margin-top: 20px;
}
.single-item p {
  font-style: italic;
  font-size: 12px;
  margin-top: 0px !important;
  margin-bottom: 2px;
  color: #121212a8 !important;
  font-weight: 600;
}
.single-item::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  height: 220px;
  width: 1px;
  right: 0;
  top: -30px;
}
.single-item {
  padding-right: 30px;
}
.single-item-desc img {
  width: 220px;
}
.single-item-desc p {
  color: var(--black);
  font-style: italic;
}
.user-review .fa {
  color: orange;
}
.testimonial-page.style-1 .item {
  margin-bottom: 60px;
}
.testimonial-carousel.style-1 .item {
  padding: 3.25rem 2rem 0.8rem;
  position: relative;
}
.testimonial-carousel.style-1 .item:before {
  position: absolute;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  display: inline-block;
  left: 30px;
  top: -30px;
  background: #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 1px solid;
  border-radius: 50%;
}
.testimonial-carousel.style-1 p {
  font-size: 16px;
}
.testimonial-carousel.style-1 .author img {
  width: 60px;
  border-radius: 5px;
}
.testimonial-carousel.style-1 .author-info p {
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
}
.testimonial-carousel.style-1 .user-review span {
  font-size: 18px;
}
.testimonial-carousel.style-1 .item-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.testimonial-carousel.style-2 h5 {
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.testimonial-carousel.style-2 .item {
  padding: 2.5rem 2rem;
}
.testimonial-carousel.style-2 .item-content {
  min-height: 160px;
}
.testimonial-carousel.style-2 .item p {
  color: #919191;
  font-size: 15px;
  line-height: 22px;
  margin-top: 0.5rem;
}
.testimonial-carousel.style-2 .item img {
  border-radius: 50%;
}
.testimonial-carousel.style-2 .item .author-info p {
  color: #595959;
  font-style: italic;
}
.testimonial-carousel .item .fa {
  font-size: 12px;
}
.testimonial-carousel h6 {
  font-weight: 500;
}
.testimonial-carousel.style-2 .single-item h6 {
  font-size: 18px;
}
.testimonial-carousel.style-2 .single-item p {
  font-size: 15px;
}
.testimonial-carousel.style-2 .single-item .fa {
  font-size: 14px;
}
.testimonial-carousel.style-3 {
  background-color: #f1f2f4;
  position: relative;
}
.testimonial-carousel.style-3::after {
  background-color: var(--primary-color);
  width: 34%;
  position: absolute;
  content: "";
  height: 100%;
  right: 0;
  top: 0;
  opacity: 0.75;
}
.testimonial-carousel.style-3 .item {
  border: none;
  background: transparent;
  padding: 0;
}
.testimonial-carousel.style-3 .author-comment i {
  color: var(--secondary-color);
  font-size: 38px;
}
.testimonial-carousel.style-3 .author-comment p {
  font-style: italic;
}
.testimonial-carousel.style-3 .author-image {
  position: relative;
  z-index: 1;
}
.testimonial-carousel.style-3 .author-name {
  font-size: 18px;
  font-weight: bold;
}
.testimonial-carousel.style-3 .author-job {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 5px;
}
.testimonial-carousel.style-4 .item {
  padding: 2rem 2rem 5rem;
}
.testimonial-carousel.style-4 .item:before {
  content: "";
  background: var(--main-bg-color);
  position: absolute;
  left: -2px;
  top: -2px;
  width: calc(100% + 4px);
  height: 39%;
}
.testimonial-carousel.style-4 .item-content img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
.testimonial-carousel.style-4 .item-content {
  padding-top: 0.85rem;
}
.testimonial-carousel.style-4 .item-content p {
  margin-top: 2rem;
  margin-bottom: 0;
  font-size: 17.5px;
}
.testimonial-carousel.style-4 .author-name {
  font-size: 18px;
}
.testimonial-carousel.style-4 .author-job {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 500;
}
.testimonial-carousel.style-4 .item:after {
  position: absolute;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-size: 30px;
  font-weight: bold;
  color: #dbdada;
  display: inline-block;
  left: 0;
  right: 0;
  bottom: 30px;
  margin: 0 auto;
  text-align: center;
}
/*owl controls*/
.owl-carousel .owl-dots,
.owl-carousel .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
}

/*owl-carousel dots*/
.owl-carousel .owl-dots {
  margin-bottom: 20px;
  margin-top: 45px;
  position: relative;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  display: inline;
}
.owl-carousel .owl-dots .owl-dot span {
  position: relative;
  display: block;
  float: left;
  margin: 0 8px;
  width: 10px;
  height: 10px;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  background-color: transparent;
  box-shadow: inset 0 0 0 2px #f0f1f3;
  transition: background 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot span:after {
  outline: medium none;
  text-indent: -999em;
  border-radius: 50%;
  overflow: hidden;
  content: "";
  position: absolute;
  bottom: 0;
  height: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  box-shadow: 0 0 1px var(--primary-color);
  transition: height 0.3s ease;
}
.owl-carousel .owl-dots .owl-dot.active span {
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
}
.owl-carousel .owl-dots .owl-dot.active span:after {
  height: 100%;
}
.owl-carousel.dots-inside .owl-dots {
  bottom: 30px;
  margin-bottom: 0;
  margin-top: 0;
}
.owl-carousel.dots-inside-top .owl-dots {
  position: absolute;
  right: 20px;
  top: 20px;
}
.owl-carousel.dots-outside-top .owl-dots {
  position: absolute;
  right: 0;
  top: -46px;
}
.owl-carousel.dots-white .owl-dots .owl-dot span {
  box-shadow: inset 0 0 0 2px #ffffff;
}
.owl-carousel.dots-white .owl-dots .owl-dot span:after {
  background-color: var(--white);
}
.owl-carousel.dots-dark .owl-dots .owl-dot span {
  box-shadow: inset 0 0 0 2px #343a40;
}
.owl-carousel.dots-dark .owl-dots .owl-dot span:after {
  background-color: #343a40;
}
.owl-carousel.dots-gray .owl-dots .owl-dot span {
  box-shadow: inset 0 0 0 2px #f7f8f9;
}
.owl-carousel.dots-gray .owl-dots .owl-dot span:after {
  background-color: #f7f8f9;
}
.owl-carousel.dots-creative .owl-dots {
  margin-bottom: 0;
  margin-top: 20px;
}
.owl-carousel.dots-creative .owl-dots .owl-dot span {
  opacity: 0.5;
  border-radius: 0;
  height: 4px;
  width: 30px;
}
.owl-carousel.dots-creative .owl-dots .owl-dot span:after {
  border-radius: 0;
}
.owl-carousel.dots-creative .owl-dots .owl-dot.active span {
  opacity: 1;
}

/*dots position*/
.owl-carousel.dots-right-top .owl-dots {
  position: absolute;
  top: -55px;
  right: 0;
}
/*owl-nav*/
.owl-carousel .owl-nav [class*="owl-"] {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 0;
  line-height: 40px;
  margin: -16px 0 0;
  display: block;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #000 !important;
  background-color: transparent;
  text-align: center;
  z-index: 200;
  border: 1px solid #a2a2a2 !important;
  box-sizing: initial;
}
.owl-carousel .owl-nav [class*="owl-"] i {
  line-height: 28px;
  color: #343a40;
  font-size: 18px;
  line-height: 40px;
  font-weight: bold;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.owl-carousel .owl-nav [class*="owl-"]:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #000 !important;
}
.owl-carousel .owl-nav [class*="owl-"]:hover i {
  color: #000;
}
.owl-carousel .owl-nav .owl-next {
  right: 0px;
}
.owl-carousel .owl-nav .owl-next .ti-angle-right {
  margin-right: -2px;
  font-size: 12px;
}
.owl-carousel .owl-nav .owl-prev {
  left: 0px;
}
.owl-carousel .owl-nav .owl-prev .ti-angle-left {
  margin-left: -2px;
  font-size: 12px;
}

/*arrow-visible*/
.owl-carousel.arrow-visible .owl-next {
  left: auto;
  right: -65px;
  opacity: 1;
}
.owl-carousel.arrow-visible .owl-prev {
  right: auto;
  left: -65px;
  opacity: 1;
}
.owl-carousel.arrow-dark .owl-nav [class*="owl-"] {
  color: var(--white);
  border-color: #343a40;
  background-color: #343a40;
}

/*arrow on hover*/
.owl-carousel.arrow-hover {
  overflow: hidden;
}
.owl-carousel.arrow-hover .owl-next {
  left: auto;
  right: -20px;
  opacity: 0;
  border-radius: 3px;
}
.owl-carousel.arrow-hover .owl-prev {
  right: auto;
  left: -20px;
  opacity: 0;
  border-radius: 3px;
}
.owl-carousel:hover.arrow-hover .owl-next {
  left: auto;
  right: 10px;
  opacity: 1;
}
.owl-carousel:hover.arrow-hover .owl-prev {
  right: auto;
  left: 10px;
  opacity: 1;
}

/*arrow-dark*/
.owl-carousel.arrow-dark .owl-nav [class*="owl-"] i {
  color: var(--white);
}
.owl-carousel.arrow-dark .owl-nav [class*="owl-"]:hover {
  background-color: #343a40;
}
.owl-carousel.arrow-dark .owl-nav [class*="owl-"]:hover i {
  color: var(--white);
}

/*arrow-gray */
.owl-carousel.arrow-gray .owl-nav [class*="owl-"] {
  color: #343a40;
  border: 2px solid #f7f8f9;
  background-color: #f7f8f9;
}
.owl-carousel.arrow-gray .owl-nav [class*="owl-"]:hover {
  background-color: #f7f8f9;
}
.owl-carousel.arrow-gray .owl-nav [class*="owl-"]:hover i {
  color: #343a40;
}

/*arrow-transparent */
.owl-carousel.arrow-transparent .owl-nav [class*="owl-"] {
  opacity: 0.7;
}
.owl-carousel.arrow-transparent .owl-nav .owl-next:hover,
.owl-carousel.arrow-transparent .owl-nav .owl-prev:hover {
  opacity: 1;
}

/*arrow-round */
.owl-carousel.arrow-round .owl-nav [class*="owl-"] {
  border-radius: 50%;
}

/*arrow-border */
.owl-carousel.arrow-border .owl-nav [class*="owl-"] {
  background: transparent;
  color: #8f9397;
  border: 2px solid #8f9397;
  font-weight: bold;
}
.owl-carousel.arrow-border .owl-nav [class*="owl-"] i {
  font-weight: bold;
  color: #8f9397;
}
.owl-carousel.arrow-border .owl-nav .owl-next:hover,
.owl-carousel.arrow-border .owl-nav .owl-prev:hover {
  border-color: #343a40;
  background: transparent;
}
.owl-carousel.arrow-border .owl-nav .owl-next:hover i,
.owl-carousel.arrow-border .owl-nav .owl-prev:hover i {
  color: #343a40;
}

/*arrow-large*/
.owl-carousel.arrow-large .owl-nav [class*="owl-"] {
  width: 50px;
  height: 50px;
  line-height: 50px;
}
.owl-carousel.arrow-large .owl-nav [class*="owl-"] i {
  line-height: 50px;
  font-size: 20px;
}

/*arrow-only*/
.owl-carousel.arrow-only .owl-nav [class*="owl-"] {
  border: 0;
  background: transparent;
}

/*arrow-position bottom*/
.owl-carousel.arrow-pos-bottom .owl-nav {
  display: inline-block;
  position: absolute;
  right: 22.5%;
  bottom: -8px;
}
.owl-carousel.arrow-pos-bottom .owl-nav [class*="owl-"] {
  border-color: #000 !important;
  bottom: 0;
  padding: 0;
  position: static;
  display: inline-block;
  margin: 0 15px;
}
.owl-carousel.arrow-pos-bottom .owl-nav [class*="owl-"]:hover {
  border-color: var(--secondary-color) !important;
}
.owl-carousel.arrow-pos-bottom .owl-next,
.owl-carousel.arrow-pos-bottom .owl-prev {
  top: auto;
}
.owl-carousel.arrow-pos-bottom-right .owl-nav {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
}
.owl-carousel.arrow-pos-bottom-right .owl-nav [class*="owl-"] {
  display: inline-block;
  position: static;
  margin: 0 0.5px;
}
.owl-carousel.arrow-primary .owl-nav [class*="owl-"] {
  background: var(--primary-color);
  border-color: var(--primary-color) !important;
}
.owl-carousel.arrow-primary .owl-nav [class*="owl-"] i {
  color: #fff;
}
.owl-carousel.arrow-primary .owl-nav [class*="owl-"]:hover {
  background: var(--black) !important;
  border-color: var(--black) !important;
}
.owl-carousel.dots-primary .owl-dots .owl-dot span {
  background-color: var(--primary-color);
}
.owl-carousel.dots-primary .owl-dots .owl-dot span,
.owl-carousel.dots-primary .owl-dots .owl-dot span:after {
  box-shadow: inset 0 0 0 2px var(--primary-color);
}
.owl-carousel.dots-primary .owl-dots .owl-dot.active span:after {
  background: #fff;
}

/* Tab */
.nav-tabs {
  border: none;
  padding-left: 2rem;
}
.nav-tabs li a {
  position: relative;
  padding: 0.6rem 2rem 0.6rem 1rem;
  font-size: 17px;
  font-weight: 500;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs li a:hover,
.nav-tabs li a:focus {
  background: none;
  border-color: transparent !important;
}
.nav-tabs .nav-link {
  color: #000;
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
  color: var(--primary-color);
}
.nav-tabs li a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  background: #f5f5f5;
  border-radius: 10px 10px 0 0;
  content: "";
  -webkit-transform: perspective(5px) rotateX(0.93deg) translateZ(-1px);
  transform: perspective(4px) rotateX(1.4deg) translateZ(-1px);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.tab-content {
  background: #f5f5f5;
  padding: 2rem;
}
/* tab primary */
.nav-tabs.tab-primary li a.active {
  color: var(--white);
}
.nav-tabs.tab-primary li a.active::after {
  background: var(--primary-color);
}
.tab-content.tab-primary {
  background: var(--primary-color);
  color: var(--white);
}

/* Tables */
.table thead th {
  border-color: #000;
  border-width: 0 0 1px;
}
.table td {
  border-color: rgba(0, 0, 0, 0.35);
}
.table.trans-white tr th {
  background-color: #fff;
  color: #000;
}
.table.trans-white.table-striped tr td {
  background-color: transparent !important;
}
.table.trans-white tr td {
  background-color: #fff;
  border-left: 0;
  border-right: 0;
}
.trans-white.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.trans-white.table-striped tbody tr:nth-of-type(even) {
  background-color: #fff;
}
/* Table Dark */
.table.table-dark {
  background: #121212;
}
.table.table-dark thead th,
.table.table-dark td {
  border-color: rgba(255, 255, 255, 0.25);
  border-left: none;
  border-right: none;
}
/* Table Dark */
.table.table-light {
  background: #f6f9fb;
}
.table.table-light thead th,
.table.table-light td {
  border: 2px solid #fff;
}
.table.table-light td,
.table.table-light-2 td {
  text-align: center;
}
.table.table-light th,
.table.table-light-2 th {
  font-weight: normal;
}
.table.table-light th,
.table.table-light tr td:first-child,
.table.table-light-2 th,
.table.table-light-2 tr td:first-child {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
}
.table.table-light th:first-child {
  background: #f6f9fb;
  color: var(--primary-color);
}
.table.table-light-2 thead th,
.table.table-light-2 td {
  border-color: #d0d3d5;
}
.table.table-light-2 thead th {
  border-width: 0 1px 1px;
}

/* team */
.team {
  overflow: hidden;
}
.team-page {
  padding-bottom: 70px;
}
.team-item {
  position: relative;
  overflow: hidden;
}
.team-page .team-item {
  margin-bottom: 30px;
}
.team-item .team-desc {
  padding: 20px 10px;
}
.team-item .team-name {
  font-size: 25px;
  margin: 0;
}
.team-item .team-name a {
  display: block;
  color: #8f9397;
}
.team-item .team-name a:hover {
  color: var(--primary-color);
}
.team-item .team-position {
  color: #666666;
  font-size: 14px;
  font-weight: 500;
}
.team-item p {
  margin: 10px 0px 10px;
}
/*Style1*/
.team.style-1 .team-item .team-position {
  border-radius: 3px;
  background: var(--primary-color);
  color: var(--white);
  padding: 0 0.7rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.team.style-1 .team-item {
  border: 2px solid #dddddd;
  padding-top: 2rem;
  overflow: visible;
}
.team.style-1 .team-item::before,
.team.style-1 .team-item::after {
  background-color: var(--primary-color);
  left: -2px;
  content: "";
  position: absolute;
  width: 5px;
  height: 90px;
  top: 70px;
}
.team.style-1 .team-item::after {
  left: auto;
  right: -2px;
}
.team.style-1 .team-avatar img {
  border-radius: 50%;
}
.team.style-1 .team-item .team-desc {
  padding: 30px 10px;
}
.team.style-1 .team-item .team-name {
  margin-bottom: 1rem;
}
.team.style-1 ul {
  padding: 0;
  line-height: 0;
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.team.style-1 ul li {
  display: inline-block;
  list-style: none;
  line-height: 10px;
  margin: 0 10px 5px 0;
  border: none;
  padding: 0;
}
.team.style-1 ul li:last-child {
  margin-right: 0;
}
.team.style-1 ul li a {
  background: #dddddd;
  color: #121212;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  border: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.team.style-1 ul li a i {
  font-size: 14px;
}
.team.style-1 ul li a:hover {
  background: var(--primary-color);
  color: var(--white);
}
/*Style2*/
.team.style-2.overlay-dark::before,
.team.style-4.overlay-dark::before {
  height: 50%;
  opacity: 0.75;
}
.team.style-2.overlay-dark h2 {
  color: var(--white);
}
.team.style-2 .team-item {
  background: #f6f6f6;
  border-radius: 10px;
}
.team.style-2 .team-item::after {
  position: absolute;
  left: 0;
  content: "";
  background-color: transparent;
  bottom: 0;
  border-right: 60px solid #f6f6f6;
  border-bottom: 60px solid var(--secondary-color);
  border-bottom-left-radius: 10px;
}
.team.style-2 .team-item img {
  width: 100%;
  height: 242px;
  object-fit: cover;
  object-position: top;
}
.team.style-2 .team-item .team-desc {
  padding: 28px 10px;
}
.team.style-2 .team-item ul {
  position: relative;
  z-index: 1;
  background-color: transparent;
  margin-bottom: 0;
  flex-direction: row;
  justify-content: center;
}
.team.style-2 .team-item ul li {
  border: none;
  background-color: transparent;
  padding-top: 0;
  padding-right: 5px;
}
.team.style-2 .team-item ul li:last-child {
  padding-right: 0px;
}
.team.style-2 .team-item ul li i {
  font-size: 15px;
  color: #fff;
  background-color: #000;
  border-radius: 3px;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  text-align: center;
  line-height: 20px;
}

.team.style-2 .team-item .team-position {
  color: var(--primary-color);
  font-size: 16px;
  display: inline-block;
  margin: 8px 0 12px;
}
.team.style-2 .social-icons li {
  margin: 0;
}
.team.style-2 .social-icons li a {
  font-size: 20px;
  width: auto;
  height: auto;
}
/*Style3*/
.team.style-3 {
  overflow: visible;
}
.team.style-3 ul {
  flex-direction: row;
  justify-content: center;
}
.team.style-3 ul li {
  border: none;
  background-color: transparent !important;
  padding-right: 10px;
}
.team.style-3 ul li a i {
  font-size: 16px;
}
.team.style-3 .team-avatar {
  position: relative;
}
.team.style-3 .team-avatar img {
  height: 292px;
  object-fit: cover;
  object-position: top;
}
.team.style-3 .social-icons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.team.style-3 .social-icons h6,
.team.style-3 ul li a {
  color: var(--white);
}
.team.style-3 .social-icons h6 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
.team.style-3 ul li a {
  width: auto;
  height: auto;
  font-size: 18px;
}
.team.style-3 ul li a:hover {
  color: var(--secondary-color);
}
.team.style-3 .team-item:hover .social-icons {
  opacity: 1;
}
.team.style-3 .team-item .team-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.team.style-3 .team-item .team-position {
  font-style: italic;
}
.team.style-3 .team-item .team-desc {
  padding-bottom: 0;
}
/*Style4*/
.team.style-4 .team-item .team-name {
  font-size: 20px;
  font-weight: 500;
}
.team.style-4 h2 {
  color: #fff;
}
.team.style-4 .team-avatar img {
  width: 100%;
  height: 100%;
}

/*social icons*/
.social-icons {
  padding: 0;
  line-height: 0;
}
.text-center.social-icons {
  display: inline-block;
}
.social-icons li {
  display: inline-block;
  list-style: none;
  line-height: 10px;
  margin: 0 5px 5px 0;
}
.social-icons li a {
  display: inline-block;
  height: 32px;
  width: 32px;
  line-height: 32px;
  font-size: 16px;
  text-align: center;
  border-radius: 3px;
  border: 0;
  background: transparent;
  color: #343a40;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/*dark*/
.social-icons.dark li a {
  background: #343a40;
  color: var(--white);
}
/*light*/
.social-icons.light li a {
  background: #dddddd;
  color: #121212;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.social-icons.light li a:hover {
  background: var(--primary-color);
  color: var(--white);
}
/*round*/
.social-icons.round li a {
  border-radius: 50%;
}
/*square*/
.social-icons.square li a {
  border-radius: 0;
}
/*border*/
.social-icons.si-border li a {
  border: 1px solid #8f9397;
}
.team-overlay .team-item:hover .team-avatar {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
}
.team.team-overlay .team-item .team-avatar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background: var(--primary-color);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.team.team-overlay .team-item:hover .team-avatar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  height: 100%;
  width: 100%;
  opacity: 0.85;
  visibility: visible;
  overflow: hidden;
  background: var(--primary-color);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/*social icon on hover*/
.team.social-hover .team-item .team-avatar {
  position: relative;
  overflow: hidden;
}
.team.social-hover .team-item ul {
  background: var(--primary-color);
  position: absolute;
  padding: 5px 3px 0;
  bottom: 110px;
  left: -25px;
  border-radius: 0;
  visibility: hidden;
  z-index: 99;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.team.social-hover .team-item ul li {
  margin-right: 0;
}
.team.social-hover .team-item ul li:last-child {
  padding-bottom: 5px;
}
.team.social-hover .team-item ul li {
  display: block;
  margin-left: -50px;
  background-color: transparent;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 16px;
  border: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.team.social-hover .team-item ul li a {
  color: var(--white);
}
.team.social-hover .team-item:hover ul {
  visibility: visible;
  left: 20px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.team.social-hover .team-item:hover ul li:nth-child(1) {
  margin-left: 0px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.team.social-hover .team-item:hover ul li:nth-child(2) {
  margin-left: 0px;
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.team.social-hover .team-item:hover ul li:nth-child(3) {
  margin-left: 0px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.team.social-hover .team-item:hover ul li:nth-child(4) {
  margin-left: 0px;
  -webkit-transition: all 1.3s ease-in-out;
  -moz-transition: all 1.3s ease-in-out;
  -ms-transition: all 1.3s ease-in-out;
  -o-transition: all 1.3s ease-in-out;
  transition: all 1.3s ease-in-out;
}
.team.social-hover .team-item:hover ul li:nth-child(5) {
  margin-left: 0px;
  -webkit-transition: all 1.5s ease-in-out;
  -moz-transition: all 1.5s ease-in-out;
  -ms-transition: all 1.5s ease-in-out;
  -o-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}

/* Pricing */
.pricing-top {
  text-align: center;
  background-color: #f5f5f5;
  padding: 25px 15px;
}
.pricing-bottom p {
  color: var(--black) !important;
}
.pricing-box .btn-outline-primary {
  border-color: #efefef;
  background: var(--white);
}
.pricing-box .btn-outline-primary:hover {
  background: var(--secondary-color);
  color: #000;
}
.pricing .btn {
  text-transform: capitalize;
  padding: 0.55rem 1.7rem;
  min-width: 165px;
}
.pricing-top h6 {
  color: var(--primary-color);
  font-size: 15px;
}
.pricing-top h2 {
  margin-bottom: 0 !important;
}
.pricing-bottom {
  text-align: left;
  padding: 35px 35px 45px;
}
.pricing-bottom ul {
  list-style-type: none;
}
.pricing-bottom ul li {
  margin: 12px 0;
  color: #767676;
  font-family: var(--secondary-font);
  font-size: 1rem;
}
.pricing-box {
  background: var(--white);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08);
  position: relative;
}
.pricing-link {
  text-align: center;
}
.pricing.style-1 .pricing-box {
  box-shadow: 0 0 2px 1px #dddddd;
}
.pricing.style-1 .pricing-top h6 {
  background: var(--primary-color);
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  padding: 14px 40px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-left: -1px;
}
.pricing.style-1 .pricing-bottom h2 {
  font-size: 38px;
}
.pricing.style-1 .pricing-top {
  background: var(--white);
  padding: 40px 35px 0 0;
}
.pricing.style-2 .pricing-top h6 {
  text-transform: uppercase;
}
.pricing.style-2 .pricing-link {
  text-align: center;
  position: absolute;
  bottom: -24px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.pricing.style-3 {
  background: var(--primary-light-bg-color);
}
.pricing.style-3 .pricing-box {
  box-shadow: 0 0 2px 1.5px #cee5ff;
  overflow: hidden;
}
.pricing.style-3 .pricing-top {
  background-color: var(--primary-color);
  position: relative;
}
.pricing.style-3 .pricing-top::after {
  width: 100%;
  height: 110px;
  transform: skewY(167deg);
  -webkit-transform: skewY(167deg);
  content: "";
  position: absolute;
  background-color: var(--primary-color);
  left: 0px;
  top: 75px;
}
.pricing.style-3 .pricing-top.shape-center::after {
  border-radius: 50%;
  width: 120%;
  height: 70%;
  left: -10%;
  transform: none;
  -webkit-transform: none;
}
.pricing.style-3 .col-md-4:nth-of-type(3) .pricing-top::after {
  transform: skewY(13deg) !important;
  -webkit-transform: skewY(13deg) !important;
}
.pricing.style-3 .pricing-top.shape-right::after {
  transform: skewY(13deg);
  -webkit-transform: skewY(13deg);
}
.pricing.style-3 ul {
  margin-top: 2rem;
}
.pricing.style-3 .pricing-top h2,
.pricing.style-3 .pricing-top h6 {
  color: var(--white);
  position: relative;
  z-index: 1;
}
.pricing.style-3 .pricing-img {
  background-color: var(--white);
  position: relative;
  width: 95px;
  height: 95px;
  line-height: 85px;
  border: 3.5px solid var(--primary-color);
  border-radius: 50%;
  margin: -55px auto 0;
  text-align: center;
}
.pricing.style-3 .pricing-top {
  padding-top: 40px;
}
.pricing.style-3 .pricing-top h2 {
  font-size: 30px;
  font-weight: 500;
}
.pricing.style-3 .pricing-top h6 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 12px;
}
.pricing.style-3 .pricing-top span {
  font-size: 15px;
}
.pricing.style-4 .pricing-top {
  border-top: 5px solid var(--primary-color);
  background: #232323;
  padding: 35px 15px;
}
.pricing.style-4 .pricing-top h6 {
  color: var(--white);
  font-size: 18px;
  text-transform: uppercase;
  margin: 15px 0 0;
}
.pricing.style-4 .pricing-bottom h2 {
  font-size: 44px;
  font-weight: normal;
  text-align: center;
  letter-spacing: -1px;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.pricing.style-4 .pricing-button {
  margin-top: 2.5rem;
}
.pricing.style-4 .btn {
  border-width: 2px;
}
.pricing.style-4 .pricing-box {
  overflow: hidden;
}
.pricing.style-4 .pricing-box.active::before {
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  border-bottom: 100px solid transparent;
  border-left: 100px solid var(--secondary-color);
  top: -10px;
  width: 110px;
  height: 90px;
  transform: skewY(180deg);
}
.pricing .recommended {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(-45deg) !important;
  -webkit-transform: rotate(-45deg) !important;
  width: 100px;
  display: block;
  position: absolute;
  top: 30px;
  left: -15px;
}
.list-default li i {
  font-size: 16px;
}
.list-circled-icon li i {
  margin-right: 10px;
  color: #000;
  border: 1.5px solid #000;
  border-radius: 100%;
  padding-left: 4px;
  padding-right: 9px;
  padding-top: 3px;
  padding-bottom: 10px;
  width: 2px;
  height: 2px;
  font-size: 9px;
  vertical-align: middle;
  margin-top: -3px;
}
.pricing.style-2 .pricing-box.active {
  box-shadow: 0 0 0 2px var(--primary-color);
}
.pricing-box.active .pricing-top {
  background: var(--primary-color);
}
.pricing-box.active .pricing-top h6,
.pricing-box.active .pricing-top h2 {
  color: var(--white);
}
.view-plan .btn {
  text-transform: uppercase;
  border-width: 2px;
  font-size: 14px;
  font-weight: 600;
}

/* Services */
.service-item {
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.service-item .link-text {
  color: var(--primary-color);
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
}

.service.style-1 .service-item {
  background: var(--main-bg-color);
  padding: 35px;
  margin-bottom: 30px;
}
.service.style-1 .service-item:before {
  background: var(--primary-color);
  content: "";
  position: absolute;
  width: 3px;
  height: 80px;
  left: 0;
  top: 35px;
}
.service.style-1 .service-image {
  border-radius: 50%;
  background: var(--primary-color);
  width: 80px;
  height: 80px;
  padding: 15px;
  margin: 0 2rem 0 0;
}
.service.style-1 .service-image img {
  filter: brightness(100);
  -webkit-filter: brightness(100);
}
.service.style-1 .service-content {
  margin-top: 10px;
}
.service.style-1 .service-content h5 {
  font-size: 22px;
  margin-bottom: 1rem;
}
.service.style-1 .service-content h5 a:hover {
  color: var(--primary-color);
}
.service.style-1 .service-item:hover {
  background: var(--primary-color);
}
.service.style-1 .service-item:hover h5,
.service.style-1 .service-item:hover h5 a,
.service.style-1 .service-item:hover p,
.service.style-1 .service-item:hover .link-text {
  color: var(--white);
}
.service.style-1 .service-item:hover .link-text:hover {
  color: var(--secondary-color);
}
.service.style-1 .service-item:hover .service-image {
  background: var(--white);
}
.service.style-1 .service-item:hover .service-image img {
  filter: brightness(0);
  -webkit-filter: brightness(0);
}
.btn-custom {
  padding: 0.65rem 1.6rem;
  min-width: 165px;
  font-size: 14px;
  font-weight: bold;
}
.bg-black {
  background: #333333;
}
.service.style-2 .text-secondary:hover {
  color: var(--white) !important;
}
.service.style-2 .text-white:hover {
  color: var(--secondary-color) !important;
}
.service.style-2 .service-content {
  padding: 40px 30px;
}
.service.style-2 .service-content img {
  width: 40px;
}
.service.style-2 .service-content h5 {
  margin-top: 1rem;
}
.service.style-2 .service-content p {
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 10px;
}
.service.style-2 .service-content .link-text {
  font-size: 11px;
}
.service.style-2 .service-content h5 a:hover {
  color: var(--secondary-color);
}
.service.style-2 .no-gutters .row [class*="col-"] .item .service-item {
  background-color: var(--primary-color);
}
.service.style-2 .no-gutters .row:nth-of-type(even) .item {
  flex-direction: row-reverse;
}
.service.style-2
  .no-gutters
  .row
  [class*="col-"]:nth-of-type(even)
  .item
  .service-item {
  background-color: var(--primary-color) !important;
}
.service.style-2
  .no-gutters
  .row
  [class*="col-"]:nth-of-type(odd)
  .item
  .service-item {
  background-color: #333333 !important;
}
.service.style-2 .item {
  display: flex;
}
.service.style-2 .item-content {
  width: 50%;
}
.service.style-2 .item-image {
  width: 50%;
}
.service.style-3 .service-icon img {
  width: 35px;
}
.service.style-3 .service-item {
  height: 370px;
  box-shadow: 0 0 1px 1px #e7e7e7;
  overflow: hidden;
  margin-bottom: 30px;
}
.service .service-item .service-icon {
  position: absolute;
  left: -1px;
  top: -1px;
  background-color: var(--primary-color);
  clip-path: polygon(0% 0%, 100% 0%, 100% 65%, 1% 95%);
  padding: 15px 10px 32px;
}
.service.style-3 .service-content {
  background: var(--white);
  border-top: 0;
  padding: 25px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  position: absolute;
  bottom: -45px;
}
.service.style-3 .service-content h5 {
  font-size: 22px;
  margin-bottom: 1rem;
}
.service.style-3 .service-item:hover .service-content {
  bottom: 0;
}
.service.service-list-1 .service-icon img {
  -webkit-filter: invert(1);
  filter: invert(1);
  height: 35px;
  width: 35px;
}
.service.service-list-1 .service-item {
  height: 100%;
}
.service.style-3 .service-img {
  min-height: 205px;
  object-fit: cover;
  width: 100%;
}
.service.style-4 .service-item {
  background: #f1f2f4;
  padding: 3rem 1.5rem;
  margin-bottom: 20px;
}
.service.style-4 .service-item h5 {
  font-size: 32px;
  line-height: 1.2;
  flex: 0;
  margin: 0;
}
.service.style-4 .service-item img {
  width: 70px;
  height: 70px;
}
.service.style-4 .service-item .service-content {
  margin-top: 2rem;
}
.service-item .link {
  width: 40px;
  height: 40px;
  border: 2px solid;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin-top: 1rem;
}
.service-item .link i {
  font-weight: bold;
}
.service.style-5 .service-item {
  border: 2px solid rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.service.style-5 .service-item:after {
  position: absolute;
  right: 0;
  content: "";
  background-color: transparent;
  bottom: 0;
  border-right: 50px solid transparent;
  border-bottom: 50px solid rgba(0, 0, 0, 0.05);
  border-bottom-left-radius: 0;
  z-index: 2;
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
}
.service.style-5 .service-image {
  background: var(--primary-color);
  border-radius: 50%;
  color: var(--white);
  width: 130px;
  height: 53px;
  text-align: center;
  margin-right: 15px;
}
.service.style-5 .service-image i {
  line-height: 55px;
}
.service.style-5 .service-item:hover {
  background: var(--primary-color);
}
.service.style-5 .service-item:hover h5,
.service.style-5 .service-item:hover p {
  color: var(--white);
}
.service.style-5 .service-item:hover .service-image {
  color: var(--primary-color);
  background: var(--white);
}
.supporting-team {
  background: #e8f1fd;
  padding: 4.5rem 0;
}
.support-request h2 {
  flex: 0 0 30%;
  font-size: 40px;
  line-height: 50px;
}
.support-request .request-quote {
  flex: 0 0 25%;
}
.support-request p {
  color: var(--black);
  font-family: var(--primary-font);
  font-weight: 500;
  margin-top: 3px;
}

/* Index */
/* Swiper slider styles*/
.views_slideshow_controls_text span:hover {
  text-decoration: none;
}
.slider-2.swiper-slide h2 {
  color: #fff;
  font-size: 40px !important;
  font-weight: bold;
  line-height: 52px;
}
.slider-2 h2 span {
  color: var(--secondary-color);
}
.slider-2 .slider-content a {
  display: inline-block;
  font-size: 16px;
  min-width: 190px;
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 3px;
  font-weight: 500;
  line-height: 1.6;
  padding: 0.7rem 1.4rem;
  outline: none;
  text-transform: uppercase;
  position: relative;
  bottom: -22px;
}
.slider-2 .slider-content a:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.slider-2 .slider-content a::after {
  content: "";
  width: 100px;
  height: 8px;
  background-color: #fff;
  position: absolute;
  right: -125px;
  bottom: 21.5px;
}
.slider-2 .slider-content a::before {
  content: "";
  width: 100px;
  height: 8px;
  background-color: #fff;
  position: absolute;
  left: -125px;
  bottom: 21.5px;
}
.slider-2 .slider-wrapper {
  padding-top: 250px;
  padding-bottom: 250px;
  position: relative;
}
.slider-2 .slider-content {
  padding: 45px 40px;
  padding-bottom: 0;
  border: solid 8px #fff;
  border-bottom: 0;
}
/*slider-3*/
.slider-3.swiper-slide {
  position: relative;
}
.slider-3.bg-overlay-dark:before {
  background: rgba(0, 0, 0, 0.65) !important;
}
.slider-wrapper {
  padding: 300px 0px !important;
}
.slider-3.swiper-slide::after {
  position: absolute;
  left: 0;
  content: "";
  width: 280px;
  height: 300px;
  background-color: transparent;
  bottom: 0 !important;
  border-right: 360px solid transparent;
  border-bottom: 280px solid var(--primary-color);
  z-index: -1;
}
.slider-3.swiper-slide img {
  position: absolute;
  left: 50px;
  bottom: 50px;
}
.slider-3.swiper-slide span {
  color: var(--secondary-color);
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}
.slider-3.swiper-slide h2 {
  color: var(--white);
  font-size: 72px;
  line-height: 90px;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: none !important;
}
.slider-3.swiper-slide a {
  color: var(--white);
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 600;
  background-color: transparent;
  border: solid 1.5px var(--white);
  display: inline-block;
}
.slider-3.swiper-slide a:hover {
  color: #000;
  background-color: var(--white);
  border: solid 1.5px var(--white);
}
.swiper-button-next,
.swiper-button-prev {
  background-image: none;
  background-color: transparent;
  height: 54px;
  width: 54px;
  color: var(--white);
  border: 1px solid;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}
.swiper-button-next i,
.swiper-button-prev i {
  line-height: 54px;
  text-align: center;
  display: block;
  font-weight: bold;
}
.slider-4.swiper-slide h2 {
  color: var(--white);
  font-size: 54px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: none !important;
}
.slider-4.swiper-slide p {
  color: var(--white);
  width: 82%;
  margin: auto;
  margin-bottom: 25px;
}
.slider-4.swiper-slide a {
  color: #000;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  border-radius: 3px;
  font-size: 1.125rem;
  font-weight: 500;
  outline: none;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  line-height: 1.5;
}
.slider-4.swiper-slide a:hover {
  color: var(--white);
  background-color: #000;
  border-color: #000;
}
/*Slider arrow*/
.swiper-arrow-hover .swiper-button-next,
.swiper-arrow-hover .swiper-button-prev {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.swiper-arrow-hover .swiper-button-next {
  right: -100px;
}
.swiper-arrow-hover .swiper-button-prev {
  left: -100px;
}
.swiper-arrow-hover:hover .swiper-button-next {
  right: 50px;
  opacity: 1;
  visibility: visible;
}
.swiper-arrow-hover:hover .swiper-button-prev {
  left: 50px;
  opacity: 1;
  visibility: visible;
}
.views_slideshow_controls_text {
  height: 100%;
}
.views_slideshow_controls_text [class*="views-slideshow-controls-text-"] a {
  background-image: none;
  background-color: transparent;
  height: 54px;
  width: 54px;
  color: var(--white);
  border: 1px solid;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
[class*="slider-block_"] .skin-default {
  position: relative;
}
.views_slideshow_controls_text
  [class*="views-slideshow-controls-text-"]
  a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.views_slideshow_controls_text
  [class*="views-slideshow-controls-text-previous"]
  a {
  left: 50px;
  opacity: 1;
  visibility: visible;
}
.views_slideshow_controls_text [class*="views-slideshow-controls-text-next"] a {
  right: 50px;
  opacity: 1;
  visibility: visible;
}
.views_slideshow_controls_text_previous a .carousel-control-prev-icon:before {
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
}
.views_slideshow_controls_text_next a .carousel-control-next-icon:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
}
.views_slideshow_controls_text_previous a .carousel-control-prev-icon,
.views_slideshow_controls_text_next a .carousel-control-next-icon {
  background-image: none !important;
  width: unset;
  height: unset;
}
/*Slider pagination*/
.swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
  border-radius: 3px;
  width: 12px;
  height: 12px;
  text-align: center;
}
.swiper-pagination-bullet-active {
  background: #ffffff;
  opacity: 1;
  width: 16px;
}
.views-slideshow-controls-bottom .views-slideshow-pager-bullets {
  position: absolute;
  bottom: 25px;
  display: flow-root;
  z-index: 20;
  left: 0;
  right: 0;
}
.views-slideshow-controls-bottom .views-slideshow-pager-bullets li,
.bullet-dark .swiper-pagination-bullet {
  background: #343a40;
  opacity: 0.5;
  border-radius: 3px;
  width: 12px;
  height: 12px;
  text-align: center;
}
.bullet-dark .swiper-pagination-bullet-active {
  background: #343a40;
  opacity: 1;
  width: 16px;
}
.views-slideshow-controls-bottom .views-slideshow-pager-bullets li {
  border-radius: 3px;
  width: 16px;
  height: 3px;
  border-radius: 5px;
  background: #d6d3d2 !important;
  opacity: 1;
  border: none !important;
  text-align: center;
}
.views-slideshow-controls-bottom .views-slideshow-pager-bullets li.active {
  background: var(--primary-color) !important;
  width: 30px;
}
/*Dark overlay*/
.bg-overlay-dark {
  position: relative;
  z-index: 1;
}
.bg-overlay-dark:before {
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  z-index: -1;
}
/*height and width*/
.slider-wrapper {
  padding: 175px 0;
}
.slider-wrapper .social-icons li a {
  width: auto;
  font-size: 15px;
}
.height-600-responsive {
  height: 600px;
}
.height-700 {
  height: 700px;
}
.height-700-responsive {
  height: 700px;
}
.height-800 {
  height: 800px;
}
.height-800-responsive {
  height: 800px;
}
.height-900-responsive {
  height: 900px;
}
.h-sm-100-vh {
  height: 100vh;
}
.h-md-100-vh {
  height: 100vh;
}
.h-sm-80-vh {
  height: 80vh;
}
.h-md-80-vh {
  height: 80vh;
}
.w-40 {
  width: 40%;
}
.slider-wrapper .social-icons {
  position: relative;
  padding-left: 70px;
}
.slider-wrapper .social-icons::before {
  content: "";
  background-color: #fff;
  width: 58px;
  height: 0.5px;
  left: 0;
  position: absolute;
  top: 16px;
}
.slider-wrapper .social-icons li a {
  width: auto;
  height: auto;
}
.views-slideshow-controls-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  top: 0px;
}
.swiper-slide h2 {
  font-size: 30px;
}
.swiper-slide h3 {
  font-weight: 500;
}
.swiper-slide p {
  font-family: var(--primary-font);
}
.swiper-slide .slider-left {
  padding-right: 8rem;
}
.lead {
  font-size: 16px;
}
.swiper-slide .slider-left p {
  padding-right: 5rem;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 35px;
}
.swiper-container .swiper-pagination-bullet {
  cursor: pointer;
  width: 16px;
  height: 3px;
  border-radius: 5px;
  background: #d6d3d2;
  opacity: 1;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.swiper-container .swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 30px;
}
/* Portfolio Filter */
.items-padding {
  margin: 10px;
}
.items-padding .portfolio-card {
  padding: 10px;
}
.items-padding-inside .portfolio-card {
  padding: 10px;
}
.items-2 .portfolio-card {
  width: 50%;
  float: left;
}
.items-3 .portfolio-card {
  width: 33.3333%;
  height: 392px;
  float: left;
}
.items-4 .portfolio-card {
  width: 25%;
  height: 330px;
  float: left;
}
.items-5 .portfolio-card {
  width: 20%;
  float: left;
}
.items-6 .portfolio-card {
  width: 16.6666%;
  float: left;
}
.items-2 .info-title,
.items-3 .info-title {
  font-size: 1.3125rem;
}
.items-4 .info-title,
.items-5 .info-title,
.items-6 .info-title {
  font-size: 1.09375rem;
}
.portfolio-card {
  overflow: hidden;
  position: relative;
}
.portfolio-card .portfolio-card-body {
  overflow: hidden;
  height: 100%;
}
.portfolio-card .portfolio-card-body .portfolio-card-footer .info-title {
  margin-top: 20px;
  margin-bottom: 5px;
  color: #343a40;
  display: block;
}
.portfolio-card .portfolio-card-body .portfolio-card-footer .info-title a {
  color: #343a40;
}
.portfolio-card
  .portfolio-card-body
  .portfolio-card-footer
  .info-title
  a:hover {
  color: #4cbd89;
}
.portfolio-card .portfolio-card-body .portfolio-card-footer .full-screen {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffffff;
  color: #343a40;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 44px;
  text-align: center;
}
.portfolio-card .portfolio-card-body .portfolio-card-footer .full-screen img {
  width: 18px;
}
.portfolio-card:hover .portfolio-card-body .portfolio-card-footer .full-screen {
  visibility: visible;
  opacity: 1;
  z-index: 2;
}
.portfolio-card:hover .portfolio-footer-title p {
  text-transform: uppercase;
}
.portfolio-wrap.items-3 .portfolio-card-body .portfolio-card-footer h4 a:hover {
  color: var(--secondary-color);
}
.portfolio-card .portfolio-card-header {
  overflow: hidden;
  position: relative;
  height: 100%;
  /* border-radius: 3px; */
}
.portfolio-card .portfolio-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.portfolio-card:hover .portfolio-card-header img {
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.portfolio-card .portfolio-card-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background: #343a40;
  z-index: 1;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.portfolio-card:hover .portfolio-card-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.2;
  visibility: visible;
  background: #343a40;
}
.portfolio-card:hover .portfolio-card-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.85;
  visibility: visible;
  background: var(--primary-color);
}
/*portfolio filter*/
.portfolio .nav .nav-tabs {
  border: none;
}
.portfolio .nav .nav-tabs .nav-filter {
  font-weight: 500;
  display: inline-block;
  line-height: 15px;
  padding: 15px;
  margin-bottom: 20px;
  cursor: pointer;
  color: #343a40;
}
.portfolio .nav .nav-tabs .nav-filter:last-child {
  margin-right: 0;
}
.portfolio .nav .nav-tabs .nav-filter.active {
  color: var(--primary-color);
}
/*nav-tabs-style-1*/
.portfolio .nav .nav-tabs-style-1 {
  padding: 0;
  margin: 0;
}
.portfolio .nav .nav-tabs-style-1 .nav-filter {
  margin-right: 5px;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 3px;
  background: #e9e9e9;
  font-weight: 400;
  min-width: 115px;
}
.portfolio .nav .nav-tabs-style-1 .nav-filter.active {
  color: var(--white);
  background: var(--primary-color);
}
.portfolio-card-footer {
  display: none;
}
.isotope-item:hover .portfolio-card-footer {
  display: block;
}
.portfolio-header-title {
  position: absolute;
  background-color: #000;
  z-index: 1;
  bottom: 25px;
  min-width: 220px;
  transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}
.portfolio-card:hover .portfolio-header-title {
  opacity: 0 !important;
}
.portfolio-card .portfolio-card-body .portfolio-card-footer .full-screen {
  line-height: 36px !important;
}
.full-screen.full1 {
  position: absolute;
  top: auto !important;
  bottom: 50px;
  left: 35px;
}
.full-screen.full2 {
  position: absolute;
  top: auto !important;
  bottom: 50px;
  left: 90px;
}
.portfolio-footer-title {
  color: #fff !important;
  opacity: 0;
  transition: all 1s;
  position: relative;
}
.portfolio-card:hover .portfolio-footer-title {
  color: #fff !important;
  opacity: 1;
  position: absolute;
  top: 35px;
  left: 35px;
  z-index: 1;
}
.portfolio-footer-title h4 {
  margin-bottom: 5px;
}
.portfolio-footer-title p {
  color: var(--white);
  font-family: var(--primary-font);
  font-size: 13px;
}
.portfolio-header-title h6 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
}
.portfolio-header-title h5 {
  margin-bottom: 0;
}
.text-black {
  color: var(--black);
}
.explore-our-business {
  position: relative;
}
.explore-our-business::before {
  background-color: var(--primary-color);
  width: 27.5%;
  position: absolute;
  z-index: 1;
  content: "";
  height: 100%;
  left: 0;
  top: 0;
}
.explore-our-business::after {
  background-color: var(--black);
  width: 72.5%;
  position: absolute;
  z-index: 0;
  content: "";
  height: 100%;
  right: 0;
  top: 0;
}
.explore-our-business::before,
.explore-our-business::after {
  opacity: 0.8;
}
.explore-our-business .business-content h3 {
  margin: 2rem 0;
}
.explore-our-business .business-content p {
  font-family: var(--primary-font);
}
.explore-our-business .btn {
  min-width: auto;
  margin-top: 1rem;
}
.zindex-1 {
  position: relative;
  z-index: 1;
}
.explore-our-business .business-img {
  position: absolute;
}
.counter-item .counter-item-digit {
  position: relative;
}
.counter-item .counter-item-digit.with-plus:after {
  content: "+";
  display: inline-block;
}
.counter-item .counter-item-digit {
  margin-bottom: 5px;
}
.counter-item .counter-item-text {
  font-family: var(--primary-font);
  margin: 0;
}
/* counter border */
.counter-border .counter-item-content {
  padding: 1rem 1.25rem;
}
.counter-border .counter-item {
  border: 2px solid var(--white);
}
.counter-border .counter-item-icon {
  background: var(--white);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: -40px auto 0;
  line-height: 75px;
}
.contact-experts h2 {
  font-size: 42px;
  line-height: 48px;
}
.expert-info {
  background: var(--white);
  padding: 20px 10px;
}
.expert-info h6 {
  color: var(--primary-color);
  margin-bottom: 3px;
}
.expert-info h4 {
  color: #121212;
  margin-bottom: 0;
}
/*Header sticky*/
.header {
  position: relative;
  z-index: 99;
}
.header.navbar-sticky.navbar-sticky-on {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  -webkit-animation: fadeInDown 0.5s;
  animation: fadeInDown 0.5s;
  width: 100%;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}
.header.navbar-sticky.navbar-sticky-on .navbar-top {
  display: none !important;
}
.header.navbar-sticky.navbar-sticky-on .navbar-brand .navbar-brand-item {
  height: 50px;
}
.header-3.navbar-sticky.navbar-sticky-on .navbar-toggler-icon,
.header-4.navbar-sticky.navbar-sticky-on .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.header-3.navbar-sticky.navbar-sticky-on .navbar {
  background-color: var(--primary-color);
}
/*Back to top*/
.back-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 8px 12px !important;
  position: fixed !important;
  bottom: 25px;
  right: 25px;
  border-radius: 3px;
  display: block;
  text-align: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.back-top i {
  font-size: 18px;
  margin: 0 !important;
  display: block;
}
.back-top.btn-show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
}

/*preloader*/
.preloader {
  background-color: #ffffff;
  position: fixed;
  z-index: 999999;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.preloader img {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#page-preloader,
#settings-preloader {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9890;
  display: none;
}
#page-preloader .loading {
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 5px solid #fff;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  text-align: center;
}
#page-preloader .loader,
#settings-preloader .loader {
  position: absolute;
  margin: auto;
  width: 150px;
  height: 150px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#page-preloader .loader svg,
#settings-preloader .loader svg {
  width: 100%;
  height: 100%;
}
#page-preloader.active,
#settings-preloader.active {
  display: block;
}
/* Home-2 */
.who-we-are-content .badge {
  background: #daddff;
  border-radius: 30px;
  color: var(--primary-color);
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
}
.who-we-are .about-item {
  border-left: 4px solid var(--primary-color);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}
.who-we-are-image {
  position: relative;
  height: 100%;
}
.who-we-are-image .front-img {
  margin-top: -13.5rem;
}
.who-we-are .support-info {
  width: 150px;
  padding: 1rem;
  background: var(--primary-color);
  text-align: center;
  border-radius: 3px;
  position: absolute;
  bottom: 120px;
  right: 125px;
}
.portfolio.alternate .nav .nav-tabs-style-1 .nav-filter {
  margin-bottom: 0;
}
.icon-box.style-1 {
  border: 1.5px solid var(--white);
  padding: 2.5rem 1.5rem 2rem;
}
.icon-box.style-1 img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.icon-box.style-1 h4 {
  font-size: 22px;
  font-weight: 500;
  margin: 1.5rem 0 1rem;
}
.icon-box.style-1 .link i {
  color: var(--secondary-color);
}
.video-block .section-title h2:after {
  display: none;
}
.video-block .video-img {
  position: relative;
  height: 100%;
  padding: 0 1rem;
}
.video-block .video-img::after {
  position: absolute;
  right: 10px;
  content: "";
  background-color: transparent;
  bottom: -55px;
  border-right: 300px solid transparent;
  border-bottom: 350px solid var(--primary-color);
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
}
.video-block .video-img img {
  position: relative;
  z-index: 3;
}
.video-block .btn {
  margin-top: 1.25rem;
}
.video-block .play-icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 70px;
  height: 70px;
}
.our-partners .logo-item {
  padding: 2rem 1.5rem;
}
.faq-block img {
  width: 100%;
}
.bg-primary-light {
  background: var(--primary-light-bg-color);
}
.faq-block .faq-content {
  padding: 3rem 2.5rem;
  height: 100%;
}
.faq-block .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-block .questions {
  color: var(--black);
  text-align: center;
  margin-top: 2.5rem;
}
.faq-block .questions a {
  color: var(--primary-color);
}
.newsletter-col {
  background: #eff6fe;
  transform: skew(-20deg);
  -webkit-transform: skew(-20deg);
}
.newsletter-block .newsletter {
  padding: 4rem 5rem 4rem 3rem;
  transform: skew(20deg);
  -webkit-transform: skew(20deg);
}
.newsletter-block .btn {
  font-size: 14px;
  min-width: 160px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.newsletter-block .form-control {
  border-color: #c9e0ff;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  font-size: 13px;
  font-weight: 500;
}
.newsletter-block .form-control,
.newsletter-block .btn {
  min-height: 56px;
}
.newsletter-block .form-control::placeholder {
  color: #000;
  text-transform: uppercase;
}
.footer-2 .footer-top,
.footer-2 .footer-bottom,
.footer-2 .footer-copyrights {
  position: relative;
}
.footer-2 .copyright-links li a {
  border-right: 1px solid;
}
.footer-2 .copyright-links li:last-child a {
  border: none;
}

/* Home3 */
.navbar-transparent {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.navbar-dark h4,
.navbar-dark h6,
.navbar-dark h5,
.navbar-dark h5 a,
.navbar-dark .language > a {
  color: #fff;
}
.navbar-dark h6 {
  font-weight: normal;
}
.navbar-dark .language > a {
  font-size: 14px;
}
.header .logo-text p {
  font-size: 14.5px;
}
.header-3 .navbar-top-inner {
  padding: 6px 0;
}
.header-3 .social-icons .fa {
  font-size: 14px;
}
.header-3 .navbar-nav {
  padding-left: 1.5rem !important;
}
.header-3 .bg-primary .navbar-nav .nav-item > a:hover,
.header-3 .bg-primary .navbar-nav .nav-item > a:focus,
.header-3 .bg-primary .navbar-nav .nav-item > a.active,
.bg-primary .social-icons li a:hover,
.navbar-dark h5 a:hover,
.navbar-dark .language > a:hover {
  color: var(--secondary-color);
}
.bg-primary .social-icons li a {
  color: var(--white);
}
.footer .social-icons.light li {
  margin-right: 0;
}
.footer .social-icons.light li a {
  background: rgba(255, 255, 255, 0.3);
}
.footer .social-icons.light li a:hover {
  background: var(--primary-color);
}
.footer-3 .social-icons {
  margin-top: 2rem;
}
.footer-3 .footer-copyrights {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  position: relative;
}
.footer-3.overlay-dark-blue:before {
  opacity: 0.75;
}
.growth-block .growth-content {
  border: 10px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  padding: 3rem;
}
.growth-block .section-title h2:after {
  display: none;
}
.growth-block .play-icon {
  color: var(--secondary-color);
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: underline;
  letter-spacing: 1px;
}
.play-icon .icon {
  background: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  margin-left: 2rem;
}
.play-icon .icon img {
  width: 20px;
}
.faq-block .faq-img {
  padding: 25px;
}
.faq-block .faq-img::after {
  position: absolute;
  left: 0;
  content: "";
  background-color: transparent;
  bottom: 0;
  border-right: 300px solid transparent;
  border-bottom: 350px solid var(--primary-color);
  z-index: -1;
}
.faq-block.alternate .faq-content {
  padding: 20px 0 20px 10px;
}
.client-block .item {
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  min-height: 128px;
  line-height: 128px;
}
.client-block .item.client-page {
  min-height: 170px;
  line-height: 170px;
}
.footer-4 .footer-copyrights {
  background: #010534;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.our-locations h6 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 1rem;
}
.location-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
}
.location-list li:last-child {
  margin-bottom: 0;
}
.location-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 17px;
}
.location-list li i.fa-phone-alt {
  font-size: 14px;
}
.location-item h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1rem;
}
.process-block .overlay-primary:before {
  opacity: 0.9;
}
.process-block .process-content {
  border-radius: 20px;
  padding: 35px 90px 40px 35px;
  overflow: hidden;
}
.process-block .process-content p {
  font-size: 15px;
}
.process-block .play-icon img {
  width: 45px;
  height: 45px;
}
.process-block .process-content .play-icon {
  position: relative;
}
.process-block .process-content .play-icon:after {
  content: "\f04b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  border: none;
  font-size: 14px;
  position: absolute;
  left: 18px;
  top: 11px;
  z-index: 5;
}
.process-block .play-icon:hover {
  color: var(--secondary-color);
}
.process-block .process-bottom {
  margin-top: 4rem;
}
.counter-primary .counter-item {
  position: relative;
  padding: 20px 10px;
  z-index: 1;
}
.counter-primary .counter-item h2,
.counter-primary .counter-item p {
  color: var(--white);
}
.counter-primary .no-gutters .col-12:nth-of-type(1) .counter-item::before {
  content: "";
  background: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.8;
}
.counter-primary .no-gutters .col-12:nth-of-type(2) .counter-item::before {
  content: "";
  background: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.9;
}
.counter-primary .no-gutters .col-12:nth-of-type(3) .counter-item::before {
  content: "";
  background: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
}
.counter-primary .counter-item-icon img {
  width: 55px;
}
.counter-primary .counter-item-content {
  padding-top: 0.5rem;
}
.counter-primary .counter-item-content h2 {
  margin-bottom: 0;
}
.counter-primary .counter-item-text {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 500;
}
.about-company-1 .about-item {
  margin-bottom: 2rem;
}
.about-company-1 .about-item h5 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
}
.about-company-1 .about-image {
  position: relative;
  float: right;
}
.about-company-1 .overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background-color: var(--primary-color);
  border-right: 6px solid #fff;
  border-bottom: 6px solid #fff;
  border-bottom-right-radius: 3px;
}
.about-company-1 .overlay-top span {
  color: #fff;
  font-size: 32px;
  line-height: 34px;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}
.about-company-1 .overlay-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  z-index: 2;
  text-align: right;
  background-color: var(--primary-color);
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 100%);
  padding-top: 102px;
  padding-left: 53px;
  padding-right: 20px;
  padding-bottom: 30px;
}
.about-company-1 .overlay-bottom p {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  line-height: 36px;
}
.journey {
  background-color: #10223d;
}
.journey .nav-default {
  justify-content: space-between;
  margin-bottom: 50px;
}
.journey .nav-default .nav-link {
  position: relative;
  min-width: 110px;
  padding: 15px 30px;
  border: solid 1px #fff;
  color: #fff;
  font-weight: bold;
  background-color: transparent;
  border-radius: 30px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.journey .nav-default .nav-link.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.journey .nav-default .nav-link::after {
  content: "";
  width: 130px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 21px;
  left: 110px;
}
.journey .nav-default .nav-link:last-child::after {
  display: none;
}
.journey .tab-content {
  background-color: transparent;
  color: #fff;
  padding: 0;
}
.journey .tab-content h4 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 22px;
  font-weight: 500;
}
.journey h2::after {
  background-color: var(--primary-color) !important;
}
.about-company-2 {
  position: relative;
}
.about-company-2 .label {
  display: flex;
  position: absolute;
  right: 15px;
  bottom: -25px;
  background-color: var(--primary-color);
  padding: 30px;
  align-items: center;
}
.about-company-2 .label img {
  width: 130px;
  height: 115px;
  object-fit: cover;
  object-position: center;
  margin-right: 30px;
}
.about-company-2 .label h4 {
  color: #fff;
  width: 160px;
  font-weight: bold;
}
.about-company-2 em {
  color: #000;
  margin-bottom: 25px;
  display: block;
}
.about-company-2 em strong {
  color: #000;
  font-weight: 500;
}
.about-company-2 .list {
  display: flex;
  margin: 40px 0 0;
}
.about-company-2 .item {
  width: 50%;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-right: 20px;
}
.about-company-2 .list i {
  display: flex;
  width: 70px;
  height: 70px;
  font-size: 26px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  margin-right: 15px;
}
.vision-mission .default-nav {
  justify-content: center;
  padding-bottom: 2rem;
}
.vision-mission .default-nav .nav-link {
  background-color: #f5f5f5;
  color: #000;
  border-radius: 0;
  font-weight: bold;
  min-width: 140px;
  padding: 10px 30px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin: 0 10px;
}
.vision-mission .default-nav .nav-link.active {
  background-color: var(--primary-color);
  color: #fff;
}
.vision-mission .tab-content {
  padding: 0;
  background-color: transparent;
}
.vision-mission .tab-content ul {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 25px;
}
.vision-mission .tab-content ul li {
  list-style-type: none;
  padding-left: 35px;
  position: relative;
  margin-bottom: 15px;
}
.vision-mission .tab-content ul li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  margin-right: 1rem;
  font-size: 18px;
  line-height: 26px;
  color: var(--primary-color);
  position: absolute;
  left: 0;
}
.vision-mission .tab-pane {
  margin-top: 10px;
}
.vision-mission .tab-pane .content {
  padding-right: 30px;
}
.vision-mission .tab-pane .content h3 {
  margin-bottom: 25px;
  width: 76.5%;
  font-weight: bold;
  font-size: 36px;
  line-height: 42px;
}
/*Awards*/
.awards-page .item {
  margin-bottom: 30px;
  padding: 10px;
  border: 2px solid rgba(0, 0, 0, 0.1);
}
.awards-page .item .image {
  position: relative;
}
.awards-page .item .top-overlay {
  position: absolute;
  display: flex;
  top: 20px;
  left: 20px;
  align-items: center;
}
.awards-page .item .icon {
  width: 65px;
  height: 65px;
  background-color: var(--primary-color);
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.awards-page .item .date {
  background-color: var(--primary-color);
  padding: 3px 10px 3px 5px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  font-weight: 500;
  position: relative;
}
.awards-page .item .date::after {
  content: "";
  width: 10px;
  height: 100%;
  background-color: var(--primary-color);
  top: 0;
  left: -10px;
  position: absolute;
}
.awards-page .item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 0.8px;
}
.awards-page .item h3 {
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 15px;
}
.awards-page .item .content {
  padding: 25px 20px 20px;
}
.awards-page .item p {
  margin-bottom: 0;
}
/*careers-page*/
.careers-page .career-items {
  background-color: var(--main-bg-color);
  padding: 30px 40px;
  margin-bottom: 30px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.career-items h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 26px;
}
.career-items h3 span {
  font-size: 17px;
  font-family: var(--secondary-font);
  text-transform: capitalize;
  font-weight: 500;
}
.career-items p {
  font-size: 16px;
}
.career-items .description {
  margin-bottom: 15px;
}
.career-items .webform-applyjob {
  display: inline-block;
  margin-top: 10px;
  background-color: #fff;
  border: solid 3px #e6e6e6;
  color: #000;
  font-size: 17px;
  font-weight: 600;
  padding: 10px 30px;
}
.careers-page .career-items:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.career-items:hover .webform-applyjob {
  background-color: #fff;
  border: solid 3px #fff;
  color: var(--primary-color);
}
.career-items:hover h3,
.career-items:hover h3 span {
  color: #fff;
}
.webform-confirmation h2 {
  margin-bottom: 40px;
}
.modal {
  background-color: var(--primary-color);
}
.modal-dialog {
  max-width: 100%;
}
.modal-header button {
  color: #fff;
  background-color: #000;
  text-shadow: none;
  opacity: 1;
  padding: 10px 15px !important;
}
.modal-header button:hover,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  color: #fff;
}
.modal .form-actions {
  margin-bottom: 0;
}
.form-file.form-control {
  background-color: transparent;
  border: none;
  padding: 0;
}
.modal-header {
  border: none;
}
.modal-title {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 42px;
  padding: 0px 0px 30px;
}
.modal-content {
  border: none;
}
.login {
  position: relative;
  background-size: 100% 100%;
}
.login::before {
  background-color: var(--primary-color);
  width: 100%;
  position: absolute;
  content: "";
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.75;
}
.login-left {
  align-self: center;
  text-align: center;
}
.login-left h2,
.login-left p {
  color: #fff;
}
.login-left i {
  width: 75px;
  height: 75px;
  font-size: 26px;
  margin-bottom: 20px;
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.btn-outline-white {
  border: solid 2px #fff;
  color: #fff;
  padding: 8px 30px;
}
.btn-outline-white:hover {
  color: #fff;
}
.form-side {
  padding: 6rem 2.5rem;
}
.form-side .form-group {
  margin-bottom: 0.5rem;
}
.form-side .form-actions {
  margin-bottom: 0;
}
.footer-form {
  align-items: center;
  justify-content: space-between;
  display: flex;
}
.page-user-login .tabs,
.page-user-register .tabs,
.page-user-password .tabs {
  display: none;
}
.not-found h1 {
  font-size: 200px;
  line-height: 160px;
  font-weight: bold;
}
.not-found .description {
  color: #000;
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 0;
}
.not-found img {
  margin-bottom: 20px;
}
.not-found p {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}
.not-found a {
  margin: 0 2.5px;
}
.access-denied {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
  height: 100vh;
}
.access-denied::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}
.access-denied h1 {
  color: #fff;
  font-size: 200px;
  line-height: 160px;
  font-weight: bold;
}
.access-denied p {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 120px;
}
.access-denied .icon {
  display: block;
  margin: auto;
  margin-bottom: 20px;
}
.maintenance_mode {
  text-align: center;
}
.maintenance_mode .logo {
  margin-bottom: 60px;
}
.maintenance_mode h2 {
  font-size: 46px;
  line-height: 54px;
}
.maintenance_mode h2 span {
  color: var(--primary-color);
}
.maintenance_mode p {
  font-size: 20px;
  margin-bottom: 20px;
}
.maintenance-footer {
  position: relative;
  background-color: var(--main-bg-color);
}
.maintenance-footer .contact {
  justify-content: center;
  display: flex;
  padding: 15px 0;
}
.maintenance-footer .contact p {
  margin-bottom: 0;
  color: #000;
  font-weight: 500;
  align-self: center;
}
.maintenance-footer .social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #c3c0c0;
  border: solid 2px #c3c0c0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/*Coming Soon*/
#coming-soon {
  padding: 150px 0px 200px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
  height: 100vh;
}
#coming-soon .overlay {
  height: 100vh;
}
.cs-title {
  padding: 50px 0px 20px;
}
.cs-title h1 {
  color: #fff;
  font-size: 65px;
  margin-bottom: 30px;
  line-height: 56px;
}
.cs-title p {
  color: #fff;
  width: 70%;
  margin: auto;
}
.cs-date {
  display: inline-block;
  padding: 0px 25px;
  border-right: 1px solid #fff;
}
.cs-date:last-child {
  border-right: none;
}
.cs-date span {
  color: #fff;
  font-size: 32px;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 10px;
}
.cs-date .smalltext {
  font-size: 16px;
  text-transform: uppercase;
}
.date_expired {
  content: "";
  position: relative;
  top: 72px;
}
.cs-contact {
  margin-top: 80px;
}
.cs-contact ul {
  list-style: none;
  padding: 0;
}
.cs-contact ul li {
  display: inline-block;
  padding: 0px 60px;
}
.cs-contact ul li span {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.cs-contact ul li a {
  font-size: 16px;
  color: #fff;
  border: 0;
  font-weight: 500;
}

/* Services */
.service.grid-3 .service-image {
  margin-right: 1rem;
}
.service.grid-4 .service-item {
  padding: 40px 25px 35px;
}
.service.grid-4 .service-item:before {
  top: 40px;
}
.service.grid-4 .service-content {
  margin-top: 30px;
}
.service.grid-4 .service-content h5 {
  font-size: 20px;
  font-weight: 500;
}
.service-list-1 .service-list-item {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.45);
}
.service-list-1 .service-list-item .service-content {
  padding: 2rem 2.5rem;
}
.service-list-1 .service-list-item h5 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.service-list-1 .service-list-item .btn {
  margin-top: 8px;
}
.service-list-1 .service-img {
  width: 100%;
  height: 323px;
  object-fit: cover;
}
.service-details .service-item img.img-fluid {
  width: 100%;
}
.service-details .service-item .service-icon img {
  filter: invert(1);
  -webkit-filter: invert(1);
  height: 35px;
  width: 35px;
}
.service-details h2 {
  font-weight: 500;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.list-icon-border-primary li,
.list-icon-bg-primary li {
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.list-icon-border-primary li i,
.list-icon-bg-primary li i {
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  -ms-flex: 0 0 60px;
  line-height: 60px;
  text-align: center;
  margin-right: 1.3rem;
}
.list-icon-bg-primary li i {
  background: var(--primary-color);
  color: var(--white);
}
.nav-default {
  padding-left: 0;
}
.nav-default li a {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.nav-default li a::after {
  display: none;
}
.nav-default li i {
  width: 58px;
  height: 55px;
  line-height: 55px;
  background: var(--white);
  text-align: center;
  margin-right: 1rem;
}
.service-with-sidebar .working-process .nav-default {
  padding: 0.65rem 0;
}
.service-with-sidebar .working-process .nav-default .nav-link {
  display: flex;
  flex-direction: column;
}
.service-with-sidebar .working-process .nav-default li i {
  display: block;
  margin: 0 auto 5px;
}
.working-process .tab-content {
  background: var(--white);
  padding: 2.75rem 0 0;
}
.working-process .nav-default {
  padding: 30px 0;
}
.working-process .tab-content img {
  width: 100%;
  height: 240px;
}
.working-process .tab-content p:last-child {
  margin-bottom: 0;
}
.widget {
  margin-bottom: 35px;
}
.widget.bg-light {
  background: #f4f5f8 !important;
  padding: 2rem 1.35rem;
}
.widget h3,
.widget h4,
.widget h5,
.widget h6 {
  font-weight: 500;
}
.widget .widget-title {
  font-size: 21px;
  margin-bottom: 1.25rem;
}
.widget ul {
  margin-bottom: 0;
}

.widget-service li {
  margin-bottom: 10px;
}
.widget-service li:last-child {
  margin-bottom: 0;
}
.widget-service li a {
  display: block;
  background: var(--white);
  padding: 12px 16px;
  font-weight: 500;
  font-size: 16px;
  position: relative;
}
.widget-service li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 60%;
  background: var(--primary-color);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.widget-service li a:hover {
  background: var(--primary-color);
  color: var(--white);
}
.widget-service li a:hover:before {
  height: 70%;
}
/*blog-detail*/
.blog-detail .post-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.blog-detail .post-date {
  background: var(--primary-color);
  color: var(--white);
  position: absolute;
  bottom: -35px;
  right: 25px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 55px;
  text-align: center;
  padding: 0.5rem 0.25rem;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  border-radius: 3px;
}
.blog-detail .post-author p,
.blog-detail .blog-author span {
  font-size: 17px;
  color: var(--black);
  font-weight: normal;
  line-height: normal;
  text-transform: capitalize;
}
.blog-detail .blog-author span:before {
  content: "|";
  color: var(--black);
  font-weight: normal;
  line-height: normal;
  padding: 0 10px;
}
.blog-detail .post-date .date {
  font-size: 22px;
  font-weight: bold;
}
.blog-detail .post-content {
  border-bottom: solid 1px #5e5e5e;
  margin-bottom: 40px;
}
.blog-detail .post-content h2 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 25px;
}
.blog-detail .post-content blockquote {
  margin: 35px 0;
}
.blog-detail .post-content ul {
  margin: 0 0 35px;
  display: flex;
  flex-direction: unset;
  flex-wrap: wrap;
  padding-left: 0;
}
.blog-with-sidebar .blog-detail .post-content > ul li {
  flex: 0 0 50%;
  max-width: 50%;
}
.blog-detail .post-content > ul li {
  list-style-type: none;
  line-height: 30px;
  position: relative;
  color: #000;
  width: 100%;
  padding-right: 10px;
  padding-left: 40px;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 15px;
}
.blog-detail .post-content > ul li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  margin-right: 1rem;
  font-size: 26px;
  line-height: 32px;
  position: absolute;
  left: 0;
}
.blog-detail-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
.blog-detail-footer .field--type-entity-reference {
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.blog-detail-footer a {
  padding: 5px 20px;
  display: block;
  border: solid 1px var(--primary-color);
  color: #5e5e5e;
  margin-right: 10px;
}
.blog-detail-footer a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* blog sidebar */
.form-area {
  padding-top: 3rem;
}
.form-area h3 {
  margin: 2rem 0 1.5rem;
  font-size: 1.5rem;
}
.form-area label {
  display: none;
}
.comment-item {
  display: flex;
  padding-bottom: 35px;
  border-bottom: solid 1px;
  margin-bottom: 30px;
}
.comment-item .image-wrapper {
  overflow: hidden;
}
.comment-item .image-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: top;
}
.comment-item .comment-body {
  padding-left: 30px;
}
.comment-item .comment-body h5 {
  font-size: 28px;
  font-weight: 500;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.comment-item .comment-body p {
  margin-bottom: 15px;
}
.comment-item .comment-body span.date {
  margin-bottom: 10px;
  font-size: 17px;
  color: var(--primary-color);
  display: block;
}
.comment-item .comment-body span.nav-link {
  display: block;
  border-radius: 5px;
  font-size: 16px;
  padding: 0.1rem 0.8rem;
  background: var(--secondary-color);
  margin-right: 10px;
  color: #000;
}
.comment-item .comment-body span.nav-link a {
  color: #000;
}
.comment-item .comment-body span.nav-link:hover {
  background: #000;
  color: #fff;
}
.comment-item .comment-body span.nav-link:hover a {
  color: #fff;
}
.indented {
  margin-left: 50px;
}
.blog-post-comments h3 {
  font-size: 36px;
  line-height: 38px;
  font-weight: 500;
  margin-bottom: 40px;
}
.widget-blog {
  display: flex;
  flex-flow: wrap;
}
.widget-blog li {
  padding: 0 10px 10px 0;
}
.widget-blog li a {
  padding: 7px 20px;
  display: block;
  background-color: var(--white);
  color: #5e5e5e;
}
.widget-blog li a:hover {
  color: var(--white);
  background-color: var(--primary-color);
}
/*latest blog sidebar*/
.widget-latest-blog .blog-post {
  display: block;
  background: var(--white);
  padding: 12px 16px;
  font-weight: 500;
  font-size: 16px;
  position: relative;
}
.widget-latest-blog .blog-post:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 35%;
  background: var(--primary-color);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.widget-latest-blog .blog-post:hover:before {
  height: 70%;
}
.widget-latest-blog .blog-post {
  margin-bottom: 20px;
}
.widget-latest-blog .blog-post:last-child {
  margin-bottom: 0;
}
.widget-latest-blog .blog-post {
  display: flex;
}
.widget-latest-blog .blog-post img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: top center;
}
.widget-latest-blog .blog-post .post-content {
  padding-left: 16px;
}
.widget-latest-blog .blog-post span {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: normal;
  display: block;
}

/*support*/
.widget-support {
  padding: 3rem 1rem 1.5rem;
  margin-top: 60px;
}
.widget-support .support-icon {
  border: 5px solid var(--white);
  background: var(--primary-color);
  width: 80px;
  height: 80px;
  line-height: 70px;
  text-align: center;
  margin: -90px auto 20px;
  border-radius: 50%;
}
.widget-support .support-icon i {
  font-size: 26px;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
}
.widget .download-item {
  padding: 15px 25px;
}
.widget .download-item h6 {
  color: var(--primary-color);
}
.widget .download-item .download-link {
  color: #ababab;
}
.widget .download-item .download-link:hover {
  color: var(--black);
}
.widget-support h4 {
  margin-bottom: 0.85rem;
}

/* Projects */
.project-with-sidebar .detail-sidebar {
  flex-direction: column;
}
.project-with-sidebar .detail-sidebar [class*="col-"] {
  flex: 0 0 100%;
  max-width: 100%;
}
.project-details .project-slider .owl-nav {
  margin: 0;
}
.project-details .project-slider .item {
  position: relative;
}
.project-details .project-slider.owl-carousel img {
  height: 547px;
  width: 100%;
  object-position: top;
  object-fit: cover;
}
.project-details .project-slider.owl-carousel .owl-nav [class*="owl-"] {
  top: unset;
  bottom: 0;
}
.project-details .project-slider.owl-carousel .owl-prev {
  left: unset;
  right: 45px;
}
.project-details .project-slider.owl-carousel .owl-next {
  right: 0;
}
.project-details h4 {
  font-weight: 500;
  margin: 35px 0 15px;
}
.widget-project-info h6,
.project-info h6 {
  color: var(--primary-color);
  font-size: 14px;
  margin-bottom: 2px;
}
.widget-project-info h5,
.project-info h5 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 0;
}
.widget-project-info .info-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding: 10px 0;
}
.widget-project-info .info-item:first-child {
  padding-top: 0;
}
.widget-project-info .info-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.project-details .project-info {
  padding: 30px;
}
.project-info hr {
  border-color: rgba(0, 0, 0, 0.35);
  width: 95%;
  height: 1px;
}

@media (max-width: 1350px) {
  .swiper-arrow-hover:hover .swiper-button-prev {
    left: 10px;
  }
  .swiper-arrow-hover:hover .swiper-button-next {
    right: 10px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1110px;
  }
  .single-item-desc p {
    padding-right: 4rem;
  }
  header.navbar-sticky.navbar-sticky-on .navbar-nav .nav-item > .nav-link {
    line-height: 62px;
  }
  .header-2 .navbar-brand-item {
    height: 60px;
  }
  .navbar-dark .navbar-nav .nav-link {
    color: var(--white);
  }
  .header-4.navbar-dark.navbar-sticky-on .navbar-nav .nav-link {
    color: #000;
  }
  .header-3 .navbar-collapse {
    background: var(--primary-color);
  }
  .header-3 .social-icons li {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.65rem;
    margin: 0;
  }
  .header-3 .social-icons li a {
    color: var(--white);
    height: 70px;
    line-height: 70px;
  }
}

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

  .megamenu .dropdown-menu {
    width: 100%;
    background-image: none !important;
  }
  .megamenu .container {
    width: 100%;
    padding: 0;
  }
  .why-us .list-group {
    padding-right: 4rem;
  }
  .height-600-responsive {
    height: 500px;
  }
  .height-700-responsive {
    height: 500px;
  }
  .height-800-responsive {
    height: 600px;
  }
  .height-900-responsive {
    height: 600px;
  }
  .items-4 .portfolio-card {
    width: 33.33%;
  }
  .contact-experts h2 {
    font-size: 34px;
    line-height: 44px;
  }
  .expert-info h4 {
    font-size: 20px;
  }
  .header-1 .navbar-top:before {
    width: 28%;
  }
  .pricing.style-1 .pricing-top {
    padding-right: 10px;
  }
  .header-3 .social-icons {
    padding-left: 22px;
  }
  .header-3 .social-icons li {
    margin-right: 10px;
  }
  .header-3 .social-icons li a {
    width: auto;
  }
  .nav-default li a {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 991.98px) {
  p {
    font-size: 15px;
  }
  .dropdown-toggle:after {
    font-size: 0.7rem;
  }
  .navbar-collapse {
    overflow-y: scroll;
    max-height: 350px;
    box-shadow: 0px 10px 30px rgba(83, 88, 93, 0.2);
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  .navbar-nav .nav-link {
    padding: 8px 0;
  }
  .navbar-nav .dropdown-menu {
    box-shadow: none;
    padding-top: 0;
    border: none;
  }
  .navbar-nav .dropdown-menu:before {
    content: none;
  }
  .navbar-nav .nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
    padding: 0 22px;
    position: relative;
  }
  .navbar-nav .dropdown-toggle::after {
    position: absolute;
    right: 30px;
  }
  .navbar-nav .nav-item.dropdown.show > .dropdown-toggle::after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .navbar-nav .dropdown-submenu .dropdown-menu {
    padding-left: 20px;
    padding-bottom: 0px;
  }
  .dropdown-item {
    font-size: 0.9rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .footer-bottom {
    padding-bottom: 2rem !important;
  }
  .post-item.style-4 h5 {
    font-size: 20px;
  }
  .team-item {
    margin-bottom: 30px;
  }
  .owl-carousel.arrow-visible .owl-prev {
    left: 0;
  }
  .owl-carousel.arrow-visible .owl-next {
    right: 0;
  }
  .testimonial-carousel.style-1 .item-footer {
    flex-wrap: wrap;
  }
  .pricing-bottom,
  .pricing.style-1 .pricing-top h6 {
    padding-left: 18px;
    padding-right: 18px;
  }
  .pricing.style-1 .pricing-top h6 {
    font-size: 16px;
  }
  .pricing.style-1 .pricing-top {
    padding-right: 12px;
  }
  .service.style-1 .service-item {
    padding: 25px;
  }
  .service.style-1 .service-item:before {
    top: 25px;
  }
  .post-item.style-1 .post-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .video-block .video-img::after {
    border-right-width: 140px;
    border-bottom-width: 200px;
    bottom: -45px;
    right: 30px;
  }
  .our-partners .logo-item {
    padding: 1.5rem 0.5rem;
  }
  .navbar-dark .navbar-collapse .nav-link,
  .navbar-dark .social-icons li a {
    color: var(--black);
  }
  .navbar-dark .navbar-collapse .nav-link:hover,
  .navbar-dark .navbar-nav .active > .nav-link,
  .navbar-dark .navbar-nav .nav-link.active,
  .navbar-dark .navbar-nav .nav-link.show,
  .navbar-dark .navbar-nav .show > .nav-link {
    color: var(--secondary-color);
  }
  .faq-block.alternate .faq-content {
    padding: 35px 0 0;
  }
  .process-block .process-content {
    padding-right: 40px;
  }
  .service-list-1 .service-list-item .service-content {
    padding: 1.25rem 1.5rem;
  }
  .service-list-1 .service-list-item h5 {
    font-size: 22px;
    margin-bottom: 0.5rem;
  }
  .service-list-1 .service-list-item .btn {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
  .custom-row {
    margin-left: -25px;
    margin-right: -25px;
  }
  .custom-row [class*="col-"] {
    padding-left: 25px;
    padding-right: 25px;
  }
  .dropdown.language:hover > .dropdown-menu {
    top: 100%;
    display: block;
    opacity: 1;
  }
  .navbar {
    padding: 0 1rem;
  }
  .navbar .collapse ul ul ul ul {
    max-height: 250px;
    overflow-y: scroll;
  }
  .navbar-nav .nav-link {
    line-height: 78px;
  }
  .navbar-nav .dropdown-menu {
    top: 120%;
    opacity: 0;
    display: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .navbar-nav .dropdown:hover > .dropdown-menu {
    top: 100%;
    display: block;
    opacity: 1;
  }
  .navbar-nav .dropdown-submenu:hover > .dropdown-menu {
    top: 0;
    display: block;
    opacity: 1;
  }
  .dropdown-submenu {
    position: relative;
  }
  .dropdown-submenu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    right: auto;
    margin-top: -0.5rem;
  }
  .open-left {
    left: -100% !important;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
  .header .navbar-nav .nav-item {
    margin-left: 0.3rem;
  }
  .header-1 .dropdown-item.active {
    color: var(--primary-color);
  }
  .navbar-nav .nav-item > .dropdown-toggle:after {
    display: none;
  }
  .header-3 .navbar-nav .nav-link {
    line-height: 74px;
  }
  .header-4 .navbar-nav .nav-link {
    line-height: 65px;
  }
  .post-content ul li {
    min-width: 33.3%;
  }
  .col-lg-5th {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .dropdown.language > .dropdown-menu.show {
    top: 100% !important;
    transform: unset !important;
  }
}

@media (max-width: 767px) {
  .navbar-brand img {
    height: 50px;
  }
  .blockquote-style-2::after {
    left: -5px;
  }
  .blockquote-style-1 {
    padding: 2rem 5rem 2rem 2rem;
  }
  .blockquote-style-1::after {
    right: 20px;
  }
  .icons-set li a {
    margin: 0 9px 9px 0;
  }
  .form-style-3 {
    background-image: none !important;
  }
  .testimonial-carousel.style-3 {
    background-image: none !important;
  }
  .testimonial-carousel.style-3::after {
    display: none;
  }
  .testimonial-carousel.style-3 .author-image {
    margin-top: 2rem;
  }
  .owl-carousel.arrow-pos-bottom .owl-nav {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    bottom: -20px;
  }
  .section-title h2 {
    font-size: 35px;
    line-height: 45px;
  }
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-pagination {
    display: none;
  }
  .items-2 .portfolio-card,
  .items-3 .portfolio-card,
  .items-4 .portfolio-card,
  .items-5 .portfolio-card {
    width: 50%;
  }
  .portfolio-header-title {
    min-width: auto;
  }
  .counter-border .counter-item {
    margin-bottom: 4rem;
  }
  .counter-border .row [class*="col-"]:last-child .counter-item {
    margin-bottom: 0;
  }
  .explore-our-business .business-img {
    position: relative;
    margin-bottom: 30px;
  }
  .swiper-slide h2 {
    font-size: 20px;
    line-height: normal;
  }
  .swiper-slide h3 {
    font-size: 20px;
  }
  .swiper-slide .slider-left,
  .swiper-slide .slider-left p {
    padding-right: 0;
  }
  .explore-our-business::before {
    width: 100%;
  }
  .explore-our-business::after {
    display: none;
  }
  .who-we-are img.float-right {
    width: 80%;
  }
  .who-we-are-image .front-img {
    width: 60%;
    margin-top: -10.5rem;
  }
  .who-we-are .support-info {
    bottom: 50px;
    right: 85px;
  }
  .faq-block .faq-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .portfolio.alternate .nav .nav-tabs-style-1 .nav-filter {
    margin-bottom: 10px;
  }
  .newsletter-col,
  .newsletter-block .newsletter {
    transform: none;
    -webkit-transform: none;
  }
  .newsletter-block .newsletter h2 {
    padding-right: 0 !important;
  }
}

@media (max-width: 420px) {
  .flex-xs-column {
    flex-direction: column;
  }
  .service.style-1 .service-image {
    margin: 0 0 1rem;
  }
  .items-2 .portfolio-card,
  .items-3 .portfolio-card,
  .items-4 .portfolio-card,
  .items-5 .portfolio-card {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .slider-wrapper {
    text-align: center !important;
    padding: 100px 15px !important;
  }
  .views_slideshow_controls_text {
    display: none;
  }
  .slider-2 .slider-content a::after {
    content: "";
    width: 50px;
    height: 8px;
    background-color: #fff;
    position: absolute;
    right: -65px;
    bottom: 21.5px;
  }
  .slider-2 .slider-content a::before {
    content: "";
    width: 50px;
    height: 8px;
    background-color: #fff;
    position: absolute;
    left: -65px;
    bottom: 21.5px;
  }
  .service.style-2 .item,
  .service.style-2 .no-gutters .row:nth-of-type(even) .item {
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
  .service.style-2 .service-item .service-content {
    background-color: var(--primary-color) !important;
  }
  .service.style-2 .item-content {
    width: 100%;
  }
  .service.style-2 .item-image {
    width: 100%;
    height: 300px;
  }
  .supporting-team img {
    width: 100%;
  }
  .slider-3.swiper-slide h2 {
    font-size: 46px;
    line-height: 52px;
  }
  .slider-3.swiper-slide img {
    display: none;
  }
  .service.style-5 .service-image {
    width: 53px;
    height: 53px;
    margin-bottom: 20px;
  }
  .support-request h2,
  .support-request .request-quote {
    flex: 0 0 100%;
    margin-top: 30px;
  }
  .team.style-2.overlay-dark,
  .team.style-4.overlay-dark {
    background-size: 100% 15% !important;
  }
  .team.style-2.overlay-dark::before,
  .team.style-4.overlay-dark::before {
    height: 15%;
  }
  .slider-4.swiper-slide h2 {
    font-size: 45px;
  }
  .process-block .process-bottom {
    flex-direction: column;
  }
  .process-block .process-content .play-icon {
    margin-bottom: 30px;
  }
  .project-details .project-slider.owl-carousel img {
    height: 300px;
  }
  .project-details .project-content img {
    width: 100%;
    margin-bottom: 20px;
    height: auto;
  }
  .project-details .project-content img:first-child {
    padding-left: unset;
  }
  .project-details .project-content img:last-child {
    padding-right: unset;
  }
  .sidebar.pt-section {
    padding-top: 0;
  }
  .project-details .sidebar,
  .service-details .sidebar {
    padding-top: 6rem;
  }
  .contact-s1 .locations {
    margin-bottom: 30px;
    flex-direction: column;
  }
  .about-company-1 .about-image img {
    width: 100%;
  }
  .about-company-2 {
    background: none !important;
  }
  .about-company-2 .label {
    position: unset;
    margin-bottom: 20px;
    align-items: center;
  }
  .about-company-2 .label h4 {
    width: 100%;
  }
  .vision-mission .default-nav .nav-link {
    margin-bottom: 20px;
  }
  .vision-mission .tab-pane .content {
    padding-right: 0;
  }
  .vision-mission .tab-content {
    padding-left: 0;
    padding-right: 0;
  }
  .about-company-2 .list {
    flex-direction: column;
  }
  .about-company-2 .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .journey .nav-default .nav-link::after {
    display: none;
  }
  .about-company-1 .about-image {
    margin-top: 30px;
  }
  .about-company-1 .about-image .overlay-bottom img {
    width: unset;
  }
  .journey .nav-default {
    justify-content: center;
  }
  .journey .nav-default .nav-link {
    margin-bottom: 10px;
    margin-right: 5px;
    margin-left: 5px;
  }
  .journey .tab-content h4 {
    margin-top: 30px;
  }
  .awards-page .item .image img.img-fluid {
    height: 230px;
    object-fit: cover;
    object-position: top center;
  }
  .modal-title {
    font-size: 30px;
    padding: 0px 0px 15px;
  }
  .form-side {
    padding: 2rem 0.5rem;
    color: #fff;
  }
  .form-side h2,
  .form-side label {
    color: #fff !important;
    text-align: center !important;
  }
  .form-side small {
    color: #fff !important;
  }
  .form-side a {
    color: #fff;
  }
  .form-side h2::after {
    background-color: #fff;
    right: 0 !important;
  }
  .login-left {
    padding-top: 50px;
    padding-bottom: 0px;
  }
  .access-denied h1,
  .not-found h1 {
    font-size: 140px;
  }
  .access-denied p {
    font-size: 16px;
  }
  .not-found .description {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .not-found a {
    margin: 10px;
    min-width: 200px;
  }
  .maintenance_mode h2 {
    font-size: 40px;
  }
  .maintenance-footer .contact {
    display: flex;
    flex-direction: column;
  }
  .maintenance-footer .contact p {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .maintenance-footer .contact .social {
    justify-content: center;
    display: flex;
    margin-top: 10px;
  }
  .cs-title h1 {
    font-size: 40px;
  }
  .cs-date {
    padding: 0 10px;
  }
  .cs-date span {
    font-size: 26px;
  }
  .blog-detail .post-content > ul li,
  .blog-with-sidebar .blog-detail .post-content > ul li {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .blog-detail-footer .field--type-entity-reference {
    margin-bottom: 30px;
  }
  .blog-detail-footer {
    flex-direction: column;
  }
  .comment-item {
    flex-direction: column;
  }
  .comment-item .comment-body {
    padding-left: 0;
  }
  .maintenance-footer .social-icon {
    margin: 0 5px;
  }
  .header-3 .navbar-toggler-icon,
  .header-4 .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .slider-wrapper .social-icons {
    padding-left: 0;
  }
  .slider-wrapper .social-icons::before {
    display: none;
  }
  .owl-carousel .owl-dots .owl-dot {
    margin-bottom: 10px;
  }
  .client img {
    width: 80% !important;
    margin: auto;
  }
  .contact-s2 .address {
    margin-bottom: 20px;
  }
  .contact-s2 .social-links a {
    margin-bottom: 10px;
  }
  .contact-s1 .address {
    margin-bottom: 30px;
  }
  .navbar-nav .nav-item {
    padding: 0 15px;
  }
  .dropdown-menu.show {
    margin-top: 0px;
  }
  .header-3 .navbar-nav {
    padding-left: 0 !important;
  }
  .header-3 .social-icons li {
    margin-right: 15px;
  }
  .header-3 .social-icons {
    padding-left: 15px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form-style-4 .form-fields {
    padding-left: 0.5rem !important;
  }
  .views_slideshow_controls_text {
    display: none;
  }
  .service.style-2 .item,
  .service.style-2 .no-gutters .row:nth-of-type(even) .item {
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
  .service.style-2 .service-item .service-content {
    background-color: var(--primary-color) !important;
  }
  .service.style-2 .item-content {
    width: 100%;
  }
  .service.style-2 .item-image {
    width: 100%;
    height: 300px;
  }
  .supporting-team img {
    width: 100%;
  }
  .support-request h2,
  .support-request .request-quote {
    flex: 0 0 100%;
    margin-top: 30px;
  }
  .slider-3.swiper-slide h2 {
    font-size: 46px;
    line-height: 52px;
  }
  .slider-3.swiper-slide img {
    display: none;
  }
  .service.style-5 .service-image {
    width: 53px;
    height: 53px;
    margin-bottom: 20px;
  }
  .team-item .team-desc {
    color: #fff;
  }
  .team.style-2.overlay-dark,
  .team.style-4.overlay-dark {
    background-size: 100% 15% !important;
  }
  .team.style-2.overlay-dark::before,
  .team.style-4.overlay-dark::before {
    height: 10%;
  }
  .slider-4.swiper-slide h2 {
    font-size: 45px;
  }
  .process-block .process-bottom {
    flex-direction: column;
  }
  .process-block .process-content .play-icon {
    margin-bottom: 30px;
  }
  .project-details .project-slider.owl-carousel img {
    height: 300px;
  }
  .project-details .project-content img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .project-details .project-content img:first-child {
    padding-left: unset;
  }
  .project-details .project-content img:last-child {
    padding-right: unset;
  }
  .project-details .sidebar,
  .service-details .sidebar {
    padding-top: 6rem;
  }
  .sidebar.pt-section {
    padding-top: 0;
  }
  .contact-s1 .locations {
    margin-bottom: 30px;
    flex-direction: column;
  }
  .about-company-1 .about-image img {
    width: 100%;
  }
  .about-company-2 {
    background: none !important;
  }
  .about-company-2 .label {
    position: unset;
    margin-bottom: 20px;
    align-items: center;
  }
  .about-company-2 .label h4 {
    width: 100%;
  }
  .vision-mission .default-nav .nav-link {
    margin-bottom: 20px;
  }
  .vision-mission .tab-pane .content {
    padding-right: 0;
  }
  .vision-mission .tab-content {
    padding-left: 0;
    padding-right: 0;
  }
  .about-company-2 .list {
    flex-direction: column;
  }
  .about-company-2 .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .journey .nav-default .nav-link::after {
    display: none;
  }
  .about-company-1 .about-image {
    margin-top: 30px;
  }
  .about-company-1 .about-image .overlay-bottom img {
    width: unset;
  }
  .journey .nav-default {
    justify-content: center;
  }
  .journey .nav-default .nav-link {
    margin-bottom: 10px;
    margin-right: 5px;
    margin-left: 5px;
  }
  .journey .tab-content h4 {
    margin-top: 30px;
  }
  .awards-page .item .image img.img-fluid {
    height: 230px;
    object-fit: cover;
    object-position: top center;
  }
  .form-side {
    padding: 2rem 0.5rem;
    color: #fff;
  }
  .form-side h2,
  .form-side label {
    color: #fff !important;
    text-align: center !important;
  }
  .form-side small {
    color: #fff !important;
  }
  .form-side a {
    color: #fff;
  }
  .form-side h2::after {
    background-color: #fff;
    right: 0 !important;
  }
  .login-left {
    padding-top: 50px;
    padding-bottom: 0px;
  }
  .access-denied h1,
  .not-found h1 {
    font-size: 140px;
  }
  .access-denied p {
    font-size: 16px;
  }
  .not-found .description {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .not-found a {
    margin: 10px;
    min-width: 200px;
  }
  .maintenance_mode h2 {
    font-size: 40px;
  }
  .maintenance-footer .contact {
    display: flex;
    flex-direction: column;
  }
  .maintenance-footer .contact p {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .maintenance-footer .contact .social {
    justify-content: center;
    display: flex;
    margin-top: 10px;
  }
  .cs-title h1 {
    font-size: 40px;
  }
  .cs-date {
    padding: 0 10px;
  }
  .cs-date span {
    font-size: 26px;
  }
  .blog-detail .post-content > ul li,
  .blog-with-sidebar .blog-detail .post-content > ul li {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .blog-detail-footer .field--type-entity-reference {
    margin-bottom: 30px;
  }
  .blog-detail-footer {
    flex-direction: column;
  }
  .comment-item {
    flex-direction: column;
  }
  .comment-item .comment-body {
    padding-left: 0;
  }
  .maintenance-footer .social-icon {
    margin: 0 5px;
  }
  .header-3 .navbar-toggler-icon,
  .header-4 .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .slider-wrapper .social-icons {
    padding-left: 0;
  }
  .slider-wrapper .social-icons::before {
    display: none;
  }
  .slider-wrapper {
    text-align: center !important;
  }
  .owl-carousel .owl-dots .owl-dot {
    margin-bottom: 10px;
  }
  .client img {
    width: 80% !important;
    margin: auto;
  }
  .contact-s1 .address {
    margin-bottom: 30px;
  }
  .dropdown-menu.show {
    margin-top: 0px;
  }
  .header-3 .navbar-nav {
    padding-left: 0 !important;
  }
  .header-3 .social-icons li {
    margin-right: 15px;
  }
  .header-3 .social-icons {
    padding-left: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .views_slideshow_controls_text {
    display: none;
  }
  .form-style-4 .form-fields {
    padding-left: 0.5rem !important;
  }
  .slider-2 .slider-content a::after {
    width: 50px;
    right: -80px;
  }
  .slider-2 .slider-content a::before {
    width: 50px;
    left: -80px;
  }
  .portfolio-wrap.grid.items-2 .portfolio-card-body img.portfolio-img {
    height: 308px;
  }
  .support-request img {
    width: 100%;
  }
  .support-request h2,
  .support-request .request-quote {
    flex: 0 0 100%;
    margin-top: 30px;
  }
  .project-details .project-slider.owl-carousel img {
    height: 400px;
  }
  .project-details .project-content img {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    width: 170px;
    height: 170px;
    object-fit: cover;
    object-position: top;
  }
  .project-details .project-content img:first-child {
    padding-left: 0;
  }
  .project-details .project-content img:last-child {
    padding-right: 0;
  }
  .project-details .sidebar,
  .service-details .sidebar {
    padding-top: 6rem;
  }
  .sidebar.pt-section {
    padding-top: 0;
  }
  .widget-latest-blog .blog-post .post-content {
    align-self: center;
  }
  .blog-grid .post-item.style-1.blog-list {
    display: flex;
    min-height: 330px;
  }
  .blog-grid .post-item.style-1.blog-list .post-image {
    width: 100%;
  }
  .blog-grid .post-item.style-1.blog-list.blog-list-sidebar .post-image {
    width: 150%;
  }
  .blog-grid .post-item.style-1.blog-list .post-image img {
    height: 100%;
  }
  .blog-grid .post-item.style-1.blog-list .post-content {
    padding: 1.8rem 1.65rem 1.8rem;
    align-self: center;
  }
  .blog-grid .post-item.style-1.blog-list .post-content h5 {
    font-size: 24px;
    font-weight: 500;
  }
  .blog-grid .post-item.style-1.blog-list .post-content .post-author p {
    font-weight: 500;
    text-transform: capitalize;
  }
  .blog-grid .post-item.style-1.blog-list .post-content i {
    font-size: 12px;
  }
  .about-company-1 .about-image img {
    width: 100%;
  }
  .about-company-2 {
    background: none !important;
  }
  .about-company-2 .label {
    position: unset;
    margin-bottom: 20px;
    align-items: center;
  }
  .about-company-2 .label h4 {
    width: 100%;
  }
  .about-company-1 .about-image {
    margin: 60px auto 0;
    float: unset;
  }
  .journey .nav-default .nav-link::after {
    width: 35px;
  }
  .about-company-1 .overlay-bottom {
    padding-top: 80px;
    padding-left: 120px;
  }
  .awards-page .item .image img.img-fluid {
    height: 230px;
    object-fit: cover;
    object-position: top center;
  }
  .modal-dialog {
    max-width: 80%;
  }
  .modal-body {
    padding: 0rem 3rem 3rem;
  }
  .form-side {
    padding: 2rem 0.5rem;
    color: #fff;
  }
  .form-side h2,
  .form-side label {
    color: #fff !important;
    text-align: center !important;
  }
  .form-side small {
    color: #fff !important;
  }
  .form-side a {
    color: #fff;
  }
  .form-side h2::after {
    background-color: #fff;
    right: 0 !important;
  }
  .login-left {
    padding-top: 50px;
    padding-bottom: 0px;
  }
  .maintenance-footer .social-icon {
    margin-left: 8px;
  }
  .maintenance-footer .contact .link {
    margin: 0 15px;
  }
  .maintenance-footer .contact .link:first-child {
    margin-left: 30px;
  }
  .about-company-2 {
    padding-bottom: 0;
    margin-bottom: 8rem;
  }
  .blog-detail .post-content > ul li {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .header-3 .navbar-toggler-icon,
  .header-4 .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .slider-wrapper .social-icons {
    padding-left: 0;
  }
  .slider-wrapper .social-icons::before {
    display: none;
  }
  .slider-wrapper {
    text-align: center !important;
  }
  .swiper-slide .slider-left,
  .swiper-slide .slider-left p {
    padding-right: 0;
  }
  .swiper-slide .slider-left p {
    width: 90%;
    margin: auto;
  }
  .header-3 .navbar-nav {
    padding-left: 0;
  }
  .navbar-sticky.navbar-sticky-on .nav-link {
    color: #000 !important;
  }
  .navbar-dark.navbar-sticky-on.navbar-sticky .navbar-nav .nav-link.active {
    color: #000 !important;
  }
  .navbar-nav .nav-item {
    padding: 0;
  }
  .header-1 .navbar-nav .nav-link,
  .header-2 .navbar-nav .nav-link,
  .header-4 .navbar-nav .nav-link {
    padding-left: 22px;
    padding-right: 22px;
  }
  .dropdown-item {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .navbar-nav .dropdown-menu {
    margin-top: 0;
  }
  .post-content ul li {
    width: 50%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .header-3 .social-icons {
    margin-left: auto;
  }
  .header-3 .navbar-nav {
    padding-left: 0 !important;
  }
  .navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
  }
  .navbar-dark .navbar-nav .nav-link {
    color: #fff;
  }
  .form-style-3 .form-fields {
    padding-right: 25px;
  }
  .service.style-1 .col-md-6:nth-last-of-type(2) .service-item,
  .service-list-1 .service-list-item:nth-last-of-type(1),
  .service.style-1.grid-3 .col-md-6:nth-last-of-type(3) .service-item,
  .service.style-1 .col-md-6:nth-last-of-type(1) .service-item,
  .service.style-1.grid-4 .col-md-4:nth-last-of-type(4) .service-item,
  .service.style-1.grid-4 .col-md-4:nth-last-of-type(3) .service-item,
  .service.style-1.grid-4 .col-md-4:nth-last-of-type(2) .service-item,
  .service.style-1.grid-4 .col-md-4:nth-last-of-type(1) .service-item,
  .service.style-1 .col-md-12:nth-last-of-type(1) .service-item {
    margin-bottom: 0 !important;
  }
  .navbar-nav .dropdown:hover > .dropdown-menu {
    margin-top: 0;
  }
  .slider-2 .slider-content a::after {
    width: 40px;
    right: -100px;
  }
  .slider-2 .slider-content a::before {
    width: 40px;
    left: -100px;
  }
  .portfolio-wrap.grid.items-2 .portfolio-card-body img.portfolio-img {
    height: 308px;
  }
  .project-details .list-group {
    flex-direction: unset;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .project-details .list-group .list-group-item {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .project-details .project-content img {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
  }
  .project-details .project-content img:first-child {
    padding-left: 0;
  }
  .project-details .project-content img:last-child {
    padding-right: 0;
  }
  .project-with-sidebar .widget-project-info {
    display: flex;
    flex-direction: unset;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .project-with-sidebar .widget-project-info .info-item {
    position: relative;
    width: 100%;
    padding: 0;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .project-with-sidebar .widget-project-info .info-item:nth-child(1),
  .project-with-sidebar .widget-project-info .info-item:nth-child(2),
  .project-with-sidebar .widget-project-info .info-item:nth-child(3) {
    padding-bottom: 1rem;
  }
  .project-with-sidebar .widget-project-info .info-item:nth-child(4),
  .project-with-sidebar .widget-project-info .info-item:nth-child(5),
  .project-with-sidebar .widget-project-info .info-item:nth-child(6) {
    padding-top: 1rem;
    border: 0;
  }
  .widget-latest-blog .blog-post img {
    height: 100%;
  }

  .blog-grid .post-item.style-1.blog-list {
    display: flex;
    min-height: 330px;
  }
  .blog-grid .post-item.style-1.blog-list .post-image {
    width: 55%;
  }
  .blog-grid .post-item.style-1.blog-list.blog-list-sidebar .post-image {
    width: 150%;
  }
  .blog-grid .post-item.style-1.blog-list .post-image img {
    height: 100%;
  }
  .blog-grid .post-item.style-1.blog-list .post-content {
    padding: 1.8rem 1.65rem 1.8rem;
    align-self: center;
  }
  .blog-grid .post-item.style-1.blog-list .post-content h5 {
    font-size: 24px;
    font-weight: 500;
  }
  .blog-grid .post-item.style-1.blog-list .post-content .post-author p {
    font-weight: 500;
    text-transform: capitalize;
  }
  .blog-grid .post-item.style-1.blog-list .post-content i {
    font-size: 12px;
  }
  .about-company-1 h2 {
    width: 75%;
  }
  .about-company-1 .about-image img {
    width: 100%;
  }
  .about-company-1 .about-image .overlay-bottom img {
    width: unset;
  }
  .journey .nav-default .nav-link::after {
    width: 95px;
  }
  .blog-grid .post-item.style-1.grid-sidebar .post-image img {
    height: 400px;
  }
  .modal-dialog {
    max-width: 60%;
  }
  .modal-body {
    padding: 0rem 3rem 3rem;
  }
  .login-left {
    padding-right: 170px;
  }
  .login {
    background-size: 150% 100%;
  }
  .login::before {
    width: 50%;
  }
  .access-denied {
    padding: 10rem 0;
  }
  .maintenance-footer .social-icon {
    margin-left: 8px;
  }
  .maintenance-footer .contact .link {
    margin: 0 15px;
  }
  .maintenance-footer .contact .link:first-child {
    margin-left: 30px;
  }
  #pt-header .open-left {
    right: -100% !important;
  }
  .about-company-2 {
    padding-bottom: 0;
    margin-bottom: 8rem;
  }
  #pt-header .open-left {
    width: fit-content;
  }
  .dropdown-item {
    display: flex;
    justify-content: space-between;
  }
  .header-3 .navbar .branding {
    display: none;
  }
  .form-style-4 .form-inner img.img-fluid {
    height: 91.5%;
  }
  .slider-wrapper {
    padding-left: 130px !important;
  }
  .dropdown-menu .dropdown-toggle:after {
    transform: rotate(-90deg);
  }
  .navbar-sticky.navbar-sticky-on .nav-link {
    color: #000 !important;
  }
  .navbar-dark.navbar-sticky-on.navbar-sticky .navbar-nav .nav-link.active {
    color: #000 !important;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
  .header-3 .social-icons {
    margin-left: auto;
  }
  .form-style-3 .form-fields {
    padding-right: 25px;
  }
  .service-grid-style
    .service.style-1
    .col-md-6:nth-last-of-type(2)
    .service-item,
  .service-grid-style .service-list-1 .service-list-item:nth-last-of-type(1),
  .service-grid-style
    .service.style-1.grid-3
    .col-md-6:nth-last-of-type(3)
    .service-item,
  .service-grid-style
    .service.style-1
    .col-md-6:nth-last-of-type(1)
    .service-item,
  .service-grid-style
    .service.style-1.grid-4
    .col-md-4:nth-last-of-type(4)
    .service-item,
  .service-grid-style
    .service.style-1.grid-4
    .col-md-4:nth-last-of-type(3)
    .service-item,
  .service-grid-style
    .service.style-1.grid-4
    .col-md-4:nth-last-of-type(2)
    .service-item,
  .service-grid-style
    .service.style-1.grid-4
    .col-md-4:nth-last-of-type(1)
    .service-item,
  .service-grid-style
    .service.style-1
    .col-md-12:nth-last-of-type(1)
    .service-item {
    margin-bottom: 0 !important;
  }
  .service-with-sidebar .working-process .tab-pane .col-md-4,
  .service-with-sidebar .working-process .tab-pane .col-md-8 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .portfolio-wrap.grid.items-2 .portfolio-card-body img.portfolio-img {
    height: 408px;
  }
  .portfolio-wrap.items-2.masonry-1 {
    margin: 0px;
    margin-top: 10px;
    width: 100%;
  }
  .portfolio-wrap.items-2.masonry-1 .portfolio-card {
    margin: auto;
    padding: 0;
  }
  .portfolio-wrap.items-2.masonry-1 .portfolio-card-body {
    margin: 12px;
  }
  .portfolio-wrap.items-2.masonry-1 .portfolio-card:nth-child(5n-4) {
    width: 25%;
  }
  .portfolio-wrap.items-2.masonry-1 .portfolio-card:nth-child(3n-1) {
    width: 75%;
  }
  .portfolio-wrap.items-2.masonry-1 .portfolio-card {
    width: 50%;
  }
  .portfolio-wrap.items-3.masonry-2 {
    display: flex;
    flex-flow: column wrap;
  }
  .portfolio-wrap.items-3.masonry-2 .portfolio-card {
    height: unset;
  }
  .portfolio-wrap.items-3.masonry-2 .portfolio-card:nth-child(5n-4) {
    height: 400px;
  }
  .portfolio-wrap.items-3.masonry-2 .portfolio-card:nth-child(3n-1) {
    height: 300px;
  }
  .portfolio-wrap.items-3.masonry-2 .portfolio-card:nth-child(5n) {
    height: 250px;
  }
  .project-details .list-group {
    flex-direction: unset;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .project-details .list-group .list-group-item {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .project-details .project-content img {
    padding-left: 12px;
    padding-right: 12px;
  }
  .project-details .project-content img:first-child {
    padding-left: 0;
  }
  .project-details .project-content img:last-child {
    padding-right: 0;
  }
  .project-with-sidebar .widget-project-info {
    display: flex;
    flex-direction: unset;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .project-with-sidebar .widget-project-info .info-item {
    position: relative;
    width: 100%;
    padding: 0;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .project-with-sidebar .widget-project-info .info-item:nth-child(1),
  .project-with-sidebar .widget-project-info .info-item:nth-child(2),
  .project-with-sidebar .widget-project-info .info-item:nth-child(3) {
    padding-bottom: 1rem;
  }
  .project-with-sidebar .widget-project-info .info-item:nth-child(4),
  .project-with-sidebar .widget-project-info .info-item:nth-child(5),
  .project-with-sidebar .widget-project-info .info-item:nth-child(6) {
    padding-top: 1rem;
    border: 0;
  }

  .blog-grid .post-item.style-1.blog-list {
    display: flex;
    min-height: 330px;
  }
  .blog-grid .post-item.style-1.blog-list .post-image {
    width: 55%;
  }
  .blog-grid .post-item.style-1.blog-list.blog-list-sidebar .post-image {
    width: 150%;
  }
  .blog-grid .post-item.style-1.blog-list .post-image img {
    height: 100%;
  }
  .blog-grid .post-item.style-1.blog-list .post-content {
    padding: 1.8rem 1.65rem 1.8rem;
    align-self: center;
  }
  .blog-grid .post-item.style-1.blog-list .post-content h5 {
    font-size: 24px;
    font-weight: 500;
  }
  .blog-grid .post-item.style-1.blog-list .post-content .post-author p {
    font-weight: 500;
    text-transform: capitalize;
  }
  .blog-grid .post-item.style-1.blog-list .post-content i {
    font-size: 12px;
  }
  .about-company-1 h2 {
    width: 80%;
  }
  .blog-grid .post-item.style-1.grid-sidebar .post-image img,
  .blog-detail .post-image img {
    height: 460px;
    object-position: top left;
    object-fit: cover;
  }
  .modal-dialog {
    max-width: 70%;
  }
  .modal-body {
    padding: 0rem 3rem 3rem;
  }
  .login {
    background-size: 50% 100%;
  }
  .login::before {
    width: 50%;
  }
  .login-left {
    padding-right: 170px;
  }
  .access-denied {
    padding: 10rem 0;
  }
  .maintenance-footer .social {
    margin-left: 10px;
  }
  .maintenance-footer .social-icon {
    margin-left: 5px;
  }
  .maintenance-footer .contact .link {
    margin: 0 15px;
  }
  .maintenance-footer .contact .link:first-child {
    margin-left: 30px;
  }
  .about-company-2 {
    padding-bottom: 0;
    margin-bottom: 8rem;
  }
  .dropdown-item {
    display: flex;
    justify-content: space-between;
  }
  .header-3 .navbar .branding {
    display: none;
  }
  .form-style-4 .form-inner img.img-fluid {
    height: 91.5%;
  }
  .slider-3 .slider-wrapper {
    padding-right: 300px !important;
  }
  .faq-block.alternate img {
    height: 575px;
  }
  .form-style-3 .form-fields.syle-3-half-full form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .form-style-3 .syle-3-half {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 0;
  }
  .form-style-3 .syle-3-full {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 0;
  }
  .dropdown-menu .dropdown-toggle:after {
    transform: rotate(-90deg);
  }
}
.pt-section.testimonial-carousel.style-3 .author-image img {
  width: 250px;
  height: 250px;
  border-radius: 10px;
}
img {
  object-fit: cover;
}
.drop-cap.drop-cap-style-1 p::first-letter {
  font-size: 40px;
  font-weight: 700;
  float: left;
  line-height: 40px;
  padding: 5px 10px;
  margin-right: 10px;
  color: #fff;
  background-color: var(--primary-color);
}
.drop-cap.drop-cap-style-2 p::first-letter {
  font-size: 40px;
  font-weight: 700;
  float: left;
  line-height: 40px;
  padding: 5px 14px;
  margin-right: 10px;
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 999px;
}
#block-agency-plus-needsupportblock h3 a:hover {
  color: var(--secondary-color);
}
.blog-with-sidebar .post-content ul li {
  width: 50%;
}
.path-comment section.section {
  padding: 100px 12px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.path-comment .header-3 {
  position: static;
  background-color: var(--primary-color);
}
.path-comment .header-4 {
  position: static;
}
.header-1,
.header-2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: #fff;
}
.header-1 #views_slideshow_cycle_teaser_section_slider-block_1,
.header-2 #views_slideshow_cycle_teaser_section_slider-block_1,
.header-1 #views_slideshow_cycle_teaser_section_slider-block_2,
.header-2 #views_slideshow_cycle_teaser_section_slider-block_2,
.header-1 #views_slideshow_cycle_teaser_section_slider-block_3,
.header-2 #views_slideshow_cycle_teaser_section_slider-block_3,
.header-1 #views_slideshow_cycle_teaser_section_slider-block_4,
.header-2 #views_slideshow_cycle_teaser_section_slider-block_4 {
  margin-top: 136px;
}
.header-1 .breadcrumb-section,
.header-2 .breadcrumb-section {
  padding-top: 236px;
}
.toolbar-fixed.user-logged-in .header-1,
.toolbar-fixed.user-logged-in .header-2 {
  position: static !important;
}
.toolbar-fixed.user-logged-in
  .header-1
  #views_slideshow_cycle_teaser_section_slider-block_1,
.toolbar-fixed.user-logged-in
  .header-2
  #views_slideshow_cycle_teaser_section_slider-block_1,
.toolbar-fixed.user-logged-in
  .header-1
  #views_slideshow_cycle_teaser_section_slider-block_2,
.toolbar-fixed.user-logged-in
  .header-2
  #views_slideshow_cycle_teaser_section_slider-block_2,
.toolbar-fixed.user-logged-in
  .header-1
  #views_slideshow_cycle_teaser_section_slider-block_3,
.toolbar-fixed.user-logged-in
  .header-2
  #views_slideshow_cycle_teaser_section_slider-block_3,
.toolbar-fixed.user-logged-in
  .header-1
  #views_slideshow_cycle_teaser_section_slider-block_4,
.toolbar-fixed.user-logged-in
  .header-2
  #views_slideshow_cycle_teaser_section_slider-block_4 {
  margin-top: 0px !important;
}
.single-item img {
  height: 75px;
}
.testimonial-carousel.style-2 .item img {
  width: 75px;
  height: 75px;
}

/* alerts */
.alert {
  border-left: none !important;
}
.alert svg {
  height: 20px;
}
.alert div {
  padding-left: 20px;
}
.alert-heading {
  font-size: 18px;
  border-bottom: none;
  line-height: 1;
}
#check-circle-fill path {
  fill: black;
  stroke: #fff;
}
.alert .close:not(:disabled):not(.disabled):hover {
  color: black !important;
}
/* // Font awesome issue fixes // */
.fa-far,
.fa-fas,
.fa-fab {
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}
.fa-far:before,
.fa-fas:before,
.fa-fab:before {
  content: var(--fa);
  font-style: normal;
}