/*
|----------------------------------------------------------------------
|       Body Main Css
|----------------------------------------------------------------------
*/

html {
  scroll-behavior: smooth;
}

:root {
  --chevron: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="300px" height="300px" fill="%23080a0f" viewBox="-155 247 300 300" style="enable-background:new -155 247 300 300;"><polygon points="78.6356201,306.8178101 -5.0166931,390.4367371 -88.6356277,306.8178101 -137, 355.1821899 -5.0166931,487.1821899 127,355.1821899 "/></svg>');
  --tick: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="300px" height="300px" fill="%23fff" viewBox="0 0 300 300" style="enable-background:new 0 0 300 300;" xml:space="preserve"><polygon points="115.7434006,270.8831787 0,173.503006 21.3676376,148.106369 111.6297684,224.0477905 274.5331421,29.1168175 300,50.3998222"/></svg>');
}

/* ========= colors ============ */
:root {
  --black: #000;

  --white: #fff;

  --grey: #171717;

  --red: #ed1a23;
}

/* ============ fonts ============== */

@font-face {
  font-family: "Poppins Bold";
  src: url("../fonts/Poppins-Bold.ttf");
}

@font-face {
  font-family: "Poppins Regular";
  src: url("../fonts/Poppins-Regular.ttf");
}

@font-face {
  font-family: "Poppins Italic";
  src: url("../fonts/Poppins-Italic.ttf");
}

@font-face {
  font-family: "Poppins Medium";
  src: url("../fonts/Poppins-Medium.ttf");
}

@font-face {
  font-family: "Poppins SemiBold";
  src: url("../fonts/Poppins-SemiBold.ttf");
}

@font-face {
  font-family: "Hunter Regular";
  src: url("../fonts/HunterRiver-Regular.otf");
}

html {
  height: 100%;
}

body {
  position: relative;
  min-height: 100%;
  background-color: var(--white);
  color: var(--grey);
  font-size: 16px;
  font-family: "Poppins Regular";
  margin: 0;
  padding: 0;
  line-height: 1.6;
  word-break: break-word;
  transition: all ease 0.5s;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-flow: column;
}

body.flow {
  overflow: hidden !important;
}

::selection {
  background: var(--red);
  color: var(--white);
}

::-moz-selection {
  background: var(--red);
  color: var(--white);
}

body a {
  color: var(--lightblack);
  word-break: break-word;
}

body a,
body span {
  display: inline-block;
  text-decoration: none;
}

body a:hover {
  color: var(--red);
}

body a:focus,
body a:hover {
  outline: none !important;
  text-decoration: none !important;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  display: inline-block;
}

ul li a {
  transition: all ease 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins Bold";
  line-height: 1.1;
  margin: 0;
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
}

p:nth-last-child(1) {
  margin: 0;
}

.relative {
  position: relative;
}

.tableDv {
  display: table;
  width: 100%;
  height: 100%;
}

.tableCell {
  display: table-cell;
  vertical-align: middle;
}

.toggle {
  position: absolute;
  top: 26px;
  right: 5px;
  display: flex;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
  transition: all ease 0.5s;
  z-index: 4;
}

.toggle span,
.toggle span:before,
.toggle span:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
  border-radius: 50px;
  transition: all ease 0.5s;
}

.toggle span {
  position: relative;
  display: block;
  width: 22px;
  margin: 8px auto;
}

.toggle span:before {
  top: -7px;
}

.toggle span:after {
  bottom: -7px;
}

.toggle.active span {
  width: 22px;
  background: transparent !important;
}

.toggle.active span:before,
.toggle.active span:after {
  top: 0;
}

.toggle.active span:before {
  transform: rotate(405deg);
}

.toggle.active span:after {
  transform: rotate(-45deg);
}

.blockquote {
  background: var(--white);
  color: var(--grey);
  padding: 10px 10px 10px 20px;
  border: 1px solid var(--white);
  border-left: 4px solid var(--grey);
}

/*
|----------------------------------------------------------------------
|       Body Main Button
|----------------------------------------------------------------------
*/

.webBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 141px;
  height: 45px;
  background: var(--red);
  background-position: 100% 0;
  background-size: 100% 100%;
  color: var(--white);
  font-size: 16px;
  font-family: "Poppins Regular";
  text-align: center;
  padding: 0 30px;
  white-space: nowrap;
  /*text-transform: uppercase;
  */
  border: 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  outline: none !important;
  box-shadow: 0 5px 20px rgb(18 15 56 / 7%);
}

.webBtn:hover {
  background: var(--black);
  color: #fff;
}

.smBtn {
  min-width: 40px;
  height: 36px;
  padding: 0 20px;
}

.mdBtn {
  min-width: 80px;
  height: 40px;
}

.lgBtn {
  height: 54px;
  font-size: 16px;
  padding: 0 40px;
}

.blankBtn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--red);
}

.blankBtn:hover {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
}

.lightBtn {
  background: var(--white);
  color: var(--black);
}

.lightBtn:hover {
  background: var(--red);
  color: var(--white);
}

.arrowBtn {
  display: flex !important;
  width: 46px;
  min-width: 46px;
  padding: 0 5px;
}

.arrowBtn > i {
  font-weight: bold;
  margin: 0 !important;
}

.arrowBtn > img {
  width: 18px;
}

.icoBtn > img {
  width: 18px;
  margin-right: 10px;
  filter: brightness(0.2) invert(0.2);
}

.roundBtn {
  border-radius: 50px;
}

.blockBtn {
  width: 100%;
}

.blockBtn em {
  flex: 1;
  text-align: left;
}

.webBtn i {
  margin-right: 10px;
}

.webBtn i.fi-arrow-right,
.webBtn i.fi-arrow-left {
  font-size: 120%;
  font-weight: bold;
}

.webBtn i.fi-arrow-right {
  margin-left: 10px;
  margin-right: 0;
}

.webBtn i.fi-arrow-left {
  margin-left: 0;
  margin-right: 10px;
}

/*_____ webBtn spinner _____*/

.webBtn .spinner {
  width: auto;
  height: auto;
  background: inherit;
  border-radius: inherit;
  overflow: hidden;
}

.webBtn .spinner ~ i {
  visibility: hidden;
}

.webBtn .spinner,
.webBtn .spinner:before,
.webBtn .spinner:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.webBtn .spinner:before,
.webBtn .spinner:after {
  content: "";
  width: 18px;
  height: 18px;
  border: 3px solid;
  animation: spinner 0.5s linear infinite;
  border-radius: 75%;
}

.webBtn .spinner:before {
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.webBtn .spinner:after {
  border-top-color: transparent;
  border-left-color: transparent;
  opacity: 0.5;
}

.webBtn.smBtn .spinner:before,
.webBtn.smBtn .spinner:after {
  width: 14px;
  height: 14px;
}

.webBtn.lgBtn .spinner:before,
.webBtn.lgBtn .spinner:after {
  width: 20px;
  height: 20px;
}

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

*[disabled] {
  cursor: not-allowed !important;
}

a[disabled],
button[disabled] {
  opacity: 0.8;
}
/*
|----------------------------------------------------------------------
|       Body Inner Css
|----------------------------------------------------------------------
*/

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

img {
  width: 100%;
  display: block;
}

em {
  font-style: normal;
}

strong {
  font-family: "Poppins Bold";
  font-weight: normal;
}

input,
button,
select,
textarea {
  text-decoration: none !important;
  outline: none !important;
}

.ease,
body a,
body button,
body .webBtn {
  transition: all ease 0.5s;
}

.contain,
.contain-fluid {
  position: relative;
  max-width: 1140px;
  padding: 0 15px;
  margin: auto;
  min-height: 1px;
}

.contain-fluid {
  max-width: 1600px;
  padding: 0 15px;
}

.contain:before,
.contain:after,
.contain-fluid:before,
.contain-fluid:after {
  content: "";
  display: table;
}

.contain:after,
.contain-fluid:after {
  clear: both;
}

section {
  position: relative;
  padding: 70px 0;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.formRow {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.formRow > [class*="col-"],
.formRow > [class^="col-"] {
  padding: 10px;
}

.flexBox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flexDv {
  width: 100%;
}

.flexRow {
  margin: -15px;
}

.flexRow > .col {
  padding: 15px;
}

.bTn {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.bTn.formBtn {
  margin-top: 20px;
}

.text-left.bTn,
.text-left .bTn {
  justify-content: flex-start;
}

.text-center.bTn,
.text-center .bTn {
  justify-content: center;
}

.text-right.bTn,
.text-right .bTn {
  justify-content: flex-end;
}

/* ======== error or spinner ========== */

input.error {
  border-color: Red !important;
  border-style: solid;
  border-width: 1px;
}
textarea.error {
  border-color: Red !important;
  border-style: solid;
  border-width: 1px;
}
select.error {
  border-color: Red !important;
  border-style: solid;
  border-width: 1px;
}
label.error {
  color: red;
  font-size: 11px;
}
input[type="“radio”"].error:after,
input[type="“checkbox”"].error:after {
  border-color: red;
}

/* ================= popup ================== */

.popup .inside {
  max-width: 700px;
  margin: 0 auto;
}

.tableDv {
  display: table;
  width: 100%;
  height: 100%;
}

.tableCell {
  display: table-cell;
  vertical-align: middle;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(25, 33, 37, 0.95);
  padding: 20px 0;
  overflow: auto;
  z-index: 99999;
  /* display: flex; */
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.popup ._inner {
  position: relative;
  max-width: 600px;
  /*background: #f7f8f9;*/
  background: #fff;
  padding: 20px;
  margin: auto;
  border-radius: 10px;
  -webkit-box-shadow: 0 7px 14px 0 rgba(59, 65, 94, 0.1),
    0 3px 6px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 7px 14px 0 rgba(59, 65, 94, 0.1),
    0 3px 6px 0 rgba(0, 0, 0, 0.07);
}

.popup.big-popup ._inner {
  max-width: 800px;
}

.popup.small-popup ._inner {
  max-width: 420px;
}

.popup ._inner h3 {
  padding-right: 25px;
  margin-bottom: 20px;
}

.popup ._inner h4 {
  padding-right: 25px;
  margin-bottom: 15px;
}

.popBtn {
  cursor: pointer;
}

.crosBtn {
  position: absolute;
  top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  right: 5px;
  width: 28px;
  height: 28px;
  color: #8b9593;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  z-index: 5;
}

.crosBtn:before {
  content: "\2715";
  line-height: 1;
}

.popup .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.popup .list > li > div:nth-child(1) {
  width: 120px;
  min-width: 120px;
  font-family: "Poppins Bold";
  margin-right: 10px;
}

.popup .list > li > div:nth-child(2) {
  width: 100%;
  color: #8b9593;
}

.popup .blockLst {
  margin: -15px;
}

/*
|----------------------------------------------------------------------
|       Dropdown
|----------------------------------------------------------------------
*/

.dropBtn {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.dropBtn > i.chevron {
  display: inline-block;
  width: 10px;
  min-width: 10px;
  height: 10px;
  background-image: var(--chevron);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0;
  margin-left: 5px;
  transition: inherit;
}

.dropDown {
  position: relative;
  z-index: 1;
}

.dropCnt {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  max-width: 260px;
  background: #fff;
  margin-top: 10px;
  visibility: hidden;
  opacity: 0;
  /* border: 1px solid #eee; */
  border-radius: 7px;
  box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25),
    0 8px 16px -8px rgba(0, 0, 0, 0.3), 0 -6px 16px -6px rgba(0, 0, 0, 0.025);
  transition: all ease 0.5s;
  overflow: hidden;
}

.dropCnt.right {
  left: initial;
  right: 0;
}

.dropCnt.active {
  margin-top: 0;
  visibility: visible;
  opacity: 1;
}

.dropLst {
  /* border: 1px solid #eee; */
  padding: 6px 0;
  /* border-radius: 7px; */
}

.dropLst > li,
.dropLst > li > * {
  display: block;
}

/* .dropLst > li:nth-child(1) > * {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.dropLst > li:nth-last-child(1) > * {
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.dropLst > li:not(:nth-last-child(1)) {
    border-bottom: 1px solid #eee;
} */

.dropLst > li > * {
  display: flex;
  align-items: center;
  width: 100%;
  background: #fff;
  text-align: left;
  padding: 6px 15px;
  border: 0;
}

.dropLst > li > *:hover {
  background: #fafafa;
}

.dropLst > li > * > i {
  margin-right: 6px;
}

/*
|----------------------------------------------------------------------
|       Editor
|----------------------------------------------------------------------
*/

.ckEditor {
  /* Font */
  /* Emoji fonts are added to visualise them nicely in Internet Explorer. */
  font-family: "Poppins Regular", sans-serif, Arial, Verdana, "Trebuchet MS",
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 14px;

  /* Text color */
  color: #333;
}

.ckEditor .cke_editable {
  font-size: 13px;
  line-height: 1.6;

  /* Fix for missing scrollbars with RTL texts. (#10488) */
  word-wrap: break-word;
}

.ckEditor blockquote {
  font-style: italic;
  font-family: "Poppins Regular", Times, "Times New Roman", serif;
  padding: 2px 0;
  border-style: solid;
  border-color: #ccc;
  border-width: 0;
}

.ckEditor .cke_contents_ltr blockquote {
  padding-left: 20px;
  padding-right: 8px;
  border-left-width: 5px;
}

.ckEditor .cke_contents_rtl blockquote {
  padding-left: 8px;
  padding-right: 20px;
  border-right-width: 5px;
}

.ckEditor a {
  display: inline;
  color: #4a4f55;
}

.ckEditor ol,
.ckEditor ul,
.ckEditor dl {
  /* IE7: reset rtl list margin. (#7334) */
  margin-right: 0px;
  /* Preserved spaces for list items with text direction different than the list. (#6249,#8049)*/
  padding: 0 40px;
}

.ckEditor ul,
.ckEditor ol {
  padding: 0;
  padding-left: 20px;
  margin: 0 0 10px;
  list-style-position: inside;
}

.ckEditor ul > li,
.ckEditor ol > li {
  display: list-item;
  margin-bottom: 5px;
}

.ckEditor ul > li ul,
.ckEditor ol > li ol {
  margin: 5px 0 7px;
}

.ckEditor h1,
.ckEditor h2,
.ckEditor h3,
.ckEditor h4,
.ckEditor h5,
.ckEditor h6 {
  font-weight: normal;
  line-height: 1.2;
}

.ckEditor hr {
  border: 0px;
  border-top: 1px solid #ccc;
}

.ckEditor img.right {
  border: 1px solid #ccc;
  float: right;
  margin-left: 15px;
  padding: 5px;
}

.ckEditor img.left {
  border: 1px solid #ccc;
  float: left;
  margin-right: 15px;
  padding: 5px;
}

.ckEditor pre {
  white-space: pre-wrap; /* CSS 2.1 */
  word-wrap: break-word; /* IE7 */
  -moz-tab-size: 4;
  tab-size: 4;
}

.ckEditor .marker {
  background-color: #4a4f55;
}

.ckEditor span[lang] {
  font-style: italic;
}

.ckEditor figure {
  text-align: center;
  outline: solid 1px #ccc;
  background: rgba(0, 0, 0, 0.05);
  padding: 10px;
  margin: 10px 20px;
  display: inline-block;
}

.ckEditor figure > figcaption {
  text-align: center;
  display: block; /* For IE8 */
}

.ckEditor a > img {
  padding: 1px;
  margin: 1px;
  border: none;
  outline: 1px solid var(--red);
}

/* Widget Styles */
.ckEditor .code-featured {
  border: 5px solid #4a4f55;
}

.ckEditor .math-featured {
  padding: 20px;
  box-shadow: 0 0 2px #4a4f55;
  background-color: rgba(255, 0, 0, 0.05);
  margin: 10px;
}

.ckEditor .image-clean {
  border: 0;
  background: none;
  padding: 0;
}

.ckEditor .image-clean > figcaption {
  font-size: 0.9em;
  text-align: right;
}

.ckEditor .image-grayscale {
  background-color: white;
  color: #666;
}

.ckEditor .image-grayscale img,
.ckEditor img.image-grayscale {
  filter: grayscale(100%);
}

.ckEditor .embed-240p {
  max-width: 426px;
  max-height: 240px;
  margin: 0 auto;
}

.ckEditor .embed-360p {
  max-width: 640px;
  max-height: 360px;
  margin: 0 auto;
}

.ckEditor .embed-480p {
  max-width: 854px;
  max-height: 480px;
  margin: 0 auto;
}

.ckEditor .embed-720p {
  max-width: 1280px;
  max-height: 720px;
  margin: 0 auto;
}

.ckEditor .embed-1080p {
  max-width: 1920px;
  max-height: 1080px;
  margin: 0 auto;
}

.ckEditor i,
.ckEditor em {
  font-style: italic;
}

.ckEditor b,
.ckEditor strong {
  font-weight: bold;
}

.ckEditor u {
  text-decoration: underline;
}

.ckEditor span {
  display: initial;
  text-decoration: inherit;
}
/*_____ owl-nav _____*/

.owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0;
}

.owl-nav [class*="owl-"] {
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white !important;
  color: var(--black);
  font-size: 14px;
  margin: -20px 0 0;
  border-radius: 75%;
  box-shadow: 0 5px 20px rgb(18 15 56 / 7%);
}

.owl-nav [class*="owl-"]:hover {
  color: var(--red);
}

.owl-nav .owl-prev {
  left: -50px;
}

.owl-nav .owl-next {
  right: -50px;
}

/*_____ owl-dots _____*/

.owl-dots {
  text-align: center;
  position: relative;
  margin-top: 20px;
  line-height: 0;
  z-index: 5;
}

.owl-dots .owl-dot {
  display: inline-block;
  padding: 0 2px !important;
}

.owl-dots .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 50px;
  background-color: #fff;
  transition: all ease 0.5s;
}

.owl-dots .owl-dot.active span {
  background-color: var(--red);
}

#banner .owl-dots {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/*
|----------------------------------------------------------------------
|       Form
|----------------------------------------------------------------------
*/

label {
  display: block;
  font-weight: normal;
  cursor: pointer;
}

label > a {
  color: var(--red);
}

label > a:hover {
  color: #4a4f55;
}

.txtGrp {
  position: relative;
}

.txtGrp:not(:nth-last-child(1)) {
  margin-bottom: 20px;
}

.infoHead {
  margin-top: 40px;
  margin-bottom: 20px;
}

form h5 + p {
  margin: -10px 0 20px;
}

.txtBox {
  display: block;
  width: 100%;
  height: 46px;
  background: #fefefe;
  text-align: left;
  padding: 6px 12px;
  border: 1px solid #eee;
  border-radius: 12px;
  outline: none !important;
  transition: all ease 0.5s;
  border-color: rgb(192 185 185);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.txtGrp label ~ .txtBox:not(button) {
  padding: 16px 12px 6px;
}

.txtBox:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
}

textarea.txtBox {
  height: 190px;
  resize: none;
}

.txtGrp .txtBox.uploadImg:not([data-upload]) {
  background: #fff;
  color: #4a4f55;
  text-align: center;
  border-color: #4a4f55;
  box-shadow: inset 1px 1px 4px #fcfcfc;
}

.txtGrp .txtBox.uploadImg[data-upload] {
  display: flex;
  align-items: center;
  color: #8b9593;
}

.txtGrp .txtBox.uploadImg[data-upload]:before {
  content: attr(data-text);
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.txtGrp .txtBox.uploadImg[data-upload]:after {
  content: "Hochladen";
  color: #4a4f55;
  margin-left: 5px;
}

.txtGrp .txtBox.uploadImg[data-upload].uploaded:after {
  content: "Entfernen";
}

.txtGrp:not(.lblBtn) > label {
}

.txtGrp:not(.lblBtn) > label.move {
  font-size: 10px;
  transform: translateY(-12px);
}

.txtBox:disabled {
  background: #e3e8ee;
  cursor: not-allowed;
  border-color: #d8dee6 !important;
}

.txtBox::placeholder {
  color: #575759;
}

.txtBox:focus::placeholder {
  opacity: 0.4;
}

.txtGrp .txtBox:focus::placeholder {
  opacity: 0;
}

.txtBox:hover,
.txtBox:focus {
  border-color: #4a4f55;
}

input[type="radio"],
input[type="checkbox"] {
  position: relative;
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 0;
  cursor: pointer;
}

input[type="radio"],
input[type="checkbox"] {
  /* display: inline; */
  appearance: initial;
}

input[type="radio"]:before,
input[type="checkbox"]:before,
input[type="radio"]:after,
input[type="checkbox"]:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

input[type="checkbox"]:before,
input[type="checkbox"]:after {
  transition: all linear 0.3s;
}

input[type="radio"]:before,
input[type="checkbox"]:before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px;
  z-index: 1;
}

input[type="radio"]:after,
input[type="checkbox"]:after {
  background: #fff;
  border: 1px solid #d9dade;
  border-radius: 4px;
  box-shadow: inset 1px 1px 4px #f2f3f7;
}

input[type="radio"]:after {
  border-radius: 75%;
}

input[type="checkbox"]:checked:before {
  background-image: var(--tick);
}

input[type="radio"]:checked:after {
  border-color: #4a4f55;
  box-shadow: inset 0 0 0 4px #4a4f55;
}

input[type="checkbox"]:checked:after {
  background: #4a4f55;
  border-color: #4a4f55;
  box-shadow: none;
}

.lblBtn {
  display: flex;
  text-align: left;
}

.lblBtn > input[type="radio"],
.lblBtn > input[type="checkbox"] {
  margin-top: 2px;
}

.lblBtn label {
  align-self: center;
  font-family: "Poppins Regular";
  line-height: 1.5;
  cursor: pointer;
  margin: 0 0 0 10px;
}

input[type="file"].uploadFile {
  display: none;
}

.uploadImg {
  position: relative;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

select.txtBox {
  background-image: var(--chevron);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 10px;
  padding-right: 24px !important;
  -webkit-appearance: none;
  appearance: none;
}

/*
|----------------------------------------------------------------------
|       Page Loader
|----------------------------------------------------------------------
*/

#pageloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #f5f6f8;
  z-index: 999999;
}

.loader {
  width: 40px;
  height: 40px;
  border: 4px solid var(--red);
  border-right: 4px solid #f0f5f9;
  border-radius: 75%;
  animation: spin 0.5s linear infinite;
}

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

/* ================top nav============ */

.topNav {
  padding: 10px 0px;
  background: linear-gradient(110deg, #000000 45%, #0075c5 40%);
}
.topNav p {
  margin-bottom: 0px;
  font-size: 14px;
  color: #fff;
}
.topNav .colL {
  width: 20%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.topNav .colR {
  width: 80%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.topNav ul li a {
  color: rgb(255, 255, 255);
  font-family: "Poppins Regular";
  padding: 0px 10px;
  /* text-transform: uppercase; */
  font-size: 13px;
  letter-spacing: 1px;
}
.topNav ul li:first-child,
.topNav ul li:nth-child(2) {
  margin-right: 20px;
}
.topNav .colR li p {
  align-self: center;
}
.topNav .colR li p:first-child {
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
  color: #0075c5;
}
.topNav .colR li p span {
  display: block;
  font-size: 13px;
  color: #f7f7f7;
  font-family: "Poppins Regular";
}
.topNav .colR li p span:first-child {
  margin-bottom: 2px;
  font-family: "Poppins Bold";
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
}
.topNav .social li a {
  padding: 0;
  color: #0075c5;
  font-size: 19px;
  margin-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hideBig {
  display: none;
}

/*
|----------------------------------------------------------------------
|       Header
|----------------------------------------------------------------------
*/

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 50;
  background: var(--white);
  box-shadow: 0px 0px 4px #ddd;
}

.logo {
  float: left;
  width: 130px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 4px;
}

.logo > a {
  display: block;
}

nav {
  float: right;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
}

nav {
  display: flex;
  align-items: center;
}

nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

nav > #nav {
  margin: 0 auto;
}

nav > ul > li {
  position: relative;
  padding: 0 15px;
}

nav > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  color: var(--lightblack);
  text-align: center;
  font-family: "Poppins Regular";
}

nav > ul > li > a:hover,
nav > ul > li.active > :not(.webBtn) a {
  color: var(--red);
}

header .webBtn:hover a {
  color: #ffff;
}

nav > li.drop > a {
  position: relative;
}

nav li.drop > a:after {
  content: "\e930";
  font-size: 12px;
  font-family: "font-icon";
  font-weight: bold;
  margin-left: 6px;
  line-height: 1;
}

nav li .sub-menu {
  position: absolute;
  top: 100%;
  left: 15px;
  width: 280px;
  background: var(--white);
  text-align: left;
  margin-top: 10px;
  visibility: hidden;
  opacity: 0;
  border-radius: 4px;
  transition: none;
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 7%);
  overflow: hidden;
}

nav li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  transition: all 0.2s ease-out;
}

nav li .sub-menu li,
nav li .sub-menu li a {
  display: block;
}

nav li .sub-menu li a {
  font-size: 14px;
  padding: 13px 18px;
  border-bottom: solid 1px #eee;
}

nav li .sub-menu li a:hover {
  color: #4a4f55;
}

nav #cta {
  margin-left: 20px;
}

header .webBtn {
  color: var(--white);
}

/*
|----------------------------------------------------------------------
|       Footer
|----------------------------------------------------------------------
*/

footer ul li{
  display: block;
}

footer {
  position: relative;
  background: #000000;
  color: #fff;
  font-family: "Poppins Regular";
  padding-top: 80px;
  overflow: hidden;
}

footer .footer_logo {
  width: 164px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

footer .flexRow {
  margin: -15px;
}

footer .flexRow > .col {
  width: 25%;
  padding: 15px;
}

footer .flexRow > .col:nth-child(1) {
  width: 32%;
}
footer .flexRow > .col:nth-child(2) {
  width: 18%;
}

footer .footerLogo {
  max-width: 130px;
}

footer h5 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 10px;
}

footer p {
  font-size: 14px;
}

footer .lst > li {
  display: block;
  margin-bottom: 10px;
}

footer .lst > li:nth-last-child(1) {
  margin-bottom: 0 !important;
}

footer a {
  color: inherit;
}

footer a:hover {
  color: var(--red);
}

footer .smLst {
  margin: -5px -10px;
}

footer .infoLst > li {
  display: flex;
  margin-bottom: 20px;
}

footer .infoLst > li > img {
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}

footer .smLst > li {
  padding: 5px 10px;
}

footer .social {
  margin-top: 20px;
}

footer .social > li {
  padding: 3px;
}

footer .social > li > a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  background: #fff;
  padding: 11px;
  border-radius: 75%;
}

footer .social > li > a:hover {
  background: #c9c9c9;
}

/* =============== Copyright ================= */

.copyright {
  padding: 25px 0;
  margin-top: 60px;
  background-color: #171717;
  z-index: 1;
}

.copyright .inner {
  display: flex;
  justify-content: center;
}

.copyright p {
  flex: 1;
  margin: 0;
  text-align: center;
}

.copyright p > a {
  color: #fff;
}

.copyright p > a:hover {
  color: var(--red);
}

/* ================ banner ============= */

#banner {
  padding-top: 80px;
}

#banner .item {
  height: 700px;
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}

#banner .item .image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#banner .item .image img {
  width: 100%;
  position: absolute;
  position: relative;
  z-index: -1;
  height: 100%;
  object-fit: cover;
}

/* #banner .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #08243c;
  opacity: 0.5;
} */

#banner .content {
  max-width: 680px;
  color: #fff;
  /* padding-top: 180px; */
  /* display: flex; */
}

#banner .content h1,
#banner .content p {
  margin-bottom: 30px;
}

.slider__social-box {
  position: absolute;
  top: 48%;
  left: -2%;
  transform: rotate(-90deg);
  z-index: 7;
}

.slider__social-box span {
  font-family: "Poppins SemiBold";
  font-size: 18px;
  color: #fff;
  padding-right: 20px;
}

.slider__social-box a {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  background-color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 38px;
  text-align: center;
  transition: 0.3s;
  margin-right: 10px;
  color: var(--red);
  transform: rotate(90deg);
  font-size: 14px;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  -ms-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
}

.slider__social-box a:hover {
  background-color: var(--red);
  color: #fff;
}

.title {
  position: relative;
  font-family: "Poppins Regular";
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.title::before {
  content: "";
  background-color: var(--red);
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

.title::after {
  content: "";
  background-color: var(--red);
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 10px;
}

.slider__title-shape {
  position: absolute;
  bottom: -34%;
  right: 2%;
}

#banner .slider__title-shape {
  bottom: -10%;
}
#banner .slider__title-shape img {
  width: 107px !important;
}

.slider__title-shape img {
  width: 87px !important;
}

#banner .title {
  margin-bottom: 30px;
}

/* intro */

.pimage1 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.pimage1 img {
  width: 134px;
}

#intro {
  padding-top: 0;
}

#intro .col {
  width: 50%;
  position: relative;
  padding-right: 40px;
}

#intro .col .image {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

#intro .col .image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__img-content {
  background-color: var(--red);
  position: absolute;
  right: 9%;
  top: 12px;
  padding: 17px 48px;
  border-radius: 60px;
  border: 6px solid #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  animation: tptranslateX2 3s infinite alternate;
  color: #fff;
  z-index: 999;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
}

.about__img-content h4 {
  margin-bottom: 0;
}

#intro .colr {
  width: 50%;
}

#intro .colr ul {
  padding-bottom: 20px;
}

#intro .colr ul li {
  text-align: left;
  position: relative;
  width: 100%;
  padding: 0px 0 10px 35px;
}

#intro .colr ul li::before {
  position: absolute;
  content: "\f061";
  font-family: "FontAwesome";
  top: 2px;
  left: 0px;
  width: 16px;
  height: 16px;
  /* line-height: 21px; */
  text-align: center;
  border-radius: 50%;
  background-color: var(--red);
  color: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: flex;
  font-size: 8px;
  justify-content: center;
  align-items: center;
}

span {
  display: unset;
}

.preview-image-showcase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.preview-image-showcase .images-left,
.preview-image-showcase .images-right {
  max-width: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.preview-image-showcase .images-left {
  margin-top: 60px;
}
.preview-image-showcase img {
  border-radius: 12px;
  margin-bottom: 10px;
}

/* designed */

#services {
  background-color: #f8f8f8dd;
  background-image: url(../images/bg2-02.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#services .inner-content {
  margin-bottom: 30px;
}

#services .col {
  width: 50%;
}

#services .mm {
  margin: 0 -15px;
}

#services .col1 {
  width: calc(100% / 2);
  padding: 15px;
}

#services .col1 .inner {
  display: flex;
  height: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
}

#services .col1 .inner p {
  margin-bottom: 0;
}

#services .col1 .inner h4 {
  margin-bottom: 10px;
}

#services .col1 .inner .icon {
  width: 60px;
  min-width: 60px;
  height: 60px;
  padding: 10px;
  margin-top: 10px;
  margin-right: 15px;
  border-radius: 50%;
  z-index: 1;
  position: relative;
  background-color: var(--red);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

#services .col1 .inner .icon {
  transition: 0.8s;
}

#services .col1 .inner:hover .icon {
  transform: rotateY(180deg);
}

/* --------------------specials------------------------------- */

.pimage2 {
  position: absolute;
  top: 47px;
  left: 50px;
}

.pimage2 img {
  width: 78px;
  height: 91px;
}

.specials .col {
  width: 50%;
  /* align-self: center; */
}

.specials .col1 {
  padding-right: 40px;
}

.specials .colr {
  padding-left: 40px;
  width: 50%;
}

.specials h4 {
  font-family: "Poppins Regular";
}

.specials .col .image {
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  box-shadow: 0 3px 15px 0 rgb(0 0 0 / 5%);
  position: relative;
  padding-bottom: 82%;
}
.specials .col .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.specials .col .image::before {
  content: "";
  position: absolute;
  right: -23px;
  bottom: -22px;
  background-image: url(../images/about_img_shape.png);
  width: 356px;
  height: 307px;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: 1;
}

.cmn-lst {
  margin-bottom: 20px;
}

.cmn-lst li {
  position: relative;
  display: block;
  width: 50%;
  margin: 10px 0px;
  padding-left: 25px;
}
.cmn-lst li:before {
  position: absolute;
  content: "\f058";
  top: -3px;
  left: 0px;
  font-family: "FontAwesome";
  font-size: 18px;
  color: var(--red);
}

.cmn-lst li a {
  cursor: pointer;
}

/* counter */

#counter {
  padding: 40px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  background-size: cover;
  background-position: bottom;
  background-image: url(../images/counterBg.jpg);
  position: relative;
}

#counter:before {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  background-color: transparent;
  background-image: linear-gradient(90.05deg, #131313 31.83%, #1818186e 100%);
  opacity: 1;
}

.bgblue .flex {
  z-index: 1;
  position: relative;
}
section#counter {
  padding: 120px 0;
}

#counter .col {
  width: calc(100% / 4);
  padding: 20px;
}

#counter .col .icon {
  width: 70px;
  background-color: #ed1a23;
  padding: 15px;
  border-radius: 50%;
  height: 70px;
  position: relative;
}

#counter .counter-number {
}
#counter .icon:after {
  content: "";
  position: absolute;
  width: 142px;
  height: 142px;
  top: 0;
  bottom: 0;
  margin: auto -41px;
  background: url(../images/shapeProgress.png) no-repeat;
  background-size: 100% 100%;
  z-index: -1;
  border-radius: 50%;
}

#counter .col .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

#counter .col .counter-number {
  display: flex;
}

#counter .col h2 {
}

#counter .col h2 {
  font-size: 28px;
  margin-bottom: 4px;
  color: #fff;
}

#counter .col .text {
  margin-left: 20px;
  align-self: center;
}

#counter .col p {
  margin-bottom: 0;
  color: #bdbdbd;
}

#counter .col span {
  font-size: 40px;
}

/* ========= survey workshop ============= */

#workshop .flex {
  margin: -10px;
}

#workshop .col {
  width: calc(100% / 3);
  padding: 15px;
}

#workshop .col .inner-content {
  padding: 25px 20px;
  margin: -20px 10px 10px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 7%);
  z-index: 999;
}

#workshop .col .inner-content h4,
#workshop .col .inner-content p {
  margin-bottom: 8px;
}

#workshop .col .inner-content a {
  color: var(--red);
  cursor: pointer;
}

/* #offers .col .inner {
  background: #fff;
  box-shadow: 0 5px 20px rgb(83 20 50 / 7%);
} */

#workshop .col .inner .image {
  height: 230px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  z-index: -1;
}

#workshop .col .inner .image img {
  width: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 2s cubic-bezier(0.2, 0.96, 0.34, 1);
  transition: -webkit-transform 2s cubic-bezier(0.2, 0.96, 0.34, 1);
  transition: transform 2s cubic-bezier(0.2, 0.96, 0.34, 1);
  transition: transform 2s cubic-bezier(0.2, 0.96, 0.34, 1),
    -webkit-transform 2s cubic-bezier(0.2, 0.96, 0.34, 1);
  height: 100%;
  object-fit: cover;
}

#workshop .inner:hover .image img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.link-btn {
  border-style: solid;
  border-width: 1px 1px 3px;
  border-color: #e7e7e7;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 55px;
  color: #1d1d1d;
  font-size: 16px;
  font-family: "Montserrat Medium";
  text-align: center;
  padding: 0 30px;
  border-radius: 4px;
  cursor: pointer;
}

.link-btn:hover {
  border-color: var(--red);
}

.link-btn i {
  padding-left: 8px;
}

.center_content {
  max-width: 650px;
  margin: 0 auto 30px;
  text-align: center;
}

/*  */
.why_sec .flex .colL {
  width: 60%;
  padding-right: 2rem;
  align-self: center;
}
.why_sec .icons_flex {
  display: flex;
  flex-flow: wrap;
  margin: -1rem;
}

.why_sec .icons_flex .inner_col {
  width: 50%;
  padding: 1rem;
}

.why_sec .icons_flex .inner_col .inner {
  display: flex;
  flex-flow: wrap;
  position: relative;
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 0.7rem 3.5rem -0.5rem rgba(24, 24, 24, 0.1),
    0 -0.5rem 1rem -0.6rem rgba(24, 24, 24, 0.1);
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  height: 100%;
}

.why_sec .icons_flex .inner_col .inner .icon_img {
  width: 35px;
  height: 35px;
  overflow: hidden;
  background: var(--red);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  padding: 0.5rem;
}

.why_sec .icons_flex .inner_col .inner .icon_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  filter: brightness(0) invert(1);
}

.why_sec .icons_flex .inner_col .inner .text {
  margin-bottom: 0;
  flex: 1;
  margin-left: 1.5rem;
}

.why_sec .icons_flex .inner_col .inner .text h4 {
  margin-bottom: 4px;
}
.why_sec .flex .colR {
  width: 40%;
  padding-left: 2rem;
  align-self: center;
}

.why_sec {
  padding-top: 0;
}

/* ========= events =========== */

#events {
  background-color: #1b1b1b;
}

#events .col {
  width: 50%;
  align-self: center;
  background-color: #fff;
  padding: 60px 40px;
  border-radius: 6px;
  margin-right: -50px;
  z-index: 99;
}

#events .colr {
  width: 50%;
}

#events .colr .image {
  height: 503px;
}

#events .colr .image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

#events strong {
  font-family: "Poppins Italic";
  color: var(--red);
}

/* =============== testimonials ================= */

#folio {
  overflow: hidden;
  /* background-image: linear-gradient(#fafafa, transparent); */
  background-image: url(../images/clients.jpg);
  background-size: cover;
}
#folio:before {
  content: "";
  position: absolute;
  height: 55%;
  top: 0;
  width: 100%;
  /* background-image: url(../images/dots.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
}
#folio .owlBlock {
  /* margin: -40px; */
}

#folio .inner {
  padding: 20px 10px;
}

#folio .content {
  background: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 7px;
  /* box-shadow: 0 3px 15px 0 rgb(0 0 0 / 10%); */
  z-index: 1;
}
#folio .content ul li:not(:last-child) {
  margin-bottom: 8px;
}

/* #folio p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 65px;
  height: 65px;
  background-image: url(../images/comma.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
} */

#folio .content p {
  margin-bottom: 8px;
  position: relative;
}

#folio .content .icoBlk {
  margin-top: 20px;
}

/* #folio .content .icoBlk {
  display: flex;
  align-items: center;
  justify-content: center;
} */

#folio .content .ico {
  width: 100px;
  min-width: 100px;
  height: 100px;
  margin: 0 auto 40px;
  box-shadow: 0 2px 5px 0 rgba(59, 65, 94, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.07);
}

#folio .content .icoBlk h5 {
  text-align: center;
  margin: 0;
  margin-left: 15px;
}

#folio .content .icoBlk h5 > span {
  display: block;
  margin-top: 10px;
  font-size: 1.3rem;
  font-family: "Poppins Regular";
  color: var(--red);
}

/* #folio .owl-dots {
  margin: -10px 0 20px;
} */

#folio .content .ico {
  overflow: hidden;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

#folio .mini-heading {
  margin: auto;
  text-align: center;
}

/* ========= quote section ========== */

#quote {
  /* padding-top: 0; */
}

#quote .contain-fluid {
  padding: 0;
}

#quote .col {
  width: 50%;
  padding-right: 130px;
}

#quote .col .image {
  height: 560px;
  /*width: 550px;
  */
  position: relative;
}

#quote .col .image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blue-text {
  background-color: #ed1a23;
  padding: 40px;
  position: absolute;
  top: 0;
  right: -124px;
  bottom: 0;
  height: 250px;
  width: 250px;
  margin: auto;
  display: flex;
}

.blue-text h2 {
  color: #fff;
  text-align: center;
  margin: auto;
  font-size: 35px;
  letter-spacing: 0.5px;
}

#quote .colr {
  width: 50%;
  padding-left: 50px;
  padding-right: 100px;
}

#quote .colr .main-content {
  text-align: left;
}

#quote .colr h2 {
  margin-bottom: 10px;
}

#quote .colr .main-content .line {
  margin: 10px;
}

.form_blk {
  margin-bottom: 30px;
}

#quote form {
  padding-top: 30px;
}

/* about page */

/* ========== new banner =========== */

.banner.sub_banner {
  padding-bottom: 7rem;
  min-height: unset;
  background: url(../images/small.jpg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  margin-top: 80px;
}

.banner .contain .content {
  width: 105%;
  margin: auto;
  text-align: center;
}

.banner .contain .content h1,
.banner .contain .title {
  color: #fff;
}

.banner:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-clip-path: polygon(25% 0, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0, 100% 0%, 75% 100%, 0% 100%);
}
/* ======== intro ========= */

#abt .col {
  width: 50%;
  padding-right: 20px;
}

#abt .colr {
  width: 50%;
}

#abt .colr .image {
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 15px 0 rgb(0 0 0 / 5%);
  position: relative;
  padding-bottom: 78%;
}

#abt .colr .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#abt .col p strong {
  font-family: "Hunter Regular";
  font-size: 60px;
  color: black;
}

/*  */

#abt2 .col {
  width: 50%;
  padding-left: 40px;
}

#abt2 .colr {
  width: 50%;
}

#abt2 .colr .image {
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 15px 0 rgb(0 0 0 / 5%);
  position: relative;
  padding-bottom: 78%;
}

#abt2 .colr .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* feature */

/* section#feature {
  padding-top: 0px;
} */

#feature .col {
  width: calc(100% / 4);
  padding: 10px;
}

#feature .col .inner {
  padding: 30px 30px;
  border: 1px solid #ecebeb;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

#feature .col .inner .text h4 {
  margin-bottom: 6px;
}
#feature .col .inner .icon {
  width: 70px;
  margin-bottom: 20px;
}

.local_auth_sec {
  background-color: #f8f8f8dd;
}

.local_auth_sec .item .image {
  height: 100px;
  margin: auto;
  overflow: hidden;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 26px;
}

.local_auth_sec .item .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  filter: invert(1);
  transition: all ease 0.5s;
}

/*  */

.contact_sec .colL {
  width: 70%;
  padding-right: 2rem;
}

.contact_sec .colL form {
  position: relative;
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 0.7rem 3.5rem -0.5rem rgba(24, 24, 24, 0.1),
    0 -0.5rem 1rem -0.6rem rgba(24, 24, 24, 0.1);
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}

.contact_sec h5 {
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.contact_sec .form_row {
  display: flex;
  flex-flow: wrap;
  margin: -2rem 0 0 -2rem;
  width: calc(100% + 2rem);
}

.contact_sec .colR {
  width: 30%;
  padding-left: 2rem;
  align-self: center;
}

.contact_sec .colR .contactLst {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact_sec .colR .contactLst li {
  width: 100%;
  margin-bottom: 20px;
  font-size: 14px;
}

.contact_sec .colR .contactLst li h5 {
  font-size: 1.7rem;
  font-family: "Poppins Medium";
  color: var(--red);
  position: relative;
  padding-bottom: 10px;
  display: flex;
  -webkit-box-orient: vertical;
  gap: 0.6rem;
}

.contact_sec .colR .contactLst li h5:before {
  position: absolute;
  bottom: 0;
  content: "";
  width: 4rem;
  height: 0.2rem;
  background: var(--red);
}

.contact_sec .colR .contactLst li h5 span {
  align-self: center;
}

.contact_sec .colR .contactLst li h5 em {
  font-style: normal;
}

.contact_sec .form_row > [class*="col-"],
.contact_sec .form_row > [class^="col-"] {
  padding: 2rem 0 0 2rem;
}

.contact_sec .btn_blk {
  margin-top: 20px;
}

/* =========== service-detail =========== */

#service-detail .col {
  width: 30%;
  padding-right: 15px;
}

#service-detail .colr {
  width: 70%;
  padding-left: 10px;
}

/* tabs */

.tabs-lst {
  background: #ffffff;
  box-shadow: 4px 4px 50px 4px rgba(47, 47, 47, 0.08);
  border-radius: 5px;
  padding: 40px 30px;
  overflow: hidden;
}
.tabs-lst li {
  width: 100%;
}
.tabs-lst li a {
  width: 100%;
  color: #000;
  padding: 15px;
  position: relative;
}
.tabs-lst li.active a {
  color: #fff;
  background: #e74433;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.tabs-lst li a:before {
  position: absolute;
  content: "\f054";
  top: 0px;
  right: 0px;
  color: #000;
  font-family: "FontAwesome";
  font-size: 11px;
  font-weight: 600;
  bottom: 0;
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tabs-lst li.active a:before {
  color: #fff;
}

/* ============== tab end ==========*/

.btns {
  margin-top: 30px;
}

.btns .blankBtn {
  margin-top: 20px;
}

.btns .webBtn {
  min-width: 100%;
}

.btns .webBtn i {
  font-size: 22px;
}

#service-detail .card {
  margin-top: 30px;
}

/* ============ btns end ========= */

#service-detail .colr .image {
  height: 400px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

#service-detail .colr .image img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}

#service-detail .colr .col1 {
  width: calc(100% / 4);
  padding: 8px;
}

#service-detail .colr .first {
  margin: 0 -8px;
}

#service-detail .colr .col1 .inner {
  background: #ffffff;
  box-shadow: 2px 2px 40px rgba(155, 155, 155, 0.25);
  border-radius: 18px;
  padding: 30px;
  height: 100%;
}

#service-detail .colr .col1:last-child .inner {
  background-color: #4682f0;
  background-size: 300% 100%;
  background-image: linear-gradient(
    to right,
    #4682f0,
    #4682f0,
    #144ebc,
    #144ebc
  );
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#service-detail .colr .col1:last-child .inner h4 {
  color: #fff;
}

#service-detail .colr .col1:last-child .inner h3 {
  color: #fff;
  text-align: center;
  font-size: 28px;
}

#service-detail .colr .col1 .inner .icon {
  width: 74px;
  height: 74px;
  background: rgb(70 130 240 / 18%);
  padding: 20px;
  margin: 0 auto 20px;
  border-radius: 50%;
}

#service-detail .colr .col1 .inner h4 {
  text-align: center;
}

#service-detail .col2 {
  width: 50%;
}

#service-detail .col3 {
  width: 50%;
}

#service-detail .col3 .image1 {
  height: 300px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  overflow: hidden;
}

#service-detail .col3 .image1 img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#service-detail .second {
  margin: 30px 0 !important;
}

#service-detail .col2 ul li {
  padding: 8px 0;
  position: relative;
}

#service-detail .col2 ul li i {
  color: var(--red);
  padding-right: 8px;
}

.para {
  width: 500px;
}

.card {
  background-image: url(../images/abt.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  overflow: hidden;
  margin-top: 10px;
}

.card::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #111111;
  opacity: 0.7;
}

.card .text {
  color: #fff;
  z-index: 99;
  padding: 40px 20px;
}

.card .text h3 {
  color: #ffffff;
}

.card .text a {
  color: #fff;
}

.indus form {
  position: relative;
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 0.7rem 3.5rem -0.5rem rgba(24, 24, 24, 0.1),
    0 -0.5rem 1rem -0.6rem rgba(24, 24, 24, 0.1);
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}

/* .indus form .inner {
  width: 60%;
  margin: auto;
} */

.indus form .inner h2 {
  text-align: center;
  font-size: 28px;
}

.indus form label {
  font-family: "Poppins Medium";
}
.indus form .lblBtn label {
  font-family: "Poppins Regular";
  margin-bottom: 12px;
}

#service-detail .text {
  margin-top: 30px;
}

.indus {
  padding-top: 0px;
}

.indus .fmt {
  margin-top: 10px;
}

/* ============ portfolio_detail ============ */

#portfolio_detail p span {
  background-color: var(--red);
  padding: 4px 10px;
  color: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  font-size: 18px;
}

.player_icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 80px;
  width: 80px;
}

#portfolio_detail .outer {
  background: #ffffff;
  box-shadow: 2px 2px 40px rgba(129, 128, 128, 0.25);
  border-radius: 40px;
  padding: 20px;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

#portfolio_detail .outer .col {
  width: calc(100% / 4);
  padding: 20px;
}

#portfolio_detail .outer .col p {
  margin-bottom: 2px;
}

#portfolio_detail .outer2 .col {
  width: calc(100% / 3);
  padding: 10px;
}

#portfolio_detail .outer2 {
  margin: 0 -10px;
  margin-bottom: 30px;
}

#portfolio_detail .outer2 .col .inner {
  position: relative;
  background: #ffffff;
  box-shadow: 2px 2px 40px rgba(155, 155, 155, 0.25);
  border-radius: 18px;
  padding: 50px 30px;
  overflow: hidden;
}

#portfolio_detail .outer2 .col .inner .half_circle {
  position: absolute;
  top: 0px;
  right: -1px;
  content: "";
  background: rgb(255 215 216);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--red);
  height: 61px;
  width: 71px;
  /* border-radius: 108px 0 0px 124px; */
  border-top-left-radius: 0px;
  border-top-right-radius: 18px;
  border-bottom-left-radius: 1000px;
  font-family: "Poppins SemiBold";
  font-size: 18px;
}

#portfolio_detail .outer3 .col {
  width: 50%;
  padding-right: 30px;
}

#portfolio_detail .outer3 .colr {
  width: 50%;
}

#portfolio_detail .outer3 .colr .image {
  height: 380px;
}

#portfolio_detail .outer3 .colr .image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

#portfolio_detail .outer3 .col ul li {
  padding: 8px 0;
  position: relative;
}
#portfolio_detail .outer3 .col ul li i {
  color: var(--red);
  padding-right: 8px;
}

/*   */

#pickup .col {
  width: 50%;
  padding-right: 30px;
}

#pickup .col ul li {
  width: 100%;
}

#pickup .colr {
  width: 50%;
  padding-left: 100px;
}

#pickup .colr .image {
  height: 250px;
}

#pickup .colr .image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#pickup .text {
  margin-bottom: 30px;
}

#pickup .col1 {
  width: calc(100% / 3);
  padding: 10px;
}

#pickup .first {
  margin: 30px -10px;
}

#pickup .col1 .inner {
  background: #ffffff;
  box-shadow: 2px 2px 40px rgba(155, 155, 155, 0.25);
  border-radius: 18px;
  padding: 30px;
}

#pickup .col1 .inner .icon {
  width: 74px;
  height: 74px;
  background: rgb(255 232 233);
  padding: 20px;
  margin: 0 auto 20px;
  border-radius: 50%;
}

#pickup .col1 .inner h4,
#pickup .col1 .inner p {
  text-align: center;
}

.wpcf7-list-item {
  display: flex;
    text-align: left;
    margin: 0 0 0 1em;
    align-items: center;
    gap: 10px;
}