@charset "UTF-8";
@import url("../vendor/animate/animate.min.css");
@import url("../icons/ic-icons/icons.css");
@import url("../vendor/bootstrap/css/bootstrap.min.css");
:root {
  --primary: #2C70B9;
  --secondary: #FCCC00;
  --primary-hover: #2180E6;
  --primary-dark: #28588B;
  --rgba-primary-1: rgba(0,134,240,0.1);
  --rgba-primary-2: rgba(0,134,240,0.2);
  --rgba-primary-3: rgba(0,134,240,0.3);
  --rgba-primary-4: rgba(0,134,240,0.4);
  --rgba-primary-5: rgba(0,134,240,0.5);
  --rgba-primary-6: rgba(0,134,240,0.6);
  --rgba-primary-7: rgba(0,134,240,0.7);
  --rgba-primary-8: rgba(0,134,240,0.8);
  --rgba-primary-9: rgba(0,134,240,0.9);
  --font-family-base: Roboto, sans-serif;
  --border-radius-base: 4px;
  --border-radius-sm: 8px;
  --border-radius-lg: 30px;
  --font-family-title: Roboto, sans-serif;
  --title: #051136;
}
* {
  outline: none;
  padding: 0;
}
*::after {
  margin: 0;
  padding: 0;
}
*::before {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.6;
  color: #777777;
  font-size: 15px;
  font-family: var(--font-family-base);
}
body.fixed {
  overflow: hidden;
  position: fixed;
}

h1 a, .h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  color: var(--title);
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--font-family-base);
  font-weight: 700;
  color: var(--title);
}

h1,
.h1 {
  line-height: 1.3;
}
@media only screen and (max-width: 1400px) {
  h1,
  .h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  h1,
  .h1 {
    font-size: 1.875rem;
  }
}

h2,
.h2 {
  line-height: 1.4;
}
@media only screen and (max-width: 1400px) {
  h2,
  .h2 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  h2,
  .h2 {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 767px) {
  h2,
  .h2 {
    font-size: 1.5rem;
  }
}

h3,
.h3 {
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  h3,
  .h3 {
    font-size: 1.375rem;
  }
}

h4,
.h4 {
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  h4,
  .h4 {
    font-size: 1.25rem;
  }
}

h5,
.h5 {
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  h5,
  .h5 {
    font-size: 1.125rem;
  }
}

h6,
.h6 {
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  h6,
  .h6 {
    font-size: 1rem;
  }
}

ul {
  padding: 0;
  margin: 0;
}

img {
  border-style: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  outline: none;
  color: var(--primary);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
a:hover, a:focus, a.active {
  text-decoration: none;
  outline: none;
  color: var(--primary-hover);
}

.callmailcolor {
  color: #fff !important;
}

.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

b,
strong,
.strong {
  font-weight: 500;
}

.text-white h1, .text-white .h1,
.text-white h2,
.text-white .h2,
.text-white h3,
.text-white .h3,
.text-white h4,
.text-white .h4,
.text-white h5,
.text-white .h5,
.text-white h6,
.text-white .h6 {
  color: #fff;
}

.h-0 {
  height: 0;
}

#main-wrapper {
  opacity: 0;
  transition: all 0.25s ease-in;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 60px;
}
#main-wrapper.show {
  opacity: 1;
}

.content-body {
  margin-left: 65px;
  margin-top: 18px;
  margin-right: 6px;
  margin-bottom: 45px;
}

.container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
  padding-left: 80px;
  padding-right: 80px;
}
@media only screen and (max-width: 1680px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.bg-gray {
  background-color: #f8f8f8;
}

::selection {
  color: #fff;
  background: var(--primary);
}

.row.sp60,
.sp60 {
  margin-left: -30px;
  margin-right: -30px;
}
.row.sp60 [class*=col-],
.sp60 [class*=col-] {
  padding-left: 30px;
  padding-right: 30px;
}

.row.sp40,
.sp40 {
  margin-left: -20px;
  margin-right: -20px;
}
.row.sp40 [class*=col-],
.sp40 [class*=col-] {
  padding-left: 20px;
  padding-right: 20px;
}

.row.sp20,
.sp20 {
  margin-left: -10px;
  margin-right: -10px;
}
.row.sp20 [class*=col-],
.sp20 [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
}

.row.sp16,
.sp16 {
  margin-left: -8px;
  margin-right: -8px;
}
.row.sp16 [class*=col-],
.sp16 [class*=col-] {
  padding-left: 8px;
  padding-right: 8px;
}

.row.sp10,
.sp10 {
  margin-left: -5px;
  margin-right: -5px;
}
.row.sp10 [class*=col-],
.sp10 [class*=col-] {
  padding-left: 5px;
  padding-right: 5px;
}

.row.sp4,
.sp4 {
  margin-left: -2px;
  margin-right: -2px;
}
.row.sp4 [class*=col-],
.sp4 [class*=col-] {
  padding-left: 2px;
  padding-right: 2px;
}

.row.spno,
.spno {
  margin-left: 0;
  margin-right: 0;
}
.row.spno [class*=col-],
.spno [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.modal-backdrop {
  z-index: 99999;
}

.modal {
  z-index: 100000;
}

/* Flaticon */
[class*=flaticon-] {
  font-family: "Flaticon";
}

@media only screen and (max-width: 991px) {
  .ic-order-1 {
    order: 1;
    margin-top: 20px;
  }
}
.content-inner {
  padding-top: 120px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 1400px) {
  .content-inner {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .content-inner {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}

.content-inner-1 {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 1400px) {
  .content-inner-1 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .content-inner-1 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.content-inner-2 {
  padding-top: 120px;
  padding-bottom: 0;
}
@media only screen and (max-width: 1400px) {
  .content-inner-2 {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .content-inner-2 {
    padding-top: 50px;
  }
}

.content-inner-3 {
  padding-top: 60px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .content-inner-3 {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}

.content-inner-4 {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media only screen and (max-width: 1400px) {
  .content-inner-4 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .content-inner-4 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.content-inner-5 {
  padding-top: 120px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 1400px) {
  .content-inner-5 {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .content-inner-5 {
    padding-top: 50px;
    padding-bottom: 0;
  }
}

.mfp-bg {
  z-index: 999999;
}

.mfp-wrap {
  z-index: 1000000;
}

#loading-area {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999999999;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80px;
  background: #fff;
}
#loading-area .loading-inner.style-1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#loading-area .loading-inner.style-1 .wrapper {
  margin: auto;
  position: relative;
  height: 100px;
  width: 100px;
  overflow: hidden;
}
#loading-area .loading-inner.style-1 .wrapper svg,
#loading-area .loading-inner.style-1 .wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
#loading-area .loading-inner.style-1 .wrapper .img1 {
  -webkit-animation: rotate360 5s linear infinite;
  animation: rotate360 5s linear infinite;
}
#loading-area .loading-inner.style-1 .load-text .text-load {
  font-weight: 900;
  letter-spacing: 15px;
  display: inline-block;
  color: rgba(0, 0, 0, 0.15);
  position: relative;
  font-size: 70px;
  line-height: 70px;
  font-size: 40px;
  letter-spacing: 1px;
  text-align: center;
  user-select: none;
  text-transform: uppercase;
}
#loading-area .loading-inner.style-1 .load-text .text-load:before {
  animation: letters-loading 4s infinite;
  color: var(--title);
  content: attr(data-text);
  left: 0;
  opacity: 0;
  top: 0;
  line-height: 70px;
  position: absolute;
  text-transform: uppercase;
}
#loading-area .loading-inner.style-1 .load-text .text-load:nth-child(2):before {
  animation-delay: 0.2s;
}
#loading-area .loading-inner.style-1 .load-text .text-load:nth-child(3):before {
  animation-delay: 0.4s;
}
#loading-area .loading-inner.style-1 .load-text .text-load:nth-child(4):before {
  animation-delay: 0.6s;
}
#loading-area .loading-inner.style-1 .load-text .text-load:nth-child(5):before {
  animation-delay: 0.8s;
}
#loading-area .loading-inner.style-1 .load-text .text-load:nth-child(6):before {
  animation-delay: 1s;
}
#loading-area .loading-inner.style-1 .load-text .text-load:nth-child(7):before {
  animation-delay: 1.2s;
}
#loading-area .loading-inner.style-1 .load-text .text-load:nth-child(8):before {
  animation-delay: 1.4s;
}
@media only screen and (max-width: 575px) {
  #loading-area .loading-inner.style-1 .load-text .text-load {
    font-size: 30px;
  }
  #loading-area .loading-inner.style-1 .wrapper {
    height: 80px;
    width: 80px;
  }
}
#loading-area .loading-inner.style-2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#loading-area .loading-inner.style-2 .wrapper {
  margin: auto;
  position: relative;
  width: 130px;
  overflow: hidden;
}
#loading-area .loading-inner.style-2 .wrapper .cloud {
  width: 60px;
  margin-bottom: -25px;
  margin-top: -24px;
  position: relative;
  -webkit-animation: move1 2s infinite;
  animation: move1 2s infinite;
}
#loading-area .loading-inner.style-2 .load-text .text-load {
  font-weight: 700;
  letter-spacing: 15px;
  display: inline-block;
  color: rgba(0, 0, 0, 0.15);
  position: relative;
  font-size: 70px;
  line-height: 70px;
  font-size: 30px;
  letter-spacing: 1px;
  text-align: center;
  user-select: none;
  text-transform: uppercase;
}
#loading-area .loading-inner.style-2 .load-text .text-load:before {
  animation: letters-loading 4s infinite;
  color: var(--title);
  content: attr(data-text);
  left: 0;
  opacity: 0;
  top: 0;
  line-height: 70px;
  position: absolute;
  text-transform: uppercase;
}
#loading-area .loading-inner.style-2 .load-text .text-load:nth-child(2):before {
  animation-delay: 0.2s;
}
#loading-area .loading-inner.style-2 .load-text .text-load:nth-child(3):before {
  animation-delay: 0.4s;
}
#loading-area .loading-inner.style-2 .load-text .text-load:nth-child(4):before {
  animation-delay: 0.6s;
}
#loading-area .loading-inner.style-2 .load-text .text-load:nth-child(5):before {
  animation-delay: 0.8s;
}
#loading-area .loading-inner.style-2 .load-text .text-load:nth-child(6):before {
  animation-delay: 1s;
}
#loading-area .loading-inner.style-2 .load-text .text-load:nth-child(7):before {
  animation-delay: 1.2s;
}
#loading-area .loading-inner.style-2 .load-text .text-load:nth-child(8):before {
  animation-delay: 1.4s;
}
#loading-area .loading-inner.style-3 {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--primary);
}
#loading-area .loading-inner.style-3 .load-text .text-load {
  font-weight: 900;
  letter-spacing: 15px;
  display: inline-block;
  color: rgba(0, 0, 0, 0.15);
  position: relative;
  font-size: 70px;
  line-height: 70px;
  font-size: 40px;
  letter-spacing: 1px;
  text-align: center;
  user-select: none;
  text-transform: uppercase;
}
#loading-area .loading-inner.style-3 .load-text .text-load:before {
  animation: letters-loading 4s infinite;
  color: var(--title);
  content: attr(data-text);
  left: 0;
  opacity: 0;
  top: 0;
  line-height: 70px;
  position: absolute;
  text-transform: uppercase;
}
#loading-area .loading-inner.style-3 .load-text .text-load:nth-child(2):before {
  animation-delay: 0.2s;
}
#loading-area .loading-inner.style-3 .load-text .text-load:nth-child(3):before {
  animation-delay: 0.4s;
}
#loading-area .loading-inner.style-3 .load-text .text-load:nth-child(4):before {
  animation-delay: 0.6s;
}
#loading-area .loading-inner.style-3 .load-text .text-load:nth-child(5):before {
  animation-delay: 0.8s;
}
#loading-area .loading-inner.style-3 .load-text .text-load:nth-child(6):before {
  animation-delay: 1s;
}
#loading-area .loading-inner.style-3 .load-text .text-load:nth-child(7):before {
  animation-delay: 1.2s;
}
#loading-area .loading-inner.style-3 .load-text .text-load:nth-child(8):before {
  animation-delay: 1.4s;
}
#loading-area .loading-inner.style-3 .wrapper {
  margin: auto;
  position: relative;
  width: 200px;
  text-align: center;
  overflow: hidden;
}
#loading-area .loading-inner.style-3 .wrapper .loading-text {
  color: #212529;
  display: block;
  font-size: 45px;
  font-weight: 200;
  line-height: 1;
}
#loading-area .loading-inner.style-3 .wrapper .counter-text {
  color: #212529;
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 0;
}
#loading-area .loading-inner.style-3 .wrapper .progress {
  height: 1px;
  background-color: #212529;
  margin-top: 5px;
  width: 100%;
}
#loading-area .loading-inner.style-4 {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading-area .loading-inner.style-4 svg #dzplug,
#loading-area .loading-inner.style-4 svg #dzsocket {
  fill: var(--primary);
}
#loading-area .loading-inner.style-4 svg #dzloop {
  fill: none;
  stroke: var(--primary);
  stroke-width: 12;
}
#loading-area .loading-inner.style-4 svg #dzloopoff {
  display: none;
}
#loading-area .loading-inner.style-5 {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading-area .loading-inner.style-5 .loader {
  width: 60px;
  height: 60px;
  margin: 30px auto 0;
  position: relative;
  transform: rotate(45deg) translate3d(0, 0, 0);
  animation: dzLoader 1.2s infinite ease-in-out;
}
#loading-area .loading-inner.style-5 .loader span {
  background: var(--primary);
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  animation: dzLoaderBlock 1.2s infinite ease-in-out both;
}
#loading-area .loading-inner.style-5 .loader span:nth-child(1) {
  top: 0;
  left: 0;
}
#loading-area .loading-inner.style-5 .loader span:nth-child(2) {
  top: 0;
  right: 0;
  animation: dzLoaderBlock2 1.2s infinite ease-in-out both;
}
#loading-area .loading-inner.style-5 .loader span:nth-child(3) {
  bottom: 0;
  left: 0;
  animation: dzLoaderBlock2 1.2s infinite ease-in-out both;
}
#loading-area .loading-inner.style-5 .loader span:nth-child(4) {
  bottom: 0;
  right: 0;
}
@keyframes dzLoader {
  0%, 10%, 100% {
    width: 60px;
    height: 60px;
  }
  65% {
    width: 120px;
    height: 120px;
  }
}
@keyframes dzLoaderBlock {
  0%, 30% {
    transform: rotate(0);
  }
  55% {
    background: var(--secondary);
  }
  100% {
    transform: rotate(90deg);
  }
}
@keyframes dzLoaderBlock2 {
  0%, 20% {
    transform: rotate(0);
  }
  55% {
    background: var(--secondary);
  }
  100% {
    transform: rotate(-90deg);
  }
}
#loading-area.construct-loading {
  background-size: 280px;
  background-image: url(../../images/construction.gif);
  background-repeat: no-repeat;
  background-position: center;
}
#loading-area.food-loading {
  background-size: 400px;
  background-image: url(../../images/food.gif);
  background-repeat: no-repeat;
  background-position: center;
}
#loading-area.agriculture-loading {
  background-size: 180px;
  background-image: url(../../images/agriculture.gif);
  background-repeat: no-repeat;
  background-position: center;
}

@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes rotate360 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes flip {
  35% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes circle {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }
  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}
@keyframes shadow {
  0% {
    transform: scaleX(1.5);
  }
  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }
  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}
@-webkit-keyframes move1 {
  0% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  50% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
  100% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
}
@keyframes move1 {
  0% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  50% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
  100% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
}
.font-10 {
  font-size: 10px;
}

.font-12 {
  font-size: 12px;
}

.font-13 {
  font-size: 13px;
}

.font-14 {
  font-size: 14px;
}

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

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

.font-24 {
  font-size: 24px;
}

.font-26 {
  font-size: 26px;
}

.font-30 {
  font-size: 30px;
}

.font-35 {
  font-size: 35px;
}

.font-40 {
  font-size: 40px;
}

.font-45 {
  font-size: 45px;
}

.font-50 {
  font-size: 50px;
}

.font-55 {
  font-size: 55px;
}

.font-60 {
  font-size: 60px;
}

.font-70 {
  font-size: 70px;
}

.font-75 {
  font-size: 75px;
}

.font-80 {
  font-size: 80px;
}

.font-90 {
  font-size: 90px;
}

.font-100 {
  font-size: 100px;
}

.font-weight-300 {
  font-weight: 300;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-800 {
  font-weight: 800;
}

.font-weight-900 {
  font-weight: 900;
}

.p-a0 {
  padding: 0;
}

.p-a5 {
  padding: 5px;
}

.p-a10 {
  padding: 10px;
}

.p-a15 {
  padding: 15px;
}

.p-a20 {
  padding: 20px;
}

.p-a25 {
  padding: 25px;
}

.p-a30 {
  padding: 30px;
}

.p-a40 {
  padding: 40px;
}

.p-a50 {
  padding: 50px;
}

.p-a60 {
  padding: 60px;
}

.p-a70 {
  padding: 70px;
}

.p-a80 {
  padding: 80px;
}

.p-a90 {
  padding: 90px;
}

.p-a100 {
  padding: 100px;
}

.p-t0 {
  padding-top: 0;
}

.p-t5 {
  padding-top: 5px;
}

.p-t10 {
  padding-top: 10px;
}

.p-t15 {
  padding-top: 15px;
}

.p-t20 {
  padding-top: 20px;
}

.p-t30 {
  padding-top: 30px;
}

.p-t40 {
  padding-top: 40px;
}

.p-t50 {
  padding-top: 50px;
}

.p-t60 {
  padding-top: 60px;
}

.p-t70 {
  padding-top: 70px;
}

.p-t80 {
  padding-top: 80px;
}

.p-t90 {
  padding-top: 90px;
}

.p-t100 {
  padding-top: 100px;
}

.p-b0 {
  padding-bottom: 0;
}

.p-b5 {
  padding-bottom: 5px;
}

.p-b10 {
  padding-bottom: 10px;
}

.p-b15 {
  padding-bottom: 15px;
}

.p-b20 {
  padding-bottom: 20px;
}

.p-b30 {
  padding-bottom: 30px;
}

.p-b40 {
  padding-bottom: 40px;
}

.p-b50 {
  padding-bottom: 50px;
}

.p-b60 {
  padding-bottom: 60px;
}

.p-b70 {
  padding-bottom: 70px;
}

.p-b80 {
  padding-bottom: 80px;
}

.p-b90 {
  padding-bottom: 90px;
}

.p-b100 {
  padding-bottom: 100px;
}

.p-l0 {
  padding-left: 0;
}

.p-l5 {
  padding-left: 5px;
}

.p-l10 {
  padding-left: 10px;
}

.p-l15 {
  padding-left: 15px;
}

.p-l20 {
  padding-left: 20px;
}

.p-l30 {
  padding-left: 30px;
}

.p-l40 {
  padding-left: 40px;
}

.p-l50 {
  padding-left: 50px;
}

.p-l60 {
  padding-left: 60px;
}

.p-l70 {
  padding-left: 70px;
}

.p-l80 {
  padding-left: 80px;
}

.p-l90 {
  padding-left: 90px;
}

.p-l100 {
  padding-left: 100px;
}

.p-r0 {
  padding-right: 0;
}

.p-r5 {
  padding-right: 5px;
}

.p-r10 {
  padding-right: 10px;
}

.p-r15 {
  padding-right: 15px;
}

.p-r20 {
  padding-right: 20px;
}

.p-r30 {
  padding-right: 30px;
}

.p-r40 {
  padding-right: 40px;
}

.p-r50 {
  padding-right: 50px;
}

.p-r60 {
  padding-right: 60px;
}

.p-r70 {
  padding-right: 70px;
}

.p-r80 {
  padding-right: 80px;
}

.p-r90 {
  padding-right: 90px;
}

.p-r100 {
  padding-right: 100px;
}

.p-lr0 {
  padding-left: 0;
  padding-right: 0;
}

.p-lr5 {
  padding-left: 5px;
  padding-right: 5px;
}

.p-lr10 {
  padding-left: 10px;
  padding-right: 10px;
}

.p-lr15 {
  padding-left: 15px;
  padding-right: 15px;
}

.p-lr20 {
  padding-left: 20px;
  padding-right: 20px;
}

.p-lr30 {
  padding-left: 30px;
  padding-right: 30px;
}

.p-lr40 {
  padding-left: 40px;
  padding-right: 40px;
}

.p-lr50 {
  padding-left: 50px;
  padding-right: 50px;
}

.p-lr60 {
  padding-left: 60px;
  padding-right: 60px;
}

.p-lr70 {
  padding-left: 70px;
  padding-right: 70px;
}

.p-lr80 {
  padding-left: 80px;
  padding-right: 80px;
}

.p-lr90 {
  padding-left: 90px;
  padding-right: 90px;
}

.p-lr100 {
  padding-left: 100px;
  padding-right: 100px;
}

.p-tb0 {
  padding-bottom: 0;
  padding-top: 0;
}

.p-tb5 {
  padding-bottom: 5px;
  padding-top: 5px;
}

.p-tb10 {
  padding-bottom: 10px;
  padding-top: 10px;
}

.p-tb15 {
  padding-bottom: 15px;
  padding-top: 15px;
}

.p-tb20 {
  padding-bottom: 20px;
  padding-top: 20px;
}

.p-tb30 {
  padding-bottom: 30px;
  padding-top: 30px;
}

.p-tb40 {
  padding-bottom: 40px;
  padding-top: 40px;
}

.p-tb50 {
  padding-bottom: 50px;
  padding-top: 50px;
}

.p-tb60 {
  padding-bottom: 60px;
  padding-top: 60px;
}

.p-tb70 {
  padding-bottom: 70px;
  padding-top: 70px;
}

.p-tb80 {
  padding-bottom: 80px;
  padding-top: 80px;
}

.p-tb90 {
  padding-bottom: 90px;
  padding-top: 90px;
}

.p-tb100 {
  padding-bottom: 100px;
  padding-top: 100px;
}

.m-auto {
  margin: auto;
}

.m-a0 {
  margin: 0;
}

.m-a5 {
  margin: 5px;
}

.m-a10 {
  margin: 10px;
}

.m-a15 {
  margin: 15px;
}

.m-a20 {
  margin: 20px;
}

.m-a30 {
  margin: 30px;
}

.m-a40 {
  margin: 40px;
}

.m-a50 {
  margin: 50px;
}

.m-a60 {
  margin: 60px;
}

.m-a70 {
  margin: 70px;
}

.m-a80 {
  margin: 80px;
}

.m-a90 {
  margin: 90px;
}

.m-a100 {
  margin: 100px;
}

.m-t0 {
  margin-top: 0;
}

.m-t5 {
  margin-top: 5px;
}

.m-t10 {
  margin-top: 10px;
}

.m-t15 {
  margin-top: 15px;
}

.m-t20 {
  margin-top: 20px;
}

.m-t30 {
  margin-top: 30px;
}

.m-t40 {
  margin-top: 40px;
}

.m-t50 {
  margin-top: 50px;
}

.m-t60 {
  margin-top: 60px;
}

.m-t70 {
  margin-top: 70px;
}

.m-t80 {
  margin-top: 80px;
}

.m-t90 {
  margin-top: 90px;
}

.m-t100 {
  margin-top: 100px;
}

.m-b0 {
  margin-bottom: 0;
}

.m-b5 {
  margin-bottom: 5px;
}

.m-b10 {
  margin-bottom: 10px;
}

.m-b15 {
  margin-bottom: 15px;
}

.m-b20 {
  margin-bottom: 20px;
}

.m-b30 {
  margin-bottom: 30px;
}

.m-b40 {
  margin-bottom: 40px;
}

.m-b50 {
  margin-bottom: 50px;
}

.m-b60 {
  margin-bottom: 60px;
}

.m-b70 {
  margin-bottom: 70px;
}

.m-b80 {
  margin-bottom: 80px;
}

.m-b90 {
  margin-bottom: 90px;
}

.m-b100 {
  margin-bottom: 100px;
}

.m-l0 {
  margin-left: 0;
}

.m-l5 {
  margin-left: 5px;
}

.m-l10 {
  margin-left: 10px;
}

.m-l15 {
  margin-left: 15px;
}

.m-l20 {
  margin-left: 20px;
}

.m-l30 {
  margin-left: 30px;
}

.m-l40 {
  margin-left: 40px;
}

.m-l50 {
  margin-left: 50px;
}

.m-l60 {
  margin-left: 60px;
}

.m-l70 {
  margin-left: 70px;
}

.m-l80 {
  margin-left: 80px;
}

.m-l90 {
  margin-left: 90px;
}

.m-l100 {
  margin-left: 100px;
}

.m-r0 {
  margin-right: 0;
}

.m-r5 {
  margin-right: 5px;
}

.m-r10 {
  margin-right: 10px;
}

.m-r15 {
  margin-right: 15px;
}

.m-r20 {
  margin-right: 20px;
}

.m-r30 {
  margin-right: 30px;
}

.m-r40 {
  margin-right: 40px;
}

.m-r50 {
  margin-right: 50px;
}

.m-r60 {
  margin-right: 60px;
}

.m-r70 {
  margin-right: 70px;
}

.m-r80 {
  margin-right: 80px;
}

.m-r90 {
  margin-right: 90px;
}

.m-r100 {
  margin-right: 100px;
}

.m-lr0 {
  margin-left: 0;
  margin-right: 0;
}

.m-lr5 {
  margin-left: 5px;
  margin-right: 5px;
}

.m-lr10 {
  margin-left: 10px;
  margin-right: 10px;
}

.m-lr15 {
  margin-left: 15px;
  margin-right: 15px;
}

.m-lr20 {
  margin-left: 20px;
  margin-right: 20px;
}

.m-lr30 {
  margin-left: 30px;
  margin-right: 30px;
}

.m-lr40 {
  margin-left: 40px;
  margin-right: 40px;
}

.m-lr50 {
  margin-left: 50px;
  margin-right: 50px;
}

.m-lr60 {
  margin-left: 60px;
  margin-right: 60px;
}

.m-lr70 {
  margin-left: 70px;
  margin-right: 70px;
}

.m-lr80 {
  margin-left: 80px;
  margin-right: 80px;
}

.m-lr90 {
  margin-left: 90px;
  margin-right: 90px;
}

.m-lr100 {
  margin-left: 100px;
  margin-right: 100px;
}

.m-tb0 {
  margin-bottom: 0;
  margin-top: 0;
}

.m-tb5 {
  margin-bottom: 5px;
  margin-top: 5px;
}

.m-tb10 {
  margin-bottom: 10px;
  margin-top: 10px;
}

.m-tb15 {
  margin-bottom: 15px;
  margin-top: 15px;
}

.m-tb20 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.m-tb30 {
  margin-bottom: 30px;
  margin-top: 30px;
}

.m-tb40 {
  margin-bottom: 40px;
  margin-top: 40px;
}

.m-tb50 {
  margin-bottom: 50px;
  margin-top: 50px;
}

.m-tb60 {
  margin-bottom: 60px;
  margin-top: 60px;
}

.m-tb70 {
  margin-bottom: 70px;
  margin-top: 70px;
}

.m-tb80 {
  margin-bottom: 80px;
  margin-top: 80px;
}

.m-tb90 {
  margin-bottom: 90px;
  margin-top: 90px;
}

.m-tb100 {
  margin-bottom: 100px;
  margin-top: 100px;
}

@media only screen and (max-width: 1200px) {
  .m-lg-t0 {
    margin-top: 0;
  }
  .m-lg-t5 {
    margin-top: 5px;
  }
  .m-lg-t10 {
    margin-top: 10px;
  }
  .m-lg-t15 {
    margin-top: 15px;
  }
  .m-lg-t20 {
    margin-top: 20px;
  }
  .m-lg-t30 {
    margin-top: 30px;
  }
  .m-lg-t40 {
    margin-top: 40px;
  }
  .m-lg-t50 {
    margin-top: 50px;
  }
  .m-lg-t60 {
    margin-top: 60px;
  }
  .m-lg-t70 {
    margin-top: 70px;
  }
  .m-lg-t80 {
    margin-top: 80px;
  }
  .m-lg-t90 {
    margin-top: 90px;
  }
  .m-lg-t100 {
    margin-top: 100px;
  }
  .m-lg-b0 {
    margin-bottom: 0;
  }
  .m-lg-b5 {
    margin-bottom: 5px;
  }
  .m-lg-b10 {
    margin-bottom: 10px;
  }
  .m-lg-b15 {
    margin-bottom: 15px;
  }
  .m-lg-b20 {
    margin-bottom: 20px;
  }
  .m-lg-b30 {
    margin-bottom: 30px;
  }
  .m-lg-b40 {
    margin-bottom: 40px;
  }
  .m-lg-b50 {
    margin-bottom: 50px;
  }
  .m-lg-b60 {
    margin-bottom: 60px;
  }
  .m-lg-b70 {
    margin-bottom: 70px;
  }
  .m-lg-b80 {
    margin-bottom: 80px;
  }
  .m-lg-b90 {
    margin-bottom: 90px;
  }
  .m-lg-b100 {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .m-md-t0 {
    margin-top: 0;
  }
  .m-md-t5 {
    margin-top: 5px;
  }
  .m-md-t10 {
    margin-top: 10px;
  }
  .m-md-t15 {
    margin-top: 15px;
  }
  .m-md-t20 {
    margin-top: 20px;
  }
  .m-md-t30 {
    margin-top: 30px;
  }
  .m-md-t40 {
    margin-top: 40px;
  }
  .m-md-t50 {
    margin-top: 50px;
  }
  .m-md-t60 {
    margin-top: 60px;
  }
  .m-md-t70 {
    margin-top: 70px;
  }
  .m-md-t80 {
    margin-top: 80px;
  }
  .m-md-t90 {
    margin-top: 90px;
  }
  .m-md-t100 {
    margin-top: 100px;
  }
  .m-md-b0 {
    margin-bottom: 0;
  }
  .m-md-b5 {
    margin-bottom: 5px;
  }
  .m-md-b10 {
    margin-bottom: 10px;
  }
  .m-md-b15 {
    margin-bottom: 15px;
  }
  .m-md-b20 {
    margin-bottom: 20px;
  }
  .m-md-b30 {
    margin-bottom: 30px;
  }
  .m-md-b40 {
    margin-bottom: 40px;
  }
  .m-md-b50 {
    margin-bottom: 50px;
  }
  .m-md-b60 {
    margin-bottom: 60px;
  }
  .m-md-b70 {
    margin-bottom: 70px;
  }
  .m-md-b80 {
    margin-bottom: 80px;
  }
  .m-md-b90 {
    margin-bottom: 90px;
  }
  .m-md-b100 {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .m-sm-t0 {
    margin-top: 0;
  }
  .m-sm-t5 {
    margin-top: 5px;
  }
  .m-sm-t10 {
    margin-top: 10px;
  }
  .m-sm-t15 {
    margin-top: 15px;
  }
  .m-sm-t20 {
    margin-top: 20px;
  }
  .m-sm-t30 {
    margin-top: 30px;
  }
  .m-sm-t40 {
    margin-top: 40px;
  }
  .m-sm-t50 {
    margin-top: 50px;
  }
  .m-sm-t60 {
    margin-top: 60px;
  }
  .m-sm-t70 {
    margin-top: 70px;
  }
  .m-sm-t80 {
    margin-top: 80px;
  }
  .m-sm-t90 {
    margin-top: 90px;
  }
  .m-sm-t100 {
    margin-top: 100px;
  }
  .m-sm-b0 {
    margin-bottom: 0;
  }
  .m-sm-b5 {
    margin-bottom: 5px;
  }
  .m-sm-b10 {
    margin-bottom: 10px;
  }
  .m-sm-b15 {
    margin-bottom: 15px;
  }
  .m-sm-b20 {
    margin-bottom: 20px;
  }
  .m-sm-b30 {
    margin-bottom: 30px;
  }
  .m-sm-b40 {
    margin-bottom: 40px;
  }
  .m-sm-b50 {
    margin-bottom: 50px;
  }
  .m-sm-b60 {
    margin-bottom: 60px;
  }
  .m-sm-b70 {
    margin-bottom: 70px;
  }
  .m-sm-b80 {
    margin-bottom: 80px;
  }
  .m-sm-b90 {
    margin-bottom: 90px;
  }
  .m-sm-b100 {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 576px) {
  .m-xs-t0 {
    margin-top: 0;
  }
  .m-xs-t5 {
    margin-top: 5px;
  }
  .m-xs-t10 {
    margin-top: 10px;
  }
  .m-xs-t15 {
    margin-top: 15px;
  }
  .m-xs-t20 {
    margin-top: 20px;
  }
  .m-xs-t30 {
    margin-top: 30px;
  }
  .m-xs-t40 {
    margin-top: 40px;
  }
  .m-xs-t50 {
    margin-top: 50px;
  }
  .m-xs-t60 {
    margin-top: 60px;
  }
  .m-xs-t70 {
    margin-top: 70px;
  }
  .m-xs-t80 {
    margin-top: 80px;
  }
  .m-xs-t90 {
    margin-top: 90px;
  }
  .m-xs-t100 {
    margin-top: 100px;
  }
  .m-xs-b0 {
    margin-bottom: 0;
  }
  .m-xs-b5 {
    margin-bottom: 5px;
  }
  .m-xs-b10 {
    margin-bottom: 10px;
  }
  .m-xs-b15 {
    margin-bottom: 15px;
  }
  .m-xs-b20 {
    margin-bottom: 20px;
  }
  .m-xs-b30 {
    margin-bottom: 30px;
  }
  .m-xs-b40 {
    margin-bottom: 40px;
  }
  .m-xs-b50 {
    margin-bottom: 50px;
  }
  .m-xs-b60 {
    margin-bottom: 60px;
  }
  .m-xs-b70 {
    margin-bottom: 70px;
  }
  .m-xs-b80 {
    margin-bottom: 80px;
  }
  .m-xs-b90 {
    margin-bottom: 90px;
  }
  .m-xs-b100 {
    margin-bottom: 100px;
  }
}
.max-w50 {
  max-width: 50px;
}

.max-w60 {
  max-width: 60px;
}

.max-w80 {
  max-width: 80px;
}

.max-w100 {
  max-width: 100px;
}

.max-w200 {
  max-width: 200px;
}

.max-w300 {
  max-width: 300px;
}

.max-w400 {
  max-width: 400px;
}

.max-w500 {
  max-width: 500px;
}

.max-w600 {
  max-width: 600px;
}

.max-w700 {
  max-width: 700px;
}

.max-w800 {
  max-width: 800px;
}

.max-w900 {
  max-width: 900px;
}

.max-w1000 {
  max-width: 1000px;
}

.bg-img-fix {
  background-attachment: unset;
  background-size: cover;
}

.full-img {
  width: 100%;
}

.sticky-top {
  top: 120px;
}

.page-title {
  padding: 65px 0px 45px;
  position: relative;
  background: #f7f6fb;
  background-image: url("./../images/hero/5.png");
  background-size: cover;
  background-position: center;
}
.page-title p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #7272A8;
  text-transform: capitalize;
}
@media only screen and (max-width: 575px) {
  .page-title p {
    font-size: 16px;
  }
}
.page-title h3, .page-title .h3 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: capitalize;
}
@media only screen and (max-width: 575px) {
  .page-title h3, .page-title .h3 {
    font-size: 28px;
  }
}

.img-cover {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

section {
  position: relative;
  z-index: 1;
}

.section-head {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
  .section-head {
    margin-bottom: 30px;
  }
}
.section-head h1, .section-head .h1, .section-head h2, .section-head .h2, .section-head h3, .section-head .h3, .section-head h4, .section-head .h4, .section-head h5, .section-head .h5, .section-head h6, .section-head .h6 {
  font-family: var(--font-family-title);
}
.section-head p {
  font-size: 15px;
  line-height: 1.5;
}
.section-head.text-center p {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.row.spno,
.spno {
  margin-left: 0;
  margin-right: 0;
}
.row.spno [class*=col],
.row.spno [class*=col],
.spno [class*=col],
.spno [class*=col] {
  padding-left: 0;
  padding-right: 0;
}

.row.sp4,
.sp4 {
  margin-left: -4px;
  margin-right: -4px;
}
.row.sp4 [class*=col],
.row.sp4 [class*=col],
.sp4 [class*=col],
.sp4 [class*=col] {
  padding-left: 4px;
  padding-right: 4px;
}

.row.sp15,
.sp15 {
  margin-left: -7px;
  margin-right: -7px;
}
.row.sp15 [class*=col],
.row.sp15 [class*=col],
.sp15 [class*=col],
.sp15 [class*=col] {
  padding-left: 7px;
  padding-right: 7px;
}

.row.sp10,
.sp10 {
  margin-left: -10px;
  margin-right: -10px;
}
.row.sp10 [class*=col],
.row.sp10 [class*=col],
.sp10 [class*=col],
.sp10 [class*=col] {
  padding-left: 10px;
  padding-right: 10px;
}

.rounded-xl {
  border-radius: 30px !important;
}

.rounded-lg {
  border-radius: var(--border-radius-lg);
}

.rounded-sm {
  border-radius: var(--border-radius-sm);
}

.rounded-base {
  border-radius: var(--border-radius-base);
}

.text-maroon {
  color: #9e0168;
}

.text-orange {
  color: #ff8853;
}

.text-yellow {
  color: #ffa808;
}

.text-skyblue {
  color: #029e76;
}

.text-red {
  color: #ff586e;
}

.text-green {
  color: #029e76;
}

.text-blue {
  color: #5543d1;
}

.bg-maroon {
  background-color: #9e0168;
}

.bg-orange {
  background-color: #ff8853;
}

.bg-yellow {
  background-color: #ffa808;
}

.bg-skyblue {
  background-color: #00aeff;
}

.bg-red {
  background-color: #ff586e;
}

.bg-green {
  background-color: #029e76;
}

.bg-blue {
  background-color: #5543d1;
}

.scale8 {
  transform: scale(1.85);
  -moz-transform: scale(1.85);
  -webkit-transform: scale(1.85);
  -ms-transform: scale(1.85);
  -o-transform: scale(1.85);
}

.scale7 {
  transform: scale(1.7);
  -moz-transform: scale(1.7);
  -webkit-transform: scale(1.7);
  -ms-transform: scale(1.7);
  -o-transform: scale(1.7);
}

.scale5 {
  transform: scale(1.5);
  -moz-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
}

.scale3 {
  transform: scale(1.3);
  -moz-transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}

.scale2 {
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.scale08 {
  transform: scale(0.8);
  -moz-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
}

.scale05 {
  transform: scale(0.5);
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
}

.tl {
  transform-origin: left;
  -moz-transform-origin: left;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* @import url('../icons/font-awesome/css/all.min.css');
@import url('../icons/flaticon/flaticon.css');
@import url('../icons/themify/themify-icons.css'); */
.card {
  border: 0px solid #E1E1F0;
  margin-bottom: 30px;
  border-radius: 5px;
  box-shadow: 0px 36px 48px rgba(31, 66, 135, 0.04);
  background: #fff;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E1E1F0;
  background: #fff;
  padding: 20px 30px;
}
.card-title {
  font-size: 24px;
  margin-bottom: 0px;
}
.card .card-body {
  padding: 20px 30px;
  background: #fff;
  border-radius: 15px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #777777;
  margin-bottom: 10px;
  background: transparent;
  border-color: #E1E1F0;
}

.form-control, .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-url input,
.comment-respond .comment-form p textarea, .wp-block-categories-dropdown select,
.wp-block-archives-dropdown select {
  height: 60px;
  border: 1px solid #cccccc;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  color: #777777;
  transition: all 0.3s ease-in-out;
  background: #fff;
  border-radius: var(--border-radius-sm);
}
.form-control .select, .comment-respond .comment-form p.comment-form-author input .select, .comment-respond .comment-form p.comment-form-email input .select, .comment-respond .comment-form p.comment-form-url input .select,
.comment-respond .comment-form p textarea .select, .wp-block-categories-dropdown select .select,
.wp-block-archives-dropdown select .select {
  padding: 12px 0;
}
.form-control span, .comment-respond .comment-form p.comment-form-author input span, .comment-respond .comment-form p.comment-form-email input span, .comment-respond .comment-form p.comment-form-url input span,
.comment-respond .comment-form p textarea span, .wp-block-categories-dropdown select span,
.wp-block-archives-dropdown select span {
  margin-top: 0;
}
.form-control::-webkit-input-placeholder, .comment-respond .comment-form p.comment-form-author input::-webkit-input-placeholder, .comment-respond .comment-form p.comment-form-email input::-webkit-input-placeholder, .comment-respond .comment-form p.comment-form-url input::-webkit-input-placeholder,
.comment-respond .comment-form p textarea::-webkit-input-placeholder, .wp-block-categories-dropdown select::-webkit-input-placeholder,
.wp-block-archives-dropdown select::-webkit-input-placeholder {
  color: #777777;
}
.form-control:-ms-input-placeholder, .comment-respond .comment-form p.comment-form-author input:-ms-input-placeholder, .comment-respond .comment-form p.comment-form-email input:-ms-input-placeholder, .comment-respond .comment-form p.comment-form-url input:-ms-input-placeholder,
.comment-respond .comment-form p textarea:-ms-input-placeholder, .wp-block-categories-dropdown select:-ms-input-placeholder,
.wp-block-archives-dropdown select:-ms-input-placeholder {
  color: #777777;
}
.form-control::placeholder, .comment-respond .comment-form p.comment-form-author input::placeholder, .comment-respond .comment-form p.comment-form-email input::placeholder, .comment-respond .comment-form p.comment-form-url input::placeholder,
.comment-respond .comment-form p textarea::placeholder, .wp-block-categories-dropdown select::placeholder,
.wp-block-archives-dropdown select::placeholder {
  color: #777777;
}
.form-control:focus, .comment-respond .comment-form p.comment-form-author input:focus, .comment-respond .comment-form p.comment-form-email input:focus, .comment-respond .comment-form p.comment-form-url input:focus,
.comment-respond .comment-form p textarea:focus, .wp-block-categories-dropdown select:focus,
.wp-block-archives-dropdown select:focus, .form-control:active, .comment-respond .comment-form p.comment-form-author input:active, .comment-respond .comment-form p.comment-form-email input:active, .comment-respond .comment-form p.comment-form-url input:active,
.comment-respond .comment-form p textarea:active, .wp-block-categories-dropdown select:active,
.wp-block-archives-dropdown select:active, .form-control.active, .comment-respond .comment-form p.comment-form-author input.active, .comment-respond .comment-form p.comment-form-email input.active, .comment-respond .comment-form p.comment-form-url input.active,
.comment-respond .comment-form p textarea.active, .wp-block-categories-dropdown select.active,
.wp-block-archives-dropdown select.active {
  border-color: var(--primary);
}
.form-control.style-1, .comment-respond .comment-form p.comment-form-author input.style-1, .comment-respond .comment-form p.comment-form-email input.style-1, .comment-respond .comment-form p.comment-form-url input.style-1,
.comment-respond .comment-form p textarea.style-1, .wp-block-categories-dropdown select.style-1,
.wp-block-archives-dropdown select.style-1 {
  height: 60px;
  border: 1px solid transparent;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  color: #777777;
  transition: all 0.3s ease-in-out;
  background: #e7e7e7;
}
.form-control.style-1:focus, .comment-respond .comment-form p.comment-form-author input.style-1:focus, .comment-respond .comment-form p.comment-form-email input.style-1:focus, .comment-respond .comment-form p.comment-form-url input.style-1:focus,
.comment-respond .comment-form p textarea.style-1:focus, .wp-block-categories-dropdown select.style-1:focus,
.wp-block-archives-dropdown select.style-1:focus, .form-control.style-1:active, .comment-respond .comment-form p.comment-form-author input.style-1:active, .comment-respond .comment-form p.comment-form-email input.style-1:active, .comment-respond .comment-form p.comment-form-url input.style-1:active,
.comment-respond .comment-form p textarea.style-1:active, .wp-block-categories-dropdown select.style-1:active,
.wp-block-archives-dropdown select.style-1:active, .form-control.style-1.active, .comment-respond .comment-form p.comment-form-author input.style-1.active, .comment-respond .comment-form p.comment-form-email input.style-1.active, .comment-respond .comment-form p.comment-form-url input.style-1.active,
.comment-respond .comment-form p textarea.style-1.active, .wp-block-categories-dropdown select.style-1.active,
.wp-block-archives-dropdown select.style-1.active {
  border-color: var(--primary);
  background: transparent;
}

textarea.form-control,
.comment-respond .comment-form p textarea {
  min-height: 120px;
}

textarea {
  height: 120px;
  resize: none;
}

input:-internal-autofill-selected {
  background: white;
  background-image: none;
  color: -internal-light-dark-color(black, white);
}

.input-group-text {
  padding: 5px 15px;
  background: #ffffff;
  margin-bottom: 0px;
  color: #777777;
  border-color: transparent;
}

.toggle {
  cursor: pointer;
  display: block;
}

.toggle-switch {
  display: inline-block;
  background: #f7f7f7;
  border-radius: 16px;
  width: 45px;
  height: 20px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.toggle-switch:before, .toggle-switch:after {
  content: "";
}
.toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 1px;
  left: 3px;
  transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
}
.toggle-checkbox:checked + .toggle-switch {
  background: var(--primary);
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 26px;
}

.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

.toggle-label {
  margin-left: 15px;
  position: relative;
  top: 2px;
  font-size: 16px;
  font-weight: 400;
}

.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: calc(1.5em + 1rem + 2px);
  border: 1px solid #E1E1F0;
  border-radius: 5px;
  color: #AEAED5;
}
.file-upload-wrapper:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  padding: 4px 15px;
  display: block;
  width: calc(100% - 40px);
  pointer-events: none;
  z-index: 20;
  height: calc(1.5em + 1rem + 2px);
  line-height: 30px;
  border-radius: 5px 10px 10px 5px;
  font-weight: 400;
  overflow: hidden;
}
.file-upload-wrapper:before {
  content: "Upload";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  height: calc(1.5em + 1rem + 2px);
  background: var(--primary);
  color: #fff;
  font-weight: 400;
  z-index: 25;
  font-size: 14px;
  line-height: 40px;
  padding: 0 15px;
  text-transform: capitalize;
  pointer-events: none;
  border-radius: 0 5px 5px 0;
}
.file-upload-wrapper:hover:before {
  background: #d80b0c;
}
.file-upload-wrapper input {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  height: calc(1.5em + 1rem + 2px);
  margin: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  width: 100%;
}

#ui-datepicker-div {
  display: none;
  background: #fafafa;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  margin-top: 0.25rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.ui-datepicker-calendar thead th {
  padding: 0.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  color: #777777;
}
.ui-datepicker-calendar tbody td {
  width: 2.5rem;
  text-align: center;
  padding: 0;
}
.ui-datepicker-calendar tbody td a {
  display: block;
  border-radius: 0.25rem;
  line-height: 2rem;
  transition: 0.3s all;
  color: #777777;
  font-size: 0.875rem;
  text-decoration: none;
}
.ui-datepicker-calendar tbody td a:hover {
  background-color: var(--primary);
  color: white;
}
.ui-datepicker-calendar tbody td a.ui-state-active {
  background-color: var(--primary);
  color: white;
}

.ui-datepicker-header a.ui-corner-all {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
  border-radius: 0.25rem;
  transition: 0.3s all;
}
.ui-datepicker-header a.ui-corner-all:hover {
  background-color: #fbb4b4;
  color: #fff;
}
.ui-datepicker-header a.ui-datepicker-prev {
  left: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 0.5rem;
  background-position: 50%;
  transform: rotate(180deg);
}
.ui-datepicker-header a.ui-datepicker-next {
  right: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: 50%;
}
.ui-datepicker-header a > span {
  display: none;
}

.ui-datepicker-title {
  text-align: center;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding-bottom: 0.25rem;
}

.ui-datepicker-week-col {
  color: #777777;
  font-weight: 400;
  font-size: 0.75rem;
}

label.error {
  color: #ff5269;
  position: absolute;
  bottom: 0;
  margin-bottom: -22px;
  font-size: 12px;
  font-weight: 400;
}

.nice-select {
  display: flex;
  align-items: center;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.nice-select ul {
  width: 100%;
}
.nice-select .list {
  background: #212529;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #212529;
  color: var(--primary);
}

.nice-select .list {
  background: #212529;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #212529;
  color: var(--primary);
}

.form-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

.form-select {
  border: 1px solid transparent;
}
.form-select .dropdown-toggle {
  border: 0;
  padding: 0;
  font-weight: normal;
  text-transform: unset;
  outline: none;
}
.form-select .dropdown-toggle:focus {
  outline: 0;
  outline-offset: 0;
}
.form-select .dropdown-toggle:after {
  content: none;
}
.form-select.show {
  box-shadow: none;
  outline: 0px;
}
.form-select.show .dropdown-toggle {
  box-shadow: none;
  outline: 0px;
}
.form-select.show.btn-group .dropdown-menu.inner {
  display: block;
}
.form-select .dropdown-menu {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-top: -1px;
  padding: 10px 0;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  font-size: 14px;
}
.form-select .dropdown-menu ul li {
  padding: 0;
}
.form-select .dropdown-menu ul li a {
  display: block;
  padding: 8px 20px;
  clear: both;
  font-weight: 400;
  color: #333;
  white-space: nowrap;
}
.form-select .dropdown-menu ul li a img {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  margin-right: 5px;
}
.form-select .dropdown-menu ul li a:hover {
  background-color: #f2f2f4;
}
.form-select .dropdown-menu ul li.selected a {
  background-color: var(--primary);
  color: #fff;
}
.form-select:focus, .form-select:active, .form-select.active {
  border-color: var(--primary);
}

.form-select.btn-group {
  padding: 10px 20px;
  border-width: 1px;
}
.form-select.btn-group.show {
  box-shadow: 0 0px 10px 4px rgba(31, 66, 135, 0.1);
  border-color: var(--primary);
}
.form-select.btn-group .form-control .dropdown-toggle.btn-default, .form-select.btn-group .comment-respond .comment-form p.comment-form-author input .dropdown-toggle.btn-default, .comment-respond .comment-form p.comment-form-author .form-select.btn-group input .dropdown-toggle.btn-default, .form-select.btn-group .comment-respond .comment-form p.comment-form-email input .dropdown-toggle.btn-default, .comment-respond .comment-form p.comment-form-email .form-select.btn-group input .dropdown-toggle.btn-default, .form-select.btn-group .comment-respond .comment-form p.comment-form-url input .dropdown-toggle.btn-default, .comment-respond .comment-form p.comment-form-url .form-select.btn-group input .dropdown-toggle.btn-default,
.form-select.btn-group .comment-respond .comment-form p textarea .dropdown-toggle.btn-default,
.comment-respond .comment-form p .form-select.btn-group textarea .dropdown-toggle.btn-default, .form-select.btn-group .wp-block-categories-dropdown select .dropdown-toggle.btn-default, .wp-block-categories-dropdown .form-select.btn-group select .dropdown-toggle.btn-default,
.form-select.btn-group .wp-block-archives-dropdown select .dropdown-toggle.btn-default,
.wp-block-archives-dropdown .form-select.btn-group select .dropdown-toggle.btn-default {
  padding: 0;
}
.form-select.btn-group .dropdown-toggle .caret {
  font-size: 10px;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
.form-select.btn-group .dropdown-toggle .caret:before {
  content: "\f078";
}

.custom-file-label {
  box-shadow: 0 0px 10px 4px rgba(31, 66, 135, 0.1);
  height: 45px;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 15px;
  border-color: transparent;
}
.custom-file-label:after {
  content: none;
}

.ic-form.radius-no .form-control, .ic-form.radius-no .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-author .ic-form.radius-no input, .ic-form.radius-no .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-email .ic-form.radius-no input, .ic-form.radius-no .comment-respond .comment-form p.comment-form-url input, .comment-respond .comment-form p.comment-form-url .ic-form.radius-no input,
.ic-form.radius-no .comment-respond .comment-form p textarea,
.comment-respond .comment-form p .ic-form.radius-no textarea, .ic-form.radius-no .wp-block-categories-dropdown select, .wp-block-categories-dropdown .ic-form.radius-no select,
.ic-form.radius-no .wp-block-archives-dropdown select,
.wp-block-archives-dropdown .ic-form.radius-no select {
  border-radius: 0;
}
.ic-form .form-control, .ic-form .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-author .ic-form input, .ic-form .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-email .ic-form input, .ic-form .comment-respond .comment-form p.comment-form-url input, .comment-respond .comment-form p.comment-form-url .ic-form input,
.ic-form .comment-respond .comment-form p textarea,
.comment-respond .comment-form p .ic-form textarea, .ic-form .wp-block-categories-dropdown select, .wp-block-categories-dropdown .ic-form select,
.ic-form .wp-block-archives-dropdown select,
.wp-block-archives-dropdown .ic-form select {
  border-radius: var(--border-radius-sm);
}
.ic-form.style-1 {
  padding: 50px;
  z-index: 1;
  position: relative;
  border-radius: var(--border-radius-base);
}
.ic-form.style-1 .form-control, .ic-form.style-1 .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-author .ic-form.style-1 input, .ic-form.style-1 .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-email .ic-form.style-1 input, .ic-form.style-1 .comment-respond .comment-form p.comment-form-url input, .comment-respond .comment-form p.comment-form-url .ic-form.style-1 input,
.ic-form.style-1 .comment-respond .comment-form p textarea,
.comment-respond .comment-form p .ic-form.style-1 textarea, .ic-form.style-1 .wp-block-categories-dropdown select, .wp-block-categories-dropdown .ic-form.style-1 select,
.ic-form.style-1 .wp-block-archives-dropdown select,
.wp-block-archives-dropdown .ic-form.style-1 select {
  background: rgba(145, 145, 145, 0.3);
  border: 0;
  color: #051136;
  border-radius: var(--border-radius-sm);
}
.ic-form.style-1 .form-control::-webkit-input-placeholder, .ic-form.style-1 .comment-respond .comment-form p.comment-form-author input::-webkit-input-placeholder, .comment-respond .comment-form p.comment-form-author .ic-form.style-1 input::-webkit-input-placeholder, .ic-form.style-1 .comment-respond .comment-form p.comment-form-email input::-webkit-input-placeholder, .comment-respond .comment-form p.comment-form-email .ic-form.style-1 input::-webkit-input-placeholder, .ic-form.style-1 .comment-respond .comment-form p.comment-form-url input::-webkit-input-placeholder, .comment-respond .comment-form p.comment-form-url .ic-form.style-1 input::-webkit-input-placeholder,
.ic-form.style-1 .comment-respond .comment-form p textarea::-webkit-input-placeholder,
.comment-respond .comment-form p .ic-form.style-1 textarea::-webkit-input-placeholder, .ic-form.style-1 .wp-block-categories-dropdown select::-webkit-input-placeholder, .wp-block-categories-dropdown .ic-form.style-1 select::-webkit-input-placeholder,
.ic-form.style-1 .wp-block-archives-dropdown select::-webkit-input-placeholder,
.wp-block-archives-dropdown .ic-form.style-1 select::-webkit-input-placeholder {
  color: #fff;
}
.ic-form.style-1 .form-control:-ms-input-placeholder, .ic-form.style-1 .comment-respond .comment-form p.comment-form-author input:-ms-input-placeholder, .comment-respond .comment-form p.comment-form-author .ic-form.style-1 input:-ms-input-placeholder, .ic-form.style-1 .comment-respond .comment-form p.comment-form-email input:-ms-input-placeholder, .comment-respond .comment-form p.comment-form-email .ic-form.style-1 input:-ms-input-placeholder, .ic-form.style-1 .comment-respond .comment-form p.comment-form-url input:-ms-input-placeholder, .comment-respond .comment-form p.comment-form-url .ic-form.style-1 input:-ms-input-placeholder,
.ic-form.style-1 .comment-respond .comment-form p textarea:-ms-input-placeholder,
.comment-respond .comment-form p .ic-form.style-1 textarea:-ms-input-placeholder, .ic-form.style-1 .wp-block-categories-dropdown select:-ms-input-placeholder, .wp-block-categories-dropdown .ic-form.style-1 select:-ms-input-placeholder,
.ic-form.style-1 .wp-block-archives-dropdown select:-ms-input-placeholder,
.wp-block-archives-dropdown .ic-form.style-1 select:-ms-input-placeholder {
  color: #fff;
}
.ic-form.style-1 .form-control::placeholder, .ic-form.style-1 .comment-respond .comment-form p.comment-form-author input::placeholder, .comment-respond .comment-form p.comment-form-author .ic-form.style-1 input::placeholder, .ic-form.style-1 .comment-respond .comment-form p.comment-form-email input::placeholder, .comment-respond .comment-form p.comment-form-email .ic-form.style-1 input::placeholder, .ic-form.style-1 .comment-respond .comment-form p.comment-form-url input::placeholder, .comment-respond .comment-form p.comment-form-url .ic-form.style-1 input::placeholder,
.ic-form.style-1 .comment-respond .comment-form p textarea::placeholder,
.comment-respond .comment-form p .ic-form.style-1 textarea::placeholder, .ic-form.style-1 .wp-block-categories-dropdown select::placeholder, .wp-block-categories-dropdown .ic-form.style-1 select::placeholder,
.ic-form.style-1 .wp-block-archives-dropdown select::placeholder,
.wp-block-archives-dropdown .ic-form.style-1 select::placeholder {
  color: #051136;
}
.ic-form.style-1 textarea {
  height: unset;
  min-height: unset;
  padding: 15px 20px;
}
@media only screen and (max-width: 767px) {
  .ic-form.style-1 {
    padding: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .ic-form.style-1 {
    padding: 25px;
  }
  .ic-form.style-1 .section-head {
    margin-bottom: 20px;
  }
}
.ic-form.style-2 .form-control, .ic-form.style-2 .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-author .ic-form.style-2 input, .ic-form.style-2 .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-email .ic-form.style-2 input, .ic-form.style-2 .comment-respond .comment-form p.comment-form-url input, .comment-respond .comment-form p.comment-form-url .ic-form.style-2 input,
.ic-form.style-2 .comment-respond .comment-form p textarea,
.comment-respond .comment-form p .ic-form.style-2 textarea, .ic-form.style-2 .wp-block-categories-dropdown select, .wp-block-categories-dropdown .ic-form.style-2 select,
.ic-form.style-2 .wp-block-archives-dropdown select,
.wp-block-archives-dropdown .ic-form.style-2 select {
  height: 60px;
  border: 1px solid transparent;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  color: #777777;
  transition: all 0.3s ease-in-out;
  background: #e7e7e7;
}
.ic-form.style-2 .form-control:focus, .ic-form.style-2 .comment-respond .comment-form p.comment-form-author input:focus, .comment-respond .comment-form p.comment-form-author .ic-form.style-2 input:focus, .ic-form.style-2 .comment-respond .comment-form p.comment-form-email input:focus, .comment-respond .comment-form p.comment-form-email .ic-form.style-2 input:focus, .ic-form.style-2 .comment-respond .comment-form p.comment-form-url input:focus, .comment-respond .comment-form p.comment-form-url .ic-form.style-2 input:focus,
.ic-form.style-2 .comment-respond .comment-form p textarea:focus,
.comment-respond .comment-form p .ic-form.style-2 textarea:focus, .ic-form.style-2 .wp-block-categories-dropdown select:focus, .wp-block-categories-dropdown .ic-form.style-2 select:focus,
.ic-form.style-2 .wp-block-archives-dropdown select:focus,
.wp-block-archives-dropdown .ic-form.style-2 select:focus, .ic-form.style-2 .form-control:active, .ic-form.style-2 .comment-respond .comment-form p.comment-form-author input:active, .comment-respond .comment-form p.comment-form-author .ic-form.style-2 input:active, .ic-form.style-2 .comment-respond .comment-form p.comment-form-email input:active, .comment-respond .comment-form p.comment-form-email .ic-form.style-2 input:active, .ic-form.style-2 .comment-respond .comment-form p.comment-form-url input:active, .comment-respond .comment-form p.comment-form-url .ic-form.style-2 input:active,
.ic-form.style-2 .comment-respond .comment-form p textarea:active,
.comment-respond .comment-form p .ic-form.style-2 textarea:active, .ic-form.style-2 .wp-block-categories-dropdown select:active, .wp-block-categories-dropdown .ic-form.style-2 select:active,
.ic-form.style-2 .wp-block-archives-dropdown select:active,
.wp-block-archives-dropdown .ic-form.style-2 select:active, .ic-form.style-2 .form-control.active, .ic-form.style-2 .comment-respond .comment-form p.comment-form-author input.active, .comment-respond .comment-form p.comment-form-author .ic-form.style-2 input.active, .ic-form.style-2 .comment-respond .comment-form p.comment-form-email input.active, .comment-respond .comment-form p.comment-form-email .ic-form.style-2 input.active, .ic-form.style-2 .comment-respond .comment-form p.comment-form-url input.active, .comment-respond .comment-form p.comment-form-url .ic-form.style-2 input.active,
.ic-form.style-2 .comment-respond .comment-form p textarea.active,
.comment-respond .comment-form p .ic-form.style-2 textarea.active, .ic-form.style-2 .wp-block-categories-dropdown select.active, .wp-block-categories-dropdown .ic-form.style-2 select.active,
.ic-form.style-2 .wp-block-archives-dropdown select.active,
.wp-block-archives-dropdown .ic-form.style-2 select.active {
  border-color: var(--primary);
  background: transparent;
}
.ic-form.style-3 .input-group-prepend + .form-control, .ic-form.style-3 .comment-respond .comment-form p.comment-form-author .input-group-prepend + input, .comment-respond .comment-form p.comment-form-author .ic-form.style-3 .input-group-prepend + input, .ic-form.style-3 .comment-respond .comment-form p.comment-form-email .input-group-prepend + input, .comment-respond .comment-form p.comment-form-email .ic-form.style-3 .input-group-prepend + input, .ic-form.style-3 .comment-respond .comment-form p.comment-form-url .input-group-prepend + input, .comment-respond .comment-form p.comment-form-url .ic-form.style-3 .input-group-prepend + input,
.ic-form.style-3 .comment-respond .comment-form p .input-group-prepend + textarea,
.comment-respond .comment-form p .ic-form.style-3 .input-group-prepend + textarea, .ic-form.style-3 .wp-block-categories-dropdown .input-group-prepend + select, .wp-block-categories-dropdown .ic-form.style-3 .input-group-prepend + select,
.ic-form.style-3 .wp-block-archives-dropdown .input-group-prepend + select,
.wp-block-archives-dropdown .ic-form.style-3 .input-group-prepend + select,
.ic-form.style-3 .input-group-prepend + .form-control + .bootstrap-select,
.ic-form.style-3 .comment-respond .comment-form p.comment-form-author .input-group-prepend + input + .bootstrap-select,
.comment-respond .comment-form p.comment-form-author .ic-form.style-3 .input-group-prepend + input + .bootstrap-select,
.ic-form.style-3 .comment-respond .comment-form p.comment-form-email .input-group-prepend + input + .bootstrap-select,
.comment-respond .comment-form p.comment-form-email .ic-form.style-3 .input-group-prepend + input + .bootstrap-select,
.ic-form.style-3 .comment-respond .comment-form p.comment-form-url .input-group-prepend + input + .bootstrap-select,
.comment-respond .comment-form p.comment-form-url .ic-form.style-3 .input-group-prepend + input + .bootstrap-select,
.ic-form.style-3 .comment-respond .comment-form p .input-group-prepend + textarea + .bootstrap-select,
.comment-respond .comment-form p .ic-form.style-3 .input-group-prepend + textarea + .bootstrap-select,
.ic-form.style-3 .wp-block-categories-dropdown .input-group-prepend + select + .bootstrap-select,
.wp-block-categories-dropdown .ic-form.style-3 .input-group-prepend + select + .bootstrap-select,
.ic-form.style-3 .wp-block-archives-dropdown .input-group-prepend + select + .bootstrap-select,
.wp-block-archives-dropdown .ic-form.style-3 .input-group-prepend + select + .bootstrap-select,
.ic-form.style-3 .input-group-prepend + .form-control + .custom-file-label,
.ic-form.style-3 .comment-respond .comment-form p.comment-form-author .input-group-prepend + input + .custom-file-label,
.comment-respond .comment-form p.comment-form-author .ic-form.style-3 .input-group-prepend + input + .custom-file-label,
.ic-form.style-3 .comment-respond .comment-form p.comment-form-email .input-group-prepend + input + .custom-file-label,
.comment-respond .comment-form p.comment-form-email .ic-form.style-3 .input-group-prepend + input + .custom-file-label,
.ic-form.style-3 .comment-respond .comment-form p.comment-form-url .input-group-prepend + input + .custom-file-label,
.comment-respond .comment-form p.comment-form-url .ic-form.style-3 .input-group-prepend + input + .custom-file-label,
.ic-form.style-3 .comment-respond .comment-form p .input-group-prepend + textarea + .custom-file-label,
.comment-respond .comment-form p .ic-form.style-3 .input-group-prepend + textarea + .custom-file-label,
.ic-form.style-3 .wp-block-categories-dropdown .input-group-prepend + select + .custom-file-label,
.wp-block-categories-dropdown .ic-form.style-3 .input-group-prepend + select + .custom-file-label,
.ic-form.style-3 .wp-block-archives-dropdown .input-group-prepend + select + .custom-file-label,
.wp-block-archives-dropdown .ic-form.style-3 .input-group-prepend + select + .custom-file-label {
  padding: 10px 20px 10px 65px;
  border-radius: var(--border-radius-sm) !important;
}
.ic-form.style-3 .input-group-prepend {
  position: absolute;
  left: 10px;
  top: 30px;
  z-index: 99;
  transform: translateY(-50%);
  background-color: transparent;
  border-right: 1px solid #9192a4;
  margin-right: 10px;
}
.ic-form.style-3 .input-group-prepend .input-group-text {
  justify-content: center;
  padding: 0;
  width: 40px;
  height: 20px;
  background-color: transparent;
}
.ic-form.style-3 .input-group-prepend .input-group-text i {
  color: var(--primary);
  font-size: 22px;
}
.ic-form.style-3 .input-group {
  margin-bottom: 20px;
}
.ic-form.style-3 .input-group-prepend + textarea.form-control,
.ic-form.style-3 .comment-respond .comment-form p .input-group-prepend + textarea,
.comment-respond .comment-form p .ic-form.style-3 .input-group-prepend + textarea {
  padding: 18px 20px 18px 65px;
}
.ic-form.style-3 textarea {
  height: 120px !important;
  border-radius: var(--border-radius-sm) !important;
  resize: none;
}
.ic-form.style-4 .form-control, .ic-form.style-4 .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-author .ic-form.style-4 input, .ic-form.style-4 .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-email .ic-form.style-4 input, .ic-form.style-4 .comment-respond .comment-form p.comment-form-url input, .comment-respond .comment-form p.comment-form-url .ic-form.style-4 input,
.ic-form.style-4 .comment-respond .comment-form p textarea,
.comment-respond .comment-form p .ic-form.style-4 textarea, .ic-form.style-4 .wp-block-categories-dropdown select, .wp-block-categories-dropdown .ic-form.style-4 select,
.ic-form.style-4 .wp-block-archives-dropdown select,
.wp-block-archives-dropdown .ic-form.style-4 select {
  height: 60px;
  border: 1px solid transparent;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 400;
  color: #777777;
  transition: all 0.3s ease-in-out;
  background: #e7e7e7;
}
.ic-form.style-4 .form-control:focus, .ic-form.style-4 .comment-respond .comment-form p.comment-form-author input:focus, .comment-respond .comment-form p.comment-form-author .ic-form.style-4 input:focus, .ic-form.style-4 .comment-respond .comment-form p.comment-form-email input:focus, .comment-respond .comment-form p.comment-form-email .ic-form.style-4 input:focus, .ic-form.style-4 .comment-respond .comment-form p.comment-form-url input:focus, .comment-respond .comment-form p.comment-form-url .ic-form.style-4 input:focus,
.ic-form.style-4 .comment-respond .comment-form p textarea:focus,
.comment-respond .comment-form p .ic-form.style-4 textarea:focus, .ic-form.style-4 .wp-block-categories-dropdown select:focus, .wp-block-categories-dropdown .ic-form.style-4 select:focus,
.ic-form.style-4 .wp-block-archives-dropdown select:focus,
.wp-block-archives-dropdown .ic-form.style-4 select:focus, .ic-form.style-4 .form-control:active, .ic-form.style-4 .comment-respond .comment-form p.comment-form-author input:active, .comment-respond .comment-form p.comment-form-author .ic-form.style-4 input:active, .ic-form.style-4 .comment-respond .comment-form p.comment-form-email input:active, .comment-respond .comment-form p.comment-form-email .ic-form.style-4 input:active, .ic-form.style-4 .comment-respond .comment-form p.comment-form-url input:active, .comment-respond .comment-form p.comment-form-url .ic-form.style-4 input:active,
.ic-form.style-4 .comment-respond .comment-form p textarea:active,
.comment-respond .comment-form p .ic-form.style-4 textarea:active, .ic-form.style-4 .wp-block-categories-dropdown select:active, .wp-block-categories-dropdown .ic-form.style-4 select:active,
.ic-form.style-4 .wp-block-archives-dropdown select:active,
.wp-block-archives-dropdown .ic-form.style-4 select:active, .ic-form.style-4 .form-control.active, .ic-form.style-4 .comment-respond .comment-form p.comment-form-author input.active, .comment-respond .comment-form p.comment-form-author .ic-form.style-4 input.active, .ic-form.style-4 .comment-respond .comment-form p.comment-form-email input.active, .comment-respond .comment-form p.comment-form-email .ic-form.style-4 input.active, .ic-form.style-4 .comment-respond .comment-form p.comment-form-url input.active, .comment-respond .comment-form p.comment-form-url .ic-form.style-4 input.active,
.ic-form.style-4 .comment-respond .comment-form p textarea.active,
.comment-respond .comment-form p .ic-form.style-4 textarea.active, .ic-form.style-4 .wp-block-categories-dropdown select.active, .wp-block-categories-dropdown .ic-form.style-4 select.active,
.ic-form.style-4 .wp-block-archives-dropdown select.active,
.wp-block-archives-dropdown .ic-form.style-4 select.active {
  border-color: var(--primary);
  background: #fff;
}
.ic-form.style-4 textarea.form-control,
.ic-form.style-4 .comment-respond .comment-form p textarea,
.comment-respond .comment-form p .ic-form.style-4 textarea {
  height: 220px;
}
.ic-form.style-4 .input-group {
  margin-bottom: 20px;
}

button:hover,
button:active,
button:focus {
  outline: 0;
}

.btn, .wp-block-button__link {
  padding: 18px 30px;
  display: inline-flex;
  border-radius: var(--border-radius-lg);
  font-size: 15px;
  font-weight: 400;
  position: relative;
  line-height: 1.5;
  align-items: center;
  overflow: hidden;
}
.btn.btn-lg, .btn-lg.wp-block-button__link, .btn-group-lg > .btn, .btn-group-lg > .wp-block-button__link {
  padding: 24px 40px;
  font-size: 16px;
}
.btn.btn-sm, .btn-sm.wp-block-button__link, .btn-group-sm > .btn, .btn-group-sm > .wp-block-button__link {
  font-size: 15px;
  padding: 13px 24px;
}
.btn.btn-xs, .btn-xs.wp-block-button__link {
  font-size: 14px;
  padding: 11px 25px;
}
@media only screen and (max-width: 767px) {
  .btn, .wp-block-button__link {
    padding: 14px 25px;
    font-size: 14px;
  }
}
.btn.btn-primary, .wp-block-button__link {
  color: #fff;
}
.btn.btn-primary:hover, .wp-block-button__link:hover {
  color: #fff;
}
.btn i, .wp-block-button__link i {
  font-size: 18px;
  line-height: 1;
}
.btn:after, .wp-block-button__link:after {
  content: "";
  background: #fff;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  position: absolute;
  height: 120%;
  width: 15px;
  opacity: 0.2;
  left: -35%;
  top: -10%;
  transform: rotate(15deg);
  -moz-transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
  -o-transform: rotate(15deg);
}
.btn:hover:after, .wp-block-button__link:hover:after {
  left: 130%;
}
.btn.w-100, .w-100.wp-block-button__link, .btn.btn-block, .btn-block.wp-block-button__link {
  width: 100%;
  justify-content: center;
}

.btn-primary, .wp-block-button__link {
  border-color: var(--primary);
  background-color: var(--primary);
}
.btn-primary.disabled, .disabled.wp-block-button__link, .btn-primary:disabled, .wp-block-button__link:disabled, .btn-primary:not(:disabled):not(.disabled).active, .wp-block-button__link:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:active, .wp-block-button__link:active, .btn-primary:focus, .wp-block-button__link:focus, .btn-primary:hover, .wp-block-button__link:hover {
  border-color: var(--primary-hover);
  background-color: var(--primary-hover);
}

.btn-link {
  color: var(--primary);
  text-decoration: none;
}
.btn-link:hover {
  color: var(--primary-hover);
}

.btn-outline-primary, .is-style-outline .wp-block-button__link {
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary.disabled, .is-style-outline .disabled.wp-block-button__link, .btn-outline-primary:disabled, .is-style-outline .wp-block-button__link:disabled, .btn-outline-primary:not(:disabled):not(.disabled).active, .is-style-outline .wp-block-button__link:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:active, .is-style-outline .wp-block-button__link:active, .btn-outline-primary:focus, .is-style-outline .wp-block-button__link:focus, .btn-outline-primary:hover, .is-style-outline .wp-block-button__link:hover {
  border-color: var(--primary-hover);
  background-color: var(--primary-hover);
  color: #fff;
}

.btn-link-lg {
  font-weight: 700;
  font-size: 18px;
}
.btn-link-lg:hover {
  text-decoration: unset;
}

.btn-light {
  background-color: #fff;
}
.btn-light:hover {
  background-color: var(--primary);
  color: #fff !important;
  border-color: transparent;
}
.btn-light.text-primary:hover {
  color: #fff !important;
}

.wp-block-button {
  margin-bottom: 0.3125rem;
}

.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.wp-block-button__link {
  border-radius: 60px;
}
.wp-block-button__link:after {
  content: none;
}

.table-responsive-sm {
  min-width: 48rem;
}

.table {
  margin-bottom: 0px;
  font-weight: 400;
}
.table tr td,
.table tr th {
  padding: 15px;
}

.table tr th {
  color: #051136;
  font-weight: 500;
}

.table-striped thead tr th {
  padding-bottom: 15px;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: #ffffff;
}
.table-striped tfoot {
  border-top: 2px solid #E1E1F0;
}
.table-striped tfoot tr th {
  padding-top: 10px;
}

.ic-separator {
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 8px;
  position: relative;
}
.ic-separator.m-b0 {
  margin-bottom: 0;
}
.ic-separator.style-liner {
  width: 20px;
}
.ic-separator.style-icon {
  width: 30px;
  height: auto;
  text-align: center;
  font-size: 20px;
}
.ic-separator.style-skew {
  width: 10px;
  height: 10px;
  margin-left: 1px;
  margin-right: 1px;
}
.ic-separator.style-skew[class*=style-]:after, .ic-separator.style-skew[class*=style-]:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  top: 5px;
  left: 15px;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: inherit;
}
.ic-separator.style-skew[class*=style-]:before {
  right: 15px;
  left: auto;
}
.ic-separator.bnr-title {
  height: 1px;
  width: 155px;
  opacity: 0.5;
}
.ic-separator.bnr-title:before, .ic-separator.bnr-title:after {
  position: absolute;
  content: "";
  background-color: inherit;
}
.ic-separator.bnr-title:before {
  height: inherit;
  right: -80px;
  width: 25px;
}
.ic-separator.bnr-title:after {
  height: inherit;
  right: -90px;
  top: 0;
  width: 6px;
}
.ic-separator.bnr-title i {
  background-color: inherit;
  display: block;
  height: inherit;
  position: absolute;
  right: -50px;
  width: 45px;
}

.ic-separator-outer {
  overflow: hidden;
}

.ic-separator.style-1 {
  height: 8px;
  display: block;
  width: 82px;
  position: relative;
  margin: 0;
}
.ic-separator.style-1:before, .ic-separator.style-1:after {
  content: "";
  height: 1px;
  width: 80px;
  position: absolute;
  background: var(--primary);
  left: 0;
}
.ic-separator.style-1:after {
  width: 80%;
  bottom: 0;
}
.ic-separator.style-1:before {
  width: 100%;
  top: 0;
}
.ic-separator.style-2 {
  width: 45px;
  height: 2px;
  background-color: #000;
}

.site-filters {
  margin-bottom: 30px;
}
.site-filters ul {
  margin: 0;
  list-style: none;
}
.site-filters li {
  display: inline-block;
  padding: 0;
  margin-bottom: 3px;
}
.site-filters li.btn, .site-filters li.wp-block-button__link {
  box-shadow: none;
  -webkit-box-shadow: none;
  outline: none;
}
.site-filters li input {
  display: none;
}
.site-filters li a {
  margin: 0 5px 5px 0;
  display: block;
}
.site-filters li.active [class*=btn] {
  color: #fff;
  background-color: #EFBB20;
}
.site-filters.center {
  text-align: center;
}
.site-filters.center ul {
  display: inline-block;
  margin: auto;
}
.site-filters.center [class*=btn] {
  display: inline-block;
  margin: 0 5px 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 575px) {
  .site-filters.center [class*=btn] {
    margin: 0 1px 5px;
    padding: 5px 10px;
    font-size: 12px;
  }
}
.site-filters.style-1 {
  margin-bottom: 45px;
}
.site-filters.style-1 .filters li {
  text-transform: capitalize;
  margin: 0 20px -1px;
  border: 0;
  border-radius: 0;
}
.site-filters.style-1 .filters li:after {
  content: none;
}
.site-filters.style-1 .filters li a {
  color: inherit;
  font-size: 15px;
  margin: 0;
  border-bottom: 2px solid;
  border-color: transparent;
  padding: 0 0px 5px;
  font-weight: 400;
}
.site-filters.style-1 .filters li.active a {
  color: var(--primary);
  border-color: var(--primary);
}
.site-filters.style-1 .filters li:first-child {
  margin-left: 0;
}
.site-filters.style-1 .filters li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .site-filters.style-1 {
    margin-bottom: 15px;
  }
  .site-filters.style-1 .filters li {
    margin: 0 5px 5px;
  }
}

.ic-img-overlay1,
.ic-img-overlay2,
.ic-img-overlay3,
.ic-img-overlay4,
.ic-img-overlay5,
.ic-img-overlay6,
.ic-img-overlay7,
.ic-img-overlay8,
.ic-img-overlay9,
.ic-img-overlay11,
.ic-img-overlay12 {
  position: relative;
}
.ic-img-overlay1:before, .ic-img-overlay1:after,
.ic-img-overlay2:before,
.ic-img-overlay2:after,
.ic-img-overlay3:before,
.ic-img-overlay3:after,
.ic-img-overlay4:before,
.ic-img-overlay4:after,
.ic-img-overlay5:before,
.ic-img-overlay5:after,
.ic-img-overlay6:before,
.ic-img-overlay6:after,
.ic-img-overlay7:before,
.ic-img-overlay7:after,
.ic-img-overlay8:before,
.ic-img-overlay8:after,
.ic-img-overlay9:before,
.ic-img-overlay9:after,
.ic-img-overlay11:before,
.ic-img-overlay11:after,
.ic-img-overlay12:before,
.ic-img-overlay12:after {
  content: "";
  background: #282d32;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0.4;
  z-index: 1;
  -webkit-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
}
.ic-img-overlay1.overlay-primary,
.ic-img-overlay2.overlay-primary,
.ic-img-overlay3.overlay-primary,
.ic-img-overlay4.overlay-primary,
.ic-img-overlay5.overlay-primary,
.ic-img-overlay6.overlay-primary,
.ic-img-overlay7.overlay-primary,
.ic-img-overlay8.overlay-primary,
.ic-img-overlay9.overlay-primary,
.ic-img-overlay11.overlay-primary,
.ic-img-overlay12.overlay-primary {
  background: var(--primary);
}

.ic-box:hover .ic-img-overlay1:before {
  opacity: 0.5;
}
.ic-box:hover .ic-img-overlay2:before {
  opacity: 0.9;
}
.ic-box:hover .ic-img-overlay3:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ic-box:hover .ic-img-overlay4:before {
  width: 100%;
  left: 0;
}
.ic-box:hover .ic-img-overlay5:before {
  height: 100%;
  top: 0;
}
.ic-box:hover .ic-img-overlay6:before {
  height: 100%;
}
.ic-box:hover .ic-img-overlay7:before,
.ic-box:hover .ic-img-overlay7:after {
  width: 50%;
}
.ic-box:hover .ic-img-overlay8:before,
.ic-box:hover .ic-img-overlay8:after {
  width: 100%;
  opacity: 0.3;
}
.ic-box:hover .ic-img-overlay9:before,
.ic-box:hover .ic-img-overlay9:after {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.ic-img-overlay1:before {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.ic-img-overlay1:hover:before {
  opacity: 0.5;
}

.ic-img-overlay2:before {
  width: 100%;
  height: 100%;
  opacity: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.ic-img-overlay2:before:hover:before {
  opacity: 0.9;
}

.ic-img-overlay3:before {
  left: 50%;
  top: 50%;
}
.ic-img-overlay3:hover:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ic-img-overlay4:before {
  left: 50%;
  top: 0;
  height: 100%;
}
.ic-img-overlay4:hover:before {
  width: 100%;
  left: 0;
}

.ic-img-overlay5:before {
  left: 0;
  top: 50%;
  width: 100%;
}
.ic-img-overlay5:hover:before {
  height: 100%;
  top: 0;
}

.ic-img-overlay6:before {
  left: 0;
  top: auto;
  bottom: 0;
  width: 100%;
}
.ic-img-overlay6:hover:before {
  height: 100%;
}

.ic-img-overlay7:before, .ic-img-overlay7:after {
  height: 100%;
}
.ic-img-overlay7:after {
  left: auto;
  right: 0;
}
.ic-img-overlay7:hover:before, .ic-img-overlay7:hover:after {
  width: 50%;
}

.ic-img-overlay8:before, .ic-img-overlay8:after {
  height: 100%;
}
.ic-img-overlay8:after {
  left: auto;
  right: 0;
}
.ic-img-overlay8:hover:before, .ic-img-overlay8:hover:after {
  width: 100%;
  opacity: 0.3;
}

.ic-img-overlay9:before:before, .ic-img-overlay9:before:after,
.ic-img-overlay9:after:before,
.ic-img-overlay9:after:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.ic-img-overlay9:before:hover:before, .ic-img-overlay9:before:hover:after,
.ic-img-overlay9:after:hover:before,
.ic-img-overlay9:after:hover:after {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

/*  */
.overlay-black-light,
.overlay-black-middle,
.overlay-black-dark,
.overlay-gradient-light,
.overlay-gradient-middle,
.overlay-gradient-dark,
.overlay-white-light,
.overlay-white-middle,
.overlay-white-dark,
.overlay-primary-light,
.overlay-primary-middle,
.overlay-primary-dark,
.overlay-primary {
  position: relative;
}
.overlay-black-light:before,
.overlay-black-middle:before,
.overlay-black-dark:before,
.overlay-gradient-light:before,
.overlay-gradient-middle:before,
.overlay-gradient-dark:before,
.overlay-white-light:before,
.overlay-white-middle:before,
.overlay-white-dark:before,
.overlay-primary-light:before,
.overlay-primary-middle:before,
.overlay-primary-dark:before,
.overlay-primary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.overlay-black-light .container,
.overlay-black-light .container-fluid,
.overlay-black-light .container-sm,
.overlay-black-light .container-md,
.overlay-black-light .container-lg,
.overlay-black-light .container-xl,
.overlay-black-middle .container,
.overlay-black-middle .container-fluid,
.overlay-black-middle .container-sm,
.overlay-black-middle .container-md,
.overlay-black-middle .container-lg,
.overlay-black-middle .container-xl,
.overlay-black-dark .container,
.overlay-black-dark .container-fluid,
.overlay-black-dark .container-sm,
.overlay-black-dark .container-md,
.overlay-black-dark .container-lg,
.overlay-black-dark .container-xl,
.overlay-gradient-light .container,
.overlay-gradient-light .container-fluid,
.overlay-gradient-light .container-sm,
.overlay-gradient-light .container-md,
.overlay-gradient-light .container-lg,
.overlay-gradient-light .container-xl,
.overlay-gradient-middle .container,
.overlay-gradient-middle .container-fluid,
.overlay-gradient-middle .container-sm,
.overlay-gradient-middle .container-md,
.overlay-gradient-middle .container-lg,
.overlay-gradient-middle .container-xl,
.overlay-gradient-dark .container,
.overlay-gradient-dark .container-fluid,
.overlay-gradient-dark .container-sm,
.overlay-gradient-dark .container-md,
.overlay-gradient-dark .container-lg,
.overlay-gradient-dark .container-xl,
.overlay-white-light .container,
.overlay-white-light .container-fluid,
.overlay-white-light .container-sm,
.overlay-white-light .container-md,
.overlay-white-light .container-lg,
.overlay-white-light .container-xl,
.overlay-white-middle .container,
.overlay-white-middle .container-fluid,
.overlay-white-middle .container-sm,
.overlay-white-middle .container-md,
.overlay-white-middle .container-lg,
.overlay-white-middle .container-xl,
.overlay-white-dark .container,
.overlay-white-dark .container-fluid,
.overlay-white-dark .container-sm,
.overlay-white-dark .container-md,
.overlay-white-dark .container-lg,
.overlay-white-dark .container-xl,
.overlay-primary-light .container,
.overlay-primary-light .container-fluid,
.overlay-primary-light .container-sm,
.overlay-primary-light .container-md,
.overlay-primary-light .container-lg,
.overlay-primary-light .container-xl,
.overlay-primary-middle .container,
.overlay-primary-middle .container-fluid,
.overlay-primary-middle .container-sm,
.overlay-primary-middle .container-md,
.overlay-primary-middle .container-lg,
.overlay-primary-middle .container-xl,
.overlay-primary-dark .container,
.overlay-primary-dark .container-fluid,
.overlay-primary-dark .container-sm,
.overlay-primary-dark .container-md,
.overlay-primary-dark .container-lg,
.overlay-primary-dark .container-xl,
.overlay-primary .container,
.overlay-primary .container-fluid,
.overlay-primary .container-sm,
.overlay-primary .container-md,
.overlay-primary .container-lg,
.overlay-primary .container-xl {
  position: relative;
  z-index: 1;
}

.overlay-black-light:before,
.overlay-black-middle:before,
.overlay-black-dark:before {
  background: #2c70b9;
}

.overlay-gradient-light:before,
.overlay-gradient-middle:before,
.overlay-gradient-dark:before {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.overlay-white-light:before,
.overlay-white-middle:before,
.overlay-white-dark:before {
  background: #FFF;
}

.overlay-primary-light:before,
.overlay-primary-middle:before,
.overlay-primary-dark:before,
.overlay-primary:before {
  background: var(--primary);
}

.overlay-primary-light:before,
.overlay-white-light:before,
.overlay-gradient-light:before,
.overlay-black-light:before {
  opacity: 0.3;
}

.overlay-primary-middle:before,
.overlay-white-middle:before,
.overlay-gradient-middle:before,
.overlay-black-middle:before {
  opacity: 0.7;
}

.overlay-primary-dark:before,
.overlay-white-dark:before,
.overlay-gradient-dark:before,
.overlay-black-dark:before {
  opacity: 0.9;
}

.overlay-bx {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.overlay-bx .align-b {
  height: auto;
  left: 0;
  list-style: outside none none;
  margin: 0;
  position: absolute;
  top: auto;
  bottom: 0;
  width: 100%;
  transform: translate(0);
  -o-transform: translate(0);
  -moz-transform: translate(0);
  -webkit-transform: translate(0);
}
.overlay-bx .align-m {
  height: auto;
  left: 50%;
  list-style: outside none none;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 10px;
}

.overlay-icon {
  height: auto;
  left: 50%;
  list-style: outside none none;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 10px;
}
.overlay-icon a {
  display: inline-block;
  padding: 0;
  margin: 0 2px;
}
.overlay-icon a i {
  background-color: #FFF;
}

.overlay-bx:hover a > i,
.ic-media:hover .overlay-bx a > i,
.ic-box-bx:hover .overlay-bx a > i {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}

.overlay-bx:hover,
.ic-media:hover .overlay-bx,
.ic-box:hover .overlay-bx,
.ow-img:hover .overlay-bx,
.ow-portfolio-img:hover .overlay-bx {
  opacity: 1;
  visibility: visible;
}

.gallery-box-1 .overlay-bx .overlay-icon span i,
.gallery-box-1 .overlay-bx .overlay-icon a i {
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
}
.gallery-box-1 .overlay-bx .icon-bx-xs {
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.img-overlay-gradients {
  position: relative;
}
.img-overlay-gradients:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.img-overlay-gradients.gradients-secondary:before {
  background: -moz-linear-gradient(bottom, transparent 0%, #1e1d23 100%);
  background: -webkit-linear-gradient(bottom, transparent 0%, #1e1d23 100%);
  background: linear-gradient(to bottom, transparent 0%, #1e1d23 100%);
}
.img-overlay-gradients.gradients-primary:before {
  background: -moz-linear-gradient(bottom, transparent 0%, var(--primary) 100%);
  background: -webkit-linear-gradient(bottom, transparent 0%, var(--primary) 100%);
  background: linear-gradient(to bottom, transparent 0%, var(--primary) 100%);
}

.overlay-shine .ic-media {
  position: relative;
  overflow: hidden;
}
.overlay-shine .ic-media:before {
  position: absolute;
  top: 0;
  left: -85%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.overlay-shine:hover .ic-media:before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.pagination-style1 .swiper-pagination {
  position: unset;
  margin-top: 30px;
}
.pagination-style1 .swiper-pagination .swiper-pagination-bullet {
  opacity: 0.1;
}
.pagination-style1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary);
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .pagination-style1 .swiper-pagination {
    margin-top: 10px;
  }
}

.pagination-style2 .swiper-pagination-bullets {
  margin-top: 15px;
  position: unset;
}
.pagination-style2 .swiper-pagination-bullets .swiper-pagination-bullet {
  height: 45px;
  width: 45px;
  line-height: 45px;
  border-radius: 0;
  opacity: 1;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  color: #777;
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: var(--border-radius-sm);
}
.pagination-style2 .swiper-pagination-bullets .swiper-pagination-bullet:after {
  content: none;
}
.pagination-style2 .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #fff;
  background-color: var(--primary);
}
@media only screen and (max-width: 575px) {
  .pagination-style2 .swiper-pagination-bullets .swiper-pagination-bullet {
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 14px;
  }
}

.ic-accordion .accordion-item {
  box-shadow: 1px 0px 60px 0 rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.ic-accordion .accordion-body {
  padding: 25px 30px;
  border-radius: 0;
}
.ic-accordion .accordion-collapse {
  border: 0;
}
.ic-accordion .accordion-header .accordion-button {
  font-size: 18px;
  border: 0;
  border-radius: 8px;
  padding: 22px 65px 22px 30px;
  transition: all 0.5s;
  color: #fff;
  box-shadow: 5px 0 15px var(--rgba-primary-4);
  background-color: var(--primary);
}
.ic-accordion .accordion-header .accordion-button:after {
  content: none;
}
.ic-accordion .accordion-header .accordion-button .toggle-close {
  background-color: #fff;
  font-family: themify;
  height: 55px;
  width: 55px;
  display: block;
  position: absolute;
  right: 5px;
  top: 5px;
  border-radius: 0.25rem;
  line-height: 57px;
  text-align: center;
  font-size: 24px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 1;
  overflow: hidden;
}
.ic-accordion .accordion-header .accordion-button .toggle-close:after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: var(--primary);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
}
.ic-accordion .accordion-header .accordion-button .toggle-close:before {
  content: "\e61a";
  color: var(--primary);
  font-size: 24px;
  font-family: "themify";
  z-index: 99;
  opacity: 1;
  transform: rotate(45deg);
  transition: all 0.5s;
  line-height: 55px;
  display: block;
}
.ic-accordion .accordion-header .accordion-button.collapsed {
  background: #fff;
  color: inherit;
}
.ic-accordion .accordion-header .accordion-button.collapsed:after {
  opacity: 0;
}
.ic-accordion .accordion-header .accordion-button.collapsed .toggle-close {
  content: "";
}
.ic-accordion .accordion-header .accordion-button.collapsed .toggle-close:after {
  opacity: 1;
}
.ic-accordion .accordion-header .accordion-button.collapsed .toggle-close:before {
  opacity: 1;
  transform: rotate(0);
  color: #fff;
}
@media only screen and (max-width: 575px) {
  .ic-accordion .accordion-header .accordion-header .accordion-button {
    padding: 15px 65px 15px 15px;
  }
}
.ic-accordion.accordion-sm .accordion-body {
  padding: 25px;
}
.ic-accordion.accordion-sm .accordion-header .accordion-button {
  padding: 15px 55px 15px 20px;
}
.ic-accordion.accordion-sm .accordion-header .accordion-button .toggle-close {
  height: 40px;
  width: 40px;
}
.ic-accordion.accordion-sm .accordion-header .accordion-button .toggle-close:before {
  font-size: 18px;
  line-height: 40px;
}
@media only screen and (max-width: 575px) {
  .ic-accordion.accordion-sm .accordion-header .accordion-header .accordion-button {
    padding: 15px 65px 15px 15px;
  }
}

nav .pagination .page-item {
  margin: 0 6px;
}
nav .pagination .page-item .page-numbers,
nav .pagination .page-item .page-link {
  height: 45px;
  min-width: 45px;
  line-height: 42px;
  border-radius: 0;
  color: #777777;
  text-align: center;
  border: 0;
  padding: 0;
  transition: all 0.5s;
  border: 1px solid;
  border-color: #777777;
  font-size: 18px;
  padding: 0 10px;
  display: block;
  border-radius: var(--border-radius-sm);
}
nav .pagination .page-item .page-numbers.current, nav .pagination .page-item .page-numbers.active, nav .pagination .page-item .page-numbers:hover,
nav .pagination .page-item .page-link.current,
nav .pagination .page-item .page-link.active,
nav .pagination .page-item .page-link:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}
nav .pagination .page-item .prev,
nav .pagination .page-item .next {
  border-color: transparent;
  font-size: 18px;
}
nav .pagination .page-item:first-child .page-link, nav .pagination .page-item:last-child .page-link {
  border-radius: var(--border-radius-sm);
}
nav .pagination.text-center {
  justify-content: center;
}
nav .pagination.rounded-0 .page-item .page-link {
  border-radius: 0;
}
@media only screen and (max-width: 767px) {
  nav .pagination.m-t40 {
    margin-top: 0;
  }
}

.list-circle li,
.list-angle-double li,
.list-square li,
.list-square-check li,
.list-settings li {
  position: relative;
  padding: 6px 5px 6px 15px;
}
.list-circle li:before,
.list-angle-double li:before,
.list-square li:before,
.list-square-check li:before,
.list-settings li:before {
  position: absolute;
  left: 0;
  top: 4px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.list-circle.primary li:before,
.list-angle-double.primary li:before,
.list-square.primary li:before,
.list-square-check.primary li:before,
.list-settings.primary li:before {
  color: var(--primary);
}

.list-angle-double li {
  padding-left: 25px;
}

ul.list-circle li:before {
  content: "\f111";
  font-size: 8px;
  font-weight: 900;
  top: 50%;
  transform: translateY(-50%);
}
ul.list-angle-double li:before {
  content: "\f101";
  font-size: 18px;
}
ul.list-square li:before {
  content: "\f45c";
  top: 50%;
  transform: translateY(-50%);
}
ul.grid-2 {
  display: flex;
  flex-wrap: wrap;
}
ul.grid-2 li {
  width: 50%;
}
@media only screen and (max-width: 575px) {
  ul.grid-2 li {
    width: 100%;
  }
}

.list-settings li {
  padding: 8px 5px 8px 50px;
}
.list-settings li:before {
  content: "\f127";
  font-family: flaticon;
  font-size: 32px;
  font-weight: 500;
}

button.scroltop {
  box-shadow: -4px 4px 24px -10px var(--primary);
  background: var(--primary);
  border-color: var(--primary);
  border-style: solid;
  border-width: 0;
  bottom: 15px;
  color: #fff;
  cursor: pointer;
  display: none;
  height: 50px;
  line-height: 50px;
  margin: 0;
  position: fixed;
  right: 15px;
  text-align: center;
  width: 50px;
  z-index: 999;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  border-radius: var(--border-radius-sm);
}
@media only screen and (max-width: 575px) {
  button.scroltop {
    height: 40px;
    width: 40px;
    line-height: 40px;
  }
}

.video-bx {
  position: relative;
}
.video-bx.style-1 .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.video-bx.style-1 .video-btn .popup-youtube {
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 100px;
  background-color: #fff;
  display: block;
  color: var(--primary);
  font-size: 30px;
  margin: 0 auto;
  transition: all 0.5s;
}
@media only screen and (max-width: 575px) {
  .video-bx.style-1 .video-btn .popup-youtube {
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.video-bx.style-1 .video-btn .popup-youtube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #fff;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 100%;
  animation: animationSignal1;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  -webkit-animation: animationSignal1;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 3s;
  z-index: -1;
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.video-bx.style-1 .video-btn .popup-youtube:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #fff;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  animation: animationSignal2;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  -webkit-animation: animationSignal2;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 3s;
  z-index: -1;
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.video-bx.style-3 {
  display: inline-block;
}
.video-bx.style-3 .video-btn {
  margin: 13px;
}
.video-bx.style-3 .video-btn .popup-youtube {
  display: inline-block;
  color: #fff;
  height: 136px;
  width: 136px;
  line-height: 136px;
  border-radius: 136px;
  background-color: var(--primary);
  text-align: center;
  font-size: 30px;
}
.video-bx.style-3 .video-btn .popup-youtube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid var(--primary);
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 100%;
  animation: animationSignal3;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  -webkit-animation: animationSignal3;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 3s;
  z-index: -1;
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.video-bx.style-3 .video-btn .popup-youtube:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid var(--primary);
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  animation: animationSignal4;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  -webkit-animation: animationSignal4;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 3s;
  z-index: -1;
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 575px) {
  .video-bx.style-3 .video-btn .popup-youtube {
    height: 90px;
    width: 90px;
    line-height: 90px;
  }
}

@keyframes animationSignal1 {
  /*Video Popup*/
  0% {
    opacity: 0.8;
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    -webkit-transform: scale(0.9);
  }
  100% {
    transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes animationSignal1 {
  /*Video Popup*/
  0% {
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    -webkit-transform: scale(0.9);
  }
  100% {
    transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes animationSignal2 {
  /*Video Popup*/
  0% {
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  100% {
    transform: scale(1.9);
    -moz-transform: scale(1.9);
    -webkit-transform: scale(1.9);
    -ms-transform: scale(1.9);
    -o-transform: scale(1.9);
    opacity: 0;
  }
}
@-webkit-keyframes animationSignal2 {
  /*Video Popup*/
  0% {
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  100% {
    transform: scale(1.9);
    -moz-transform: scale(1.9);
    -webkit-transform: scale(1.9);
    -ms-transform: scale(1.9);
    -o-transform: scale(1.9);
    opacity: 0;
  }
}
@keyframes animationSignal3 {
  /*Video Popup*/
  0% {
    opacity: 0.8;
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    -webkit-transform: scale(0.9);
  }
  100% {
    transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes animationSignal3 {
  /*Video Popup*/
  0% {
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    -webkit-transform: scale(0.9);
  }
  100% {
    transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes animationSignal4 {
  /*Video Popup*/
  0% {
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  100% {
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    opacity: 0;
  }
}
@-webkit-keyframes animationSignal4 {
  /*Video Popup*/
  0% {
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  100% {
    transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    opacity: 0;
  }
}
.btn-next,
.btn-prev {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 60px;
  height: 60px;
  color: var(--primary);
  background: #fff;
  font-size: 15px;
  letter-spacing: 2px;
  z-index: 1;
  text-align: center;
  line-height: 60px;
  margin: 0 10px;
  display: inline-block;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  border-radius: var(--border-radius-sm);
}
@media only screen and (max-width: 767px) {
  .btn-next,
  .btn-prev {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
.btn-next:hover,
.btn-prev:hover {
  background: var(--primary);
  color: #fff;
}
.btn-next:after,
.btn-prev:after {
  content: none;
}
.btn-next i,
.btn-prev i {
  font-size: 40px;
  line-height: inherit;
}
@media only screen and (max-width: 767px) {
  .btn-next i,
  .btn-prev i {
    font-size: 24px;
  }
}

.widget {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .widget {
    margin-bottom: 30px;
  }
}
.widget.style-1 .widget-title {
  padding: 0 0 12px;
  margin-bottom: 30px;
}
.widget.style-1 .widget-title:after, .widget.style-1 .widget-title:before {
  content: "";
  height: 2px;
  border-radius: 10px;
  background-image: var(--gradient);
  background-size: 200%;
  position: absolute;
  bottom: 0;
}
.widget.style-1 .widget-title:before {
  width: 25px;
  left: 0;
  top: auto;
}
.widget.style-1 .widget-title:after {
  width: 55px;
  left: 32px;
}

.widget-title {
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .widget-title {
    margin-bottom: 20px;
  }
}
.widget-title .title {
  position: relative;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .widget-title .title {
    font-size: 24px;
  }
}

.search-bx form {
  margin-bottom: 10px;
}
.search-bx .form-control, .search-bx .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-author .search-bx input, .search-bx .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-email .search-bx input, .search-bx .comment-respond .comment-form p.comment-form-url input, .comment-respond .comment-form p.comment-form-url .search-bx input,
.search-bx .comment-respond .comment-form p textarea,
.comment-respond .comment-form p .search-bx textarea, .search-bx .wp-block-categories-dropdown select, .wp-block-categories-dropdown .search-bx select,
.search-bx .wp-block-archives-dropdown select,
.wp-block-archives-dropdown .search-bx select {
  padding: 10px 25px 10px 25px;
  height: 60px;
  border-radius: var(--border-radius-sm) 0 0px var(--border-radius-sm);
}
.search-bx .input-group-prepend {
  border-right: 0;
  top: 50%;
}
.search-bx .input-group-prepend .input-group-text i {
  color: #828282;
}
.search-bx button {
  height: 60px;
  font-size: 24px;
  padding: 0;
  border-radius: 0;
  width: 60px;
  box-shadow: none;
  justify-content: center;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}
.search-bx.style-1 {
  padding: 30px;
  background-color: var(--primary);
  border-radius: var(--border-radius-base);
}
.search-bx.style-1 .input-group {
  margin-bottom: 0;
}
.search-bx.style-1 .input-group .input-group-btn {
  margin-left: 0 !important;
}
.search-bx.style-1 .form-control, .search-bx.style-1 .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-author .search-bx.style-1 input, .search-bx.style-1 .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-email .search-bx.style-1 input, .search-bx.style-1 .comment-respond .comment-form p.comment-form-url input, .comment-respond .comment-form p.comment-form-url .search-bx.style-1 input,
.search-bx.style-1 .comment-respond .comment-form p textarea,
.comment-respond .comment-form p .search-bx.style-1 textarea, .search-bx.style-1 .wp-block-categories-dropdown select, .wp-block-categories-dropdown .search-bx.style-1 select,
.search-bx.style-1 .wp-block-archives-dropdown select,
.wp-block-archives-dropdown .search-bx.style-1 select {
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
  background-color: rgba(255, 255, 255, 0.3);
  border: 0;
  color: #fff;
}
.search-bx.style-1 .form-control::-webkit-input-placeholder, .search-bx.style-1 .comment-respond .comment-form p.comment-form-author input::-webkit-input-placeholder, .comment-respond .comment-form p.comment-form-author .search-bx.style-1 input::-webkit-input-placeholder, .search-bx.style-1 .comment-respond .comment-form p.comment-form-email input::-webkit-input-placeholder, .comment-respond .comment-form p.comment-form-email .search-bx.style-1 input::-webkit-input-placeholder, .search-bx.style-1 .comment-respond .comment-form p.comment-form-url input::-webkit-input-placeholder, .comment-respond .comment-form p.comment-form-url .search-bx.style-1 input::-webkit-input-placeholder,
.search-bx.style-1 .comment-respond .comment-form p textarea::-webkit-input-placeholder,
.comment-respond .comment-form p .search-bx.style-1 textarea::-webkit-input-placeholder, .search-bx.style-1 .wp-block-categories-dropdown select::-webkit-input-placeholder, .wp-block-categories-dropdown .search-bx.style-1 select::-webkit-input-placeholder,
.search-bx.style-1 .wp-block-archives-dropdown select::-webkit-input-placeholder,
.wp-block-archives-dropdown .search-bx.style-1 select::-webkit-input-placeholder {
  color: #fff;
}
.search-bx.style-1 .form-control:-ms-input-placeholder, .search-bx.style-1 .comment-respond .comment-form p.comment-form-author input:-ms-input-placeholder, .comment-respond .comment-form p.comment-form-author .search-bx.style-1 input:-ms-input-placeholder, .search-bx.style-1 .comment-respond .comment-form p.comment-form-email input:-ms-input-placeholder, .comment-respond .comment-form p.comment-form-email .search-bx.style-1 input:-ms-input-placeholder, .search-bx.style-1 .comment-respond .comment-form p.comment-form-url input:-ms-input-placeholder, .comment-respond .comment-form p.comment-form-url .search-bx.style-1 input:-ms-input-placeholder,
.search-bx.style-1 .comment-respond .comment-form p textarea:-ms-input-placeholder,
.comment-respond .comment-form p .search-bx.style-1 textarea:-ms-input-placeholder, .search-bx.style-1 .wp-block-categories-dropdown select:-ms-input-placeholder, .wp-block-categories-dropdown .search-bx.style-1 select:-ms-input-placeholder,
.search-bx.style-1 .wp-block-archives-dropdown select:-ms-input-placeholder,
.wp-block-archives-dropdown .search-bx.style-1 select:-ms-input-placeholder {
  color: #fff;
}
.search-bx.style-1 .form-control::placeholder, .search-bx.style-1 .comment-respond .comment-form p.comment-form-author input::placeholder, .comment-respond .comment-form p.comment-form-author .search-bx.style-1 input::placeholder, .search-bx.style-1 .comment-respond .comment-form p.comment-form-email input::placeholder, .comment-respond .comment-form p.comment-form-email .search-bx.style-1 input::placeholder, .search-bx.style-1 .comment-respond .comment-form p.comment-form-url input::placeholder, .comment-respond .comment-form p.comment-form-url .search-bx.style-1 input::placeholder,
.search-bx.style-1 .comment-respond .comment-form p textarea::placeholder,
.comment-respond .comment-form p .search-bx.style-1 textarea::placeholder, .search-bx.style-1 .wp-block-categories-dropdown select::placeholder, .wp-block-categories-dropdown .search-bx.style-1 select::placeholder,
.search-bx.style-1 .wp-block-archives-dropdown select::placeholder,
.wp-block-archives-dropdown .search-bx.style-1 select::placeholder {
  color: #fff;
}
.search-bx.style-1 button {
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  padding: 0px 10px;
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.search-bx.style-1 button:after {
  content: none;
}
.search-bx.style-1 .title {
  color: #fff;
}
@media only screen and (max-width: 575px) {
  .search-bx.style-1 {
    padding: 20px;
  }
}
.search-bx.style-2 .form-control, .search-bx.style-2 .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-author .search-bx.style-2 input, .search-bx.style-2 .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-email .search-bx.style-2 input, .search-bx.style-2 .comment-respond .comment-form p.comment-form-url input, .comment-respond .comment-form p.comment-form-url .search-bx.style-2 input,
.search-bx.style-2 .comment-respond .comment-form p textarea,
.comment-respond .comment-form p .search-bx.style-2 textarea, .search-bx.style-2 .wp-block-categories-dropdown select, .wp-block-categories-dropdown .search-bx.style-2 select,
.search-bx.style-2 .wp-block-archives-dropdown select,
.wp-block-archives-dropdown .search-bx.style-2 select {
  padding: 10px 25px 10px 25px;
  height: 60px;
}
.search-bx.style-2 .input-group-prepend {
  border-right: 0;
  top: 50%;
}
.search-bx.style-2 .input-group-prepend .input-group-text i {
  color: #828282;
}
.search-bx.style-2 button {
  height: 60px;
  font-size: 24px;
  padding: 0;
  width: 60px;
  box-shadow: none;
  justify-content: center;
}

.download-file {
  background-image: var(--gradient);
  color: #fff;
  padding: 25px 25px 20px 20px;
  border-radius: 4px;
}
.download-file .title {
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.download-file ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.download-file ul li a {
  background-color: #fff;
  color: #000;
  display: block;
  margin-bottom: 10px;
  border-radius: 4px;
  width: 100%;
  padding: 15px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.download-file ul li a i {
  width: 18px;
  height: 18px;
  position: relative;
}
.download-file ul li a i:after, .download-file ul li a i:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}
.download-file ul li a i:before {
  background-image: url(../images/icon/download-icon2.png);
  -webkit-animation: download1 2s ease infinite;
  animation: download1 2s ease infinite;
}
.download-file ul li a i:after {
  background-image: url(../images/icon/download-icon1.png);
}
.download-file ul li a .text {
  display: inline;
  position: relative;
}
.download-file ul li a:hover .text {
  color: var(--primary);
}

@-webkit-keyframes download1 {
  0%, 10%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes download1 {
  0%, 10%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.widget_contact {
  position: relative;
  padding: 50px 30px;
  border-radius: 6px;
  background-size: cover;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.widget_contact:after {
  background: var(--gradient-sec);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  z-index: -1;
  background-size: 200%;
}
.widget_contact img {
  margin-bottom: 20px;
}
.widget_contact h4, .widget_contact .h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 30px;
}
.widget_contact .phone-number {
  position: relative;
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 11px;
}
.widget_contact .phone-number a {
  color: #fff;
}
.widget_contact .email {
  position: relative;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 30px;
}
.widget_contact .email a {
  color: #fff;
}

.service-carouse .item {
  overflow: hidden;
  border-radius: 6px;
}

.widget ul.list-2,
ul.list-2 {
  display: table;
}
.widget ul.list-2 li,
ul.list-2 li {
  width: 50%;
  float: left;
}

/* widget listing*/
.wp-block-latest-posts,
.wp-block-categories-list,
.wp-block-archives-list,
.widget_categories ul,
.widget_archive ul,
.widget_meta ul,
.widget_pages ul,
.widget_recent_comments ul,
.widget_nav_menu ul,
.widget_recent_entries ul,
.widget_services ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.wp-block-latest-posts li,
.wp-block-categories-list li,
.wp-block-archives-list li,
.widget_categories ul li,
.widget_archive ul li,
.widget_meta ul li,
.widget_pages ul li,
.widget_recent_comments ul li,
.widget_nav_menu ul li,
.widget_recent_entries ul li,
.widget_services ul li {
  padding-bottom: 1.125rem;
  margin-bottom: 0.8125rem;
  position: relative;
  padding: 0.5rem 0rem 0.5rem 1.5rem;
  margin-bottom: 0;
  line-height: 1.25rem;
}
.wp-block-latest-posts li a,
.wp-block-categories-list li a,
.wp-block-archives-list li a,
.widget_categories ul li a,
.widget_archive ul li a,
.widget_meta ul li a,
.widget_pages ul li a,
.widget_recent_comments ul li a,
.widget_nav_menu ul li a,
.widget_recent_entries ul li a,
.widget_services ul li a {
  color: inherit;
  text-transform: capitalize;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  position: relative;
}
.wp-block-latest-posts li a:before,
.wp-block-categories-list li a:before,
.wp-block-archives-list li a:before,
.widget_categories ul li a:before,
.widget_archive ul li a:before,
.widget_meta ul li a:before,
.widget_pages ul li a:before,
.widget_recent_comments ul li a:before,
.widget_nav_menu ul li a:before,
.widget_recent_entries ul li a:before,
.widget_services ul li a:before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  display: block;
  left: -1.5rem;
  top: 0.063rem;
  font-size: 12px;
  font-weight: 900;
  color: var(--primary);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.widget_categories ul li a:before{
	color:#fff !important;
}
.wp-block-latest-posts li a:hover,
.wp-block-categories-list li a:hover,
.wp-block-archives-list li a:hover,
.widget_categories ul li a:hover,
.widget_archive ul li a:hover,
.widget_meta ul li a:hover,
.widget_pages ul li a:hover,
.widget_recent_comments ul li a:hover,
.widget_nav_menu ul li a:hover,
.widget_recent_entries ul li a:hover,
.widget_services ul li a:hover {
  color: var(--primary);
}
.widget_categories ul li a:hover{
	color:#fff !important;
}
.wp-block-latest-posts li a:hover:before,
.wp-block-categories-list li a:hover:before,
.wp-block-archives-list li a:hover:before,
.widget_categories ul li a:hover:before,
.widget_archive ul li a:hover:before,
.widget_meta ul li a:hover:before,
.widget_pages ul li a:hover:before,
.widget_recent_comments ul li a:hover:before,
.widget_nav_menu ul li a:hover:before,
.widget_recent_entries ul li a:hover:before,
.widget_services ul li a:hover:before {
  transform: rotate(45deg);
}
.wp-block-latest-posts li li,
.wp-block-categories-list li li,
.wp-block-archives-list li li,
.widget_categories ul li li,
.widget_archive ul li li,
.widget_meta ul li li,
.widget_pages ul li li,
.widget_recent_comments ul li li,
.widget_nav_menu ul li li,
.widget_recent_entries ul li li,
.widget_services ul li li {
  border-bottom: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  line-height: 1.375rem;
}
.wp-block-latest-posts li li:last-child,
.wp-block-categories-list li li:last-child,
.wp-block-archives-list li li:last-child,
.widget_categories ul li li:last-child,
.widget_archive ul li li:last-child,
.widget_meta ul li li:last-child,
.widget_pages ul li li:last-child,
.widget_recent_comments ul li li:last-child,
.widget_nav_menu ul li li:last-child,
.widget_recent_entries ul li li:last-child,
.widget_services ul li li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.wp-block-latest-posts li li:before,
.wp-block-categories-list li li:before,
.wp-block-archives-list li li:before,
.widget_categories ul li li:before,
.widget_archive ul li li:before,
.widget_meta ul li li:before,
.widget_pages ul li li:before,
.widget_recent_comments ul li li:before,
.widget_nav_menu ul li li:before,
.widget_recent_entries ul li li:before,
.widget_services ul li li:before {
  top: 0.5rem;
  left: 0;
}
.wp-block-latest-posts ul,
.wp-block-categories-list ul,
.wp-block-archives-list ul,
.widget_categories ul ul,
.widget_archive ul ul,
.widget_meta ul ul,
.widget_pages ul ul,
.widget_recent_comments ul ul,
.widget_nav_menu ul ul,
.widget_recent_entries ul ul,
.widget_services ul ul {
  padding-left: 1.125rem;
  margin-top: 0.5rem;
  margin-left: -0.9375rem;
}

/*widget categories*/
.widget_archive li ul,
.wp-block-categories-list li ul,
.wp-block-archives-list li ul,
.wp-block-latest-posts li ul,
.widget_categories li ul {
  margin-bottom: -0.625rem;
}

.widget_archive ul li,
.wp-block-categories-list li,
.wp-block-archives-list li,
.wp-block-latest-posts li,
.widget_categories ul li {
  text-align: right;
  display: table;
  width: 100%;
  padding: 0.5rem 0rem 0.5rem 1.5rem !important;
  line-height: 1.3 !important;
}

.wp-block-categories-list li:before,
.wp-block-archives-list li:before,
.wp-block-latest-posts li:before {
  content: none !important;
}

.widget_archive li a,
.wp-block-latest-posts li a,
.wp-block-categories-list li a,
.wp-block-archives-list li a,
.widget_categories li a {
  float: left;
  text-transform: capitalize;
  text-align: left;
}

.wp-block-latest-posts,
.wp-block-categories-list,
.wp-block-archives-list {
  margin-bottom: 2.5rem;
  padding: 0 !important;
}

.widget_recent_comments ul {
  margin-top: -0.625rem;
}
.widget_recent_comments ul li {
  padding-left: 1.875rem;
  line-height: 1.625rem;
}
.widget_recent_comments ul li a {
  font-weight: 500;
}
.widget_recent_comments ul li a:before {
  content: none;
}
.widget_recent_comments ul li:before {
  content: "\f27a";
  font-family: "Font Awesome 5 Free";
  background: transparent;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  top: 0.625rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.widget_meta ul li a abbr[title] {
  color: #333;
  border-bottom: none;
}

.widget_calendar th,
.widget_calendar td {
  text-align: center;
  border: 0.0625rem solid var(--rgba-primary-1);
  padding: 0.4em;
}
.widget_calendar th,
.widget_calendar tfoot td {
  border-color: rgba(0, 0, 0, 0.05);
}
.widget_calendar th:last-child,
.widget_calendar tfoot td:last-child {
  border: 0;
}
.widget_calendar tr {
  border-bottom: 0.0625rem solid var(--rgba-primary-1);
}
.widget_calendar tr:nth-child(2n+2) {
  background-color: var(--rgba-primary-05);
}
.widget_calendar table {
  border-collapse: collapse;
  margin: 0;
  width: 100%;
}
.widget_calendar .calendar_wrap th,
.widget_calendar tfoot td a {
  color: #fff;
  background: #1f2471;
}
.widget_calendar .calendar_wrap td a {
  font-weight: 600;
  text-transform: uppercase;
  color: inherit;
}
.widget_calendar caption {
  text-align: center;
  font-weight: 600;
  caption-side: top;
  background: #1f2471;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9375rem;
}

footer .widget_calendar th,
footer .widget_calendar td {
  border-color: rgba(255, 255, 255, 0.1);
}
footer .widget_calendar tr {
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}
footer .widget_calendar tr:nth-child(2n+2) {
  background-color: rgba(255, 255, 255, 0.05);
}

.wp-calendar-nav {
  background: var(--title);
  color: #fff;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.wp-calendar-nav span {
  padding: 0.3125rem 1.25rem;
  width: 44%;
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.2);
}
.wp-calendar-nav span a {
  color: #fff;
}

.widget_archive select {
  width: 100%;
  padding: 0.3125rem;
  border: 0.0625rem solid #CCC;
}

.widget_text select {
  width: 100%;
  border: 0.0625rem solid #CCC;
}
.widget_text select option {
  width: 100%;
}
.widget_text p {
  font-size: 0.9375rem;
  line-height: 1.75rem;
}

/*widget rss  */
.rsswidget img {
  display: inherit;
}

.widget-title .rsswidget {
  display: inline-block;
}

.side-bar .widget_categories ul li a:before {
  color: #000 !important;
}

.side-bar .widget_categories ul li a:hover{
	color:#000 !important;
}

ul a.rsswidget,
ul cite {
  font-weight: 600;
  color: var(--title);
}

ul a.rsswidget {
  font-size: 1.125rem;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
ul a.rsswidget:hover {
  color: var(--primary);
}

.rssSummary {
  margin: 1.25rem 0;
  line-height: 1.7;
  font-size: 15px;
}

.rss-date {
  display: block;
  margin-top: 0.3125rem;
  font-weight: 400;
}

.widget_rss ul li {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
  padding-top: 0;
}
.widget_rss ul li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.widget_gallery ul {
  padding-left: 0;
  display: table;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
.widget_gallery.gallery-grid-2 li {
  width: 50%;
}
.widget_gallery.gallery-grid-4 li {
  width: 25%;
}
.widget_gallery li {
  display: inline-block;
  width: 33.33%;
  float: left;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  padding: 0.625rem;
}
.widget_gallery li img {
  display: inline-block;
  width: 100%;
  border-radius: var(--border-radius-sm);
}
.widget_gallery li:nth-child(3n-3) {
  margin-right: 0;
}
.widget_gallery li:hover {
  opacity: 0.7;
}
.widget_gallery li a {
  display: inline-block;
}

.widget_tag_cloud .tagcloud {
  clear: both;
  display: table;
}
.widget_tag_cloud .tagcloud a {
  position: relative;
  border: 1px solid;
  padding: 12px 24px;
  display: inline-block;
  margin: 0 15px 15px 0;
  font-size: 15px;
  color: inherit;
  line-height: 1.4;
  border-radius: var(--border-radius-sm);
}
@media only screen and (max-width: 575px) {
  .widget_tag_cloud .tagcloud a {
    padding: 8px 16px;
    margin: 0 10px 10px 0;
  }
}
.widget_tag_cloud .tagcloud a:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
}

.recent-posts-entry .widget-post-bx .widget-post {
  display: flex;
  align-items: center;
  border-radius: 0.25rem;
  margin-bottom: 20px;
  transition: all 0.5s;
}
.recent-posts-entry .widget-post-bx .widget-post .ic-media {
  width: 110px;
  min-width: 110px;
  border-radius: var(--border-radius-sm);
}
.recent-posts-entry .widget-post-bx .widget-post .ic-info {
  padding-left: 20px;
}
.recent-posts-entry .widget-post-bx .widget-post .ic-meta {
  margin-bottom: 0;
}
.recent-posts-entry .widget-post-bx .widget-post .ic-meta ul {
  line-height: 1;
}
.recent-posts-entry .widget-post-bx .widget-post .ic-meta ul li {
  color: var(--primary);
  font-family: var(--font-family-title);
  position: relative;
}
.recent-posts-entry .widget-post-bx .widget-post .title {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.service_menu_nav {
  background: #fff;
  padding: 30px 30px;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
@media only screen and (max-width: 1199px) {
  .service_menu_nav {
    padding: 15px;
  }
}
.service_menu_nav ul li {
  padding: 0;
}
.service_menu_nav ul li a {
  background-color: #fff;
  display: block;
  border-radius: 6px;
  padding: 15px 25px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  background-size: 200%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .service_menu_nav ul li a {
    padding: 15px;
  }
}
.service_menu_nav ul li a:before {
  content: "\f30b";
  font-weight: 900;
  font-family: "Line Awesome Free";
  position: absolute;
  right: 50px;
  left: auto;
  top: 50%;
  font-size: 30px;
  opacity: 0;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1199px) {
  .service_menu_nav ul li a:before {
    font-size: 22px;
  }
}
.service_menu_nav ul li a:after {
  background-image: var(--gradient);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  content: "";
  background-size: 200%;
  opacity: 0;
  z-index: -1;
}
.service_menu_nav ul li:hover a, .service_menu_nav ul li.current-menu-item a, .service_menu_nav ul li.active a {
  padding-left: 20px;
  border-color: transparent;
  transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  color: #fff;
}
.service_menu_nav ul li:hover a:before, .service_menu_nav ul li.current-menu-item a:before, .service_menu_nav ul li.active a:before {
  opacity: 1;
  right: 10px;
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .service_menu_nav ul li:hover a:before, .service_menu_nav ul li.current-menu-item a:before, .service_menu_nav ul li.active a:before {
    font-size: 22px;
    right: 5px;
  }
}
.service_menu_nav ul li:hover a:after, .service_menu_nav ul li.current-menu-item a:after, .service_menu_nav ul li.active a:after {
  opacity: 1;
}

.wp-block-categories-dropdown,
.wp-block-archives-dropdown {
  margin-bottom: 20px;
}
.wp-block-categories-dropdown select:after,
.wp-block-archives-dropdown select:after {
  content: "\f078";
  font-weight: 900;
  font-family: "Line Awesome Free";
  position: absolute;
  right: 50px;
  left: auto;
  top: 50%;
}

.post-tags strong {
  font-weight: 700;
  color: #212529;
  margin-right: 10px;
}
.post-tags a {
  margin-right: 10px;
  padding: 5px 15px;
  display: inline-block;
  border: 1px solid;
  border-color: #777777;
  border-radius: var(--border-radius-sm);
  color: #777777;
}
.post-tags a:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}
@media only screen and (max-width: 575px) {
  .post-tags a {
    margin-right: 5px;
    padding: 4px 12px;
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.inquiry-modal .modal-dialog {
  max-width: 700px;
  display: flex;
  min-height: auto;
  justify-content: stretch;
  align-items: stretch;
}
.inquiry-modal .form-control, .inquiry-modal .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-author .inquiry-modal input, .inquiry-modal .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-email .inquiry-modal input, .inquiry-modal .comment-respond .comment-form p.comment-form-url input, .comment-respond .comment-form p.comment-form-url .inquiry-modal input,
.inquiry-modal .comment-respond .comment-form p textarea,
.comment-respond .comment-form p .inquiry-modal textarea, .inquiry-modal .wp-block-categories-dropdown select, .wp-block-categories-dropdown .inquiry-modal select,
.inquiry-modal .wp-block-archives-dropdown select,
.wp-block-archives-dropdown .inquiry-modal select {
  font-size: 15px;
  font-weight: 400;
  color: #000;
}
.inquiry-modal .inquiry-adv {
  flex: 0 0 50%;
  max-width: 50%;
}
@media only screen and (max-width: 767px) {
  .inquiry-modal .inquiry-adv {
    display: none;
  }
}
.inquiry-modal .inquiry-adv img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.inquiry-modal .modal-content {
  border: 0;
  border-radius: 0;
  background: #fff;
  padding: 30px;
  flex: 0 0 50%;
  max-width: 50%;
}
@media only screen and (max-width: 767px) {
  .inquiry-modal .modal-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px;
  }
}
.inquiry-modal .modal-content .modal-header {
  border: 0;
  padding: 0;
  display: block;
  text-align: center;
}
.inquiry-modal .modal-content .modal-header .modal-title {
  font-size: 24px;
  margin-bottom: 30px;
  line-height: 1.3;
  font-family: var(--font-family-title);
  text-align: center;
  width: 100%;
}
.inquiry-modal .modal-content .modal-header i {
  color: var(--primary);
  font-size: 54px;
  line-height: 1;
  display: inline-block;
}
.inquiry-modal .modal-content .modal-body {
  padding: 0;
}
.inquiry-modal .btn-close {
  margin: 0;
  position: absolute;
  right: -40px;
  top: -40px;
  color: #fff;
  font-weight: 100;
  text-shadow: none;
  opacity: 1;
  font-size: 40px;
  padding: 0;
  height: 40px;
  line-height: 40px;
  width: 40px;
  border: 0;
  background: transparent;
}
@media only screen and (max-width: 767px) {
  .inquiry-modal .btn-close {
    right: 0;
  }
}

.icmove1 {
  animation: dzMove1 1s linear infinite;
}

.icheart {
  animation: dzHeart 1s linear infinite;
}

@keyframes dzMove1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  25% {
    -webkit-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
  }
  50% {
    -webkit-transform: translate(5px, 5px);
    transform: translate(5px, 5px);
  }
  75% {
    -webkit-transform: translate(10px, -5px);
    transform: translate(10px, -5px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes dzHeart {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0.9);
  }
}
.social-list {
  display: inline-block;
}
.social-list li {
  margin-left: 2px;
  margin-right: 2px;
  display: inline-block;
}
.social-list li a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: #fff;
  display: block;
  text-align: center;
  padding: 0;
  text-align: center;
  justify-content: center;
  border-radius: var(--border-radius-sm);
}
.social-list li a i {
  font-size: 16px;
}
.social-list li a:after {
  left: -55%;
}
.social-list li a:hover {
  color: #fff;
}
.social-list li a:hover:after {
  left: 120%;
}
.social-list.style-1 li a {
  background-color: rgba(255, 255, 255, 0.2);
}
.social-list.style-1 li a:hover {
  background-color: #fff;
  color: var(--primary);
}
.social-list.style-2 {
  margin: 0 -5px;
  display: flex;
}
.social-list.style-2 li {
  display: inline-block;
  padding: 0 5px;
}
.social-list.style-2 li a {
  height: 40px;
  width: 40px;
  background-color: var(--primary);
  display: block;
  text-align: center;
  line-height: 40px;
  border-radius: var(--border-radius-base);
  color: #fff;
  box-shadow: 0 5px 15px -10px var(--primary);
}

.facebook {
  background-color: #3b5999;
}

.instagram {
  background-color: #ff1d7d;
}

.twitter {
  background-color: #55acef;
}

.youtube {
  background-color: #FF0000;
}

.behance {
  background-color: #053eff;
}

.telegram {
  background-color: #0088cc;
}

.skype {
  background-color: #00aff0;
}

.pinterest {
  background-color: #E60023;
}

.vimeo {
  background-color: #86c9ef;
}

.tumblr {
  background-color: #34526f;
}

.yahoo {
  background-color: #720e9e;
}

.call-action {
  padding: 50px;
  border-radius: var(--border-radius-base);
}
.call-action .section-head {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .call-action {
    padding: 30px;
  }
}

.progress-bx {
  overflow: hidden;
}
.progress-bx .progress-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.progress-bx .progress-info .title {
  margin-bottom: 0;
}
.progress-bx .progress-info .progress-value {
  margin-bottom: 0;
}
.progress-bx .progress {
  overflow: unset;
}
.progress-bx .progress .progress-bar {
  position: relative;
  overflow: unset;
}
.progress-bx.style-1 .progress {
  background-color: #ebebeb;
  height: 8px;
  border-radius: var(--border-radius-base);
}
.progress-bx.style-1 .progress .progress-bar {
  background-color: var(--primary);
  border-radius: var(--border-radius-base);
}
@media only screen and (max-width: 767px) {
  .progress-bx.style-1 .progress-info {
    margin-bottom: 10px;
  }
}
.progress-bx.style-3 .progress {
  height: 7px;
  border-radius: 0;
}
.progress-bx.style-3 .progress .progress-bar {
  background-color: var(--primary);
}
.progress-bx.style-3 .progress .progress-bar .progress-value {
  position: absolute;
  right: 0;
  top: -40px;
  font-size: 18px;
  background: var(--primary);
  color: #fff;
  letter-spacing: normal;
  padding: 0px 5px;
  min-width: 30px;
  min-height: 30px;
  line-height: 30px;
}

/* Light Gallery */
.lg-actions .lg-next,
.lg-actions .lg-prev,
.lg-sub-html,
.lg-toolbar {
  background-color: rgba(30, 30, 30, 0.6);
}

.lg-outer {
  z-index: 99999;
}
.lg-outer .lg-toogle-thumb,
.lg-outer .lg-thumb-outer,
.lg-outer .lg-img-wrap,
.lg-outer .lg-item {
  background-color: transparent;
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: var(--primary);
}

.lg-backdrop {
  z-index: 99999;
  background-color: rgba(30, 30, 30, 0.9);
}

.lg-outer .lg-toogle-thumb,
.lg-actions .lg-next,
.lg-actions .lg-prev,
.lg-toolbar .lg-icon,
#lg-counter {
  color: #fff;
}

.lightimg {
  cursor: pointer;
}

.about-media {
  position: relative;
}

.move-1 {
  -webkit-animation: move1 5s infinite;
  animation: move1 5s infinite;
}

.move-2 {
  -webkit-animation: move2 5s infinite;
  animation: move2 5s infinite;
}

.move-3 {
  -webkit-animation: move3 5s infinite;
  animation: move3 5s infinite;
}

@-webkit-keyframes move1 {
  0% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px);
  }
  50% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px);
  }
  100% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px);
  }
}
@keyframes move1 {
  0% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px);
  }
  50% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px);
  }
  100% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px);
  }
}
@-webkit-keyframes move2 {
  0% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px);
  }
  50% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px);
  }
  100% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px);
  }
}
@-webkit-keyframes move3 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(5px, 0);
  }
  40% {
    transform: translate(5px, 5px);
  }
  65% {
    transform: translate(0, 5px);
  }
  65% {
    transform: translate(5px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.radial-progress {
  height: auto;
  max-width: 130px;
  transform: rotate(-90deg);
  width: 100%;
  min-width: 130px;
}
.radial-progress circle {
  fill: rgba(0, 0, 0, 0);
  stroke: #fff;
  stroke-dashoffset: 219.9114857513;
  stroke-width: 5px;
}
.radial-progress circle.incomplete {
  opacity: 0.25;
}
.radial-progress circle.complete {
  stroke-dasharray: 219.9114857513;
}
.radial-progress text {
  fill: var(--primary);
  text-anchor: middle;
  font-size: 18px;
  font-family: var(--font-family-title);
  font-weight: 700;
}
.radial-progress:nth-of-type(6n+1) circle {
  stroke: var(--primary);
}

.about-media {
  position: relative;
}
.about-media.style-1 {
  height: 100%;
  width: 40vw;
  float: right;
}
.about-media.style-1 .icon-bx {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 1;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-media.style-1 .icon-bx img {
  width: 60px;
}
.about-media.style-1 .icon-bx:before, .about-media.style-1 .icon-bx:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 100%;
  z-index: -1;
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  background-color: var(--primary);
}
.about-media.style-1 .icon-bx:before {
  animation: animationSignal1;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  -webkit-animation: animationSignal1;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 3s;
}
.about-media.style-1 .icon-bx:after {
  animation: animationSignal2;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  -webkit-animation: animationSignal2;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 3s;
}
@media only screen and (max-width: 1199px) {
  .about-media.style-1 {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .about-media.style-1 {
    width: 50vw;
  }
}
@media only screen and (max-width: 767px) {
  .about-media.style-1 {
    width: 100%;
    margin: 0 auto;
    height: 400px;
  }
}

.about-contact {
  display: flex;
  align-items: center;
  width: 100%;
}
.about-contact i {
  width: 90px;
  min-width: 90px;
  height: 90px;
  color: #fff;
  background: var(--primary);
  display: inline-block;
  text-align: center;
  font-size: 45px;
  line-height: 90px;
  margin-right: 20px;
  border-radius: var(--border-radius-base);
}
.about-contact .number {
  margin: 0;
  font-size: 45px;
}
@media only screen and (max-width: 1400px) {
  .about-contact .number {
    font-size: 36px;
  }
}
@media only screen and (max-width: 991px) {
  .about-contact i {
    width: 60px;
    min-width: 60px;
    height: 60px;
    font-size: 24px;
    line-height: 60px;
    margin-right: 15px;
  }
  .about-contact .number {
    font-size: 24px;
  }
}

.year-exp {
  background: #fff;
  padding: 20px 40px;
  display: flex;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -200px;
  right: 20px;
  align-items: center;
  border-bottom: 6px solid var(--primary);
  animation: dzMove1 12s linear infinite;
}
@media only screen and (max-width: 991px) {
  .year-exp {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .year-exp {
    padding: 10px 25px;
    top: -30px;
  }
}
.year-exp .year {
  font-size: 80px;
  line-height: 1;
  margin: 0;
}
@media only screen and (max-width: 575px) {
  .year-exp .year {
    font-size: 60px;
  }
}
.year-exp .text {
  font-weight: 600;
  margin-bottom: 0;
  margin-left: 20px;
}
@media only screen and (max-width: 575px) {
  .year-exp .text {
    margin-left: 10px;
    font-size: 18px;
    line-height: 1.2;
  }
}

.about-media.style-2 {
  margin-bottom: 50px;
}
.about-media.style-2 img {
  border-radius: var(--border-radius-base);
}
.about-media.style-2:after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: -50px;
  bottom: -50px;
  z-index: -1;
  border-width: 60px;
  border-style: solid;
  border-color: #fff #fff var(--primary) var(--primary);
}
@media only screen and (max-width: 1400px) {
  .about-media.style-2 {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-media.style-2 {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .about-media.style-2 {
    padding-left: 50px;
  }
  .about-media.style-2:after {
    left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .about-media.style-2 {
    padding-left: 25px;
    margin-bottom: 25px;
  }
  .about-media.style-2:after {
    bottom: -25px;
    border-width: 30px;
  }
}

.bg-primary-light {
  background-color: var(--rgba-primary-1);
}

.about-media.style-3 {
  padding-left: 60px;
}
.about-media.style-3 .video-bx {
  position: absolute;
  left: 0;
  bottom: 60px;
  width: 270px;
  height: 270px;
  border: 10px solid #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border-radius: var(--border-radius-base);
  background-color: #fff;
}
.about-media.style-3 img {
  border-radius: var(--border-radius-base);
}
@media only screen and (max-width: 575px) {
  .about-media.style-3 {
    padding-left: 40px;
  }
  .about-media.style-3 .video-bx {
    bottom: 30px;
    width: 150px;
    height: 150px;
    border: 5px solid #fff;
  }
}

.about-bx2 .year-exp {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  padding: 30px 40px 5px 5px;
  top: auto;
  right: auto;
  border: 0;
  animation: none;
}
.about-bx2 .year-exp .year {
  height: 105px;
  width: 105px;
  text-align: center;
  border: 5px solid;
  line-height: 98px;
  font-size: 45px;
  margin: 0;
  border-color: var(--primary);
  margin-right: 20px;
}
.about-bx2 .year-exp .text {
  font-size: 25px;
  margin: 0;
}
.about-bx2 .list-square-check li {
  margin-top: 15px;
  margin-bottom: 15px;
}
.about-bx2 .about-media {
  border-radius: var(--border-radius-base);
}
.about-bx2 .about-media img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .about-bx2 .about-media {
    height: 450px;
  }
}
@media only screen and (max-width: 767px) {
  .about-bx2 .list-square-check li {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 575px) {
  .about-bx2 .year-exp {
    padding: 15px 30px 1px 1px;
  }
  .about-bx2 .year-exp .year {
    height: 80px;
    width: 80px;
    line-height: 74px;
    font-size: 35px;
    margin-right: 15px;
  }
  .about-bx2 .year-exp .text {
    font-size: 20px;
  }
}

.list-square-check li {
  padding: 10px 15px 10px 60px;
  min-height: 45px;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 15px;
}
.list-square-check li:before {
  content: "\f00c";
  top: 50%;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: var(--rgba-primary-1);
  color: #000;
  text-align: center;
  padding: 0 0 0 0;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  transform: translateY(-50%);
  border-radius: var(--border-radius-sm);
}
.list-square-check li:hover:before {
  background-color: var(--primary);
  color: #fff;
}

.nav-tabs.nav-tabs1 {
  border: 0;
  justify-content: space-between;
}
.nav-tabs.nav-tabs1 .nav-link {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  color: #777777;
  border-radius: 0;
  line-height: 18px;
  padding: 20px 30px;
}
.nav-tabs.nav-tabs1 .nav-link.active {
  color: var(--title);
  border: 1px solid #E1E1F0;
}
@media only screen and (max-width: 1199px) {
  .nav-tabs.nav-tabs1 .nav-link {
    font-size: 16px;
    line-height: 16px;
    padding: 18px 25px;
  }
}
@media only screen and (max-width: 575px) {
  .nav-tabs.nav-tabs1 .nav-link {
    font-size: 14px;
    line-height: 14px;
    padding: 15px;
  }
}

.about-bx5 {
  --font-family-title: "Roboto", sans-serif;
}
.about-bx5 .history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-bx5 .history-row .year,
.about-bx5 .history-row .awards,
.about-bx5 .history-row .sales {
  font-family: var(--font-family-title);
  font-size: 65px;
  font-weight: 500;
  min-width: 120px;
  letter-spacing: 8px;
  border-bottom: 4px solid var(--primary);
  display: inline-block;
}
.about-bx5 .history-row .text {
  display: block;
  font-size: 18px;
}
.about-bx5 .ic-media {
  height: 100%;
  overflow: visible;
  padding-right: 15px;
  z-index: 1;
  margin-bottom: 80px;
}
.about-bx5 .ic-media img {
  height: 100%;
}
.about-bx5 .ic-media:after {
  position: absolute;
  content: "";
  height: 100%;
  width: calc(50vw - 16%);
  right: 80px;
  z-index: -2;
  background: var(--primary);
  bottom: -80px;
}
.about-bx5 .ic-media.right {
  padding-right: 0;
  padding-left: 15px;
}
.about-bx5 .ic-media.right:after {
  left: 80px;
}
.about-bx5 .ic-media.right .circle-bg {
  left: auto;
  right: -25%;
}
.about-bx5 .ic-media .circle-bg {
  position: absolute;
  height: 400px;
  z-index: -1;
  width: 400px;
  bottom: -80px;
  left: -25%;
  -webkit-animation: move01 10s ease-in infinite;
  animation: move01 10s ease-in infinite;
  opacity: 0.3;
}
@media only screen and (max-width: 991px) {
  .about-bx5 .ic-media {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .about-bx5 .ic-media:after {
    content: none;
  }
  .about-bx5 .ic-media .circle-bg {
    display: none;
  }
  .about-bx5 .ic-media.right {
    padding-right: 0;
    padding-left: 0;
  }
  .about-bx5 .history-row .year,
  .about-bx5 .history-row .awards,
  .about-bx5 .history-row .sales {
    font-size: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .about-bx5 .history-row .year,
  .about-bx5 .history-row .awards,
  .about-bx5 .history-row .sales {
    font-size: 38px;
    min-width: 80px;
  }
}

@keyframes move01 {
  0% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(60deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
.about-bx6 .ic-media {
  position: relative;
  overflow: unset;
  padding-top: 60px;
  padding-bottom: 60px;
}
.about-bx6 .ic-media .img1 {
  padding: 20px;
  margin-right: 0;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  background-color: #fff;
}
.about-bx6 .ic-media .img2 {
  margin-left: 200px;
  margin-top: 20px;
  position: relative;
  z-index: -1;
}
.about-bx6 .ic-media .img2:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 60px;
  top: 60px;
  border: 5px solid #f8f8f8;
  z-index: -1;
}
.about-bx6 .title {
  margin-bottom: 30px;
}
.about-bx6 .year-exp2 {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  background-color: #212529;
  border-radius: var(--border-radius-sm);
}
.about-bx6 .year-exp2 .year {
  margin: 0 20px 0 0;
  font-family: "Roboto", sans-serif;
}
.about-bx6 .year-exp2 .text {
  margin: 0;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  font-family: "Roboto", sans-serif;
}
.about-bx6 .year-exp2 .text span {
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .about-bx6 .ic-media .img1 {
    width: 300px;
  }
  .about-bx6 .ic-media .img2 {
    margin-left: 250px;
  }
}
@media only screen and (max-width: 767px) {
  .about-bx6 .ic-media .img1 {
    padding: 10px;
  }
  .about-bx6 .ic-media .img2 {
    margin-left: 200px;
  }
}
@media only screen and (max-width: 575px) {
  .about-bx6 .ic-media {
    padding-bottom: 35px;
  }
  .about-bx6 .ic-media .img1 {
    width: 200px;
  }
  .about-bx6 .ic-media .img2 {
    margin-left: 100px;
    margin-top: 0px;
  }
  .about-bx6 .ic-media .img2:after {
    right: 30px;
    top: 40px;
  }
}

.about-bx7 .about-contact-box {
  position: relative;
  padding-left: 100px;
}
.about-bx7 .about-contact-box .title {
  color: #1b1b1b;
  font-size: 36px;
  line-height: 48px;
}
.about-bx7 .about-contact-box .rotate-text {
  position: absolute;
  left: -255px;
  top: 244px;
  height: 50px;
  width: 550px;
  display: inline-block;
  color: #ebebea;
  font-size: 50px;
  line-height: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  transform: rotate(-90deg);
}
.about-bx7 .about-contact-box .nav-tabs {
  border-bottom: 0;
}
.about-bx7 .about-contact-box .nav-tabs li {
  padding-right: 60px;
  position: relative;
}
.about-bx7 .about-contact-box .nav-tabs li a {
  position: relative;
  padding: 0;
  display: block;
  width: 50px;
  text-align: center;
  line-height: 50px;
  height: 50px;
  border: 0;
  background: #b0b0b0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
}
.about-bx7 .about-contact-box .nav-tabs li a.active:hover, .about-bx7 .about-contact-box .nav-tabs li a.active:focus, .about-bx7 .about-contact-box .nav-tabs li a.active {
  background-color: var(--primary);
}
.about-bx7 .about-contact-box .nav-tabs li:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 2px;
  content: "";
  background: rgb(237, 237, 237);
  transform: translate(-25%, -50%);
}
.about-bx7 .about-contact-box .nav-tabs li:last-child {
  padding-right: 0;
}
.about-bx7 .about-contact-box .nav-tabs li:last-child:after {
  content: none;
}
.about-bx7 .about-img-box {
  position: relative;
}
.about-bx7 .about-img-box .about-img-one {
  padding: 0 0 160px 75px;
}
.about-bx7 .about-img-box .about-img-one img {
  width: 100%;
}
.about-bx7 .about-img-box .about-img-two {
  position: absolute;
  left: 0;
  bottom: 0;
}
.about-bx7 .about-img-box .about-img-three {
  position: absolute;
  right: 50px;
  bottom: 50px;
}
.about-bx7 .about-img-box .about-text {
  position: absolute;
  top: 85px;
  left: -55px;
  color: var(--color-primary);
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Roboto", sans-serif;
  transform: rotate(-90deg);
  height: 75px;
}
.about-bx7 .about-img-box .about-text p {
  position: relative;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  padding: 0 30px;
}
@media only screen and (max-width: 1199px) {
  .about-bx7 .about-contact-box {
    padding-left: 55px;
  }
  .about-bx7 .about-contact-box .title {
    font-size: 30px;
    line-height: 40px;
  }
  .about-bx7 .about-contact-box .rotate-text {
    font-size: 40px;
    line-height: 40px;
  }
  .about-bx7 .about-img-box .about-text {
    top: 65px;
  }
  .about-bx7 .about-img-box .about-text p {
    padding: 0 20px;
  }
  .about-bx7 .about-img-box .about-img-one {
    padding: 0 0 210px 65px;
  }
  .about-bx7 .about-img-box about-img-three {
    right: 20px;
  }
  .about-bx7 .ic-tabs .tab-pane {
    padding: 10px 0;
  }
}
@media only screen and (max-width: 991px) {
  .about-bx7 .about-contact-box .rotate-text {
    top: 120px;
  }
  .about-bx7 .about-contact-box .about-img-two {
    width: 70%;
  }
  .about-bx7 .about-contact-box .about-img-two img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .about-bx7 .about-contact-box {
    padding-left: 0;
  }
  .about-bx7 .about-contact-box .title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  .about-bx7 .about-contact-box .rotate-text {
    display: none;
  }
  .about-bx7 .about-contact-box .nav-tabs li {
    padding-right: 40px;
  }
  .about-bx7 .about-contact-box .nav-tabs li:after {
    width: 25px;
  }
  .about-bx7 .about-contact-box .nav-tabs li a {
    height: 40px;
    line-height: 40px;
    width: 40px;
    font-size: 14px;
  }
  .about-bx7 .about-inner-content p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .about-bx7 .about-img-box .about-img-one {
    padding: 0 0 130px 40px;
  }
  .about-bx7 .about-img-box .about-img-two {
    width: 50%;
  }
  .about-bx7 .about-img-box .about-img-three {
    right: 20px;
    width: 50%;
  }
  .about-bx7 .about-img-box .about-text {
    left: -65px;
  }
  .about-bx7 .about-img-box .title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 15px;
  }
  .about-bx7 .about-contact-box .nav-tabs li {
    padding-right: 45px;
  }
  .about-bx7 .about-contact-box .nav-tabs li:after {
    width: 27px;
  }
  .about-bx7 .about-contact-box .nav-tabs li a {
    width: 40px;
    line-height: 40px;
    height: 40px;
    font-size: 14px;
  }
}

.about-bx8 {
  overflow: hidden;
}
.about-bx8 .about-img-box {
  position: relative;
  display: flex;
}
.about-bx8 .about-img-box .about-img-one {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about-bx8 .about-img-box .about-img-two {
  flex: 0 0 50%;
  max-width: 50%;
  margin-left: auto;
}
@media only screen and (max-width: 1199px) {
  .about-bx8 .about-img-box .about-img-two {
    flex: 0 0 60%;
    max-width: 60%;
  }
}
.about-bx8 .about-img-box .video-bx {
  position: relative;
  z-index: 1;
  border-radius: 0;
  overflow: hidden;
  border: 5px solid #fff;
}
.about-bx8 .about-img-box .video-title {
  position: absolute;
  left: 0;
  bottom: -50px;
  right: 0;
  width: 100%;
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  font-family: auto;
  text-align: center;
  font-family: "Knewave", cursive;
  transform: rotate(-30deg);
  z-index: 3;
}
.about-bx8 .about-img-box .about-shape1 {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../images/food/about/shape-1.png);
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
}
.about-bx8 .about-img-box .about-shape2 {
  position: absolute;
  top: 50px;
  left: 50px;
  background: url(../../images/food/about/shape-2.png);
  background-repeat: no-repeat;
  width: 239px;
  height: 66px;
}
.about-bx8 .about-img-box .about-shape4 {
  position: absolute;
  top: 140px;
  right: -70px;
  background: url(../../images/food/about/shape-3.png);
  background-repeat: no-repeat;
  width: 117px;
  height: 130px;
  z-index: 0;
}
@media only screen and (max-width: 1199px) {
  .about-bx8 .about-shape-box {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .about-bx8 .video-bx {
    width: 340px;
  }
}
@media only screen and (max-width: 575px) {
  .about-bx8 .video-bx {
    width: 200px;
  }
}
.about-bx8 .about-contact-box {
  padding: 0 0px 0px 100px;
}
@media only screen and (max-width: 1199px) {
  .about-bx8 .about-contact-box {
    padding: 0;
  }
}
.about-bx8 .about-contact-box .section-head {
  margin-bottom: 30px;
}

.about-bx9 .section-head {
  margin-bottom: 20px;
}
.about-bx9 .about-year {
  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 15px;
}
.about-bx9 .about-year h6, .about-bx9 .about-year .h6 {
  text-transform: uppercase;
  font-size: 16px;
}
.about-bx9 .about-year span {
  font-size: 92px;
  color: var(--title);
  font-weight: 700;
  line-height: 85px;
  position: relative;
  padding-left: 30px;
  padding-right: 15px;
  z-index: 1;
}
.about-bx9 .about-year span:after {
  content: "";
  width: 100px;
  height: 130px;
  display: block;
  position: absolute;
  border: 5px solid var(--primary);
  left: 0;
  top: -25px;
  z-index: -1;
}
.about-bx9 .about-contact-box {
  padding-left: 30px;
}
@media only screen and (max-width: 991px) {
  .about-bx9 .about-contact-box {
    padding-left: 0;
    padding-top: 30px;
  }
}

.about-bx10 .about-contact-box .about-inner-content ul li {
  position: relative;
  margin-bottom: 0.6rem;
  padding-left: 34px;
  font-weight: 500;
  font-size: 18px;
  color: #3C3C3C;
}
@media only screen and (max-width: 1199px) {
  .about-bx10 .about-contact-box .about-inner-content ul li {
    font-size: 0.875rem;
  }
}
.about-bx10 .about-contact-box .about-inner-content ul li::before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary);
}
.about-bx10 .about-img-box {
  position: relative;
  text-align: center;
}
.about-bx10 .about-img-box img {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-sm);
}
.about-bx10 .about-img-box .back-img {
  position: absolute;
  right: 0;
  top: -20%;
}
@media only screen and (max-width: 767px) {
  .about-bx10 .about-img-box .back-img {
    right: -10px;
    top: -20px;
    width: 120px;
  }
}
.about-bx10 .about-img-box .about-text {
  background: var(--primary);
  position: absolute;
  text-align: center;
  bottom: 10%;
  left: -38px;
  z-index: 5;
  max-width: 158px;
  padding: 26px;
  border-radius: var(--border-radius-sm);
}
@media only screen and (max-width: 991px) {
  .about-bx10 .about-img-box .about-text {
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .about-bx10 .about-img-box .about-text {
    left: -30px;
  }
}
.about-bx10 .about-img-box .about-text h3, .about-bx10 .about-img-box .about-text .h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 4.375rem;
  line-height: 4.375rem;
  color: #FFFFFF;
  margin: 0;
}
.about-bx10 .about-img-box .about-text p {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0;
}
@media only screen and (max-width: 575px) {
  .about-bx10 .about-img-box .about-text {
    left: -10px;
    bottom: 6%;
    padding: 10px;
  }
  .about-bx10 .about-img-box .about-text h3, .about-bx10 .about-img-box .about-text .h3 {
    font-size: 3rem;
    line-height: normal;
  }
  .about-bx10 .about-img-box .about-text p {
    font-size: 1rem;
  }
}

.ic-box {
  position: relative;
}

.overlay {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  overflow: hidden;
}
.overlay .ic-info {
  position: absolute;
  border-radius: var(--border-radius-base);
}
.overlay .ic-media {
  border-radius: var(--border-radius-base);
}
@media only screen and (max-width: 767px) {
  .overlay .ic-media img {
    max-height: 350px;
    object-fit: cover;
  }
}

.overlay.style-1 .ic-info {
  bottom: 20px;
  left: 20px;
  background: var(--rgba-primary-9);
  padding: 20px;
  right: 20px;
  top: 100%;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  padding: 30px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.overlay.style-1 .title {
  margin: 0;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  color: #fff;
}
.overlay.style-1 .title a {
  color: inherit;
}
.overlay.style-1 .title span {
  display: block;
}
.overlay.style-1 .view-btn {
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 0;
  left: -100px;
  z-index: 1;
  background: #fff;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  -ms-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
}
.overlay.style-1 .view-btn:after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  font-size: 24px;
  transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0;
  transition-delay: 0.7s;
  -moz-transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
  -ms-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
}
.overlay.style-1:hover .ic-info {
  top: 20px;
}
.overlay.style-1:hover .view-btn {
  left: 0;
}
.overlay.style-1:hover .view-btn:after {
  color: var(--primary);
  opacity: 1;
  transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

.overlay.style-2 .ic-info {
  bottom: 20px;
  left: 20px;
  background: var(--rgba-primary-9);
  right: 20px;
  top: 100%;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  padding: 30px 100px 20px 30px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.overlay.style-2 .ic-info .view-btn {
  width: 135px;
  height: 135px;
  position: absolute;
  bottom: -40px;
  right: -40px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  -ms-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  border-radius: 50%;
}
.overlay.style-2 .ic-info .view-btn:after {
  content: "\f113";
  font-family: flaticon;
  font-weight: 900;
  color: var(--primary);
  font-size: 24px;
  transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0;
  transition-delay: 0.7s;
  -moz-transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
  -ms-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  margin-top: -20px;
  margin-right: 30px;
  color: var(--title);
}
.overlay.style-2 .title {
  margin: 0;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  color: #fff;
}
.overlay.style-2 .title a {
  color: inherit;
}
.overlay.style-2 .title span {
  display: block;
}
.overlay.style-2:hover .ic-info {
  top: 20px;
}
.overlay.style-2:hover .view-btn:after {
  opacity: 1;
  transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
@media only screen and (max-width: 767px) {
  .overlay.style-2 .view-btn {
    width: 100px;
    height: 100px;
    bottom: -30px;
    right: -30px;
  }
  .overlay.style-2 .view-btn:after {
    font-size: 18px;
  }
  .overlay.style-2 .ic-info {
    padding: 20px 70px 20px 20px;
  }
}

.ic-box.style-3 {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.ic-box.style-3 .ic-info {
  display: flex;
  padding: 30px 30px;
  position: absolute;
  background: #f8f8f8;
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: 0.3s ease-in-out 0.03s;
  transition: 0.3s ease-in-out 0.03s;
  border-radius: var(--border-radius-base) 0 0 0;
}
.ic-box.style-3 .ic-info .line {
  display: inline-block;
  position: relative;
  top: 15px;
  margin-right: 15px;
  height: 1px;
  width: 50px;
  background: var(--primary);
}
.ic-box.style-3 .ic-media {
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 0;
}
.ic-box.style-3 .ic-media:after {
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: rgba(20, 20, 22, 0.2);
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out 0.03s;
  transition: 0.3s ease-in-out 0.03s;
}
.ic-box.style-3 .view-btn {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
  transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  border-radius: var(--border-radius-sm);
}
.ic-box.style-3 .view-btn:after, .ic-box.style-3 .view-btn:before {
  content: "";
  position: absolute;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  background: #fff;
  opacity: 0;
}
.ic-box.style-3 .view-btn:after {
  height: 4px;
  width: 26px;
  top: 50%;
  left: 50%;
  transform: translate(-500px, 50%);
  -moz-transform: translate(-500px, 50%);
  -webkit-transform: translate(-500px, 50%);
  -ms-transform: translate(-500px, 50%);
  -o-transform: translate(-500px, 50%);
}
.ic-box.style-3 .view-btn:before {
  height: 26px;
  width: 4px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -500px);
  -moz-transform: translate(-50%, -500px);
  -webkit-transform: translate(-50%, -500px);
  -ms-transform: translate(-50%, -500px);
  -o-transform: translate(-50%, -500px);
}
.ic-box.style-3 .sub-title {
  margin-bottom: 0;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 3px;
}
.ic-box.style-3:hover .ic-info {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.ic-box.style-3:hover .ic-media:after {
  opacity: 1;
}
.ic-box.style-3:hover .view-btn {
  background: var(--primary);
  transition-delay: 0s;
}
.ic-box.style-3:hover .view-btn:after, .ic-box.style-3:hover .view-btn:before {
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .ic-box.style-3 .ic-media {
    height: 360px;
  }
}

.testimonial-pic {
  background: #FFF;
  width: 100px;
  height: 100px;
  position: relative;
  display: inline-block;
  border: 5px solid #FFF;
}
.testimonial-pic.radius {
  border-radius: 100%;
  -webkit-border-radius: 100%;
}
.testimonial-pic.radius img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -webkit-border-radius: 100%;
}
.testimonial-pic.shadow {
  -webkit-box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35);
  box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35);
}

.quote-left,
.quote-right {
  position: relative;
}
.quote-left:before,
.quote-right:before {
  font-family: "Flaticon";
  position: absolute;
  z-index: 10;
  height: 36px;
  width: 36px;
  line-height: 36px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 30px;
  text-align: center;
  font-size: 18px;
}

.quote-left:before {
  top: 15px;
  content: "\f115";
  left: 0;
}

.quote-right:before {
  top: 15px;
  content: "\f11e";
  right: 0;
}

.testimonial-text {
  position: relative;
  font-size: 15px;
  font-weight: 400;
}
.testimonial-text p:last-child {
  margin: 0;
}

.testimonial-detail {
  padding: 5px;
}

.testimonial-position {
  font-size: 15px;
}

.testimonial-name,
.testimonial-position {
  display: block;
}

.testimonial-bg {
  color: #fff;
}

.star-rating li {
  display: inline-block;
}

.testimonial-1 {
  background-color: var(--primary);
  padding: 50px;
  position: relative;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  color: #fff;
  border-radius: var(--border-radius-base);
}
.testimonial-1 .testimonial-text {
  margin-bottom: 25px;
}
.testimonial-1 .testimonial-pic {
  border: 5px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  height: 90px;
  width: 90px;
  margin-right: 20px;
}
.testimonial-1 .testimonial-pic img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.testimonial-1 .testimonial-detail {
  padding: 0;
  display: flex;
  align-items: center;
}
.testimonial-1 .testimonial-name {
  margin-bottom: 5px;
  line-height: 1.3;
  color: inherit;
}
.testimonial-1:after {
  content: "\f10d";
  font-family: Flaticon;
  position: absolute;
  bottom: 30px;
  right: 60px;
  opacity: 0.4;
  font-size: 70px;
}
@media only screen and (max-width: 767px) {
  .testimonial-1 {
    padding: 25px;
  }
  .testimonial-1:after {
    font-size: 50px;
  }
  .testimonial-1 .testimonial-pic {
    border: 3px solid #fff;
    height: 70px;
    width: 70px;
    margin-right: 15px;
  }
  .testimonial-1 .testimonial-text {
    margin-bottom: 20px;
  }
  .testimonial-1:after {
    font-size: 40px;
    bottom: 25px;
    right: 30px;
  }
}

.test-area1 {
  overflow: hidden;
}
.test-area1 .testi-inner {
  position: relative;
}
.test-area1 .testi-inner:after {
  content: "";
  width: 65vw;
  float: right;
  margin-right: -145px;
  background-color: var(--primary);
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  border-radius: 0 var(--border-radius-base) var(--border-radius-base) 0;
}
.test-area1 .testimonial-1 {
  padding: 50px 50px 50px 0;
}
.test-area1 .swiper-container {
  margin-right: -130px;
}
.test-area1 .media-full {
  width: 50vw;
  height: 100%;
}
.test-area1 .media-full img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .test-area1 .testi-inner:after {
    width: 75vw;
  }
}
@media only screen and (max-width: 767px) {
  .test-area1 .testimonial-1 {
    padding: 25px;
  }
  .test-area1 .testi-inner:after {
    content: none;
  }
  .test-area1 .swiper-container {
    margin-right: 0;
  }
  .test-area1 .media-full {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
  }
}
.test-area1.left .media-full {
  float: right;
}
.test-area1.left .testi-inner:after {
  float: left;
  margin-right: 0;
  margin-left: -145px;
  left: 0;
  right: auto;
}
.test-area1.left .swiper-container {
  margin-right: 0;
  margin-left: -130px;
}
@media only screen and (max-width: 767px) {
  .test-area1.left .swiper-container {
    margin-left: 0;
  }
}
.test-area1.left .testimonial-1 {
  padding: 50px 0 50px 50px;
}
@media only screen and (max-width: 767px) {
  .test-area1.left .testimonial-1 {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .test-area1.left .media-full {
    margin-bottom: 0;
    margin-top: 50px;
  }
}
.test-area1.left .testi-inner:after {
  border-radius: var(--border-radius-base) 0 0 var(--border-radius-base);
}

.testimonial-2 {
  background-color: #fff;
  padding: 35px;
  position: relative;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  margin: 20px 20px 70px;
  border-radius: var(--border-radius-base);
}
.testimonial-2 .testimonial-text {
  margin-bottom: 25px;
  font-size: 18px;
}
.testimonial-2 .testimonial-pic {
  height: 90px;
  width: 90px;
  position: relative;
  border: 0;
  margin: 12px;
  background: transparent;
}
.testimonial-2 .testimonial-pic:after {
  content: "";
  border: 2px solid var(--primary);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1.3);
  border-radius: 50%;
}
.testimonial-2 .testimonial-pic img {
  border-radius: 50%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.testimonial-2 .testimonial-detail {
  padding: 0;
  margin: 0 0 -100px;
}
.testimonial-2 .testimonial-name {
  margin-bottom: 5px;
  line-height: 1.3;
}
.testimonial-2:after {
  content: "\f10d";
  font-family: Flaticon;
  position: absolute;
  bottom: 70px;
  right: 40px;
  opacity: 0.3;
  font-size: 50px;
  line-height: 50px;
}
@media only screen and (max-width: 767px) {
  .testimonial-2 {
    padding: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 10px 10px 45px;
  }
  .testimonial-2 .testimonial-pic {
    height: 60px;
    width: 60px;
  }
  .testimonial-2 .testimonial-detail {
    margin: 0 0 -70px;
  }
  .testimonial-2 .testimonial-text {
    margin-bottom: 20px;
    font-size: 15px;
  }
  .testimonial-2:after {
    font-size: 40px;
    bottom: 40px;
    right: 30px;
    line-height: 40px;
  }
}

.testimonial-3 {
  background-color: #f9f9f9;
  padding: 30px;
  margin: 40px 0 20px 0;
  position: relative;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  border-radius: var(--border-radius-sm);
}
@media only screen and (max-width: 767px) {
  .testimonial-3 {
    margin: 0px 0 20px 0;
  }
}
.testimonial-3 .testimonial-info {
  position: relative;
}
.testimonial-3 .testimonial-text {
  margin-bottom: 25px;
}
.testimonial-3 .testimonial-pic {
  border: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 25px;
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
}
.testimonial-3 .testimonial-pic .info {
  padding-left: 20px;
  flex: 1;
}
.testimonial-3 .testimonial-pic img {
  height: 60px;
  width: 60px;
  min-width: 60px;
}
.testimonial-3 .star-rating {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.testimonial-3 .star-rating li {
  margin: 0 1px;
  font-size: 16px;
}
.testimonial-3 .testimonial-review {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
}
.testimonial-3 .testimonial-review .review {
  margin: 0;
  line-height: 1;
}
.testimonial-3 .testimonial-name {
  margin-bottom: 5px;
  line-height: 1.3;
}

.swiper-wrapper .swiper-slide-next {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.swiper-wrapper .swiper-slide-next .testimonial-3 {
  margin-top: 0;
  background: var(--primary);
  color: #fff;
}
.swiper-wrapper .swiper-slide-next .testimonial-3 .star-rating i {
  color: #fff;
}
.swiper-wrapper .swiper-slide-next .testimonial-3 .review {
  color: #fff;
}

.testimonial-4:after {
  content: "\f10d";
  font-family: flaticon;
  font-size: 80px;
  right: 40px;
  position: absolute;
  bottom: 0;
  color: #000;
  line-height: 1;
  opacity: 0.1;
}
.testimonial-4 .testimonial-detail {
  display: flex;
  align-items: center;
}
.testimonial-4 .testimonial-pic {
  height: 90px;
  width: 90px;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
}
.testimonial-4 .testimonial-name {
  margin-bottom: 0;
}
.testimonial-4 .testimonial-position {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 3px;
}
.testimonial-4 .star-rating i {
  font-size: 18px;
}
@media only screen and (max-width: 575px) {
  .testimonial-4 .testimonial-pic {
    height: 70px;
    width: 70px;
  }
  .testimonial-4:after {
    font-size: 50px;
    right: 15px;
    bottom: 15px;
  }
}

.testimonial-swiper4 .swiper-pagination {
  margin-top: 50px;
  position: unset;
  padding: 1px;
}
.testimonial-swiper4 .swiper-pagination .swiper-pagination-bullet {
  height: 6px;
  width: 6px;
  position: relative;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.testimonial-swiper4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary);
  margin: 0 14px;
}
.testimonial-swiper4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  content: "";
  display: block;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  position: absolute;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  border: 1px solid var(--primary);
}

.testimonial-5 {
  display: flex;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin: 15px;
  align-items: center;
  border-radius: var(--border-radius-base);
}
.testimonial-5 .testimonial-review {
  margin-bottom: 15px;
}
.testimonial-5 .testimonial-review .star-rating {
  margin: 0 -3px;
  display: flex;
}
.testimonial-5 .testimonial-review .star-rating li {
  font-size: 18px;
  margin: 0 3px;
}
.testimonial-5 .testimonial-pic {
  min-width: 200px;
  width: 200px;
  border: 0;
  height: auto;
  margin-right: 20px;
  overflow: hidden;
  border-radius: var(--border-radius-base);
}
.testimonial-5 .testimonial-pic:after {
  content: "\f10e";
  height: 80px;
  width: 80px;
  border-radius: 50%;
  position: absolute;
  left: -18px;
  top: -18px;
  font-family: "Font Awesome 5 Free";
  background-color: var(--primary);
  font-weight: 900;
  text-align: center;
  line-height: 75px;
  color: #fff;
  font-size: 25px;
  padding: 10px 0 0 12px;
}
.testimonial-5 .testimonial-name {
  margin-bottom: 0;
}
.testimonial-5 .testimonial-text {
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .testimonial-5 {
    padding: 15px;
    margin: 10px;
  }
  .testimonial-5 .testimonial-pic {
    min-width: 140px;
    width: 140px;
    margin-right: 15px;
  }
  .testimonial-5 .testimonial-pic:after {
    height: 65px;
    width: 65px;
    left: -20px;
    top: -20px;
    line-height: 65px;
    font-size: 16px;
  }
  .testimonial-5 .testimonial-review {
    margin-bottom: 10px;
  }
  .testimonial-5 .testimonial-review .star-rating li {
    font-size: 14px;
  }
  .testimonial-5 .testimonial-text {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .testimonial-5 {
    padding: 20px;
    display: block;
  }
  .testimonial-5 .testimonial-pic {
    margin-bottom: 15px;
  }
}

.testimonial-7 {
  position: relative;
  padding: 20px;
  border-radius: var(--border-radius-sm);
  max-width: 800px;
  margin: auto;
}
.testimonial-7::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  background-color: var(--primary);
  border-radius: var(--border-radius-sm);
}
.testimonial-7 .testimonial-text {
  padding: 30px;
  background: #F3F3F3;
  border-radius: var(--border-radius-sm);
}
.testimonial-7 .testimonial-text p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  color: #111111;
}
@media only screen and (max-width: 767px) {
  .testimonial-7 .testimonial-text p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .testimonial-7 {
    padding: 5px;
  }
  .testimonial-7 .testimonial-text {
    padding: 25px;
  }
}

.testimonial-area9 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-area9 {
    max-width: 100%;
  }
}

.testimonial-nav9 .testimonial-next9,
.testimonial-nav9 .testimonial-prev9 {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  font-size: 32px;
  color: var(--primary);
  margin: 0px -100px;
  background: var(--rgba-primary-2);
  z-index: 999;
  border-radius: var(--border-radius-sm);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
@media only screen and (max-width: 767px) {
  .testimonial-nav9 .testimonial-next9,
  .testimonial-nav9 .testimonial-prev9 {
    display: none;
  }
}
.testimonial-nav9 .testimonial-next9:hover,
.testimonial-nav9 .testimonial-prev9:hover {
  background: var(--primary);
  color: #fff;
}
.testimonial-nav9 .testimonial-next9::before, .testimonial-nav9 .testimonial-next9::after,
.testimonial-nav9 .testimonial-prev9::before,
.testimonial-nav9 .testimonial-prev9::after {
  display: none;
}

.testimonial-swiper9-thumb {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .testimonial-swiper9-thumb {
    margin-top: 30px;
  }
}
.testimonial-swiper9-thumb .thumb-bx {
  text-align: center;
  padding: 30px 15px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  border-radius: var(--border-radius-base);
}
.testimonial-swiper9-thumb .thumb-bx .media {
  width: 80px;
  height: 80px;
  border-radius: 80px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}
.testimonial-swiper9-thumb .thumb-bx .media img {
  width: 100%;
  height: 100%;
}
.testimonial-swiper9-thumb .thumb-bx .content-info .title {
  font-size: 18px;
}
.testimonial-swiper9-thumb .thumb-bx .content-info p {
  margin: 0;
  font-size: 14px;
}
.testimonial-swiper9-thumb .swiper-slide.swiper-slide-thumb-active .thumb-bx {
  background-color: var(--rgba-primary-1);
}

.testimonial-swiper9 .swiper-slide {
  opacity: 0;
  visibility: hidden;
}
.testimonial-swiper9 .swiper-slide.swiper-slide-active {
  opacity: 1;
  visibility: visible;
}

.section-head.style-1 h2, .section-head.style-1 .h2 {
  font-size: 4rem;
  line-height: 1.1;
}
.section-head.style-1 h2 span, .section-head.style-1 .h2 span {
  color: var(--primary);
}
@media only screen and (max-width: 1400px) {
  .section-head.style-1 h2, .section-head.style-1 .h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .section-head.style-1 h2, .section-head.style-1 .h2 {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-head.style-1 h2, .section-head.style-1 .h2 {
    font-size: 2rem;
  }
}
.section-head.style-1 h3, .section-head.style-1 .h3 {
  font-size: 3rem;
  line-height: 1.1;
}
.section-head.style-1 h3 span, .section-head.style-1 .h3 span {
  color: var(--primary);
}
@media only screen and (max-width: 1400px) {
  .section-head.style-1 h3, .section-head.style-1 .h3 {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-head.style-1 h3, .section-head.style-1 .h3 {
    font-size: 1.875rem;
  }
}
.section-head.style-1 .sub-title {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 55px;
}
.section-head.style-1 .sub-title:before, .section-head.style-1 .sub-title:after {
  content: "";
  display: inline-block;
  height: 3px;
  background: var(--primary);
  position: absolute;
}
.section-head.style-1 .sub-title:before {
  width: 12px;
  left: 0;
}
.section-head.style-1 .sub-title:after {
  width: 27px;
  left: 16px;
}
.section-head.style-1 .sub-title.text-white:before, .section-head.style-1 .sub-title.text-white:after {
  background: #fff;
}
.section-head.style-1.text-white .title {
  color: #fff;
}
.section-head.style-1.text-white p {
  color: #9d9aaa;
}
.section-head.style-1.text-center .sub-title {
  justify-content: center;
}
.section-head.style-1.text-center .sub-title:after {
  content: "";
}

.section-head.style-2 h2, .section-head.style-2 .h2 {
  font-size: 4rem;
  line-height: 1.1;
}
.section-head.style-2 h2 span, .section-head.style-2 .h2 span {
  color: var(--primary);
}
@media only screen and (max-width: 1400px) {
  .section-head.style-2 h2, .section-head.style-2 .h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .section-head.style-2 h2, .section-head.style-2 .h2 {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-head.style-2 h2, .section-head.style-2 .h2 {
    font-size: 1.875rem;
  }
}
.section-head.style-2 h3, .section-head.style-2 .h3 {
  font-size: 3rem;
  line-height: 1.1;
}
.section-head.style-2 h3 span, .section-head.style-2 .h3 span {
  color: var(--primary);
}
@media only screen and (max-width: 1400px) {
  .section-head.style-2 h3, .section-head.style-2 .h3 {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-head.style-2 h3, .section-head.style-2 .h3 {
    font-size: 1.875rem;
  }
}
.section-head.style-2 .sub-title {
  color: #848484;
}
.section-head.style-2.text-white .title {
  color: #fff;
}
.section-head.style-2.text-white p {
  color: #9d9aaa;
}
.section-head.style-2.text-center .sub-title {
  justify-content: center;
}
.section-head.style-2.text-center .sub-title:after {
  content: "";
}

.section-head.style-3 h2, .section-head.style-3 .h2 {
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 3px;
}
.section-head.style-3 h2 span, .section-head.style-3 .h2 span {
  color: var(--primary);
}
@media only screen and (max-width: 1400px) {
  .section-head.style-3 h2, .section-head.style-3 .h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .section-head.style-3 h2, .section-head.style-3 .h2 {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-head.style-3 h2, .section-head.style-3 .h2 {
    font-size: 1.875rem;
  }
}
@media only screen and (max-width: 575px) {
  .section-head.style-3 h2, .section-head.style-3 .h2 {
    letter-spacing: 1px;
  }
}
.section-head.style-3 h3, .section-head.style-3 .h3 {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 8px;
}
.section-head.style-3 h3 span, .section-head.style-3 .h3 span {
  color: var(--primary);
}
@media only screen and (max-width: 1400px) {
  .section-head.style-3 h3, .section-head.style-3 .h3 {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-head.style-3 h3, .section-head.style-3 .h3 {
    font-size: 1.875rem;
  }
}
@media only screen and (max-width: 575px) {
  .section-head.style-3 h3, .section-head.style-3 .h3 {
    letter-spacing: 1px;
  }
}
.section-head.style-3 .sub-title {
  color: #848484;
}
.section-head.style-3.text-white .title {
  color: #fff;
}
.section-head.style-3.text-white p {
  color: #9d9aaa;
}
.section-head.style-3.text-center .sub-title {
  justify-content: center;
}
.section-head.style-3.text-center .sub-title:after {
  content: "";
}

.section-head.style-4 h2, .section-head.style-4 .h2 {
  font-size: 3rem;
  line-height: 1.4;
}
.section-head.style-4 h2 span, .section-head.style-4 .h2 span {
  color: var(--primary);
}
@media only screen and (max-width: 1400px) {
  .section-head.style-4 h2, .section-head.style-4 .h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .section-head.style-4 h2, .section-head.style-4 .h2 {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-head.style-4 h2, .section-head.style-4 .h2 {
    font-size: 1.875rem;
  }
}
.section-head.style-4 h3, .section-head.style-4 .h3 {
  font-size: 2.5rem;
  line-height: 1.3;
}
.section-head.style-4 h3 span, .section-head.style-4 .h3 span {
  color: var(--primary);
}
@media only screen and (max-width: 1400px) {
  .section-head.style-4 h3, .section-head.style-4 .h3 {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-head.style-4 h3, .section-head.style-4 .h3 {
    font-size: 1.875rem;
  }
}
.section-head.style-4 .sub-title {
  color: #848484;
}
.section-head.style-4.text-white .title {
  color: #fff;
}
.section-head.style-4.text-white p {
  color: #9d9aaa;
}
.section-head.style-4.text-center .sub-title {
  justify-content: center;
}
.section-head.style-4.text-center .sub-title:after {
  content: "";
}

.section-head.style-5 p {
  font-weight: 500;
}
.section-head.style-5.text-center p {
  max-width: 650px;
}
.section-head.style-5 h2, .section-head.style-5 .h2 {
  font-size: 45px;
  line-height: 1.4;
}
.section-head.style-5 h2 span, .section-head.style-5 .h2 span {
  color: var(--primary);
}
@media only screen and (max-width: 1400px) {
  .section-head.style-5 h2, .section-head.style-5 .h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .section-head.style-5 h2, .section-head.style-5 .h2 {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-head.style-5 h2, .section-head.style-5 .h2 {
    font-size: 1.875rem;
  }
}
.section-head.style-5 h3, .section-head.style-5 .h3 {
  font-size: 2.5rem;
  line-height: 1.3;
}
.section-head.style-5 h3 span, .section-head.style-5 .h3 span {
  color: var(--primary);
}
@media only screen and (max-width: 1400px) {
  .section-head.style-5 h3, .section-head.style-5 .h3 {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-head.style-5 h3, .section-head.style-5 .h3 {
    font-size: 1.875rem;
  }
}
.section-head.style-5 .sub-title {
  color: #848484;
}
.section-head.style-5.text-white .title {
  color: #fff;
}
.section-head.style-5.text-white p {
  color: #9d9aaa;
}
.section-head.style-5.text-center .sub-title {
  justify-content: center;
}
.section-head.style-5.text-center .sub-title:after {
  content: "";
}

.section-head.style-6 .sub-title {
  color: var(--primary);
  font-size: 1.125rem;
  display: inline-block;
  border-bottom: 3px solid var(--primary);
}
@media only screen and (max-width: 767px) {
  .section-head.style-6 .sub-title {
    font-size: 1rem;
    border-bottom-width: 2px;
  }
}
.section-head.style-6 .title {
  font-size: 2.813rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1400px) {
  .section-head.style-6 .title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .section-head.style-6 .title {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-head.style-6 .title {
    font-size: 1.875rem;
  }
}
.section-head.style-6 p {
  font-size: 1.125rem;
}
@media only screen and (max-width: 1199px) {
  .section-head.style-6 p {
    font-size: 0.875rem;
  }
}

.icon-bx-xl {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  width: 150px;
  height: 150px;
  line-height: 150px;
}
.icon-bx-xl.radius {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.icon-bx-xl i {
  font-size: 80px;
  vertical-align: middle;
}
.icon-bx-xl img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 80px;
}

.icon-bx-lg {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  width: 120px;
  height: 120px;
  line-height: 120px;
}
.icon-bx-lg.radius {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.icon-bx-lg i {
  font-size: 60px;
  vertical-align: middle;
}
.icon-bx-lg img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 55px;
}

.icon-bx-md {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  width: 100px;
  height: 100px;
  line-height: 100px;
}
.icon-bx-md.radius {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.icon-bx-md i {
  font-size: 45px;
  vertical-align: middle;
}
.icon-bx-md img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 40px;
}

.icon-bx-sm {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  width: 80px;
  height: 80px;
  min-width: 80px;
  line-height: 80px;
}
.icon-bx-sm.radius {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.icon-bx-sm i {
  font-size: 30px;
  vertical-align: middle;
}
.icon-bx-sm svg {
  width: 44px;
}
.icon-bx-sm img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 30px;
}

.icon-bx-xs {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  width: 60px;
  height: 60px;
  line-height: 60px;
}
.icon-bx-xs.radius {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.icon-bx-xs i {
  font-size: 30px;
  vertical-align: middle;
}
.icon-bx-xs img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 20px;
}

.icon-xl {
  display: inline-block;
  text-align: center;
  width: 100px;
}
.icon-xl i {
  vertical-align: middle;
  font-size: 80px;
}
.icon-xl svg {
  height: 80px;
  width: 80px;
}
.icon-xl img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 80px;
}

.icon-lg {
  display: inline-block;
  text-align: center;
}
.icon-lg i {
  vertical-align: middle;
  font-size: 62px;
}
.icon-lg img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 70px;
}

.icon-md {
  display: inline-block;
  text-align: center;
}
.icon-md i {
  vertical-align: middle;
  font-size: 45px;
}
.icon-md img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 50px;
}

.icon-sm {
  display: inline-block;
  text-align: center;
  width: 40px;
}
.icon-sm i {
  vertical-align: middle;
  font-size: 30px;
}
.icon-sm img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 30px;
}

.icon-xs {
  display: inline-block;
  text-align: center;
  width: 30px;
}
.icon-xs i {
  vertical-align: middle;
  font-size: 20px;
}
.icon-xs img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 20px;
}

.icon-bx-wraper {
  position: relative;
}
.icon-bx-wraper .ic-tilte {
  margin-top: 0;
}
.icon-bx-wraper .after-titile-line {
  margin-bottom: 10px;
}
.icon-bx-wraper p:last-child {
  margin: 0;
}
.icon-bx-wraper.center {
  text-align: center;
}
.icon-bx-wraper.left .icon-bx-xl,
.icon-bx-wraper.left .icon-bx-lg,
.icon-bx-wraper.left .icon-bx-md,
.icon-bx-wraper.left .icon-bx-sm,
.icon-bx-wraper.left .icon-bx-xs {
  float: left;
  margin-right: 20px;
}
.icon-bx-wraper.left .icon-xl,
.icon-bx-wraper.left .icon-lg,
.icon-bx-wraper.left .icon-md,
.icon-bx-wraper.left .icon-sm,
.icon-bx-wraper.left .icon-xs {
  float: left;
  margin-right: 10px;
}
.icon-bx-wraper.right {
  text-align: right;
}
.icon-bx-wraper.right .icon-bx-xl,
.icon-bx-wraper.right .icon-bx-lg,
.icon-bx-wraper.right .icon-bx-md,
.icon-bx-wraper.right .icon-bx-sm,
.icon-bx-wraper.right .icon-bx-xs {
  float: right;
  margin-left: 20px;
}
.icon-bx-wraper.right .icon-xl,
.icon-bx-wraper.right .icon-lg,
.icon-bx-wraper.right .icon-md,
.icon-bx-wraper.right .icon-sm,
.icon-bx-wraper.right .icon-xs {
  float: right;
  margin-left: 10px;
}
.icon-bx-wraper.bx-style-1, .icon-bx-wraper.bx-style-2 {
  border-width: 1px;
  border-style: solid;
  border-color: #ebedf2;
}
.icon-bx-wraper.bx-style-2.center [class*=icon-bx-] {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.icon-bx-wraper.bx-style-2.center .icon-bx-xl {
  margin-left: -75px;
}
.icon-bx-wraper.bx-style-2.center .icon-bx-lg {
  margin-left: -60px;
}
.icon-bx-wraper.bx-style-2.center .icon-bx-md {
  margin-left: -50px;
}
.icon-bx-wraper.bx-style-2.center .icon-bx-sm {
  margin-left: -40px;
}
.icon-bx-wraper.bx-style-2.center .icon-bx-xs {
  margin-left: -20px;
}
.icon-bx-wraper.bx-style-2.left [class*=icon-bx-] {
  position: absolute;
  top: auto;
  left: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.icon-bx-wraper.bx-style-2.right [class*=icon-bx-] {
  position: absolute;
  top: auto;
  right: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

.icon-content {
  overflow: hidden;
}

[class*=icon-bx-][class*=bg-] a,
[class*=icon-bx-][class*=bg-] span {
  color: #fff;
}

[class*=icon-bx-].bg-white a {
  color: inherit;
}

[class*=icon-bx-][class*=border-] {
  display: table;
  line-height: normal;
  margin-left: auto;
  margin-right: auto;
}

[class*=icon-bx-][class*=border-] .icon-cell {
  display: table-cell;
  vertical-align: middle;
}

.ic-box,
.ic-info,
.ic-tilte,
.ic-tilte-inner {
  position: relative;
}

.ic-tilte-inner {
  display: inline-block;
}

.ic-box[class*=border-],
.ic-info[class*=border-] {
  border-color: #eee;
}

.ic-info.border-1,
.ic-info.border-2,
.ic-info.border-3,
.ic-info.border-4,
.ic-info.border-5 {
  border-top: none;
}

.border-1,
.border-2,
.border-3,
.border-4,
.border-5 {
  border-style: solid;
}

.border-1 {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-3 {
  border-width: 3px;
}

.border-4 {
  border-width: 4px;
}

.border-5 {
  border-width: 5px;
}

.left-border,
.right-border {
  position: relative;
}
.left-border:before,
.right-border:before {
  content: "";
  position: absolute;
  top: 5px;
  width: 1px;
  height: 90%;
  background: #CCC;
}

.right-border:before {
  right: 0;
}

.ic-media,
.ic-post-media {
  position: relative;
  overflow: hidden;
}
.ic-media img,
.ic-post-media img {
  width: 100%;
  height: auto;
}

.ic-box-bg {
  overflow: hidden;
  background-size: cover;
}
.ic-box-bg .btn, .ic-box-bg .wp-block-button__link {
  overflow: unset;
}
.ic-box-bg .glyph-icon {
  font-size: 50px;
}
.ic-box-bg .icon-bx-wraper {
  background-color: #f8f8f8;
}
.ic-box-bg .text-primary,
.ic-box-bg .icon-content .ic-tilte,
.ic-box-bg .icon-content p,
.ic-box-bg .icon-box-btn .btn,
.ic-box-bg .icon-box-btn .wp-block-button__link {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.ic-box-bg.active .icon-bx-wraper {
  background-color: rgba(0, 0, 0, 0.7);
}
.ic-box-bg.active .text-primary,
.ic-box-bg.active .icon-content .ic-tilte,
.ic-box-bg.active .icon-content p,
.ic-box-bg.active .icon-box-btn .btn,
.ic-box-bg.active .icon-box-btn .wp-block-button__link {
  color: #fff;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.ic-box-bg .icon-box-btn .btn, .ic-box-bg .icon-box-btn .wp-block-button__link {
  background-color: #eeeeee;
  padding: 15px 20px;
  text-transform: uppercase;
  font-size: 15px;
  border-radius: 0;
  color: #1abc9c;
  font-weight: 600;
  margin-bottom: 0;
}

.icon-bx-wraper.style-1 {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.icon-bx-wraper.style-1 .sep-tl {
  left: 30px;
  top: 30px;
}
.icon-bx-wraper.style-1 .sep-br {
  right: 30px;
  bottom: 30px;
}
.icon-bx-wraper.style-1 .sep-tr {
  right: 30px;
  top: 30px;
}
.icon-bx-wraper.style-1 .sep-bl {
  left: 30px;
  bottom: 30px;
}
.icon-bx-wraper.style-1 .title {
  color: #fff;
}
.icon-bx-wraper.style-1 .title a {
  color: inherit;
}
.icon-bx-wraper.style-1 .sub-title {
  letter-spacing: 3px;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 0;
}

.icon-bx-wraper.style-2 {
  margin-bottom: 30px;
  padding: 0 30px;
}
@media only screen and (max-width: 1199px) {
  .icon-bx-wraper.style-2 {
    padding: 0;
  }
}
.icon-bx-wraper.style-2 .icon-bx {
  font-size: 30px;
  border-radius: 8px;
  width: 60px;
  height: 60px;
  min-width: 60px;
  line-height: 60px;
  margin-top: 8px;
  box-shadow: 0 5px 15px 0 var(--rgba-primary-4);
}
.icon-bx-wraper.style-2 .icon-bx i {
  vertical-align: unset;
}
.icon-bx-wraper.style-2:hover .icon-bx {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
}

.icon-bx-wraper.style-3 {
  align-items: center;
  display: flex;
}
.icon-bx-wraper.style-3 .icon-lg {
  margin-right: 25px;
}

.icon-bx-wraper.style-4 {
  background: #fff;
  padding: 25px;
  align-items: center;
  display: flex;
  border-radius: var(--border-radius-base);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-4 .ic-title {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 2px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
@media only screen and (max-width: 1400px) {
  .icon-bx-wraper.style-4 .ic-title {
    font-size: 36px;
  }
}
.icon-bx-wraper.style-4 .icon-cell {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-4 .icon-lg {
  line-height: 1;
  margin-bottom: 0;
  margin-right: 15px;
}
.icon-bx-wraper.style-4 .icon-lg i {
  font-size: 50px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-4 p {
  color: var(--title);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-4:hover {
  background-color: var(--primary);
  transform: translateY(-5px);
}
.icon-bx-wraper.style-4:hover svg {
	fill:#fff;
}
.icon-bx-wraper.style-4:hover p,
.icon-bx-wraper.style-4:hover .ic-title {
  color: #fff;
}
.icon-bx-wraper.style-4:hover .icon-cell i {
  color: #fff;
}

.icon-bx-wraper.style-5 {
  display: flex;
  align-items: center;
}
.icon-bx-wraper.style-5 .icon-bx {
  margin-right: 20px;
}

.icon-bx-wraper.style-6 {
  background: #fff;
  padding: 40px 40px 70px 40px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  box-shadow: 0 2px 60px 0 rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-base);
  overflow: hidden;
}
.icon-bx-wraper.style-6 .icon-cell {
  color: var(--primary);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-6 .ic-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.icon-bx-wraper.style-6 .ic-title:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.1;
}
.icon-bx-wraper.style-6 .btn, .icon-bx-wraper.style-6 .wp-block-button__link {
  padding: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 40px;
  justify-content: center;
  border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}
.icon-bx-wraper.style-6 .btn i, .icon-bx-wraper.style-6 .wp-block-button__link i {
  font-size: 24px;
}
.icon-bx-wraper.style-6:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
@media only screen and (max-width: 575px) {
  .icon-bx-wraper.style-6 {
    padding: 30px 30px 70px 30px;
  }
  .icon-bx-wraper.style-6 .btn, .icon-bx-wraper.style-6 .wp-block-button__link {
    left: 30px;
  }
}
.icon-bx-wraper.style-6.active, .icon-bx-wraper.style-6:hover {
  box-shadow: 0 2px 60px 0 var(--rgba-primary-4);
  color: #fff;
}
.icon-bx-wraper.style-6.active .icon-cell, .icon-bx-wraper.style-6:hover .icon-cell {
  color: #fff;
}
.icon-bx-wraper.style-6.active .ic-title, .icon-bx-wraper.style-6:hover .ic-title {
  color: #fff;
}
.icon-bx-wraper.style-6.active .ic-title:after, .icon-bx-wraper.style-6:hover .ic-title:after {
  background: #fff;
  opacity: 0.3;
}
.icon-bx-wraper.style-6.active:after, .icon-bx-wraper.style-6:hover:after {
  background: var(--rgba-primary-9);
}
.icon-bx-wraper.style-6.active .btn, .icon-bx-wraper.style-6.active .wp-block-button__link, .icon-bx-wraper.style-6:hover .btn, .icon-bx-wraper.style-6:hover .wp-block-button__link {
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}
.icon-bx-wraper.style-6 .icon-lg {
  line-height: 1;
  margin-bottom: 25px;
}

.icon-bx-wraper.style-7 {
  min-height: 70px;
}
.icon-bx-wraper.style-7 .icon-bx-sm {
  width: 70px;
  height: 70px;
  min-width: 70px;
  line-height: 70px;
  border: 1px solid var(--rgba-primary-2);
  border-radius: var(--border-radius-sm);
}
.icon-bx-wraper.style-7 .icon-bx-sm i {
  font-size: 35px;
}
.icon-bx-wraper.style-7 p {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .icon-bx-wraper.style-7 {
    margin-bottom: 20px;
  }
  .icon-bx-wraper.style-7 p {
    font-size: 16px;
  }
}

.icon-bx-wraper.style-8 {
  padding: 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--border-radius-base);
}
.icon-bx-wraper.style-8:after {
  content: "";
  height: 100%;
  width: 0;
  background-color: var(--primary);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -webkit-transform-origin: left;
  -o-transform-origin: left;
}
.icon-bx-wraper.style-8 .icon-lg {
  line-height: 1;
}
.icon-bx-wraper.style-8 .sub-title {
  font-size: 15px;
  font-weight: 500;
}
.icon-bx-wraper.style-8:not([class*=bg-white]) .ic-title {
  color: #fff;
}
.icon-bx-wraper.style-8:not([class*=bg-white]) p {
  color: #fff;
  opacity: 0.7;
}
.icon-bx-wraper.style-8:not([class*=bg-white]) .sub-title {
  color: #fff;
  opacity: 0.4;
}
@media only screen and (max-width: 575px) {
  .icon-bx-wraper.style-8 {
    padding: 35px;
  }
}
.icon-bx-wraper.style-8.active:after, .icon-bx-wraper.style-8:hover:after {
  width: 100%;
  left: 0;
  right: auto;
  transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  -webkit-transform-origin: right;
  -o-transform-origin: right;
}

.icon-bx-wraper.style-9 .icon-bx {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
}
.icon-bx-wraper.style-9 .icon-bx i {
  font-size: 34px;
}
.icon-bx-wraper.style-9 .icon-bx:after {
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 50%;
  transform: scale(0);
  background-color: var(--primary);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.icon-bx-wraper.style-9 .list-num {
  background-color: var(--primary);
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-weight: 500;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -5px;
  color: #fff;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.icon-bx-wraper.style-9.active .list-num, .icon-bx-wraper.style-9:hover .list-num {
  background-color: #fff;
  color: var(--primary);
}
.icon-bx-wraper.style-9.active .icon-bx .icon-cell, .icon-bx-wraper.style-9:hover .icon-bx .icon-cell {
  color: #fff;
}
.icon-bx-wraper.style-9.active .icon-bx:after, .icon-bx-wraper.style-9:hover .icon-bx:after {
  transform: scale(1);
}

.icon-bx-wraper.style-10 {
  padding: 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  border-radius: var(--border-radius-base);
}
.icon-bx-wraper.style-10 .icon-bx {
  border: 1px solid;
  border-color: var(--primary);
  margin-right: 25px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  border-radius: var(--border-radius-sm);
}
.icon-bx-wraper.style-10 p {
  font-size: 18px;
}
.icon-bx-wraper.style-10 i,
.icon-bx-wraper.style-10 p,
.icon-bx-wraper.style-10 .ic-title {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-10.active, .icon-bx-wraper.style-10:hover {
  background-color: var(--primary);
}
.icon-bx-wraper.style-10.active .ic-title,
.icon-bx-wraper.style-10.active p,
.icon-bx-wraper.style-10.active a,
.icon-bx-wraper.style-10.active i, .icon-bx-wraper.style-10:hover .ic-title,
.icon-bx-wraper.style-10:hover p,
.icon-bx-wraper.style-10:hover a,
.icon-bx-wraper.style-10:hover i {
  color: #fff;
}
.icon-bx-wraper.style-10.active .icon-bx, .icon-bx-wraper.style-10:hover .icon-bx {
  border-color: #fff;
}
@media only screen and (max-width: 575px) {
  .icon-bx-wraper.style-10 {
    padding: 20px;
  }
  .icon-bx-wraper.style-10 .icon-bx {
    margin-right: 20px;
  }
  .icon-bx-wraper.style-10 p {
    font-size: 16px;
  }
}

.icon-bx-wraper.style-11 .btn-link {
  font-weight: 600;
}
.icon-bx-wraper.style-11 .btn-link i {
  margin-left: 8px;
  font-size: 13px;
}
.icon-bx-wraper.style-11 .icon-bx {
  background-color: #fff;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
}
.icon-bx-wraper.style-11 .icon-bx:after {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  content: "";
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--primary);
  width: 100%;
  border-radius: inherit;
  position: absolute;
  transform: scale(0);
}
.icon-bx-wraper.style-11 .icon-bx i {
  font-size: 35px;
  position: relative;
  z-index: 1;
}
.icon-bx-wraper.style-11 .icon-bx svg {
  z-index: 1;
  position: relative;
}
.icon-bx-wraper.style-11 .icon-bx svg path,
.icon-bx-wraper.style-11 .icon-bx svg rect {
  fill: var(--primary);
}
.icon-bx-wraper.style-11 .icon-bx.radius {
  border-radius: 100%;
}
.icon-bx-wraper.style-11 .icon-bx.shadow {
  box-shadow: 0px 0 30px 0 var(--rgba-primary-1) !important;
}
.icon-bx-wraper.style-11:hover .icon-bx i {
  color: #fff;
}
.icon-bx-wraper.style-11:hover .icon-bx svg path,
.icon-bx-wraper.style-11:hover .icon-bx svg rect {
  fill: #fff;
}
.icon-bx-wraper.style-11:hover .icon-bx:after {
  transform: scale(1);
}

.icon-bx-wraper.style-12 {
  display: flex;
  align-items: center;
  z-index: 1;
}
.icon-bx-wraper.style-12:after {
  content: attr(data-name);
  position: absolute;
  font-size: 100px;
  font-weight: 600;
  width: 100%;
  line-height: 1;
  text-align: center;
  letter-spacing: 10px;
  z-index: -1;
  color: #fff;
  text-shadow: 0 0 1px var(--primary), 0 0 1px var(--primary), 0 0 1px var(--primary);
  opacity: 0.7;
  display: block;
}
@media only screen and (max-width: 1199px) {
  .icon-bx-wraper.style-12:after {
    font-size: 80px;
  }
}
.icon-bx-wraper.style-12:hover .counter, .icon-bx-wraper.style-12:hover:after {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.icon-bx-wraper.style-12 .title {
  margin-bottom: 0;
  font-weight: 500;
  padding-left: 20px;
}
@media only screen and (max-width: 1199px) {
  .icon-bx-wraper.style-12 .title {
    font-size: 20px;
  }
}
.icon-bx-wraper.style-12 .counter {
  font-weight: 700;
  font-size: 70px;
  line-height: 1;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .icon-bx-wraper.style-12 .counter {
    font-size: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .icon-bx-wraper.style-12 {
    margin-bottom: 50px;
  }
}

.icon-bx-wraper.style-13 {
  display: flex;
  align-items: center;
}
.icon-bx-wraper.style-13 .icon-bx {
  background-color: #fff;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  line-height: 78px;
}
.icon-bx-wraper.style-13 .icon-bx:after {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  content: "";
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--primary);
  width: 100%;
  border-radius: 50%;
  position: absolute;
  transform: scale(0);
}
.icon-bx-wraper.style-13 .icon-bx.border {
  border-color: inherit !important;
}
.icon-bx-wraper.style-13 .icon-bx i {
  font-size: 35px;
  position: relative;
  z-index: 1;
}
.icon-bx-wraper.style-13 .icon-bx.shadow {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1) !important;
}
.icon-bx-wraper.style-13 .title {
  font-size: 20px;
}
.icon-bx-wraper.style-13 p {
  font-size: 18px;
}
.icon-bx-wraper.style-13:hover .icon-bx i {
  color: #fff;
}
.icon-bx-wraper.style-13:hover .icon-bx:after {
  transform: scale(1.2);
}

.icon-bx-wraper.style-14 {
  background: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-14:hover {
  transform: translateY(-15px);
}
.icon-bx-wraper.style-14 .icon-media {
  margin-bottom: 25px;
}
.icon-bx-wraper.style-14 .icon-content .ic-title {
  margin-bottom: 15px;
}

.icon-bx-wraper.style-15 {
  border-color: #e1e1e1;
  height: calc(100% - 30px);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 1;
}
.icon-bx-wraper.style-15 [class*=icon-bx-] {
  background: var(--rgba-primary-1);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-15 .icon-bx-sm {
  height: 80px;
  width: 80px;
  min-width: 80px;
  line-height: 80px;
}
.icon-bx-wraper.style-15 .icon-bx-sm i {
  font-size: 40px;
}
.icon-bx-wraper.style-15 [class*=icon-bx-] svg path,
.icon-bx-wraper.style-15 [class*=icon-bx-] svg circle {
  fill: var(--primary);
}
.icon-bx-wraper.style-15 .title a {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-15:after {
  height: 0;
  bottom: 0;
  content: "";
  left: 0;
  width: 100%;
  position: absolute;
  background: var(--primary);
  z-index: -1;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-15:before {
  height: 0;
  bottom: 0;
  content: "";
  left: 0;
  width: 100%;
  position: absolute;
  background: #212529;
  z-index: 0;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.icon-bx-wraper.style-15:hover {
  border-color: var(--primary);
  box-shadow: 1px 1.732px 60px 0px var(--rgba-primary-3);
  color: #fff;
}
.icon-bx-wraper.style-15:hover [class*=icon-bx-] {
  background: #fff;
}
.icon-bx-wraper.style-15:hover .title a {
  color: #fff;
}
.icon-bx-wraper.style-15:hover:after {
  height: 100%;
}
.icon-bx-wraper.style-15:hover:before {
  height: 5px;
}

.icon-bx-wraper.style-16 {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  border-radius: var(--border-radius-base);
}
.icon-bx-wraper.style-16 p {
  font-size: 18px;
}
.icon-bx-wraper.style-16:after {
  content: attr(data-name);
  position: absolute;
  font-size: 80px;
  right: 10px;
  bottom: 5px;
  line-height: 1;
  font-weight: 700;
  color: #000;
  opacity: 0.05;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-16:hover {
  box-shadow: 0 5px 60px 0 rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
.icon-bx-wraper.style-16:hover:after {
  transform: scale(2);
  -moz-transform: scale(2);
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
}

.icon-bx-wraper.style-17 {
  padding: 50px 35px;
  background: #fff;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  border-radius: var(--border-radius-base);
}
.icon-bx-wraper.style-17 .icon-xl {
  position: relative;
  width: auto;
  line-height: 1;
  z-index: 1;
}
.icon-bx-wraper.style-17 [class*=icon-] svg path,
.icon-bx-wraper.style-17 [class*=icon-] svg circle {
  fill: var(--primary);
}
.icon-bx-wraper.style-17:after {
  content: "";
  position: absolute;
  height: 350px;
  width: 100px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  background: var(--rgba-primary-4);
  right: -100px;
  bottom: -20px;
  transform: rotate(15deg);
  box-shadow: 0 -16px 0 30px var(--rgba-primary-1), 0 -16px 0 60px var(--rgba-primary-1), 0 -16px 0 90px var(--rgba-primary-1);
}
.icon-bx-wraper.style-17 .title a,
.icon-bx-wraper.style-17 p {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-17:hover {
  background: #1e1d23;
  transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
.icon-bx-wraper.style-17:hover .title a {
  color: #fff;
}
.icon-bx-wraper.style-17:hover p {
  color: #fff;
}
.icon-bx-wraper.style-17:hover:after {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 -16px 0 30px rgba(255, 255, 255, 0.1), 0 -16px 0 60px rgba(255, 255, 255, 0.1), 0 -16px 0 90px rgba(255, 255, 255, 0.1);
  opacity: 0.5;
  transform: rotate(15deg) scale(1.5);
}
@media only screen and (max-width: 767px) {
  .icon-bx-wraper.style-17 {
    padding: 20px;
  }
}

.icon-bx-wraper.style-18 {
  box-shadow: 0 0 95px 0px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 0.25rem;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-18:hover {
  transform: translateY(-10px);
}
.icon-bx-wraper.style-18.center .icon-bx-sm {
  margin-left: auto;
  margin-right: auto;
}
.icon-bx-wraper.style-18 .icon-bx-sm {
  margin-top: -70px;
  margin-bottom: 20px;
  box-sizing: border-box;
  position: relative;
  top: 0px;
  display: block;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
}
.icon-bx-wraper.style-18 .icon-bx-sm i {
  font-size: 40px;
}
.icon-bx-wraper.style-18 .icon-content .ic-title {
  margin-bottom: 10px;
}
.icon-bx-wraper.style-18 .icon-content p {
  font-size: 20px;
  margin-bottom: 5px;
  line-height: 1.4;
}
@media only screen and (max-width: 1199px) {
  .icon-bx-wraper.style-18 .icon-content p {
    font-size: 16px;
  }
}

.icon-bx-wraper.style-19 {
  align-items: center;
  display: flex;
  position: relative;
  padding: 10px;
}
.icon-bx-wraper.style-19::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  z-index: 0;
  height: 100%;
  background: #070613;
  border-radius: var(--border-radius-sm);
}
.icon-bx-wraper.style-19 .icon-lg {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-sm);
  margin-right: 20px;
}
.icon-bx-wraper.style-19 .icon-lg .icon-cell {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-bx-wraper.style-19 .icon-lg .icon-cell i {
  font-size: 40px;
}
.icon-bx-wraper.style-19 p {
  margin: 0;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .icon-bx-wraper.style-19::before {
    width: 16%;
  }
}

.icon-bx-wraper.style-20 {
  display: flex;
  align-items: center;
  padding: 10px 0 10px 10px;
}
.icon-bx-wraper.style-20::after, .icon-bx-wraper.style-20::before {
  content: "";
  position: absolute;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 0;
}
.icon-bx-wraper.style-20::after {
  top: 0px;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary);
  border-right: 0;
  opacity: 1;
  border-radius: var(--border-radius-sm);
}
.icon-bx-wraper.style-20::before {
  top: 0;
  right: 15px;
  background: var(--primary);
  height: 60%;
  padding: 16px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0 50px 50px 0;
  opacity: 0;
}
@media only screen and (max-width: 991px) {
  .icon-bx-wraper.style-20::before {
    height: 80%;
  }
}
@media only screen and (max-width: 575px) {
  .icon-bx-wraper.style-20::before {
    height: 72%;
    box-shadow: 0, 0, 0, 1rem rgba(0, 0, 0, 0.1);
  }
}
.icon-bx-wraper.style-20 .icon-content {
  position: relative;
  overflow: visible;
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.15);
  z-index: 2;
  border-radius: var(--border-radius-sm);
  padding: 32px;
  width: 100%;
}
.icon-bx-wraper.style-20 .icon-content::before {
  content: " ";
  position: absolute;
  top: 50%;
  left: -1px;
  transform: translateY(-50%);
  background: var(--primary);
  width: 0;
  opacity: 0;
  height: 35px;
  z-index: 0;
  clip-path: polygon(0% 0%, 20% 0, 69% 50%, 19% 100%, 0% 100%);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-20 .icon-content .title {
  margin-bottom: 0;
}
.icon-bx-wraper.style-20 .icon-content p {
  padding-right: 20px;
}
@media only screen and (max-width: 575px) {
  .icon-bx-wraper.style-20 .icon-content {
    padding: 20px;
  }
  .icon-bx-wraper.style-20 .icon-content::before {
    height: 30px;
  }
}
.icon-bx-wraper.style-20 .icon-bx {
  background: var(--primary);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  margin-left: -40px;
  position: relative;
  z-index: 4;
  opacity: 1;
  min-width: 70px;
  height: 60px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-20 .icon-bx .ic-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  color: #FFFFFF;
  margin: 0;
}
.icon-bx-wraper.style-20 .icon-bx p {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin-top: -6px;
}
.icon-bx-wraper.style-20:hover::after, .icon-bx-wraper.style-20.active::after {
  width: 80%;
  opacity: 1;
}
.icon-bx-wraper.style-20:hover::before, .icon-bx-wraper.style-20.active::before {
  opacity: 1;
}
.icon-bx-wraper.style-20:hover .icon-content::before, .icon-bx-wraper.style-20.active .icon-content::before {
  width: 40px;
  opacity: 1;
}
@media only screen and (max-width: 575px) {
  .icon-bx-wraper.style-20:hover .icon-content::before, .icon-bx-wraper.style-20.active .icon-content::before {
    width: 25px;
  }
}
.icon-bx-wraper.style-20:hover .icon-bx, .icon-bx-wraper.style-20.active .icon-bx {
  opacity: 1;
}

.icon-bx-wraper.style-21 {
  position: relative;
  display: inline-block;
  padding: 20px 56px 20px 30px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  align-items: center;
  display: flex;
  border-radius: var(--border-radius-sm);
}
@media only screen and (max-width: 1199px) {
  .icon-bx-wraper.style-21 {
    padding: 18px;
  }
}
.icon-bx-wraper.style-21:nth-child(2) {
  margin-left: 5rem;
}
.icon-bx-wraper.style-21:nth-child(1) {
  margin-right: 4rem;
}
.icon-bx-wraper.style-21:nth-child(3) {
  margin-right: 4rem;
}
@media only screen and (max-width: 575px) {
  .icon-bx-wraper.style-21 {
    width: 100%;
    margin-left: 0 !important;
  }
}
.icon-bx-wraper.style-21::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-sm);
  z-index: 1;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-21 .data-text {
  position: absolute;
  top: -60px;
  left: -20px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: white;
  -webkit-text-stroke-width: 1px;
  font-family: "inter";
  font-size: 100px;
  z-index: 0;
}
@media only screen and (max-width: 575px) {
  .icon-bx-wraper.style-21 .data-text {
    top: -50px;
    left: -10px;
    font-size: 72px;
  }
}
.icon-bx-wraper.style-21 .icon-lg {
  z-index: 4;
  position: relative;
}
.icon-bx-wraper.style-21 .icon-lg .icon-cell {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.icon-bx-wraper.style-21 .icon-lg img {
  width: 60px;
  height: 60px;
}
.icon-bx-wraper.style-21 .icon-content {
  z-index: 4;
  position: relative;
  padding-left: 15px;
}
.icon-bx-wraper.style-21 .icon-content .ic-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
}
@media only screen and (max-width: 575px) {
  .icon-bx-wraper.style-21 .icon-content .ic-title {
    font-size: 1.2rem;
  }
}
.icon-bx-wraper.style-21 .icon-content p {
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .icon-bx-wraper.style-21 .icon-content p {
    font-size: 0.875rem;
  }
}
.icon-bx-wraper.style-21:hover .icon-cell {
  color: #fff !important;
}
.icon-bx-wraper.style-21:hover:before {
  background: var(--primary);
}

.ic-team {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.ic-team .ic-name a {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.ic-team .ic-content {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  position: relative;
}
.ic-team .ic-media img {
  width: 100%;
}
.ic-team .ic-position {
  display: block;
}

.ic-team.style-1 .ic-content {
  padding: 30px;
}
.ic-team.style-1 .ic-name {
  margin-bottom: 5px;
}
.ic-team.style-1 .ic-name a {
  color: inherit;
}
.ic-team.style-1 .ic-position {
  font-size: 15px;
  font-weight: 400;
}
.ic-team.style-1 .ic-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-base);
}
.ic-team.style-1 .team-social {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  margin-top: -60px;
  margin-bottom: 15px;
}
.ic-team.style-1 .team-social li {
  display: inline-block;
  margin-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.ic-team.style-1 .team-social li.add-social {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  visibility: unset;
}
.ic-team.style-1 .team-social li.add-social span {
  background: var(--secondary);
  color: var(--primary);
}
.ic-team.style-1 .team-social li span,
.ic-team.style-1 .team-social li a {
  background: var(--primary);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: var(--border-radius-sm);
  font-size: 24px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  display: block;
  color: #fff;
}
.ic-team.style-1 .team-social li span:hover,
.ic-team.style-1 .team-social li a:hover {
  background: var(--primary-hover);
}
.ic-team.style-1:hover .team-social li {
  opacity: 1;
  visibility: unset;
  padding-left: 7px;
  padding-right: 7px;
}
.ic-team.style-1:hover .team-social li.add-social {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .ic-team.style-1 .team-social {
    margin-bottom: 5px;
  }
  .ic-team.style-1 .team-social li {
    padding-left: 2px;
    padding-right: 2px;
  }
  .ic-team.style-1 .team-social li span,
  .ic-team.style-1 .team-social li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .swiper-wrapper .ic-team {
    margin: 0;
  }
}

.team-swiper-area {
  position: relative;
}
.team-swiper-area .btn-prev,
.team-swiper-area .btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary);
  border-radius: var(--border-radius-sm);
  color: #fff;
}
.team-swiper-area .btn-prev {
  left: -150px;
}
.team-swiper-area .btn-next {
  right: -150px;
}
@media only screen and (max-width: 1680px) {
  .team-swiper-area .btn-prev {
    left: -50px;
  }
  .team-swiper-area .btn-next {
    right: -50px;
  }
}
@media only screen and (max-width: 1400px) {
  .team-swiper-area .btn-prev {
    left: -25px;
  }
  .team-swiper-area .btn-next {
    right: -25px;
  }
}
@media only screen and (max-width: 1199px) {
  .team-swiper-area .btn-prev {
    left: 0;
  }
  .team-swiper-area .btn-next {
    right: 0;
  }
}

.ic-team.style-2 .ic-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding-left: 20px;
}
.ic-team.style-2 .ic-content:after {
  content: "";
  height: calc(100% - 10px);
  width: 6px;
  background-color: var(--primary);
  position: absolute;
  top: 8px;
  left: 0;
}
.ic-team.style-2 .ic-name {
  margin-bottom: 5px;
}
.ic-team.style-2 .ic-name a {
  color: inherit;
}
.ic-team.style-2 .ic-position {
  font-size: 15px;
  font-weight: 400;
}
.ic-team.style-2 .ic-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-base);
}
.ic-team.style-2 .team-social {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  display: flex;
  margin: 0 -5px;
  padding-left: 10px;
}
.ic-team.style-2 .team-social li {
  display: inline-block;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  padding: 0 5px;
}
.ic-team.style-2 .team-social li a {
  background: var(--rgba-primary-2);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  display: block;
  color: var(--primary);
  border-radius: var(--border-radius-sm);
}
.ic-team.style-2 .team-social li a:hover {
  background: var(--primary-hover);
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .ic-team.style-2 .ic-content {
    display: block;
  }
  .ic-team.style-2 .team-social {
    padding-left: 0;
    padding-top: 15px;
  }
}

.ic-team.style-3 .ic-position {
  font-size: 15px;
  font-weight: 500;
}
.ic-team.style-3 .ic-media {
  border-radius: var(--border-radius-base);
}
.ic-team.style-3 .team-social {
  position: absolute;
  top: 10px;
  right: 10px;
}
.ic-team.style-3 .team-social li {
  display: block;
  margin-bottom: -35px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.ic-team.style-3 .team-social li.share {
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
  background-color: var(--secondary);
  display: block;
  border-radius: var(--border-radius-base);
  color: #fff;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 1;
  position: relative;
}
.ic-team.style-3 .team-social li.share i {
  position: relative;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.ic-team.style-3 .team-social li a {
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 15px;
  background-color: var(--secondary);
  display: block;
  border-radius: var(--border-radius-base);
  color: #fff;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.ic-team.style-3 .team-social li a:hover {
  background-color: var(--primary);
}
.ic-team.style-3:hover .team-social li {
  margin-bottom: 10px;
}
.ic-team.style-3:hover .team-social li.share {
  background-color: var(--primary);
}
.ic-team.style-3:hover .team-social li.share i {
  transform: rotate(45deg);
}

.ic-team.style-4 .ic-position {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 15px;
}
.ic-team.style-4 .ic-position.line:before {
  content: "";
  position: relative;
  height: 1px;
  top: -5px;
  margin-right: 10px;
  display: inline-block;
  width: 40px;
  background: var(--primary);
}
.ic-team.style-4 .ic-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-base);
}
.ic-team.style-4 .ic-media .team-social {
  position: absolute;
  left: 50%;
  bottom: -50px;
  display: flex;
  transform: translateX(-50%);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.ic-team.style-4 .ic-media .team-social li {
  display: block;
  margin: 0 5px;
}
.ic-team.style-4 .ic-media .team-social li a {
  background: var(--primary);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  display: block;
  color: #fff;
  border-radius: var(--border-radius-sm);
}
.ic-team.style-4 .ic-media .team-social li a:hover {
  background: var(--primary);
}
.ic-team.style-4:hover .ic-media .team-social {
  bottom: 20px;
}

.ic-team.style-5 .ic-content {
  z-index: -1;
  margin: -80px 0px 0;
  padding: 100px 20px 20px 20px;
  border: 1px solid #cccccc;
}
.ic-team.style-5 .ic-name {
  margin-bottom: 5px;
}
.ic-team.style-5 .ic-name a {
  color: inherit;
}
.ic-team.style-5 .ic-position {
  font-size: 15px;
  font-weight: 400;
}
.ic-team.style-5 .ic-media {
  position: relative;
  overflow: hidden;
  margin: 0 20px;
}
.ic-team.style-5 .ic-media .team-social {
  position: absolute;
  bottom: -100px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  display: flex;
  width: 100%;
  left: 0;
  justify-content: center;
}
.ic-team.style-5 .ic-media .team-social li {
  display: inline-block;
  margin: 0 5px 10px;
}
.ic-team.style-5 .ic-media .team-social li a {
  background: var(--primary);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 40px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  display: block;
  color: #fff;
}
.ic-team.style-5 .ic-media .team-social li a:hover {
  background: var(--primary-hover);
}
.ic-team.style-5:hover .ic-media .team-social {
  bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .swiper-wrapper .ic-team {
    margin: 0;
  }
}

.ic-team.style-6 {
  text-align: center;
  padding-bottom: 2px;
}
.ic-team.style-6 .ic-content {
  z-index: -1;
  margin: -80px 0px 0;
  padding: 100px 20px 20px 20px;
  border: 1px solid #cccccc;
}
.ic-team.style-6 .ic-name {
  margin-bottom: 5px;
}
.ic-team.style-6 .ic-name a {
  color: inherit;
}
.ic-team.style-6 .ic-position {
  font-size: 15px;
  font-weight: 400;
}
.ic-team.style-6 .ic-media {
  position: relative;
  overflow: hidden;
  margin: 0 20px;
}
.ic-team.style-6 .ic-media .team-social {
  position: absolute;
  bottom: -100px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  display: flex;
  width: 100%;
  left: 0;
  justify-content: center;
}
.ic-team.style-6 .ic-media .team-social li {
  display: inline-block;
  margin: 0 5px 10px;
}
.ic-team.style-6 .ic-media .team-social li a {
  background: var(--primary);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 40px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  display: block;
  color: #fff;
}
.ic-team.style-6 .ic-media .team-social li a:hover {
  background: var(--primary-hover);
}
.ic-team.style-6:hover .ic-media .team-social {
  bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .swiper-wrapper .ic-team {
    margin: 0;
  }
}

.ic-team.style-7 {
  position: relative;
  padding: 10px 0;
  padding-left: 60px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .ic-team.style-7 {
    padding: 0;
  }
}
.ic-team.style-7 .ic-social-icon {
  position: absolute;
  top: 0;
  left: 80px;
  opacity: 0;
  height: 100%;
  width: 110px;
  background: var(--primary);
  z-index: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  padding-left: 25px;
  transition: all 0.3s ease-in-out;
  border-radius: var(--border-radius-sm);
}
.ic-team.style-7 .ic-social-icon li a {
  color: #fff;
  display: block;
  font-size: 1.125rem;
}
.ic-team.style-7 .ic-media {
  position: relative;
  overflow: visible;
  z-index: 4;
  filter: drop-shadow(10px 10px 40px rgba(0, 0, 0, 0.25));
}
.ic-team.style-7 .ic-media img {
  border-radius: var(--border-radius-sm);
}
.ic-team.style-7 .ic-info {
  position: absolute;
  right: -30px;
  bottom: 25px;
  background: rgba(31, 31, 31, 0.69);
  backdrop-filter: blur(5px);
  z-index: 4;
  padding: 10px 25px;
  transition: all 0.3s ease-in-out;
  border-radius: var(--border-radius-sm);
}
@media only screen and (max-width: 767px) {
  .ic-team.style-7 .ic-info {
    right: -10px;
  }
}
.ic-team.style-7 .ic-info .ic-title {
  line-height: 1.2;
}
.ic-team.style-7 .ic-info .ic-title a {
  font-size: 1.125rem;
  color: #fff;
}
.ic-team.style-7 .ic-info .ic-position {
  font-weight: 400;
  font-size: 1rem;
  color: #E7E7E7;
}
.ic-team.style-7:hover {
  padding-left: 60px;
}
.ic-team.style-7:hover .ic-social-icon {
  left: 0px;
  opacity: 1;
}
.ic-team.style-7:hover .ic-info {
  right: 36px;
}

.blog-swiper {
  margin: -15px;
  width: auto;
}
.blog-swiper .swiper-slide > div {
  margin: 15px;
  height: 100%;
}

.ic-card {
  position: relative;
}
.ic-card.shadow {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}
.ic-card .ic-info {
  position: relative;
  z-index: 1;
}
.ic-card .ic-title {
  margin-bottom: 15px;
  word-break: break-word;
}
@media only screen and (max-width: 575px) {
  .ic-card .ic-info {
    padding: 25px 20px;
  }
}
.ic-card .ic-meta ul li.post-user a {
  margin-left: 3px;
}
.ic-card.blog-half {
  display: flex;
}
@media only screen and (max-width: 575px) {
  .ic-card.blog-half {
    display: block;
  }
}

.ic-meta {
  margin-bottom: 15px;
}
.ic-meta ul {
  margin: 0;
  padding: 0;
}
.ic-meta ul li {
  display: inline-flex;
  color: var(--primary);
  align-items: center;
  margin-right: 20px;
}
.ic-meta ul li a {
  color: inherit;
}
.ic-meta ul li i {
  font-size: 16px;
  margin-right: 10px;
}

.post-video .post-video-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  background-color: var(--primary);
  font-size: 30px;
  margin: 0 auto;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
}
@media only screen and (max-width: 575px) {
  .post-video .post-video-icon {
    height: 70px;
    width: 70px;
    line-height: 70px;
    font-size: 24px;
  }
}

.post-swiper .prev-post-swiper-btn,
.post-swiper .next-post-swiper-btn {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: var(--border-radius-sm);
}
.post-swiper .prev-post-swiper-btn {
  left: 30px;
}
.post-swiper .next-post-swiper-btn {
  right: 30px;
}
@media only screen and (max-width: 575px) {
  .post-swiper .prev-post-swiper-btn,
  .post-swiper .next-post-swiper-btn {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }
  .post-swiper .prev-post-swiper-btn {
    left: 15px;
  }
  .post-swiper .next-post-swiper-btn {
    right: 15px;
  }
}

.ic-card.blog-half.sticky {
  position: relative;
  border: 0.375rem solid var(--primary);
  overflow: hidden;
}
.ic-card.blog-half.sticky .sticky-icon {
  background: var(--primary);
  width: 3.125rem;
  height: 3.125rem;
  position: absolute;
  transform: rotate(45deg);
  top: -1.563rem;
  right: -1.563rem;
  z-index: 1;
  color: #fff;
}
.ic-card.blog-half.sticky .sticky-icon i {
  position: absolute;
  bottom: 0.1875rem;
  right: 1.125rem;
  transform: rotate(5deg);
  color: #fff;
  font-size: 1rem;
}

.ic-card .ic-media:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
}
.ic-card:hover .ic-media:before {
  -webkit-animation: zoom-hover 0.75s;
  animation: zoom-hover 0.75s;
}

@-webkit-keyframes zoom-hover {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes zoom-hover {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
.ic-card.style-1 {
  border-radius: var(--border-radius-base);
  overflow: hidden;
}
.ic-card.style-1 .ic-info {
  padding: 30px;
}
.ic-card.style-1 .btn-link {
  position: relative;
  display: flex;
  align-items: center;
}
.ic-card.style-1 .btn-link i {
  margin-left: 10px;
  font-size: 14px;
}
.ic-card.style-1.blog-half {
  overflow: hidden;
}
.ic-card.style-1.blog-half .ic-info {
  padding: 25px;
  position: relative;
  flex: 1;
}
.ic-card.style-1.blog-half .ic-media {
  margin-bottom: 0;
  max-width: 220px;
  min-width: 220px;
}
@media only screen and (max-width: 1199px) {
  .ic-card.style-1.blog-half .ic-media {
    max-width: 200px;
    min-width: 200px;
  }
}
@media only screen and (max-width: 575px) {
  .ic-card.style-1.blog-half .ic-media {
    max-width: 100%;
    min-width: 100%;
  }
}
.ic-card.style-1.blog-half .ic-media a {
  display: block;
  height: 100%;
}
.ic-card.style-1.blog-half .ic-media img {
  height: 100%;
  object-fit: cover;
  min-height: 235px;
}
@media only screen and (max-width: 575px) {
  .ic-card.style-1.blog-half .ic-media img {
    min-height: auto;
  }
}
.ic-card.style-1.blog-half.post-video .post-video-icon {
  width: 60px;
  height: 60px;
  font-size: 20px;
}
.ic-card.style-1.blog-half .swiper-container {
  height: 100%;
}

.ic-card.style-2 .ic-info {
  padding: 0;
}
.ic-card.style-2 .ic-media {
  border-radius: var(--border-radius-base);
}
.ic-card.style-2 .ic-media + .ic-info {
  padding-top: 20px;
  padding-bottom: 20px;
}
.ic-card.style-2 .btn-link {
  position: relative;
  display: flex;
  align-items: center;
}
.ic-card.style-2 .btn-link i {
  margin-right: 10px;
  font-size: 14px;
}
.ic-card.style-2 .ic-meta {
  margin-bottom: 25px;
}
.ic-card.style-2 .ic-meta ul li {
  background: var(--primary);
  font-size: 15px;
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 15px 0 var(--rgba-primary-3);
  margin-left: 7px;
  margin-right: 7px;
  display: inline-flex;
  align-items: center;
}
.ic-card.style-2 .ic-meta ul li a {
  color: #fff;
}
.ic-card.style-2 .ic-meta ul li i {
  margin-right: 8px;
  font-size: 16px;
}
.ic-card.style-2 .ic-media + .ic-info .ic-meta {
  margin-top: -42px;
}
.ic-card.style-2.text-center .btn-link {
  justify-content: center;
}

.ic-card.style-3 {
  background: #fff;
}
.ic-card.style-3 .ic-media {
  z-index: 1;
}
.ic-card.style-3 .ic-meta {
  margin-bottom: 20px;
}
.ic-card.style-3 .ic-meta ul {
  line-height: 1;
}
.ic-card.style-3 .ic-meta ul li {
  background: var(--primary);
  font-size: 15px;
  position: relative;
  font-weight: 300;
  color: #fff;
  border-radius: var(--border-radius-lg);
  padding: 7px 15px;
  box-shadow: 0 5px 15px 0 var(--rgba-primary-3);
  margin-left: 7px;
  margin-right: 7px;
}
@media only screen and (max-width: 575px) {
  .ic-card.style-3 .ic-meta ul li {
    margin-left: 2px;
    margin-right: 2px;
  }
}
.ic-card.style-3 .ic-meta ul li:first-child {
  margin-left: 0;
}
.ic-card.style-3 .ic-meta ul li:last-child {
  margin-right: 0;
}
.ic-card.style-3 .ic-info {
  position: relative;
  border: 1px solid #cccccc;
  padding: 32px;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .ic-card.style-3 .ic-info {
    padding: 25px 20px;
  }
}
@media only screen and (max-width: 575px) {
  .ic-card.style-3 .ic-info {
    padding: 25px;
  }
}
.ic-card.style-3 .ic-media + .ic-info {
  padding: 32px;
}
@media only screen and (max-width: 1199px) {
  .ic-card.style-3 .ic-media + .ic-info {
    padding: 25px 20px;
  }
}
@media only screen and (max-width: 575px) {
  .ic-card.style-3 .ic-media + .ic-info {
    padding: 25px;
  }
}
.ic-card.style-3 .icon-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45px;
  height: 45px;
  padding: 0 0 0 4px;
  text-align: center;
  justify-content: center;
}
.ic-card.style-3.blog-half .ic-media {
  margin-right: 0;
  margin-left: 0;
}
.ic-card.style-3.blog-half .ic-media + .ic-info {
  margin: 0 0px 0;
  padding: 30px;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .ic-card.style-3.blog-half .ic-media + .ic-info {
    padding: 20px;
  }
}
.ic-card.style-3 .btn-link {
  position: relative;
  font-weight: 600;
}
.ic-card.style-3 .btn-link i {
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  .ic-card.style-3.blog-top {
    display: flex;
    flex-direction: column-reverse;
  }
}

.ic-card.style-4 {
  box-shadow: 3px 3px 15px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
}
.ic-card.style-4 .ic-meta ul {
  line-height: 1;
}
.ic-card.style-4 .ic-meta ul li {
  color: var(--primary);
  font-family: var(--font-family-title);
  font-size: 13px;
  padding-left: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  font-weight: 300;
}
.ic-card.style-4 .ic-meta ul li:after {
  content: "";
  height: 5px;
  width: 5px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 4px;
}
@media only screen and (max-width: 1199px) {
  .ic-card.style-4 .ic-meta ul li {
    letter-spacing: 0px;
  }
}
.ic-card.style-4 .ic-title {
  font-family: var(--font-family-base);
  letter-spacing: normal;
  line-height: 1.3;
}
.ic-card.style-4 .ic-info {
  position: unset;
  padding: 30px;
}
.ic-card.style-4 .icon-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45px;
  height: 45px;
  padding: 0 0 0 4px;
  text-align: center;
  justify-content: center;
  border-radius: var(--border-radius-sm) 0 0 0;
}

.main-silder-swiper {
  position: relative;
}
.main-silder-swiper .swiper-pagination-bullets {
  position: absolute;
  bottom: 20px;
  left: 80px;
}
@media only screen and (max-width: 1680px) {
  .main-silder-swiper .swiper-pagination-bullets {
    left: 40px;
  }
}
.main-silder-swiper .btn-next,
.main-silder-swiper .btn-prev {
  position: absolute;
  top: 50%;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.main-silder-swiper .btn-next:hover,
.main-silder-swiper .btn-prev:hover {
  background: var(--primary);
  color: #fff;
}
.main-silder-swiper .btn-next {
  right: 50px;
}
.main-silder-swiper .btn-prev {
  left: 50px;
}
@media only screen and (max-width: 1400px) {
  .main-silder-swiper .btn-next {
    right: -10px;
  }
  .main-silder-swiper .btn-prev {
    left: -10px;
  }
}
@media only screen and (max-width: 575px) {
  .main-silder-swiper .btn-prev {
    top: auto;
    left: auto;
    bottom: 0;
    right: 36px;
  }
  .main-silder-swiper .btn-next {
    right: -10px;
    bottom: 0;
    top: auto;
  }
}

/* Silder One */
.silder-one:after {
  content: "";
  -webkit-animation: 20s bgMove infinite linear;
  -moz-animation: 20s bgMove infinite linear;
  -o-animation: 20s bgMove infinite linear;
  -ms-animation: 20s bgMove infinite linear;
  animation: 20s bgMove infinite linear;
  background-repeat: repeat-y;
  background-size: 100%;
  background-image: url(../../1_Factory/images/background/line.png);
  height: 100%;
  width: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  position: absolute;
  background-size: 100%;
  pointer-events: none;
}
.silder-one .ic-slide-item {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .silder-one .ic-slide-item {
    min-height: auto;
  }
}
.silder-one .silder-content {
  width: 70%;
}
.silder-one .silder-content .title {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #fff;
}
.silder-one .silder-content .title span {
  text-decoration: 7px underline var(--primary);
  text-underline-offset: 5px;
}
@media only screen and (max-width: 1199px) {
  .silder-one .silder-content .title {
    margin-bottom: 15px;
    font-size: 60px;
  }
}
.silder-one .silder-content .sub-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: inherit;
}
.silder-one .silder-content p {
  font-size: 18px;
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .silder-one .silder-content p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1400px) {
  .silder-one .silder-content {
    padding: 35px;
  }
  .silder-one .silder-content .sub-title {
    margin-bottom: 15px;
  }
  .silder-one .silder-content .title {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .silder-one .silder-content .title span {
    text-decoration: 3px underline var(--primary);
    text-underline-offset: 3px;
  }
}
@media only screen and (max-width: 991px) {
  .silder-one .ic-slide-item {
    height: 500px;
  }
  .silder-one .silder-content {
    padding: 30px;
  }
  .silder-one .silder-content .title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .silder-one .ic-slide-item {
    height: 400px;
  }
  .silder-one .silder-content {
    padding: 30px 50px 30px 15px;
    width: 100%;
  }
  .silder-one .silder-content .title {
    font-size: 36px;
  }
  .silder-one .ic-slide-item {
    padding-top: 50px;
    padding-bottom: 50px;
    display: block;
    min-height: auto;
  }
  .silder-one .ic-slide-item .slider-img {
    position: unset;
    width: 100%;
    filter: none;
    padding: 15px;
    margin-bottom: 15px;
  }
  .silder-one .ic-slide-item .slider-img img {
    -webkit-mask-image: unset;
    mask-image: unset;
    height: 250px;
    object-fit: cover;
    object-position: center;
  }
}
@media only screen and (max-width: 575px) {
  .silder-one .silder-content {
    width: auto;
    left: 15px;
    right: 15px;
    bottom: 90px;
    padding: 0;
  }
  .silder-one .silder-content .title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .silder-one .silder-content .sub-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .silder-one .silder-content p {
    margin-bottom: 20px;
  }
}

.site-header.style-1 + .page-content .silder-one .ic-slide-item {
  padding-top: 200px;
}
@media only screen and (max-width: 991px) {
  .site-header.style-1 + .page-content .silder-one .ic-slide-item {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .site-header.style-1 + .page-content .silder-one .ic-slide-item {
    padding-top: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .site-header.style-1 + .page-content .silder-one .ic-slide-item {
    padding-top: 40px;
    height: 400px;
  }
}

/* Image Move Css */
@-webkit-keyframes bgMove {
  100% {
    background-position: 0px -3000px;
  }
}
@-moz-keyframes bgMove {
  100% {
    background-position: 0px -3000px;
  }
}
@-o-keyframes bgMove {
  100% {
    background-position: 0px -3000px;
  }
}
@-ms-keyframes bgMove {
  100% {
    background-position: 0px -3000px;
  }
}
@keyframes bgMove {
  100% {
    background-position: 0px -3000px;
  }
}
/* Silder Two */
.silder-two .ic-slide-item {
  display: flex;
  align-items: center;
  height: 750px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}
.silder-two .silder-content {
  width: 70%;
  z-index: 1;
  position: relative;
}
.silder-two .silder-content .title {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #fff;
}
.silder-two .silder-content .title span {
  text-decoration: 7px underline var(--primary);
  text-underline-offset: 5px;
}
@media only screen and (max-width: 1199px) {
  .silder-two .silder-content .title {
    margin-bottom: 15px;
    font-size: 60px;
  }
}
.silder-two .silder-content .sub-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: inherit;
}
.silder-two .silder-content p {
  font-size: 18px;
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .silder-two .silder-content p {
    font-size: 15px;
  }
}
.silder-two .btn-next,
.silder-two .btn-prev {
  transform: translateY(-50%);
}
@media only screen and (max-width: 575px) {
  .silder-two .btn-next,
  .silder-two .btn-prev {
    transform: unset;
  }
}
.silder-two .bg-shape-left {
  height: 1000px;
  width: 1000px;
  background-color: var(--rgba-primary-6);
  left: -560px;
  position: absolute;
  transform: rotate(40deg);
  top: -440px;
}
.silder-two .bg-shape-left:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 100px;
  background-color: var(--rgba-primary-4);
}
.silder-two .bg-shape-left:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 200px;
  background-color: var(--rgba-primary-8);
}
@media only screen and (max-width: 1199px) {
  .silder-two .bg-shape-left {
    height: 800px;
    width: 850px;
  }
}
@media only screen and (max-width: 767px) {
  .silder-two .bg-shape-left {
    height: 700px;
    width: 800px;
  }
  .silder-two .bg-shape-left:after {
    right: 50px;
  }
  .silder-two .bg-shape-left:before {
    right: 100px;
  }
}
@media only screen and (max-width: 575px) {
  .silder-two .bg-shape-left {
    width: 700px;
  }
  .silder-two .bg-shape-left:after {
    right: 30px;
  }
  .silder-two .bg-shape-left:before {
    right: 60px;
  }
}
.silder-two .bg-shape-right {
  height: 400px;
  width: 500px;
  background-color: var(--rgba-primary-6);
  transform: rotate(40deg);
  position: absolute;
  right: -320px;
  bottom: -300px;
}
@media only screen and (max-width: 1199px) {
  .silder-two .bg-shape-right {
    height: 350px;
    width: 450px;
    right: -290px;
    bottom: -260px;
  }
}
@media only screen and (max-width: 767px) {
  .silder-two .bg-shape-right {
    width: 400px;
  }
}
@media only screen and (max-width: 575px) {
  .silder-two .bg-shape-right {
    height: 250px;
    width: 390px;
  }
}
@media only screen and (max-width: 1400px) {
  .silder-two .ic-slide-item {
    height: 600px;
  }
  .silder-two .silder-content {
    padding: 35px;
  }
  .silder-two .silder-content .sub-title {
    margin-bottom: 15px;
  }
  .silder-two .silder-content .title {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .silder-two .silder-content .title span {
    text-decoration: 3px underline var(--primary);
    text-underline-offset: 3px;
  }
}
@media only screen and (max-width: 991px) {
  .silder-two .silder-content {
    padding: 30px;
  }
  .silder-two .silder-content .title {
    font-size: 42px;
  }
  .silder-two .ic-slide-item {
    padding-top: 80px;
    height: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .silder-two .ic-slide-item {
    height: 400px;
  }
  .silder-two .silder-content {
    padding: 15px;
    width: 100%;
  }
  .silder-two .silder-content .title {
    font-size: 36px;
  }
  .silder-two .ic-slide-item {
    padding-top: 50px;
    padding-bottom: 50px;
    display: block;
    min-height: auto;
  }
  .silder-two .ic-slide-item .slider-img {
    position: unset;
    width: 100%;
    filter: none;
    padding: 15px;
    margin-bottom: 15px;
  }
  .silder-two .ic-slide-item .slider-img img {
    -webkit-mask-image: unset;
    mask-image: unset;
    height: 250px;
    object-fit: cover;
    object-position: center;
  }
}
@media only screen and (max-width: 575px) {
  .silder-two .silder-content {
    padding: 0;
  }
  .silder-two .silder-content .title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .silder-two .silder-content .sub-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .silder-two .silder-content p {
    margin-bottom: 20px;
  }
}

/* Silder Two */
.slider-3 {
  position: relative;
}
.slider-3 .down-side {
  width: 120px;
  height: 120px;
  position: absolute;
  background: var(--primary);
  bottom: -30px;
  z-index: 2;
  right: 15%;
  box-shadow: 0 0 80px -30px var(--primary);
  text-align: center;
  color: #fff;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-base);
}
.slider-3 .down-side i {
  animation: down 1.5s infinite;
  -webkit-animation: down 1.5s infinite;
}
@media only screen and (max-width: 1199px) {
  .slider-3 .down-side {
    width: 80px;
    height: 80px;
    right: 14%;
  }
}
@media only screen and (max-width: 575px) {
  .slider-3 .down-side {
    width: 60px;
    height: 60px;
    font-size: 30px;
    right: 15px;
  }
}

@keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}
@-webkit-keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}
.silder-three .overlay-black-light:before,
.silder-three .overlay-black-dark:before {
  background: #1e1d23;
}
.silder-three .overlay-black-middle:before {
  opacity: 0.4;
}
.silder-three .ic-slide-item {
  display: flex;
  align-items: center;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding-top: 220px;
  padding-bottom: 80px;
}
.silder-three .silder-content {
  width: 650px;
  z-index: 1;
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-base);
}
.silder-three .silder-content .title {
  font-size: 65px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #fff;
}
.silder-three .silder-content .title span {
  text-decoration: 7px underline var(--primary);
  text-underline-offset: 5px;
}
@media only screen and (max-width: 1199px) {
  .silder-three .silder-content .title {
    margin-bottom: 15px;
    font-size: 60px;
  }
}
.silder-three .silder-content .sub-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: inherit;
}
.silder-three .silder-content p {
  font-size: 18px;
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .silder-three .silder-content p {
    font-size: 15px;
  }
}
.silder-three .btn-next,
.silder-three .btn-prev {
  transform: translateY(-50%);
}
@media only screen and (max-width: 575px) {
  .silder-three .btn-next,
  .silder-three .btn-prev {
    transform: unset;
  }
}
.silder-three .bg-shape-left {
  height: 1000px;
  width: 1000px;
  background-color: var(--rgba-primary-6);
  left: -560px;
  position: absolute;
  transform: rotate(40deg);
  top: -440px;
}
.silder-three .bg-shape-left:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 100px;
  background-color: var(--rgba-primary-4);
}
.silder-three .bg-shape-left:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 200px;
  background-color: var(--rgba-primary-8);
}
@media only screen and (max-width: 1199px) {
  .silder-three .bg-shape-left {
    height: 800px;
    width: 850px;
  }
}
@media only screen and (max-width: 767px) {
  .silder-three .bg-shape-left {
    height: 700px;
    width: 800px;
  }
  .silder-three .bg-shape-left:after {
    right: 50px;
  }
  .silder-three .bg-shape-left:before {
    right: 100px;
  }
}
@media only screen and (max-width: 575px) {
  .silder-three .bg-shape-left {
    width: 700px;
  }
  .silder-three .bg-shape-left:after {
    right: 30px;
  }
  .silder-three .bg-shape-left:before {
    right: 60px;
  }
}
.silder-three .bg-shape-right {
  height: 400px;
  width: 500px;
  background-color: var(--rgba-primary-6);
  transform: rotate(40deg);
  position: absolute;
  right: -320px;
  bottom: -300px;
}
@media only screen and (max-width: 1199px) {
  .silder-three .bg-shape-right {
    height: 350px;
    width: 450px;
    right: -290px;
    bottom: -260px;
  }
}
@media only screen and (max-width: 767px) {
  .silder-three .bg-shape-right {
    width: 400px;
  }
}
@media only screen and (max-width: 575px) {
  .silder-three .bg-shape-right {
    height: 250px;
    width: 390px;
  }
}
@media only screen and (max-width: 1400px) {
  .silder-three .silder-content {
    padding: 35px;
  }
  .silder-three .silder-content .title {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .silder-three .silder-content .title span {
    text-decoration: 3px underline var(--primary);
    text-underline-offset: 3px;
  }
}
@media only screen and (max-width: 991px) {
  .silder-three .silder-content {
    padding: 30px;
    width: 450px;
    margin-top: 80px;
  }
  .silder-three .silder-content .title {
    font-size: 42px;
  }
  .silder-three .ic-slide-item {
    padding-top: 80px;
    height: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .silder-three .ic-slide-item {
    height: 400px;
  }
  .silder-three .silder-content {
    padding: 15px;
    width: 100%;
    margin-top: 30px;
  }
  .silder-three .silder-content .title {
    font-size: 36px;
  }
  .silder-three .ic-slide-item {
    padding-top: 105px;
    padding-bottom: 50px;
    display: block;
    min-height: auto;
  }
  .silder-three .ic-slide-item .slider-img {
    position: unset;
    width: 100%;
    filter: none;
    padding: 15px;
    margin-bottom: 15px;
  }
  .silder-three .ic-slide-item .slider-img img {
    -webkit-mask-image: unset;
    mask-image: unset;
    height: 250px;
    object-fit: cover;
    object-position: center;
  }
}
@media only screen and (max-width: 575px) {
  .silder-three .silder-content .title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .silder-three .silder-content .sub-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .silder-three .silder-content p {
    margin-bottom: 20px;
  }
  .silder-three.main-silder-swiper .btn-next {
    left: 36px;
  }
  .silder-three.main-silder-swiper .btn-prev {
    left: -10px;
  }
}

.slider-4 {
  position: relative;
}
.slider-4 .counter-area1 {
  position: absolute;
  bottom: 0;
  z-index: 99;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .slider-4 .counter-area1 {
    position: static;
    transform: unset;
    margin-top: 30px;
  }
}

.silder-four .swiper-slide {
  background-size: cover;
}
.silder-four .overlay-black-light:before,
.silder-four .overlay-black-dark:before {
  background: #1e1d23;
}
.silder-four .overlay-black-middle:before {
  opacity: 0.4;
}
.silder-four .ic-slide-item {
  display: flex;
  height: 850px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.silder-four .ic-slide-item::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}
@media only screen and (max-width: 1199px) {
  .silder-four .ic-slide-item {
    height: 700px;
  }
}
@media only screen and (max-width: 991px) {
  .silder-four .ic-slide-item {
    height: 500px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .silder-four .ic-slide-item {
    height: 450px;
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .silder-four .ic-slide-item {
    height: 400px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.silder-four .silder-content {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.silder-four .silder-content .inner-content {
  position: relative;
  z-index: 100;
}
.silder-four .silder-content .inner-content .title {
  color: #fff;
  font-style: normal;
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 4.688rem;
  color: #FFFFFF;
  text-align: center;
}
.silder-four .silder-content .inner-content .description {
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  color: #DFDFDF;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .silder-four .silder-content .inner-content .description {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .silder-four .silder-content .inner-content .description {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.silder-four .silder-content .inner-content .sub-title {
  display: inline-block;
  border-bottom: 2px solid var(--primary);
}
@media only screen and (max-width: 575px) {
  .silder-four .silder-content .inner-content .sub-title {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 1199px) {
  .silder-four .silder-content .inner-content .title {
    font-size: 2.75rem;
    line-height: normal;
  }
  .silder-four .silder-content .inner-content .description {
    padding: 0 150px;
  }
}
@media only screen and (max-width: 991px) {
  .silder-four .silder-content .inner-content .title {
    padding: 0 1rem;
  }
  .silder-four .silder-content .inner-content .description {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .silder-four .silder-content .inner-content .title {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 575px) {
  .silder-four .silder-content .inner-content .title {
    font-size: 1.5rem;
    padding: 0;
  }
  .silder-four .silder-content .inner-content .description {
    font-size: 13px;
  }
  .silder-four .silder-content .inner-content .sub-title {
    font-size: 0.9rem;
  }
}
.silder-four .btn-prev,
.silder-four .btn-next {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.silder-four .btn-prev i,
.silder-four .btn-next i {
  font-size: 1.25rem;
}
@media only screen and (max-width: 1680px) {
  .silder-four .btn-next {
    right: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .silder-four .btn-next {
    top: 50%;
    right: 0;
  }
}
@media only screen and (max-width: 1680px) {
  .silder-four .btn-prev {
    left: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .silder-four .btn-prev {
    top: 50%;
    left: 0;
  }
}

.swiper-counter .ic-slide-item {
  padding-bottom: 250px;
}
@media only screen and (max-width: 991px) {
  .swiper-counter .ic-slide-item {
    padding-bottom: 50px;
  }
}

.silder-for {
  position: relative;
}
.silder-for .silder-content {
  position: absolute;
  left: 10%;
  top: 50%;
  width: 800px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1680px) {
  .silder-for .silder-content {
    left: 10%;
    top: 50%;
    width: 500px;
  }
}
@media only screen and (max-width: 991px) {
  .silder-for .silder-content {
    left: 5%;
  }
}
@media only screen and (max-width: 575px) {
  .silder-for .silder-content {
    left: 0;
    width: 100%;
    padding: 20px 40px 20px 20px;
  }
}
.silder-for .silder-content p {
  font-size: 30px;
  font-weight: 200;
  line-height: 1.3;
  color: #fff;
}
@media only screen and (max-width: 1680px) {
  .silder-for .silder-content p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .silder-for .silder-content p {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.silder-for .silder-content .title {
  font-size: 120px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 25px;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
.silder-for .silder-content .title strong {
  color: inherit;
  font-weight: 800;
}
.silder-for .silder-content .title span {
  font-weight: 300;
}
@media only screen and (max-width: 1680px) {
  .silder-for .silder-content .title {
    font-size: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .silder-for .silder-content .title {
    font-size: 45px;
    margin-bottom: 15px;
  }
}
.silder-for .silder-content .title .extext {
  font-family: "Lora", serif;
  font-style: italic;
  font-weight: 400;
}
.silder-for .silder-content .sub-title {
  font-weight: 400;
  margin-bottom: 30px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 4px;
}
@media only screen and (max-width: 1680px) {
  .silder-for .silder-content .sub-title {
    margin-bottom: 10px;
  }
}
.silder-for .silder-img {
  overflow: hidden;
  height: calc(100vh - 90px);
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 991px) {
  .silder-for .silder-img {
    height: calc(100vh - 85px);
  }
}
.silder-for .silder-img.overlay-black-middle:before {
  background: linear-gradient(to right, rgba(33, 37, 41, 0.8) 0%, rgba(33, 37, 41, 0) 100%);
  z-index: 1;
  width: 80%;
  opacity: 1;
}
.silder-for .silder-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.silder-for .main-silder-swiper-04 .swiper-pagination {
  position: absolute;
  display: block;
  left: 0;
  bottom: 10px;
}
.silder-for .main-silder-swiper-04 .swiper-pagination span {
  background: #fff;
  margin: 10px 5px;
  width: 60px;
  border-radius: 0;
  opacity: 0.5;
  height: 5px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
@media only screen and (max-width: 991px) {
  .silder-for .main-silder-swiper-04 .swiper-pagination span {
    height: 3px;
    width: 35px;
  }
}
.silder-for .main-silder-swiper-04 .swiper-pagination span.swiper-pagination-bullet-active {
  opacity: 1;
}

.video-background {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
}

/* Silder six */
.silder-six {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  min-height: 100vh;
  background: #2f2f2f;
  z-index: 1;
  position: relative;
}
.silder-six .container {
  z-index: 1;
  position: relative;
}
.silder-six .electrician-worker {
  width: 900px;
}
.silder-six .bnr-title {
  font-size: 60px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.silder-six p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .silder-six {
    min-height: 720px;
  }
  .silder-six .electrician-worker {
    width: 650px;
    margin-right: -75px;
  }
  .silder-six .bnr-title {
    font-size: 45px;
  }
  .silder-six p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .silder-six {
    min-height: 580px;
  }
  .silder-six .bnr-title {
    font-size: 36px;
  }
  .silder-six p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .silder-six .electrician-worker {
    width: 500px;
    margin-left: -40px;
  }
}
@media only screen and (max-width: 767px) {
  .silder-six .banner-content {
    margin-bottom: 30px;
  }
  .silder-six .electrician-worker {
    width: 400px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 575px) {
  .silder-six .bnr-title {
    font-size: 32px;
  }
  .silder-six .electrician-worker {
    width: 350px;
  }
}

.heart {
  width: 60px;
  height: 60px;
  display: inline-block;
  background: url("../images/like.png");
  cursor: pointer;
  margin: -25px -15px;
}

.heart-blast {
  background-position: -1680px 0;
  transition: background 1s steps(28);
}

.service-area-1 {
  position: relative;
  z-index: 1;
}
.service-area-1:after {
  content: "";
  height: 35%;
  position: absolute;
  bottom: 0;
  z-index: -1;
  left: 0;
  width: 100%;
  background: #fff;
}
@media only screen and (max-width: 991px) {
  .service-area-1:after {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .service-area-1:after {
    height: 150px;
  }
}
@media only screen and (max-width: 991px) {
  .service-area-1 {
    padding-bottom: 20px;
  }
}

.counter-area-1 {
  overflow: hidden;
}
.counter-area-1 .media-full {
  width: 50vw;
  height: 100%;
  border-left: 5px solid var(--primary);
}
.counter-area-1 .counter-inner {
  width: 300px;
  z-index: 1;
  position: relative;
}
.counter-area-1 .video-background {
  position: unset;
}
@media only screen and (max-width: 767px) {
  .counter-area-1 .video-background {
    width: 100%;
  }
  .counter-area-1 .media-full {
    width: 100%;
    border-left: 0;
    padding-bottom: 50px;
  }
  .counter-area-1 .counter-inner {
    width: auto;
  }
  .counter-area-1 .counter-col {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.features-wraper-1 {
  position: relative;
}
.features-wraper-1 .icon-bx {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.features-wraper-1 .icon-bx-wraper {
  padding: 0 20px;
}
.features-wraper-1 > div:not(:last-child) .icon-bx-wraper:after {
  content: "";
  height: 1px;
  border-bottom: 1px dashed var(--primary);
  right: -50%;
  top: 55px;
  position: absolute;
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .features-wraper-1 .icon-bx-wraper {
    padding: 0;
  }
}
@media only screen and (max-width: 991px) {
  .features-wraper-1 > div:not(:last-child) .icon-bx-wraper:after {
    content: none;
  }
}

.hiw-area {
  overflow: hidden;
}
.hiw-area .ic-media {
  border-radius: var(--border-radius-base);
}

.hiw-area-1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hiw-area-1 .ic-media {
  border-radius: var(--border-radius-base);
}
.hiw-area-1:after {
  content: "";
  width: 32vw;
  height: 100%;
  position: absolute;
  top: 0;
  background: var(--secondary);
  left: 0;
  z-index: -1;
}
.hiw-area-1 .inner-content {
  padding-left: 20px;
}
@media only screen and (max-width: 991px) {
  .hiw-area-1:after {
    content: none;
  }
  .hiw-area-1 .inner-content {
    padding-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .section-head-bx .text-end,
  .section-head-bx .section-head {
    text-align: center;
  }
}

/* Support and Buy Button */
.theme-btn {
  background-color: #ffffff;
  border-radius: 40px;
  bottom: 10px;
  color: #ffffff;
  display: flex;
  height: 50px;
  left: 10px;
  min-width: 50px;
  position: fixed;
  text-align: center;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.theme-btn i {
  font-size: 22px;
  line-height: 50px;
}
.theme-btn.bt-support-now {
  background: linear-gradient(to right, #fb8405 0, #ff6804 100%, #ff9e04 200%); /* Old browsers */
  bottom: 70px;
}
.theme-btn.bt-buy-now {
  background: linear-gradient(to right, #61dc6a 0, #2bc911 100%, #61dc6a 200%);
}
.theme-btn span {
  display: table-cell;
  vertical-align: middle;
  font-size: 16px;
  letter-spacing: -15px;
  opacity: 0;
  line-height: 50px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
.theme-btn:focus, .theme-btn:active, .theme-btn:hover {
  color: #fff;
  padding: 0 20px;
}
.theme-btn:focus span, .theme-btn:active span, .theme-btn:hover span {
  opacity: 1;
  letter-spacing: 1px;
  padding-left: 10px;
}

.at-expanding-share-button-desktop.at-expanding-share-button[data-position=bottom-left] {
  bottom: 130px;
}

.service-area-2 {
  margin-top: -100px;
  position: relative;
}
@media only screen and (min-width: 991px) {
  .service-area-2 {
    margin-left: 0;
    margin-right: 0;
  }
  .service-area-2 [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
  .service-area-2 [class*=col-] .icon-bx-wraper {
    border-radius: 0;
  }
  .service-area-2 [class*=col-]:first-child .icon-bx-wraper {
    border-radius: var(--border-radius-base) 0 0 var(--border-radius-base);
  }
  .service-area-2 [class*=col-]:last-child .icon-bx-wraper {
    border-radius: 0 var(--border-radius-base) var(--border-radius-base) 0;
  }
}
@media only screen and (max-width: 1400px) {
  .service-area-2 {
    margin-top: -50px;
  }
}
@media only screen and (max-width: 991px) {
  .service-area-2 {
    margin-top: 50px;
  }
}

.counter-area-2 {
  position: relative;
}
.counter-area-2:after {
  content: "";
  height: 100px;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #fff;
  z-index: -1;
}
.counter-area-2 .counter-inner {
  padding: 30px 40px;
  border-radius: var(--border-radius-base);
}
.counter-area-2 .counter-inner .icon-bx-wraper {
  background: transparent;
}
.counter-area-2 .counter-inner .icon-bx-wraper .ic-title {
  color: #fff;
}
.counter-area-2 .counter-inner .icon-bx-wraper p {
  color: #fff;
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .counter-area-2 .counter-inner {
    padding: 10px 15px;
  }
}

.hiw-area-2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.clients-section-1 {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 575px) {
  .clients-section-1 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.clients-logo {
  padding: 0 25px;
  height: 100px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  transition: all 0.5s;
}
.clients-logo img {
  margin: auto;
  transition: all 0.5s;
}
.clients-logo img.logo-hover {
  display: none;
}
.clients-logo:hover .logo-main {
  display: none;
}
.clients-logo:hover img.logo-hover {
  display: block;
}

.portfolio-area1 {
  position: relative;
}
.portfolio-area1.after-light:after {
  background-color: #f7f6fb;
}
.portfolio-area1:after {
  content: "";
  height: 35%;
  width: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.counter-area1 {
  position: relative;
}
.counter-area1 .counter-inner {
  padding: 60px 100px 40px;
  border-radius: var(--border-radius-base);
  overflow: hidden;
  background-size: 120px;
  background-repeat: no-repeat;
  background-position: right bottom, left top;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}
.counter-area1 .counter-inner .icon-bx-wraper {
  justify-content: center;
}
.counter-area1 .counter-inner .icon-bx-wraper .counter {
  font-size: 50px;
  color: #fff;
}
.counter-area1 .counter-inner .icon-bx-wraper .title {
  color: #fff;
  font-size: 1.125rem;
}
.counter-area1 .counter-inner .icon-bx-wraper:after {
  color: transparent;
  text-shadow: 0 0 1px var(--primary), 0 0 1px #fff, 0 0 1px white;
  opacity: 0.3;
}
.counter-area1.half-bg:after {
  content: "";
  height: 85px;
  background-color: #fff;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  .counter-area1 .counter-inner {
    padding: 40px 50px 20px;
  }
}
@media only screen and (max-width: 575px) {
  .counter-area1 .counter-inner {
    padding: 40px 30px 0px;
  }
}

.mheight-lg {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mheight-md {
  height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mheight-sm {
  height: 190px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ic-overlay-box {
  overflow: hidden;
}
.ic-overlay-box .ic-info {
  position: absolute;
  z-index: 99;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  width: 100%;
}
.ic-overlay-box.style-1 {
  margin-bottom: 30px;
}
.ic-overlay-box.style-1 .ic-info {
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: 30px;
}
.ic-overlay-box.style-1 .ic-info .title {
  margin-bottom: 0px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  transform: translateY(200px);
  -moz-transform: translateY(200px);
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  -o-transform: translateY(200px);
  transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
  -ms-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  opacity: 0;
}
.ic-overlay-box.style-1 .ic-info .title a {
  color: #fff;
}
.ic-overlay-box.style-1 .ic-info .icon-link {
  height: 60px;
  width: 60px;
  border-radius: 60px;
  background-color: rgba(247, 246, 251, 0.1);
  color: #fff;
  line-height: 60px;
  text-align: center;
  display: block;
  font-size: 24px;
  margin: auto;
}
.ic-overlay-box.style-1 .tags-list {
  margin-bottom: 25px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  transform: translateY(200px);
  -moz-transform: translateY(200px);
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  -o-transform: translateY(200px);
  transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
  -ms-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  opacity: 0;
}
.ic-overlay-box.style-1 .tags-list li {
  display: inline-block;
}
.ic-overlay-box.style-1 .tags-list li a {
  color: #fff;
}
.ic-overlay-box.style-1 .tags-list li:after {
  color: #fff;
}
.ic-overlay-box.style-1 .icon-btn {
  height: 60px;
  width: 60px;
  padding: 0;
  line-height: 60px;
  font-size: 24px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  transform: translateY(200px);
  -moz-transform: translateY(200px);
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  -o-transform: translateY(200px);
  transition-delay: 0.7s;
  -moz-transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
  -ms-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  justify-content: center;
  opacity: 0;
}
.ic-overlay-box.style-1 .icon-btn:hover {
  background-color: #fff;
  border-color: #fff;
  color: var(--primary);
  box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.1);
}
.ic-overlay-box.style-1 .ic-media span {
  position: absolute;
  top: 0;
  z-index: 2;
  color: #fff;
  right: 0;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 100%;
  text-align: center;
  line-height: 64px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.6s;
  -moz-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.ic-overlay-box.style-1 .ic-media span:after, .ic-overlay-box.style-1 .ic-media span:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border: inherit;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s ease 0.3s;
  -moz-transition: all 0.6s ease 0.3s;
  -webkit-transition: all 0.6s ease 0.3s;
  -ms-transition: all 0.6s ease 0.3s;
  -o-transition: all 0.6s ease 0.3s;
}
.ic-overlay-box.style-1:hover .ic-media:before {
  opacity: 0.8;
}
.ic-overlay-box.style-1:hover .ic-media span {
  transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  opacity: 1;
  right: 60px;
  top: 60px;
}
.ic-overlay-box.style-1:hover .ic-media span:after {
  transform: scale(1.8);
  -moz-transform: scale(1.8);
  -webkit-transform: scale(1.8);
  -ms-transform: scale(1.8);
  -o-transform: scale(1.8);
  opacity: 0.5;
}
.ic-overlay-box.style-1:hover .ic-media span:before {
  transform: scale(2.6);
  -moz-transform: scale(2.6);
  -webkit-transform: scale(2.6);
  -ms-transform: scale(2.6);
  -o-transform: scale(2.6);
  opacity: 0.2;
}
.ic-overlay-box.style-1:hover .ic-info {
  opacity: 1;
}
.ic-overlay-box.style-1:hover .ic-info .title {
  transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  opacity: 1;
}
.ic-overlay-box.style-1:hover .tags-list,
.ic-overlay-box.style-1:hover .icon-btn {
  transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  opacity: 1;
}
.ic-overlay-box.style-2 {
  border-radius: var(--border-radius-base);
}
.ic-overlay-box.style-2 .ic-info {
  bottom: -100%;
  left: 0;
  text-align: left;
  padding: 30px;
}
.ic-overlay-box.style-2 .ic-info .title {
  font-size: 22px;
  font-weight: 800;
}
.ic-overlay-box.style-2 .ic-info .title a {
  color: #fff;
}
.ic-overlay-box.style-2 .ic-info .post-author {
  color: #fff;
  margin-bottom: 0;
  opacity: 0.7;
}
.ic-overlay-box.style-2 .ic-info .post-author a {
  color: #fff;
}
.ic-overlay-box.style-2 .ic-media span {
  position: absolute;
  top: 0;
  background: var(--primary);
  z-index: 2;
  color: #fff;
  right: 0;
  font-size: 28px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  border-radius: var(--border-radius-sm);
}
.ic-overlay-box.style-2:hover .ic-media span {
  opacity: 1;
  top: 20px;
  right: 20px;
}
.ic-overlay-box.style-2:hover .ic-info {
  bottom: 0;
}
.ic-overlay-box.style-2:hover .ic-img-overlay1:before {
  opacity: 0.5;
}
.ic-overlay-box.style-3 {
  border-radius: var(--border-radius-sm);
  box-shadow: 0 0px 60px 0 rgba(0, 0, 0, 0.1);
}
.ic-overlay-box.style-3 .ic-info {
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%) scale(2);
  -moz-transform: translateY(-50%) scale(2);
  -webkit-transform: translateY(-50%) scale(2);
  -ms-transform: translateY(-50%) scale(2);
  -o-transform: translateY(-50%) scale(2);
  opacity: 0;
  text-align: center;
}
.ic-overlay-box.style-3 .ic-info .post-author {
  margin-bottom: 0;
  color: #fff;
  opacity: 0.7;
}
.ic-overlay-box.style-3 .ic-info .post-author a {
  color: inherit;
}
.ic-overlay-box.style-3 .ic-info .title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.ic-overlay-box.style-3 .ic-info .title a {
  color: #fff;
}
.ic-overlay-box.style-3 .ic-img-overlay1:before {
  background-image: var(--primary);
  background-size: 200%;
}
.ic-overlay-box.style-3:hover .ic-info {
  top: 50%;
  opacity: 1;
  transform: translateY(-50%) scale(1);
  -moz-transform: translateY(-50%) scale(1);
  -webkit-transform: translateY(-50%) scale(1);
  -ms-transform: translateY(-50%) scale(1);
  -o-transform: translateY(-50%) scale(1);
}
.ic-overlay-box.style-3:hover .ic-img-overlay1:before {
  opacity: 0.8;
}
@media only screen and (max-width: 1199px) {
  .ic-overlay-box.style-3 .ic-info {
    padding: 20px 40px 20px 20px;
    left: 20px;
    right: 20px;
  }
  .ic-overlay-box.style-3 .ic-info:before {
    font-size: 36px;
    right: 20px;
  }
}

.testimonial-swiper3 .swiper-pagination-bullets .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  opacity: 1;
  color: #777;
  line-height: 1;
  margin: 0 15px;
  padding: 15px 0;
  position: relative;
  display: inline-block;
}
.testimonial-swiper3 .swiper-pagination-bullets .swiper-pagination-bullet:first-child {
  margin-left: 0;
}
.testimonial-swiper3 .swiper-pagination-bullets .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.testimonial-swiper3 .swiper-pagination-bullets .swiper-pagination-bullet:before {
  content: "0";
}
.testimonial-swiper3 .swiper-pagination-bullets .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  width: 0;
  height: 5px;
  border-radius: 5px;
  background: var(--primary);
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.testimonial-swiper3 .swiper-pagination-bullets .swiper-pagination-bullet-active {
  color: var(--primary);
}
.testimonial-swiper3 .swiper-pagination-bullets .swiper-pagination-bullet-active:after {
  width: 100%;
}

@media only screen and (min-width: 991px) {
  .blog-area1 [class*=col-]:first-child .ic-card .ic-media {
    border-radius: var(--border-radius-base) 0 0 0;
  }
  .blog-area1 [class*=col-]:first-child .ic-card .ic-info {
    border-radius: 0 0 0 var(--border-radius-base);
  }
  .blog-area1 [class*=col-]:first-child .ic-card.blog-top .ic-info {
    border-radius: var(--border-radius-base) 0 0 0;
  }
  .blog-area1 [class*=col-]:first-child .ic-card.blog-top .ic-media {
    border-radius: 0 0 0 var(--border-radius-base);
  }
  .blog-area1 [class*=col-]:last-child .ic-card .ic-media {
    border-radius: 0 var(--border-radius-base) 0 0;
  }
  .blog-area1 [class*=col-]:last-child .ic-card .ic-info {
    border-radius: 0 0 var(--border-radius-base) 0;
  }
  .blog-area1 [class*=col-]:last-child .ic-card.blog-top .ic-info {
    border-radius: 0 var(--border-radius-base) 0 0;
  }
  .blog-area1 [class*=col-]:last-child .ic-card.blog-top .ic-media {
    border-radius: 0 0 var(--border-radius-base) 0;
  }
}

.font-style-1 h1, .font-style-1 .h1, .font-style-1 h2, .font-style-1 .h2, .font-style-1 h3, .font-style-1 .h3, .font-style-1 h4, .font-style-1 .h4, .font-style-1 h5, .font-style-1 .h5, .font-style-1 h6, .font-style-1 .h6 {
  --font-family-title: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 3px;
}
@media only screen and (max-width: 575px) {
  .font-style-1 h1, .font-style-1 .h1, .font-style-1 h2, .font-style-1 .h2, .font-style-1 h3, .font-style-1 .h3, .font-style-1 h4, .font-style-1 .h4, .font-style-1 h5, .font-style-1 .h5, .font-style-1 h6, .font-style-1 .h6 {
    letter-spacing: 1px;
  }
}

.banner-one {
  min-height: 650px;
  background-size: cover;
  height: 100vh;
  position: relative;
  z-index: 1;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .banner-one {
    height: auto;
  }
}
.banner-one:after {
  content: attr(data-text);
  font-family: oswald;
  font-size: 290px;
  position: absolute;
  bottom: 0;
  z-index: -1;
  line-height: 1;
  font-weight: 700;
  -webkit-text-stroke: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.15);
  color: transparent;
}
.banner-one .mining-worker {
  width: 40%;
  left: 50%;
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .banner-one .mining-worker {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  .banner-one .mining-worker {
    width: 80%;
    position: unset;
    margin-left: auto;
    margin-right: auto;
  }
}
.banner-one .bnr-title {
  color: #fff;
  font-size: 80px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .banner-one .bnr-title {
    font-size: 60px;
  }
}
.banner-one .btn, .banner-one .wp-block-button__link {
  font-size: 20px;
  padding: 17px 40px;
  line-height: 1.2;
}
.banner-one .video-btn {
  color: #fff;
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
}
.banner-one .video-btn i {
  margin-right: 15px;
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #fff;
  color: var(--primary);
  text-align: center;
  line-height: 60px;
  border-radius: var(--border-radius-lg);
}
@media only screen and (max-width: 991px) {
  .banner-one .banner-content {
    padding: 150px 0 40px 0;
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  .banner-one .banner-content {
    padding: 80px 0 40px 0;
    text-align: center;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-one:after {
    font-size: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-one:after {
    font-size: 130px;
  }
  .banner-one .bnr-title {
    font-size: 65px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-one {
    height: auto;
  }
  .banner-one:after {
    font-size: 85px;
  }
  .banner-one .btn, .banner-one .wp-block-button__link {
    font-size: 16px;
    padding: 10px 20px;
  }
  .banner-one .video-btn {
    font-size: 16px;
  }
  .banner-one .video-btn i {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
  .banner-one .bnr-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
}

.client-logo-wrapper {
  display: flex;
  flex-flow: wrap;
}
.client-logo-wrapper .clients-grid {
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  width: 20%;
  text-align: center;
}
.client-logo-wrapper .clients-grid img {
  opacity: 0.5;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.client-logo-wrapper .clients-grid:hover img {
  opacity: 1;
}
.client-logo-wrapper .clients-grid:nth-child(5), .client-logo-wrapper .clients-grid:nth-child(10) {
  border-right: 0;
}
.client-logo-wrapper .clients-grid:nth-child(n+6) {
  border-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .client-logo-wrapper .clients-grid {
    width: 50%;
  }
  .client-logo-wrapper .clients-grid:nth-child(n+6) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .client-logo-wrapper .clients-grid:nth-child(n+9) {
    border-bottom: 0;
  }
  .client-logo-wrapper .clients-grid:nth-child(5), .client-logo-wrapper .clients-grid:nth-child(10) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .client-logo-wrapper .clients-grid:nth-child(even) {
    border-right: 0;
  }
}

.port-detail .title {
  line-height: 1.5;
  font-weight: 800;
}
.port-detail .info-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.port-detail .info-list li h2, .port-detail .info-list li .h2 {
  margin: 0;
  width: 130px;
  letter-spacing: 6px;
  font-family: var(--font-family-title);
  font-weight: 400;
}
.port-detail .info-list li span {
  font-size: 18px;
  text-transform: uppercase;
  color: #051136;
  font-family: var(--font-family-title);
  letter-spacing: 2px;
  font-weight: 300;
}
@media only screen and (max-width: 575px) {
  .port-detail .info-list li {
    margin-bottom: 20px;
  }
  .port-detail .info-list li h2, .port-detail .info-list li .h2 {
    width: 100px;
  }
}

.font-style-2 {
  --font-family-title: "Roboto", sans-serif;
  --font-family-base:"Roboto", sans-serif;
}
.font-style-2 h1, .font-style-2 .h1,
.font-style-2 h2, .font-style-2 .h2,
.font-style-2 h3, .font-style-2 .h3,
.font-style-2 h4, .font-style-2 .h4,
.font-style-2 h5, .font-style-2 .h5,
.font-style-2 h6, .font-style-2 .h6 {
  --font-family-title: "Roboto", sans-serif;
  --font-family-base:"Roboto", sans-serif;
}

.bg-wind {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bg-wind .bg-wind-bx {
  position: absolute;
  bottom: 0;
  right: 10%;
}
.bg-wind .bg-wind-bx.wind-bx-2 {
  left: 6%;
  right: auto;
  transform: scale(0.7);
  transform-origin: bottom;
}
.bg-wind .bg-wind-bx.wind-bx-3 {
  right: 1%;
  transform: scale(0.8);
  transform-origin: bottom;
  z-index: -3;
}
.bg-wind .bg-wind-bx .wind-rotate {
  position: absolute;
  top: -384px;
  left: -384px;
  -webkit-animation: windRotate 3s linear infinite;
  -moz-animation: windRotate 3s linear infinite;
  animation: windRotate 3s linear infinite;
}
@keyframes windRotate {
  100% {
    transform: rotate(-360deg);
  }
}
.bg-wind-bx .wind-rotate img {
  max-width: unset;
}

.construct-header .top-bar {
  background: #25282c;
  position: relative;
  z-index: 1;
  border: 0;
  color: #fff;
  padding: 0;
}
.construct-header .top-bar:after {
  background: var(--primary);
  content: "";
  position: absolute;
  z-index: -1;
  width: 70%;
  height: 100%;
  top: 0;
  right: calc(50% + 300px);
  transform: skewX(30deg);
  border-right: 4px solid #fff;
}
@media only screen and (max-width: 1199px) {
  .construct-header .top-bar:after {
    right: calc(50% + 250px);
  }
}
.construct-header .ic-topbar-right ul li,
.construct-header .ic-topbar-left ul li {
  padding: 0;
}
.construct-header .ic-topbar-right ul li a,
.construct-header .ic-topbar-left ul li a {
  color: #fff;
  padding: 10px 15px;
  display: inline-block;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 15px;
}
.construct-header .ic-topbar-right ul li:last-child a,
.construct-header .ic-topbar-left ul li:last-child a {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.construct-header .extra-nav {
  margin-left: 30px;
}
.construct-header .header-nav .nav > li > a {
  font-weight: 600;
}
@media only screen and (min-width: 1199px) {
  .construct-header .header-nav .nav > li > a {
    line-height: 1;
    font-size: 16px;
    padding: 37px 15px;
  }
}

/* services-box */
.services-box-area {
  position: relative;
}
.services-box-area:after {
  content: "";
  background-color: #fff;
  height: 40%;
  bottom: 0;
  width: 100%;
  left: 0;
  position: absolute;
  z-index: 1;
}

.services-box {
  background: #fff;
  z-index: 99;
  padding: 50px 40px;
  border: 1px solid #ededed;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
}
.services-box .icon-lg {
  overflow: hidden;
}
.services-box .dlab-tilte {
  margin-bottom: 15px;
}
.services-box .icon-content p {
  margin-bottom: 30px;
}
.services-box:hover .icon-up img {
  animation: toTopFromBottom 0.8s forwards;
}
@media only screen and (max-width: 1199px) {
  .services-box {
    padding: 30px 20px;
  }
}

@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
/* Portfolio */
.ic-portfolio-bx .port-box {
  padding: 30px;
  color: #fff;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  .ic-portfolio-bx .port-box {
    padding: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .ic-portfolio-bx .port-box {
    padding: 15px;
  }
}
.ic-portfolio-bx .port-box p {
  margin: 0;
  color: var(--primary);
}
@media only screen and (max-width: 767px) {
  .ic-portfolio-bx .port-box p {
    font-size: 12px;
    font-weight: 500;
  }
}
.ic-portfolio-bx .title {
  margin-bottom: 5px;
}
.ic-portfolio-bx .title a {
  color: #fff;
}
.ic-portfolio-bx .overlay-bx {
  background: rgba(0, 0, 0, 0.8);
  left: -100%;
}
@media only screen and (max-width: 767px) {
  .ic-portfolio-bx {
    height: 100%;
  }
  .ic-portfolio-bx .ic-media {
    height: 100%;
  }
  .ic-portfolio-bx .ic-media a {
    height: 100%;
  }
  .ic-portfolio-bx .ic-media img {
    height: 100%;
    object-fit: cover;
    height: 220px;
  }
}
.ic-portfolio-bx:hover .overlay-bx {
  width: 100%;
  left: 0;
}

/*  */
/* dlab team 9 */
.ic-team9 .ic-title {
  background-color: #fff;
  font-weight: 500;
  bottom: 0;
  position: absolute;
  color: #000;
  display: block;
  left: 0;
  font-size: 14px;
  letter-spacing: 3px;
  height: auto;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  writing-mode: tb-rl;
  margin: 0;
  transform-origin: left;
  text-align: right;
  line-height: 24px;
  text-transform: uppercase;
}
.ic-team9 .ic-title a {
  display: block;
  padding: 15px 10px;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
}
.ic-team9 .ic-title:after {
  content: "";
  position: absolute;
  background: #fff;
  top: -12px;
  height: 25px;
  width: 100%;
  left: 0;
  z-index: 0;
  transform: skewY(30deg);
  -moz-transform: skewY(30deg);
  -webkit-transform: skewY(30deg);
  -ms-transform: skewY(30deg);
  -o-transform: skewY(30deg);
}
.ic-team9 .ic-social-icon {
  margin: 0;
  width: 100%;
}
.ic-team9 .ic-social-icon li {
  margin: 0;
}
.ic-team9 .ic-social-icon li a {
  vertical-align: middle;
  padding: 0;
  font-size: 16px;
  width: 100%;
  border-radius: 0;
  background: transparent;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  height: 44px;
  line-height: 44px;
  text-align: center;
}
.ic-team9 .ic-social-icon li a:hover {
  color: #000;
}
.ic-team9 .ic-info-has {
  background-color: var(--primary);
  top: 0;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  padding: 0;
  width: 44px;
  position: absolute;
  right: -50px;
}
.ic-team9 .ic-info-has:after {
  content: "";
  position: absolute;
  background: var(--primary);
  bottom: -12px;
  height: 25px;
  width: 100%;
  left: 0;
  z-index: 0;
  transform: skewY(30deg);
  -moz-transform: skewY(30deg);
  -webkit-transform: skewY(30deg);
  -ms-transform: skewY(30deg);
  -o-transform: skewY(30deg);
}
.ic-team9:hover .ic-info-has {
  right: 0;
}

/* Testimonial */
.testimonial-box1 {
  padding: 30px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.testimonial-box1:after {
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #000;
  transform: rotate(45deg) translate(42px, 0px);
  -moz-transform: rotate(45deg) translate(42px, 0px);
  -webkit-transform: rotate(45deg) translate(42px, 0px);
  -ms-transform: rotate(45deg) translate(42px, 0px);
  -o-transform: rotate(45deg) translate(42px, 0px);
}
.testimonial-box1 .testimonial-text {
  padding: 0;
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 400;
  color: #666;
}
.testimonial-box1 .testimonial-top {
  display: flex;
  clear: both;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.testimonial-box1 .testimonial-pic {
  height: 80px;
  width: 80px;
  min-width: 80px;
  float: left;
  margin-right: 5px;
  border: 0;
}
.testimonial-box1 .testimonial-detail {
  align-self: center;
  padding-top: 0;
}
.testimonial-box1 .testimonial-name {
  font-size: 22px;
  text-transform: capitalize;
  color: #000;
  font-weight: 700;
  line-height: 28px;
}
.testimonial-box1 .testimonial-quote {
  font-size: 60px;
  position: absolute;
  right: 30px;
  color: var(--primary);
  top: 40px;
  line-height: 60px;
}
.testimonial-box1 .testimonial-position {
  font-size: 13px;
  text-transform: capitalize;
  color: #666;
  font-weight: 500;
  margin-bottom: 5px;
}
.testimonial-box1 .star-review {
  margin: 0;
}
.testimonial-box1 .star-review li {
  font-size: 13px;
  color: var(--primary);
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  .testimonial-box1 {
    position: relative !important;
    width: 100%;
    max-width: 100%;
    left: 0 !important;
    top: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-box1 {
    padding: 20px;
  }
  .testimonial-box1 .testimonial-top {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .testimonial-box1 .testimonial-text p {
    font-size: 15px;
    line-height: 24px;
  }
  .testimonial-box1 .testimonial-name {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .testimonial-box1 {
    padding: 15px;
  }
  .testimonial-box1 .testimonial-pic {
    height: 50px;
    width: 50px;
    min-width: 50px;
  }
  .testimonial-box1 .testimonial-name {
    font-size: 16px;
    line-height: 22px;
  }
  .testimonial-box1 .testimonial-position {
    font-size: 12px;
    font-weight: 400;
  }
  .testimonial-box1 .testimonial-quote {
    right: 15px;
    top: -3px;
    font-size: 20px;
  }
  .testimonial-box1 .testimonial-top {
    padding-bottom: 10px;
    margin-bottom: 12px;
  }
}

/* Blog Grid */
/* Blog Style 1 */
.ic-card.style-6 .categories {
  margin-bottom: 15px;
}
.ic-card.style-6 .categories li {
  display: inline-block;
}
.ic-card.style-6 .categories li a {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 2px solid;
}
.ic-card.style-6 .ic-title {
  margin-bottom: 15px;
}
.ic-card.style-6 .ic-info {
  padding: 30px 0 0 0;
}
.ic-card.style-6 .ic-meta {
  margin-bottom: 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}
.ic-card.style-6 .ic-meta .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 20px;
  background-color: var(--primary);
  color: #fff;
  letter-spacing: 1px;
  margin: 0;
}
.ic-card.style-6 .ic-meta .post-date:after {
  content: "";
  height: 100%;
  width: 20px;
  position: absolute;
  left: -10px;
  top: 0;
  background-color: inherit;
  opacity: 1;
  transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
}
.ic-card.style-6 .ic-meta .post-date span {
  text-transform: uppercase;
}
.ic-card.style-6 .ic-meta .post-author {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 10px 25px 10px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#050000+0,000000+100 */
  background: rgb(5, 0, 0); /* Old browsers */
  background: -moz-radial-gradient(left -30px, ellipse cover, rgba(0, 0, 0, 0.5) 50%, rgb(0, 0, 0) 70%); /* FF3.6-15 */
  background: -webkit-radial-gradient(left -30px, ellipse cover, rgba(0, 0, 0, 0.5) 50%, rgb(0, 0, 0) 70%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at left -30px, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#050000", endColorstr="#000000",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.ic-card.style-6 .ic-meta .post-author img {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin-right: 10px;
  float: left;
}
.ic-card.style-6 .ic-meta a {
  color: #fff;
  font-weight: 700;
  display: block;
  padding: 4px 0;
  line-height: 24px;
}

/* Action */
.construct-action {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (max-width: 575px) {
  .construct-action {
    padding: 20px 0;
  }
}
.construct-action:after {
  content: "";
  position: absolute;
  right: 1;
  z-index: -1;
  background: #000;
  height: 100%;
  width: 50%;
  top: 0;
  opacity: 0.05;
}
.construct-action a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  position: relative;
  padding-left: 50px;
}
@media only screen and (max-width: 1199px) {
  .construct-action a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .construct-action a {
    font-size: 14px;
    line-height: 20px;
    padding-left: 0;
  }
}
@media only screen and (max-width: 575px) {
  .construct-action a {
    font-size: 12px;
  }
}
.construct-action a i {
  font-size: 180px;
  line-height: 180px;
  position: absolute;
  top: -70px;
  opacity: 0.15;
  left: 0;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
@media only screen and (max-width: 767px) {
  .construct-action a i {
    font-size: 80px;
    line-height: 80px;
    top: -30px;
  }
}
.construct-action a:hover {
  color: #000;
}
.construct-action a:hover i {
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  -webkit-transform: scale(1.2);
}
.construct-action .text-end a {
  padding-left: 0;
  padding-right: 50px;
}
@media only screen and (max-width: 767px) {
  .construct-action .text-end a {
    padding-right: 0;
  }
}
.construct-action .text-end a i {
  right: 0;
  left: auto;
}

.contact-info-bx li {
  position: relative;
  padding-left: 35px;
  min-height: 26px;
  margin-bottom: 10px;
}
.contact-info-bx li i {
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: #fff;
  line-height: 26px;
  text-align: center;
  border-radius: 30px;
  margin-right: 5px;
  position: absolute;
  top: 0;
  left: 0;
}

.thsn-timelist-list {
  margin-top: -5px;
}
.thsn-timelist-list li {
  border-bottom: none;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 24px;
  list-style: none;
}
.thsn-timelist-list .thsn-timelist-li-value {
  color: var(--primary);
}

/* Header Middle */
.header-middle-bar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}
.header-middle-bar .logo-header {
  height: 60px;
}
.header-middle-bar .header-middle-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.food-header .header-nav .nav > li > a {
  font-weight: 600;
}
@media only screen and (min-width: 1199px) {
  .food-header .header-nav .nav > li > a {
    line-height: 1;
    font-size: 16px;
    padding: 37px 15px;
  }
}

.header-service-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-service-list ul li {
  display: inline-block;
  position: relative;
  padding: 3px 0 0 60px;
  margin-left: 15px;
  color: rgba(255, 255, 255, 0.7);
}
.header-service-list ul li i {
  position: absolute;
  left: 0;
  font-size: 30px;
  line-height: 50px;
  top: 2px;
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  width: 50px;
  height: 50px;
  background: var(--primary);
  text-align: center;
  border-radius: 50px;
  color: #fff !important;
}
.header-service-list ul li:hover i {
  transform: scale(1.2);
}
.header-service-list ul li .ic-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 24px;
}
.header-service-list ul li span {
  font-size: 15px;
  color: #666;
}

.video-bx-2 {
  position: relative;
  z-index: 1;
  border-radius: 0;
  overflow: hidden;
  border: 5px solid #fff;
}
.video-bx-2 .video-play-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.video-bx-2 .video-play-icon a {
  width: 80px;
  height: 80px;
  border-radius: 80px;
  text-align: center;
  line-height: 80px;
  color: #000;
  background: #fff;
  display: block;
  font-size: 28px;
  margin: auto;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  padding-left: 5px;
}
.video-bx-2 .video-play-icon a:hover {
  color: #000;
}

.about-industry .ic-media {
  height: 100%;
}
.about-industry .ic-media img {
  height: 100%;
  object-fit: cover;
}

.food-project {
  margin-left: calc((100% - 1200px) / 2);
  padding-left: 15px;
}
@media only screen and (max-width: 1199px) {
  .food-project {
    margin-left: auto;
    padding-right: 15px;
  }
}

/* Service Box Style2 */
.service-box.style2 {
  padding: 40px;
  align-self: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  height: 100%;
  background: inherit;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .service-box.style2 {
    padding: 25px;
  }
}
.service-box.style2:after {
  content: "";
  position: absolute;
  background: inherit;
  width: 40px;
  height: 40px;
  left: -10px;
  z-index: 1;
  top: 40px;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  z-index: -1;
}
@media only screen and (max-width: 575px) {
  .service-box.style2:after {
    content: none;
  }
}
.service-box.style2 .title {
  margin-bottom: 10px;
}
.service-box.style2 p {
  font-size: 18px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .service-box.style2 p {
    font-size: 15px;
  }
}
.service-box.style2.right:after {
  left: auto;
  right: -10px;
}

/* DZ Gallery Box */
.ic-gallery-box {
  position: relative;
}
.ic-gallery-box .product-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.ic-gallery-box .product-info .title {
  background-color: #fff;
  padding: 10px 25px;
  position: absolute;
  bottom: -100px;
  opacity: 0;
  transition: all 0.5s;
}
.ic-gallery-box .product-info .title h2, .ic-gallery-box .product-info .title .h2 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 30px;
}
.ic-gallery-box:hover .product-info .title {
  opacity: 1;
  bottom: 20px;
}

.project-nav {
  position: absolute;
  top: -105px;
  right: 200px;
  margin-top: 0;
  display: flex;
}
@media only screen and (max-width: 1199px) {
  .project-nav {
    right: -10px;
  }
}
@media only screen and (max-width: 575px) {
  .project-nav {
    top: -125px;
  }
}
.project-nav .project-prev,
.project-nav .project-next {
  color: #fff;
  font-size: 24px;
  line-height: 50px;
  padding: 0;
  height: 50px;
  background-color: var(--primary);
  text-align: center;
  width: 50px;
  margin: 0 10px;
}
@media only screen and (max-width: 575px) {
  .project-nav .project-prev,
  .project-nav .project-next {
    margin: 0 5px;
    height: 40px;
    width: 40px;
    font-size: 20px;
    line-height: 40px;
  }
}

.team-box1 .team-member {
  position: relative;
  padding: 0 0;
  overflow: hidden;
}
.team-box1 .team-member img {
  border: 10px solid #fff;
}
.team-box1 .team-member:after {
  content: "";
  z-index: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  background: #000;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.team-box1 .member-social {
  position: absolute;
  display: block;
  width: 100%;
  bottom: -100px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  text-align: center;
  margin-bottom: 0;
  z-index: 1;
}
.team-box1 .member-social li {
  display: inline-block;
}
.team-box1 .member-social li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary);
  color: #fff;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.team-box1 .member-social li a:hover {
  background: var(--primary-hover);
}
.team-box1 .member-info {
  text-align: center;
  margin-top: 15px;
  transition: all 0.5s;
}
.team-box1 .member-info h3, .team-box1 .member-info .h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 35px;
  margin-bottom: 0;
}
.team-box1 .member-info h3 span, .team-box1 .member-info .h3 span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
  line-height: 18px;
}

.swiper-slide-active .team-box1 .member-social {
  bottom: 30px;
}
.swiper-slide-active .team-box1 .member-social:after {
  opacity: 0.7;
}

/* Newsletter Box */
.newsletter-box {
  width: 100%;
  height: 100%;
  padding: 40px;
  background: var(--secondary);
  padding: 20px;
}
.newsletter-box p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
  font-weight: 300;
}
@media only screen and (max-width: 1199px) {
  .newsletter-box p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}
.newsletter-box .icon-bx-wraper {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .newsletter-box .icon-bx-wraper {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.newsletter-box .icon-bx-wraper .ic-tilte {
  margin-top: 10px;
}
@media only screen and (max-width: 1199px) {
  .newsletter-box .icon-bx-wraper .ic-tilte {
    margin-top: 3px;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .newsletter-box .icon-bx-sm {
    width: 60px;
    height: 60px;
    min-width: 60px;
    line-height: 60px;
  }
}
.newsletter-box .icSubscribe input {
  background: rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  height: 55px;
  margin-bottom: 20px;
  padding: 20px;
}
@media only screen and (max-width: 1199px) {
  .newsletter-box .icSubscribe input {
    padding: 10px 20px;
  }
}
.newsletter-box .icSubscribe input:placeholder {
  color: #fff;
  font-family: poppins;
}

/* Trending Post */
.trending-post {
  position: relative;
  margin-bottom: 30px;
}
.trending-post .ic-media {
  position: relative;
}
.trending-post .ic-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
}
.trending-post .ic-info .post-tag {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 3px solid var(--color-primary);
  display: inline-block;
  margin-bottom: 10px;
  width: 100%;
}
.trending-post .ic-info .ic-title {
  margin-bottom: 0;
  color: #fff;
}
.trending-post .ic-info .ic-title a {
  color: inherit;
}
.trending-post .ic-info .ic-meta {
  width: 100%;
  margin-bottom: auto;
}
.trending-post .ic-info .ic-meta ul {
  display: flex;
  justify-content: space-between;
}
.trending-post .ic-info .ic-meta ul li {
  color: rgba(255, 255, 255, 0.7);
}
.trending-post .ic-info .ic-meta ul li:last-child {
  margin-right: 0;
}

/* testimonial 15 */
.testimonial-15 {
  margin: 0;
  position: relative;
  padding: 30px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .testimonial-15 {
    padding: 20px;
  }
}
.testimonial-15 .testimonial-pic {
  width: 70px;
  height: 70px;
  border: 3px solid #fff;
  float: left;
  margin-right: 15px;
}
.testimonial-15:after {
  content: "\f10e";
  padding-right: 30px;
  position: absolute;
  right: -30px;
  color: var(--primary);
  bottom: -30px;
  font-size: 50px;
  background: var(--rgba-primary-1);
  width: 130px;
  height: 130px;
  text-align: center;
  line-height: 110px;
  border-radius: 130px;
  padding-bottom: 30px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-left: 10px;
  padding-top: 0px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-15:after {
    width: 100px;
    height: 100px;
    font-size: 24px;
    line-height: 80px;
  }
}
.testimonial-15 .testimonial-text {
  padding: 0;
}
.testimonial-15 .testimonial-text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
  font-style: italic;
}
@media only screen and (max-width: 1199px) {
  .testimonial-15 .testimonial-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
  }
}
.testimonial-15 .testimonial-detail {
  padding: 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}
.testimonial-15 .testimonial-detail .testimonial-name {
  margin-top: 10px;
  color: #000;
}

.food-footer .icSubscribe .btn, .food-footer .icSubscribe .wp-block-button__link {
  height: 60px;
  width: 60px;
  font-size: 22px;
  padding: 10px 18px;
}

.footer-bottom-in {
  display: flex;
  justify-content: space-between;
}
.footer-bottom-in .footer-bottom-logo a {
  display: inline-block;
  background: var(--primary);
  padding: 10px 20px;
}
.footer-bottom-in .footer-bottom-logo a img {
  object-fit: contain;
  height: 50px;
}
@media only screen and (max-width: 575px) {
  .footer-bottom-in .footer-bottom-logo a img {
    height: 30px;
  }
}
.footer-bottom-in .ic-social-icon {
  font-size: 0;
}
.footer-bottom-in .ic-social-icon li:first-child a {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom-in .ic-social-icon li a {
  padding: 0;
  width: 70px;
  height: 70px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 70px;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .footer-bottom-in .ic-social-icon li a {
    width: 45px;
    height: 50px;
    font-size: 18px;
    line-height: 50px;
  }
}

.font-style-4 {
  --font-family-title: "Roboto";
  --font-family-base: "Roboto";
}
.font-style-4 h1, .font-style-4 .h1,
.font-style-4 h2, .font-style-4 .h2,
.font-style-4 h3, .font-style-4 .h3,
.font-style-4 h4, .font-style-4 .h4,
.font-style-4 h5, .font-style-4 .h5,
.font-style-4 h6, .font-style-4 .h6 {
  --font-family-title: "Roboto";
  --font-family-base: "Roboto";
}

.service-box-6 {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.service-box-6 .ic-info {
  position: absolute;
  bottom: -60px;
  width: 100%;
  text-align: center;
  padding: 30px 20px;
  background: rgb(2, 0, 0); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.service-box-6 .ic-info .title {
  margin-bottom: 0;
}
.service-box-6 .ic-info .title a {
  color: #fff;
}
.service-box-6 .ic-info .readmore {
  margin-top: 10px;
  opacity: 0;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.service-box-6 .ic-info .ic-separator {
  height: 3px;
  width: 70px;
}
.service-box-6 .icon-bx-sm img {
  height: 40px;
}
.service-box-6:hover .ic-info {
  bottom: 0;
}
.service-box-6:hover .ic-info .readmore {
  opacity: 1;
}

/*  */
.agro-video {
  border: 0;
  height: 100%;
  width: 50vw;
  float: right;
}
@media only screen and (max-width: 991px) {
  .agro-video {
    width: 100%;
    float: none;
  }
}
.agro-video .img-cover {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 100%;
}

.agro-client-says {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 100px;
}
.agro-client-says:after {
  content: "\f10d";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 80px;
  color: var(--primary);
  line-height: 100px;
}

.testimonial-6 {
  text-align: left;
}
.testimonial-6 .testimonial-text p {
  font-size: 20px;
  line-height: 1.5;
  color: #111;
  font-style: italic;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  .testimonial-6 .testimonial-text p {
    font-size: 15px;
  }
}
.testimonial-6 .testimonial-detail {
  padding: 0;
  display: flex;
  align-items: center;
}
.testimonial-6 .testimonial-pic {
  width: 90px;
  height: 90px;
  border-color: var(--primary);
}
@media only screen and (max-width: 991px) {
  .testimonial-6 .testimonial-pic {
    width: 70px;
    height: 70px;
  }
}
.testimonial-6 .info {
  padding: 0 20px;
}
@media only screen and (max-width: 991px) {
  .testimonial-6 .info {
    padding: 0 15px;
  }
}
.testimonial-6 .testimonial-text {
  padding: 0;
  margin-bottom: 20px;
}
.testimonial-6 .testimonial-name {
  color: #000 !important;
  font-size: 24px;
  line-height: 1.5;
}
@media only screen and (max-width: 991px) {
  .testimonial-6 .testimonial-name {
    font-size: 20px;
  }
}

.agro-about {
  position: relative;
  z-index: 1;
}
.agro-about:after {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  width: 80px;
  height: 100%;
  background: var(--primary);
  transform: skewX(-5deg);
  z-index: -1;
  border-left: 10px solid #fff;
}
@media only screen and (max-width: 991px) {
  .agro-about:after {
    content: none;
  }
}

.agro-list {
  margin-bottom: 30px;
}
.agro-list li {
  color: #fff;
  padding-left: 45px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
  min-height: 32px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.agro-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 30px;
  line-height: 32px;
  color: var(--primary);
  text-align: center;
  position: absolute;
  font-weight: 900;
  font-size: 14px;
  left: 0;
}

.testimonial-area8 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 100px;
}
@media only screen and (max-width: 575px) {
  .testimonial-area8 {
    padding-left: 0;
  }
}
.testimonial-area8:after {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 80px;
  color: var(--primary);
  line-height: 100px;
  font-weight: 900;
}
@media only screen and (max-width: 575px) {
  .testimonial-area8:after {
    content: none;
  }
}

.testimonial-nav8 .testimonial-next8,
.testimonial-nav8 .testimonial-prev8 {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  font-size: 50px;
  margin: 0px -100px;
  opacity: 0.2;
}
@media only screen and (max-width: 1199px) {
  .testimonial-nav8 .testimonial-next8,
  .testimonial-nav8 .testimonial-prev8 {
    margin: 0px -50px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-nav8 .testimonial-next8,
  .testimonial-nav8 .testimonial-prev8 {
    margin: 0px -25px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-nav8 .testimonial-next8,
  .testimonial-nav8 .testimonial-prev8 {
    margin: 0px -15px;
    font-size: 30px;
  }
}
.testimonial-nav8 .testimonial-prev8 {
  left: 0;
}
.testimonial-nav8 .testimonial-next8 {
  right: 0;
}

/* Team Style */
.ic-team10 {
  position: relative;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 1;
}
.ic-team10:after {
  content: "";
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  position: absolute;
  background: #fff;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.ic-team10 .ic-media {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  top: 0;
  border: 8px solid #fff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.02);
}
.ic-team10 .ic-info {
  bottom: 0;
  position: absolute;
  background: #fff;
  width: 100%;
  display: block;
  padding: 20px 20px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0;
}
.ic-team10 .ic-info .ic-position {
  display: block;
  color: #000;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.5;
  margin-bottom: 10px;
}
.ic-team10 .ic-info .ic-title {
  margin-bottom: 5px;
}
.ic-team10 .ic-social-icon li {
  display: inline-block;
}
.ic-team10 .ic-social-icon li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  font-size: 16px;
  text-align: center;
  background: var(--primary);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  color: #fff;
}
.ic-team10 .ic-social-icon li a:hover {
  background: var(--primary-hover);
}
.ic-team10:hover {
  z-index: 2;
}
.ic-team10:hover .ic-media {
  top: -40px;
}
.ic-team10:hover .ic-info {
  bottom: -40px;
  opacity: 1;
}
.ic-team10:hover:after {
  height: calc(100% + 80px);
  bottom: -40px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}

.agro-footer {
  color: rgba(255, 255, 255, 0.7);
  --title:#fff;
}
.agro-footer .footer-top {
  padding: 100px 0 60px;
}
.agro-footer .overlay-black-dark:before {
  opacity: 0.8;
  background: #000;
}
.agro-footer .footer-bottom {
  background-color: #111;
  font-size: 15px;
  padding: 20px 0;
}

/* Our Service */
.services-swiper {
  margin-top: -30px;
  margin-bottom: 30px;
}
.services-swiper .swiper-pagination {
  position: unset;
  margin-top: 20px;
}
.services-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--primary);
}

.service-box-3 .ic-media {
  position: relative;
  padding: 20px 20px 0 20px;
  overflow: unset;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  margin-bottom: 25px;
}
.service-box-3 .ic-media > img {
  border-radius: 500px;
  width: 220px;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  border: 10px solid #fff;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.service-box-3 .ic-media span {
  width: 70px;
  height: 70px;
  border-radius: 40px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--primary);
  box-shadow: 0 0 10px 0 var(--rgba-primary-2);
  padding: 18px;
}
.service-box-3 .ic-media span img {
  width: 100%;
}
.service-box-3 .ic-info p {
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}

.portfolio-box {
  position: relative;
}
.portfolio-box .ic-info {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  padding: 30px;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  background: #fff;
}

.overlay-black-dark .swiper-pagination-bullet {
  background: #fff;
}

.left-container {
  margin-left: calc((100% - 1170px) / 2);
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 1199px) {
  .left-container {
    margin-left: calc((100% - 960px) / 2);
  }
}
@media only screen and (max-width: 991px) {
  .left-container {
    margin-left: calc((100% - 720px) / 2);
    margin-left: 0%;
    padding-right: var(--bs-gutter-x, 15px);
    padding-left: var(--bs-gutter-x, 15px);
  }
}
@media only screen and (max-width: 767px) {
  .left-container {
    margin-left: 0%;
    padding-right: var(--bs-gutter-x, 15px);
    padding-left: var(--bs-gutter-x, 15px);
  }
}
@media only screen and (max-width: 575px) {
  .left-container {
    margin-left: calc((100% - 540px) / 2);
  }
}
@media only screen and (max-width: 575px) {
  .left-container {
    margin-left: 0%;
    padding-right: var(--bs-gutter-x, 15px);
    padding-left: var(--bs-gutter-x, 15px);
  }
}
.left-container .ic-content p {
  padding-right: 3rem;
}
@media only screen and (max-width: 1400px) {
  .left-container .ic-content p {
    padding-right: 0;
  }
}

.blog-section {
  position: relative;
}
.blog-section::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--primary);
}
@media only screen and (max-width: 991px) {
  .blog-section::after {
    display: none;
  }
}

.client-swiper-2 {
  padding: 50px 0px;
  background: #070613;
  border-radius: var(--border-radius-sm);
}

.content-area-2 .ic-form.style-6 .input-group {
  position: relative;
}
.content-area-2 .ic-form.style-6 .input-group label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #666666;
  font-weight: 400;
  font-size: 15px;
  opacity: 0;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.content-area-2 .ic-form.style-6 .input-group .form-control, .content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-author .content-area-2 .ic-form.style-6 .input-group input, .content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-email .content-area-2 .ic-form.style-6 .input-group input, .content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p.comment-form-url input, .comment-respond .comment-form p.comment-form-url .content-area-2 .ic-form.style-6 .input-group input,
.content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p textarea,
.comment-respond .comment-form p .content-area-2 .ic-form.style-6 .input-group textarea, .content-area-2 .ic-form.style-6 .input-group .wp-block-categories-dropdown select, .wp-block-categories-dropdown .content-area-2 .ic-form.style-6 .input-group select,
.content-area-2 .ic-form.style-6 .input-group .wp-block-archives-dropdown select,
.wp-block-archives-dropdown .content-area-2 .ic-form.style-6 .input-group select {
  border: none;
  outline: none;
  background: transparent;
  border-bottom: 2px solid rgb(224, 224, 224);
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  font-size: 16px;
  color: #000;
}
.content-area-2 .ic-form.style-6 .input-group .form-control:hover, .content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p.comment-form-author input:hover, .comment-respond .comment-form p.comment-form-author .content-area-2 .ic-form.style-6 .input-group input:hover, .content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p.comment-form-email input:hover, .comment-respond .comment-form p.comment-form-email .content-area-2 .ic-form.style-6 .input-group input:hover, .content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p.comment-form-url input:hover, .comment-respond .comment-form p.comment-form-url .content-area-2 .ic-form.style-6 .input-group input:hover,
.content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p textarea:hover,
.comment-respond .comment-form p .content-area-2 .ic-form.style-6 .input-group textarea:hover, .content-area-2 .ic-form.style-6 .input-group .wp-block-categories-dropdown select:hover, .wp-block-categories-dropdown .content-area-2 .ic-form.style-6 .input-group select:hover,
.content-area-2 .ic-form.style-6 .input-group .wp-block-archives-dropdown select:hover,
.wp-block-archives-dropdown .content-area-2 .ic-form.style-6 .input-group select:hover, .content-area-2 .ic-form.style-6 .input-group .form-control:active, .content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p.comment-form-author input:active, .comment-respond .comment-form p.comment-form-author .content-area-2 .ic-form.style-6 .input-group input:active, .content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p.comment-form-email input:active, .comment-respond .comment-form p.comment-form-email .content-area-2 .ic-form.style-6 .input-group input:active, .content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p.comment-form-url input:active, .comment-respond .comment-form p.comment-form-url .content-area-2 .ic-form.style-6 .input-group input:active,
.content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p textarea:active,
.comment-respond .comment-form p .content-area-2 .ic-form.style-6 .input-group textarea:active, .content-area-2 .ic-form.style-6 .input-group .wp-block-categories-dropdown select:active, .wp-block-categories-dropdown .content-area-2 .ic-form.style-6 .input-group select:active,
.content-area-2 .ic-form.style-6 .input-group .wp-block-archives-dropdown select:active,
.wp-block-archives-dropdown .content-area-2 .ic-form.style-6 .input-group select:active, .content-area-2 .ic-form.style-6 .input-group .form-control:focus, .content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p.comment-form-author input:focus, .comment-respond .comment-form p.comment-form-author .content-area-2 .ic-form.style-6 .input-group input:focus, .content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p.comment-form-email input:focus, .comment-respond .comment-form p.comment-form-email .content-area-2 .ic-form.style-6 .input-group input:focus, .content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p.comment-form-url input:focus, .comment-respond .comment-form p.comment-form-url .content-area-2 .ic-form.style-6 .input-group input:focus,
.content-area-2 .ic-form.style-6 .input-group .comment-respond .comment-form p textarea:focus,
.comment-respond .comment-form p .content-area-2 .ic-form.style-6 .input-group textarea:focus, .content-area-2 .ic-form.style-6 .input-group .wp-block-categories-dropdown select:focus, .wp-block-categories-dropdown .content-area-2 .ic-form.style-6 .input-group select:focus,
.content-area-2 .ic-form.style-6 .input-group .wp-block-archives-dropdown select:focus,
.wp-block-archives-dropdown .content-area-2 .ic-form.style-6 .input-group select:focus {
  border-color: var(--primary);
}
.content-area-2 .map-iframe {
  height: 100%;
  width: 100%;
  padding: 20px;
  padding-left: 20px;
  position: relative;
  border-radius: var(--border-radius-sm);
}
.content-area-2 .map-iframe::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  border: 20px solid var(--primary);
  border-left: 0;
  border-radius: var(--border-radius-sm);
}
.content-area-2 .map-iframe iframe {
  height: 100%;
  position: relative;
  z-index: 4;
  border-radius: var(--border-radius-sm);
}
@media only screen and (max-width: 991px) {
  .content-area-2 .map-iframe {
    height: 350px;
  }
}
@media only screen and (max-width: 575px) {
  .content-area-2 .map-iframe {
    padding: 8px 8px 8px 0;
  }
  .content-area-2 .map-iframe::after {
    border: 10px solid var(--primary);
  }
  .content-area-2 .map-iframe iframe {
    height: 100%;
  }
}

.social-list.style-3 li {
  border-radius: 50%;
  background: var(--primary);
}
.social-list.style-3 li:nth-child(2) {
  background: #039BE5;
}
.social-list.style-3 li:nth-child(3) {
  background: #334C8C;
}
.social-list.style-3 li:nth-child(4) {
  background: linear-gradient(45deg, #FEE411 11.93%, #FEDB16 15.61%, #FEC125 21.74%, #FE983D 29.56%, #FE5F5E 38.66%, #FE2181 47.46%, #9000DC 82.98%);
}

.move-2 {
  --webkit-animation: move2 3s infinite;
  animation: move2 3s infinite;
}

@-webkit-keyframes move2 {
  0% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px);
  }
  50% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px);
  }
  100% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px);
  }
}
/*Blog single */
.blog-single {
  margin-bottom: 3.125rem;
}
.blog-single .ic-post-meta {
  margin-bottom: 1.25rem;
}
.blog-single .ic-post-text {
  padding-bottom: 30px;
}
.blog-single .ic-post-text:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
.blog-single .ic-post-tags {
  margin-top: 1.25rem;
}
.blog-single .ic-post-media {
  border-radius: 0.25rem;
}
.blog-single .ic-info {
  padding: 30px 0 0;
}
.blog-single .ic-meta {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .blog-single .ic-meta {
    display: block;
  }
}
.blog-single .meta-bottom {
  border-top: 1px dashed #b7b7b7;
  padding: 20px 0;
}
@media only screen and (max-width: 575px) {
  .blog-single .meta-bottom {
    padding: 20px 0 0;
    margin-bottom: 0;
  }
}
.blog-single.ic-card .post-tags {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .blog-single.ic-card .post-tags {
    margin-bottom: 20px;
  }
}
.blog-single.style-1 {
  box-shadow: unset;
  border-radius: 0;
  overflow: unset;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .blog-single.style-1 {
    margin-bottom: 40px;
  }
}
.blog-single.style-1 .ic-media {
  margin: 0;
}
.blog-single.style-1 .ic-media + .ic-info {
  text-align: unset;
  border: 0;
  padding: 0;
  margin-top: 0;
  padding: 30px 0 0 0;
}
.blog-single.style-1 .ic-info {
  text-align: unset;
  border: 0;
  padding: 0;
  margin-top: 0;
}
.blog-single.style-1 .ic-info + .ic-media {
  margin-top: 25px;
}
.blog-single.style-1 .ic-meta ul li {
  margin-left: 0;
  margin-right: 10px;
}
.blog-single.style-1 .ic-meta ul li:first-child {
  margin-left: 0;
}

.ic-post-text a {
  text-decoration: underline;
  box-shadow: inset 0 -10px 0 var(--rgba-primary-1);
}
.ic-post-text .widget_archive li a,
.ic-post-text .wp-block-latest-posts li a,
.ic-post-text .wp-block-categories-list li a,
.ic-post-text .wp-block-archives-list li a,
.ic-post-text .widget_categories li a,
.ic-post-text blockquote a,
.ic-post-text .wp-block-button__link {
  box-shadow: none;
  text-decoration: none;
}

.post-header {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 575px) {
  .post-header {
    margin-bottom: 1.25rem;
  }
}
.post-header .ic-media img {
  min-height: 250px;
  object-fit: cover;
}
.post-header .ic-info {
  position: absolute;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+1,000000+100&0+1,0.6+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.6) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.6) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.6) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#99000000",GradientType=0 ); /* IE6-9 */
  position: absolute;
  bottom: 0;
  text-align: center;
  padding: 100px 30px 30px 30px !important;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .post-header .ic-info {
    padding: 40px 15px 15px 15px !important;
  }
}
.post-header .ic-info .ic-title {
  color: #fff;
}
@media only screen and (max-width: 575px) {
  .post-header .ic-info .ic-title {
    font-size: 1.125rem;
  }
}
.post-header .ic-info .ic-meta > ul {
  justify-content: center;
}
.post-header .ic-info .ic-meta > ul > li {
  color: #fff;
}

.post-link-in {
  padding: 15px 50px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.post-link-in:hover {
  background: var(--primary);
  color: #fff;
}

.alignnone {
  margin: 0.3125rem 0 1.563rem 0;
}
.alignnoneimg, .alignnone.wp-caption, .alignnone.is-resized {
  margin: 0.3125rem 0 1.563rem 0;
}

.aligncenter {
  display: block;
  margin: 0.3125rem auto 0.938rem;
  text-align: center;
}
.aligncenterimg, .aligncenter.wp-caption, .aligncenter.is-resized {
  display: block;
  margin: 0.3125rem auto 0.938rem;
  text-align: center;
}

.alignright {
  float: right;
  margin: 0.3125rem 0 1.563rem 1.563rem;
}
.alignrightimg, .alignright.wp-caption, .alignright.is-resized {
  margin: 0.3125rem 0 1.563rem 1.563rem;
  float: right;
}

.alignleft {
  float: left;
  margin: 0.3125rem 1.563rem 1.563rem 0;
}
.alignleftimg, .alignleft.wp-caption, .alignleft.is-resized {
  margin: 0.3125rem 1.563rem 1.563rem 0;
  float: left;
}

.wp-caption {
  max-width: 100%;
  text-align: center;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin: 0;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 0.813rem;
  line-height: 1.125rem;
  margin: 0;
  padding: 0.625rem 0;
  text-align: left;
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
blockquote.wp-block-quote,
blockquote.wp-block-pullquote,
blockquote.wp-block-pullquote.alignright,
blockquote.wp-block-pullquote.alignleft,
blockquote {
  padding: 1.25rem 2rem 1.25rem 3rem;
  font-size: 0.938rem;
  color: var(--title);
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.875rem;
  position: relative;
  clear: both;
  font-weight: 700;
  z-index: 1;
  border: 0;
}
@media only screen and (max-width: 991px) {
  .wp-block-quote.is-large,
  .wp-block-quote.is-style-large,
  blockquote.wp-block-quote,
  blockquote.wp-block-pullquote,
  blockquote.wp-block-pullquote.alignright,
  blockquote.wp-block-pullquote.alignleft,
  blockquote {
    padding: 1.25rem 1.25rem 0.938rem 1.25rem;
    font-size: 0.813rem;
  }
}
@media only screen and (max-width: 575px) {
  .wp-block-quote.is-large,
  .wp-block-quote.is-style-large,
  blockquote.wp-block-quote,
  blockquote.wp-block-pullquote,
  blockquote.wp-block-pullquote.alignright,
  blockquote.wp-block-pullquote.alignleft,
  blockquote {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.wp-block-quote.is-large cite,
.wp-block-quote.is-style-large cite,
blockquote.wp-block-quote cite,
blockquote.wp-block-pullquote cite,
blockquote.wp-block-pullquote.alignright cite,
blockquote.wp-block-pullquote.alignleft cite,
blockquote cite {
  font-style: normal;
  position: relative;
  display: block;
  margin-top: -0.3125rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}
.wp-block-quote.is-large cite:before,
.wp-block-quote.is-style-large cite:before,
blockquote.wp-block-quote cite:before,
blockquote.wp-block-pullquote cite:before,
blockquote.wp-block-pullquote.alignright cite:before,
blockquote.wp-block-pullquote.alignleft cite:before,
blockquote cite:before {
  content: "";
  margin-right: 0.625rem;
  width: 15px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
  vertical-align: middle;
}
.wp-block-quote.is-large b, .wp-block-quote.is-large strong, .wp-block-quote.is-large .strong,
.wp-block-quote.is-style-large b,
.wp-block-quote.is-style-large strong,
.wp-block-quote.is-style-large .strong,
blockquote.wp-block-quote b,
blockquote.wp-block-quote strong,
blockquote.wp-block-quote .strong,
blockquote.wp-block-pullquote b,
blockquote.wp-block-pullquote strong,
blockquote.wp-block-pullquote .strong,
blockquote.wp-block-pullquote.alignright b,
blockquote.wp-block-pullquote.alignright strong,
blockquote.wp-block-pullquote.alignright .strong,
blockquote.wp-block-pullquote.alignleft b,
blockquote.wp-block-pullquote.alignleft strong,
blockquote.wp-block-pullquote.alignleft .strong,
blockquote b,
blockquote strong,
blockquote .strong {
  color: inherit;
}
.wp-block-quote.is-large:after,
.wp-block-quote.is-style-large:after,
blockquote.wp-block-quote:after,
blockquote.wp-block-pullquote:after,
blockquote.wp-block-pullquote.alignright:after,
blockquote.wp-block-pullquote.alignleft:after,
blockquote:after {
  content: "";
  width: 6px;
  border-radius: 4px;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--primary);
  position: absolute;
  box-shadow: 0 0 30px 0 var(--rgba-primary-2);
}
.wp-block-quote.is-large:before,
.wp-block-quote.is-style-large:before,
blockquote.wp-block-quote:before,
blockquote.wp-block-pullquote:before,
blockquote.wp-block-pullquote.alignright:before,
blockquote.wp-block-pullquote.alignleft:before,
blockquote:before {
  content: "";
  z-index: -1;
  background-size: cover;
  left: 20px;
  background-image: var(--quote);
  background-position: center right;
  width: 90px;
  padding: 0;
  opacity: 0.1;
  background-repeat: no-repeat;
  height: 90px;
  top: 0px;
  position: absolute;
}
.wp-block-quote.is-large.wp-block-pullquote.alignleft,
.wp-block-quote.is-style-large.wp-block-pullquote.alignleft,
blockquote.wp-block-quote.wp-block-pullquote.alignleft,
blockquote.wp-block-pullquote.wp-block-pullquote.alignleft,
blockquote.wp-block-pullquote.alignright.wp-block-pullquote.alignleft,
blockquote.wp-block-pullquote.alignleft.wp-block-pullquote.alignleft,
blockquote.wp-block-pullquote.alignleft {
  margin: 0rem 1.563rem 1.563rem 0rem;
}
.wp-block-quote.is-large.wp-block-pullquote.alignright,
.wp-block-quote.is-style-large.wp-block-pullquote.alignright,
blockquote.wp-block-quote.wp-block-pullquote.alignright,
blockquote.wp-block-pullquote.wp-block-pullquote.alignright,
blockquote.wp-block-pullquote.alignright.wp-block-pullquote.alignright,
blockquote.wp-block-pullquote.alignleft.wp-block-pullquote.alignright,
blockquote.wp-block-pullquote.alignright {
  margin: 0rem 0 1.563rem 1.563rem;
}
.wp-block-quote.is-large.style-1,
.wp-block-quote.is-style-large.style-1,
blockquote.wp-block-quote.style-1,
blockquote.wp-block-pullquote.style-1,
blockquote.wp-block-pullquote.alignright.style-1,
blockquote.wp-block-pullquote.alignleft.style-1,
blockquote.style-1 {
  background: #f8f8f8;
  color: var(--primary);
  padding: 25px 30px;
}
.wp-block-quote.is-large.style-1 p,
.wp-block-quote.is-style-large.style-1 p,
blockquote.wp-block-quote.style-1 p,
blockquote.wp-block-pullquote.style-1 p,
blockquote.wp-block-pullquote.alignright.style-1 p,
blockquote.wp-block-pullquote.alignleft.style-1 p,
blockquote.style-1 p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--primary);
}
.wp-block-quote.is-large.style-1:after,
.wp-block-quote.is-style-large.style-1:after,
blockquote.wp-block-quote.style-1:after,
blockquote.wp-block-pullquote.style-1:after,
blockquote.wp-block-pullquote.alignright.style-1:after,
blockquote.wp-block-pullquote.alignleft.style-1:after,
blockquote.style-1:after {
  content: none;
}
.wp-block-quote.is-large.style-1:before,
.wp-block-quote.is-style-large.style-1:before,
blockquote.wp-block-quote.style-1:before,
blockquote.wp-block-pullquote.style-1:before,
blockquote.wp-block-pullquote.alignright.style-1:before,
blockquote.wp-block-pullquote.alignleft.style-1:before,
blockquote.style-1:before {
  left: auto;
  background-size: contain;
  width: 80px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-image: var(--quote-2);
}
.wp-block-quote.is-large.style-1 cite,
.wp-block-quote.is-style-large.style-1 cite,
blockquote.wp-block-quote.style-1 cite,
blockquote.wp-block-pullquote.style-1 cite,
blockquote.wp-block-pullquote.alignright.style-1 cite,
blockquote.wp-block-pullquote.alignleft.style-1 cite,
blockquote.style-1 cite {
  color: var(--title);
}
.wp-block-quote.is-large.style-1 cite:before,
.wp-block-quote.is-style-large.style-1 cite:before,
blockquote.wp-block-quote.style-1 cite:before,
blockquote.wp-block-pullquote.style-1 cite:before,
blockquote.wp-block-pullquote.alignright.style-1 cite:before,
blockquote.wp-block-pullquote.alignleft.style-1 cite:before,
blockquote.style-1 cite:before {
  background: var(--title);
}

blockquote.wp-block-pullquote:not(.is-style-solid-color) {
  background: #5608e0;
}

.wp-caption-text {
  font-size: 0.875rem;
  line-height: 1.3;
}

.ic-card.blog-single .ic-post-text blockquote p,
.ic-page-text blockquote p,
blockquote p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--title);
  margin-bottom: 1rem;
  font-weight: 700;
  font-style: italic;
}
.ic-card.blog-single .ic-post-text blockquote p cite,
.ic-page-text blockquote p cite,
blockquote p cite {
  margin-top: 20px;
}
@media only screen and (max-width: 991px) {
  .ic-card.blog-single .ic-post-text blockquote p,
  .ic-page-text blockquote p,
  blockquote p {
    font-size: 1.125rem;
  }
}

.ic-page-text {
  padding-bottom: 30px !important;
}

.ic-card.blog-single .ic-post-text blockquote.style-1 p,
.ic-page-text blockquote.style-1 p,
blockquote.style-1 p {
  color: var(--title);
  margin-bottom: 1.5rem;
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

/* Gutenberg Gallery */
/* Gutenberg Css */
/* .ic-card.blog-single,
.ic-card.blog-single + #comment-list */
.min-container,
.ic-page-text,
.ic-page-text + #comment-list,
.ic-page-text + #comment-list + .paginate-links {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.938rem;
  padding-right: 0.938rem;
}

.ic-card.blog-single.sidebar + #comment-list {
  padding: 0;
  max-width: 100%;
}

.max-container {
  max-width: 93.75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3.4375rem;
  padding-right: 3.4375rem;
}

.ic-page-text + #comment-list + .paginate-links,
.ic-page-text + #comment-list,
.ic-page-text {
  padding: 0;
}

.ic-page-text.sidebar {
  width: 100%;
  padding: 0;
  max-width: 100%;
}

.ic-page-text > ol,
.ic-page-text > ul,
.ic-page-text > .wp-block-gallery,
.ic-card.blog-single .ic-post-text > .wp-block-gallery,
.ic-card.blog-single .ic-post-text > ol,
.ic-card.blog-single .ic-post-text > ul {
  list-style: none;
  margin-bottom: 1.875rem;
}
@media only screen and (max-width: 575px) {
  .ic-page-text > ol,
  .ic-page-text > ul,
  .ic-page-text > .wp-block-gallery,
  .ic-card.blog-single .ic-post-text > .wp-block-gallery,
  .ic-card.blog-single .ic-post-text > ol,
  .ic-card.blog-single .ic-post-text > ul {
    margin-bottom: 1rem;
  }
}

.ic-page-text > ol,
.ic-page-text > ul,
.ic-card.blog-single .ic-post-text > ol,
.ic-card.blog-single .ic-post-text > ul,
.ic-card.blog-single .ic-post-text.text > ol,
.ic-card.blog-single .ic-post-text.text > ul {
  padding-left: 1.25rem;
}
.ic-page-text > ol ol,
.ic-page-text > ol ul,
.ic-page-text > ul ol,
.ic-page-text > ul ul,
.ic-card.blog-single .ic-post-text > ol ol,
.ic-card.blog-single .ic-post-text > ol ul,
.ic-card.blog-single .ic-post-text > ul ol,
.ic-card.blog-single .ic-post-text > ul ul,
.ic-card.blog-single .ic-post-text.text > ol ol,
.ic-card.blog-single .ic-post-text.text > ol ul,
.ic-card.blog-single .ic-post-text.text > ul ol,
.ic-card.blog-single .ic-post-text.text > ul ul {
  padding-left: 1.563rem;
}

.ic-page-text > ol li,
.ic-page-text > ul li,
.ic-card.blog-single .ic-post-text > ol li,
.ic-card.blog-single .ic-post-text > ul li,
.ic-card.blog-single .ic-post-text > ol li,
.ic-card.blog-single .ic-post-text > ul li,
.ic-card.blog-single .ic-post-text.text > ol li,
.ic-card.blog-single .ic-post-text.text > ul li {
  padding: 0.5rem 0.5rem;
  position: relative;
  list-style: inherit;
}

.ic-page-text > .wp-block-gallery,
.ic-card.blog-single .ic-post-text > .wp-block-gallery,
.ic-card.blog-single .ic-post-text.text > .wp-block-gallery {
  padding: 0;
  list-style: none;
}

.ic-page-text > .wp-block-gallery li,
.ic-card.blog-single .ic-post-text > .wp-block-gallery li,
.ic-card.blog-single .ic-post-text.text > .wp-block-gallery li {
  padding: 0;
  list-style: none;
  margin: 0.25rem;
}

.ic-page-text > .wp-block-gallery li:before,
.ic-card.blog-single .ic-post-text > .wp-block-gallery li:before,
.ic-card.blog-single .ic-post-text.text > .wp-block-gallery li:before {
  content: none;
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  margin: 0 0.5rem 0.5rem 0;
}

.wp-block-gallery.columns-4 .blocks-gallery-image,
.wp-block-gallery.columns-4 .blocks-gallery-item,
.wp-block-gallery.columns-3 .blocks-gallery-image,
.wp-block-gallery.columns-3 .blocks-gallery-item {
  margin-right: 0.5rem;
}

.content-spacious-full .wp-block-gallery {
  margin-left: -12.6565rem;
  margin-right: -12.6565rem;
  width: calc(100% + 25rem + 0.313rem);
  max-width: initial;
}

.alignfull,
.alignwide {
  margin-left: -6.4065rem;
  margin-right: -6.4065rem;
  width: calc(100% + 12.5rem + 0.313rem);
  max-width: initial;
}

.alignfull,
.alignfullwide {
  margin-left: calc(50% - 50vw - var(--content-share-ml, 0px) / 2);
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
}

.ic-page-text h1, .ic-page-text .h1,
.ic-post-text h1,
.ic-post-text .h1,
.thm-unit-test .ic-post-text h1 {
  margin-bottom: 1rem;
  font-weight: 700;
}

.ic-page-text h2, .ic-page-text .h2,
.ic-post-text h2,
.ic-post-text .h2,
.thm-unit-test .ic-post-text h2 {
  margin-bottom: 1rem;
  font-weight: 700;
}

.ic-page-text h3, .ic-page-text .h3,
.ic-post-text h3,
.ic-post-text .h3,
.thm-unit-test .ic-post-text h3 {
  margin-bottom: 1rem;
  font-weight: 700;
}

.ic-page-text h4, .ic-page-text .h4,
.ic-post-text h4,
.ic-post-text .h4,
.thm-unit-test .ic-post-text h4 {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.ic-page-text h5, .ic-page-text .h5,
.ic-post-text h5,
.ic-post-text .h5,
.thm-unit-test .ic-post-text h5 {
  margin-bottom: 0.75rem;
}

.ic-page-text h6, .ic-page-text .h6,
.ic-post-text h6,
.ic-post-text .h6,
.thm-unit-test .ic-post-text h6 {
  margin-bottom: 0.625rem;
}

.wp-block-code,
pre.wp-block-code,
pre {
  margin: 0 0 1.563rem;
  padding: 1.25rem;
  color: #fff;
  background-color: #212326;
  white-space: pre;
  font-size: 0.938rem;
  border-radius: 0.1875rem;
}

.ic-page-text,
.ic-page-text ul li,
.ic-page-text ol li,
.ic-card.blog-single .ic-post-text,
.ic-card.blog-single .ic-post-text ul li,
.ic-card.blog-single .ic-post-text ol li,
.ic-card.blog-single .ic-card.blog-single .ic-post-text p:not(.has-text-color):not(.has-text-align-center):not(.has-text-align-left):not(.has-text-align-right) {
  font-size: 1rem;
  line-height: 1.7;
}

.wp-block-cover,
.wp-block-cover-image {
  color: #fff;
}

.wp-block-cover p:last-child,
.wp-block-cover-image p:last-child {
  margin-bottom: 0;
}

.wp-block-quote.has-text-align-right {
  border-right: 0;
}

.ic-page-text ul li,
.ic-page-text ol li,
.ic-card.blog-single .ic-post-text ul li,
.ic-card.blog-single .ic-post-text ol li {
  position: relative;
}

.ic-page-text ul > li:before,
.ic-page-text ol > li:before,
.ic-card.blog-single .ic-post-text ul > li:before,
.ic-card.blog-single .ic-post-text ol > li:before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background: #212529;
  left: -0.938rem;
  position: absolute;
  top: 1.063rem;
  border-radius: 4px;
}

.ic-page-text ul > li li:before,
.ic-page-text ol > li li:before,
.ic-card.blog-single .ic-post-text ul > li li:before,
.ic-card.blog-single .ic-post-text ol > li li:before {
  content: none;
}

.ic-page-text p,
.ic-card.blog-single .ic-post-text p {
  margin-bottom: 1.65rem;
}

.paginate-links {
  display: flex;
  align-items: center;
  margin: 1.5rem 0 4rem 0;
}

.paginate-links a,
.paginate-links > span {
  margin: 0 0 0 0.625rem;
  position: relative;
  border: 0rem solid #6cc000;
  color: #1f2471;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  text-transform: capitalize;
  transition: all 500ms ease 0s;
  background: #E0E0E0;
  border-radius: 0.1875rem;
}

.wp-block-columns {
  margin-bottom: 0;
}

/* Gutenberg Gallery */
.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  margin: 0 1rem 1rem 0;
  position: relative;
}

.wp-block-gallery .blocks-gallery-image figure,
.wp-block-gallery .blocks-gallery-item figure {
  height: 100%;
  margin: 0;
}

@supports (position: -webkit-sticky) or (position: sticky) {
  .wp-block-gallery .blocks-gallery-image figure,
  .wp-block-gallery .blocks-gallery-item figure {
    align-items: flex-end;
    display: flex;
    justify-content: flex-start;
  }
}
.wp-block-gallery .blocks-gallery-image img,
.wp-block-gallery .blocks-gallery-item img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

@supports (position: -webkit-sticky) or (position: sticky) {
  .wp-block-gallery .blocks-gallery-image img,
  .wp-block-gallery .blocks-gallery-item img {
    width: auto;
  }
}
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3) 60%, transparent);
  bottom: 0;
  color: #fff;
  font-size: 0.813rem;
  max-height: 100%;
  overflow: auto;
  padding: 2.5rem 0.625rem 0.3125rem;
  position: absolute;
  text-align: center;
  width: 100%;
}

.wp-block-gallery .blocks-gallery-image figcaption img,
.wp-block-gallery .blocks-gallery-item figcaption img {
  display: inline;
}

.wp-block-gallery.is-cropped .blocks-gallery-image a,
.wp-block-gallery.is-cropped .blocks-gallery-image img,
.wp-block-gallery.is-cropped .blocks-gallery-item a,
.wp-block-gallery.is-cropped .blocks-gallery-item img {
  width: 100%;
}

@supports (position: -webkit-sticky) or (position: sticky) {
  .wp-block-gallery.is-cropped .blocks-gallery-image a,
  .wp-block-gallery.is-cropped .blocks-gallery-image img,
  .wp-block-gallery.is-cropped .blocks-gallery-item a,
  .wp-block-gallery.is-cropped .blocks-gallery-item img {
    -o-object-fit: cover;
    flex: 1;
    height: 100%;
    object-fit: cover;
  }
}
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  width: calc(50% - 0.5rem);
}

.wp-block-gallery .blocks-gallery-image:nth-of-type(2n),
.wp-block-gallery .blocks-gallery-item:nth-of-type(2n) {
  margin-right: 0;
}

.wp-block-gallery.columns-1 .blocks-gallery-image,
.wp-block-gallery.columns-1 .blocks-gallery-item {
  margin-right: 0;
  width: 100%;
}

@media only screen and (max-width: 64rem) {
  .alignwide {
    margin-left: 0;
    margin-right: 0;
    width: 100% !important;
    max-width: 100% !important;
  }
  .alignwide .alignleft img {
    width: 100%;
  }
  .alignwide .alignleft {
    margin: 0.3125rem 0rem 1.563rem 0;
    float: none;
  }
}
@media (min-width: 37.5rem) {
  .wp-block-gallery.columns-3 .blocks-gallery-image,
  .wp-block-gallery.columns-3 .blocks-gallery-item {
    margin-right: 1rem;
    width: calc(33.33333% - 0.666rem);
  }
  .wp-block-gallery.columns-4 .blocks-gallery-image,
  .wp-block-gallery.columns-4 .blocks-gallery-item {
    margin-right: 1rem;
    width: calc(25% - 0.75rem);
  }
  .wp-block-gallery.columns-5 .blocks-gallery-image,
  .wp-block-gallery.columns-5 .blocks-gallery-item {
    margin-right: 1rem;
    width: calc(20% - 0.8rem);
  }
  .wp-block-gallery.columns-6 .blocks-gallery-image,
  .wp-block-gallery.columns-6 .blocks-gallery-item {
    margin-right: 1rem;
    width: calc(16.66667% - 0.833rem);
  }
  .wp-block-gallery.columns-7 .blocks-gallery-image,
  .wp-block-gallery.columns-7 .blocks-gallery-item {
    margin-right: 1rem;
    width: calc(14.28571% - 0.857rem);
  }
  .wp-block-gallery.columns-8 .blocks-gallery-image,
  .wp-block-gallery.columns-8 .blocks-gallery-item {
    margin-right: 1rem;
    width: calc(12.5% - 0.875rem);
  }
  .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),
  .wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),
  .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),
  .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),
  .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),
  .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),
  .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),
  .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),
  .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),
  .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),
  .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),
  .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),
  .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),
  .wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),
  .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),
  .wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n) {
    margin-right: 0;
  }
}
.wp-block-gallery .blocks-gallery-image:last-child,
.wp-block-gallery .blocks-gallery-item:last-child {
  margin-right: 0;
}

.wp-block-gallery .blocks-gallery-item.has-add-item-button {
  width: 100%;
}

.wp-block-image.alignfullwide img {
  border-radius: 0;
}

.wp-block-image img {
  border-radius: 0.625rem;
}

.wp-block-cover,
.wp-block-cover-image,
.wp-block-embed,
.wp-block-image {
  margin-bottom: 1.875rem;
  margin-top: 1.875rem;
}

.wp-block-gallery.alignleft,
.wp-block-gallery.alignright {
  max-width: 19.0625rem;
  width: 100%;
}

.wp-block-gallery.aligncenter,
.wp-block-gallery.alignleft,
.wp-block-gallery.alignright {
  display: flex;
}

.wp-block-gallery.aligncenter .blocks-gallery-item figure {
  justify-content: center;
}

.ic-page-text.sidebar .alignfull,
.ic-page-text.sidebar .alignfullwide,
.ic-page-text.sidebar .alignwide,
.ic-page-text.sidebar .wp-block-gallery,
.blog-single.ic-card.sidebar .alignfullwide,
.blog-single.ic-card.sidebar .alignwide,
.blog-single.ic-card.sidebar .ic-post-text .wp-block-gallery {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  max-width: initial;
}

.blog-overlap {
  background: #fff;
  margin-top: -8.75rem;
  padding: 1.25rem 1.25rem 0;
  border-radius: 0.25rem 0.25rem 0rem 0rem;
}

.blog-single.ic-card.sidebar {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.ic-post-text table,
.ic-page-text table,
.wp-block-table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  font-size: 1rem;
  margin-bottom: 1.875rem;
}

.wp-block-image figcaption,
.ic-post-text figcaption,
.ic-page-text figcaption {
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  margin-top: 0.625rem;
}

.ic-post-text table tbody tr:nth-of-type(odd),
.ic-page-text table tbody tr:nth-of-type(odd),
.wp-block-table tbody tr:nth-of-type(odd) {
  background-color: #fafafa;
}

.ic-post-text td,
.ic-post-text th,
.ic-page-text td,
.ic-page-text th,
.wp-block-table td,
.wp-block-table th {
  padding: 0.625rem 0.938rem;
  border: 0.0625rem solid #e4e4e4;
  border-right: 0;
  border-left: 0;
}

.wp-block-media-text {
  margin-bottom: 30px;
}
.wp-block-media-text .wp-block-media-text__content {
  padding: 0 1.875rem;
}

.wp-block-column ol li:before,
.wp-block-column ul li:before {
  content: none !important;
}

.wp-block-pullquote {
  padding: 1em 0;
  border-top: 0;
  border-bottom: 0;
}
.wp-block-pullquote cite {
  color: #fff;
}
.wp-block-pullquote.alignright, .wp-block-pullquote.alignleft {
  padding: 0;
  border-top: 0;
  border-bottom: 0;
}
.wp-block-pullquote.alignright blockquote, .wp-block-pullquote.alignleft blockquote {
  margin: 0;
}

.ic-post-text .wp-block-cover-image-text,
.ic-post-text .wp-block-cover-text,
.ic-post-text section.wp-block-cover-image h2,
.ic-post-text section.wp-block-cover-image .h2,
.ic-page-text .wp-block-cover-image-text,
.ic-page-text .wp-block-cover-text,
.ic-page-text section.wp-block-cover-image h2,
.ic-page-text section.wp-block-cover-image .h2 {
  color: #fff;
}

.ic-post-text .bootstrap-select .dropdown-menu li a,
.ic-page-text .bootstrap-select .dropdown-menu li a {
  box-shadow: none;
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
}

.ic-post-text .wp-block-calendar a {
  box-shadow: none !important;
  text-decoration: unset;
}

.wp-block-search,
.wp-block-archives,
.wp-block-latest-posts,
.wp-block-latest-comments,
.wp-block-categories,
.wp-block-calendar {
  margin-bottom: 2.5rem;
}

/* Admin Bar */
.admin-bar .is-fixed .main-bar {
  top: 1.875rem;
}

.wp-block-quote.is-style-large cite:before {
  display: none;
}

/* Theme Unit Test */
.post-password-form label {
  font-size: 1rem;
}
.post-password-form input[type=submit] {
  padding: 0.625rem 1.563rem;
  background-color: var(--primary);
  border: none;
  height: 2.8125rem;
  font-weight: 600;
  font-size: 0.875rem;
  outline: none;
}
.post-password-form input[type=submit]:hover {
  background-color: var(--primary);
}
.post-password-form input[type=password] {
  height: 2.8125rem;
  border: 0.0625rem solid #ced4da;
}

.wp-block-search .wp-block-search__button {
  background: var(--primary);
  border: 0;
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.625rem 1.563rem;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.wp-block-search .wp-block-search__input {
  border: 0.0625rem solid #e1e6eb;
  height: 2.8125rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  outline: none;
}

.wp-block-tag-cloud a {
  padding: 0.5rem 0.625rem;
  background: var(--primary);
  font-size: 0.75rem;
  display: inline-block;
  margin: 0 0 0.3125rem;
  color: #fff;
  font-weight: 600;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  text-decoration: none;
  box-shadow: none;
}
.wp-block-tag-cloud a:hover {
  background: var(--primary-hover);
}

.wp-block-latest-comments {
  padding: 0 !important;
}
.wp-block-latest-comments .avatar {
  width: 3.4375rem;
  height: 3.4375rem;
  border-radius: 3.4375rem;
}
.wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {
  margin-left: 4.375rem;
}
.wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 1.063rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 0.625rem;
}
.wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a {
  color: var(--title);
  box-shadow: none;
  text-decoration: none;
}
.wp-block-latest-comments img + article .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  margin-left: 4.375rem;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-meta time {
  display: block;
  width: 100%;
  color: #9fa1a4;
  font-size: 0.813rem;
  font-weight: 400;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
  font-size: 1rem !important;
  line-height: 1.5 !important;
  margin-bottom: 0.625rem !important;
}
.wp-block-latest-comments li {
  padding: 0 !important;
  border-bottom: 0.0625rem solid #eee;
  padding-bottom: 0.625rem !important;
}
.wp-block-latest-comments li:before {
  content: none !important;
}

.wp-block-latest-comments__comment-avatar {
  width: 3.4375rem;
  height: 3.4375rem;
  border-radius: 3.4375rem;
}

.comment-content.ic-page-text {
  max-width: 100%;
}

.wp-block-rss {
  padding: 0 !important;
}
.wp-block-rss .wp-block-rss__item {
  padding: 0.3125rem 0 !important;
  border-bottom: 0.0625rem solid #eee;
}
.wp-block-rss .wp-block-rss__item:before {
  content: none !important;
}
.wp-block-rss .wp-block-rss__item a {
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  box-shadow: unset !important;
  font-weight: 600;
  color: var(--title);
  text-decoration: none;
}

@media only screen and (max-width: 75rem) {
  .ic-page-text .wp-block-gallery,
  .ic-card.blog-single .ic-post-text .wp-block-gallery {
    margin-left: -6.5625rem;
    margin-right: -6.5625rem;
    width: calc(100% + 12.5rem + 0.625rem);
  }
}
@media only screen and (max-width: 61.9375rem) {
  .admin-bar .mo-left .header-nav {
    top: 1.875rem;
    height: calc(100vh - 1.875rem) !important;
  }
  .ic-page-text .wp-block-gallery,
  .ic-card.blog-single .ic-post-text .wp-block-gallery {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .ic-page-text,
  .ic-page-text ul li,
  .ic-page-text ol li,
  .ic-page-text p,
  .ic-card.blog-single .ic-post-text,
  .ic-card.blog-single .ic-post-text ul li,
  .ic-card.blog-single .ic-post-text ol li,
  .ic-card.blog-single .ic-post-text p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 48.875rem) {
  .admin-bar .is-fixed .main-bar {
    top: 2.8125rem;
  }
  .admin-bar .mo-left .header-nav {
    top: 2.8125rem;
    height: calc(100vh - 2.812rem) !important;
  }
  .wp-block-media-text {
    display: block;
  }
  .wp-block-media-text .wp-block-media-text__media {
    margin-bottom: 0.938rem;
  }
  .wp-block-media-text .wp-block-media-text__content {
    padding: 0;
  }
}
@media only screen and (max-width: 37.5rem) {
  .admin-bar .is-fixed .main-bar {
    top: 0;
  }
  .admin-bar .mo-left .header-nav {
    top: 2.8125rem;
    height: calc(100vh - 2.812rem) !important;
  }
  .admin-bar .mo-left .is-fixed .header-nav {
    top: 0;
    height: 100vh !important;
  }
}
.post-footer {
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.938rem 0 0;
}
.post-footer .ic-meta .tag-list {
  padding-bottom: 0;
  text-align: left;
  margin: 0;
  padding: 0;
  list-style: none;
  text-transform: capitalize;
  display: inline;
}
.post-footer .ic-meta ul li {
  margin-right: 0.3125rem;
  padding: 0;
  display: inline-block;
  color: #333333;
  font-weight: 500;
  font-size: 0.938rem;
  font-style: italic;
}
.post-footer .post-tag a {
  text-transform: capitalize;
  font-size: 0.938rem;
  color: #999;
  background: transparent;
  padding: 0;
  border: 0;
  line-height: 0.875rem;
  font-weight: 500;
}

.share-post li {
  display: inline-block;
}
.share-post a {
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 2.1875rem;
  border: 0.0625rem solid #eee;
  display: block;
  text-align: center;
  line-height: 2.0625rem;
  color: #212529;
}

.extra-blog {
  margin-bottom: 30px;
}

@media only screen and (max-width: 575px) {
  .comment-respond.style-1 .comment-reply-title {
    margin-bottom: 20px;
  }
}

.default-form.comment-respond .comment-reply-title,
.comments-area .comments-title,
.extra-blog .blog-title {
  font-size: 23px;
  font-weight: 800;
}

.comments-area .comment-list {
  margin-bottom: 60px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .comments-area .comment-list {
    margin-bottom: 40px;
  }
}
.comments-area .comment-list .default-form {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
.comments-area .comment-list .default-form small, .comments-area .comment-list .default-form .small {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
}
.comments-area .comment-list .default-form small a, .comments-area .comment-list .default-form .small a {
  color: #e10000;
}
.comments-area .comment-list .ic-page-text {
  padding-bottom: 0 !important;
}
.comments-area .comment-list > .comment .comment-body {
  position: relative;
  padding: 0 0 0 110px;
  margin-bottom: 30px;
  min-height: 95px;
}
@media only screen and (max-width: 767px) {
  .comments-area .comment-list > .comment .comment-body {
    padding: 0 0 0 75px;
  }
}
.comments-area .comment-list > .comment .comment-body .comment-author .avatar {
  position: absolute;
  left: 0;
  height: 95px;
  width: 95px;
  border-radius: var(--border-radius-sm);
}
@media only screen and (max-width: 767px) {
  .comments-area .comment-list > .comment .comment-body .comment-author .avatar {
    height: 60px;
    width: 60px;
  }
}
.comments-area .comment-list > .comment .comment-body .comment-author .fn {
  font-size: 18px;
  line-height: 18px;
  color: var(--title);
  font-weight: 600;
  font-style: normal;
  margin-bottom: 17px;
  display: block;
  padding-top: 8px;
}
@media only screen and (max-width: 767px) {
  .comments-area .comment-list > .comment .comment-body .comment-author .fn {
    padding-top: 0;
    margin-bottom: 10px;
  }
}
.comments-area .comment-list > .comment .comment-body p {
  font-size: 15px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .comments-area .comment-list > .comment .comment-body p {
    margin-bottom: 12px;
  }
}
.comments-area .comment-list > .comment .comment-body .reply .comment-reply-link {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  background: var(--primary);
  color: #fff;
  padding: 6px 10px 4px 10px;
  display: inline-block;
  line-height: 1.3;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  position: absolute;
  right: 0;
  top: 0;
}
.comments-area .comment-list > .comment .comment-body .reply .comment-reply-link:hover {
  background: var(--primary-hover);
}
.comments-area .comment-list > .comment .comment-body .reply .comment-reply-link i {
  margin-right: 8px;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .comments-area .comment-list > .comment .comment-body .reply .comment-reply-link {
    position: unset;
  }
}
.comments-area .comment-list > .comment > .children {
  padding-left: 50px;
}
.comments-area.style-1 .comment-list > .comment .comment-body {
  position: relative;
  padding: 0 0 25px 115px;
  margin-bottom: 30px;
  min-height: 125px;
  border-bottom: 1px dashed #b7b7b7;
}
@media only screen and (max-width: 767px) {
  .comments-area.style-1 .comment-list > .comment .comment-body {
    padding: 0 0 25px 75px;
  }
}
@media only screen and (max-width: 575px) {
  .comments-area.style-1 .comment-list > .comment .comment-body {
    padding: 0 0 20px 75px;
  }
}
.comments-area.style-1 .comment-list > .comment:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.comments-area.style-2 .comment-list > .comment {
  border-bottom: 1px solid #E1E1F0;
  margin-bottom: 30px;
}
.comments-area.style-2 .comment-list > .comment .comment-body .comment-author .avatar {
  border-radius: 50%;
  box-shadow: 0 0px 10px 4px rgba(31, 66, 135, 0.1);
  border: 5px solid #fff;
}
.comments-area.style-2 .comment-list > .comment:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.comments-area.style-3 .comment-list > .comment {
  margin-bottom: 30px;
}
.comments-area.style-3 .comment-list > .comment .comment-body .comment-author .avatar {
  border-radius: 5px;
  box-shadow: 0 0px 10px 4px rgba(31, 66, 135, 0.1);
  border: 5px solid #fff;
}
.comments-area.style-3 .comment-list > .comment:last-child {
  margin-bottom: 0;
}

.comment-reply-title a {
  font-size: 16px;
  font-weight: 600;
}

.comment-respond .comment-form {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.comment-respond .comment-form p {
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}
.comment-respond .comment-form p label {
  display: none;
}
.comment-respond .comment-form p textarea {
  height: 120px;
}
.comment-respond .comment-form .comment-form-comment {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
.comment-respond.style-1 .comment-form .comment-form-author,
.comment-respond.style-1 .comment-form .comment-form-email,
.comment-respond.style-1 .comment-form .comment-form-url, .comment-respond.style-3 .comment-form .comment-form-author,
.comment-respond.style-3 .comment-form .comment-form-email,
.comment-respond.style-3 .comment-form .comment-form-url {
  width: 50%;
}
.comment-respond.style-2 .comment-form .comment-form-author,
.comment-respond.style-2 .comment-form .comment-form-email {
  width: 50%;
}
.comment-respond.style-2 .comment-form .comment-form-url {
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .comment-respond .comment-form .comment-form-author,
  .comment-respond .comment-form .comment-form-email,
  .comment-respond .comment-form .comment-form-url {
    width: 100% !important;
  }
}

.ic-page-text [class*=galleryid-],
.ic-post-text [class*=galleryid-] {
  clear: both;
  margin: 0 auto;
  overflow: hidden;
}

.gallery .gallery-item {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  padding: 0.3125rem;
  position: relative;
  box-sizing: border-box;
}
.gallery .gallery-item img {
  float: left;
  padding: 0 0rem;
  width: 100%;
  border: none !important;
}
.gallery .gallery-caption {
  font-size: 0.813rem;
  color: #707070;
  display: block;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  padding: 0.5em 0;
  clear: both;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-icon img {
  margin: 0 auto;
}

.post-password-form {
  position: relative;
  clear: both;
}
.post-password-form label {
  display: block;
  font-size: 1rem;
}
.post-password-form input[type=password] {
  width: 100%;
  border: 0.0625rem solid #ebedf2;
  padding: 0.625rem 6.25rem 0.625rem 0.938rem;
  height: 2.8125rem;
  border: 0.0625rem solid #ced4da;
}
.post-password-form input[type=submit] {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.625rem 1.25rem;
  background: var(--primary);
  color: #FFF;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
  outline: none;
  height: 2.8125rem;
}
.post-password-form input[type=submit]:hover {
  background: var(--primary-hover);
}

@media only screen and (max-width: 991px) {
  .side-bar.sticky-top {
    position: unset;
  }
}
.blog-post-banner {
  min-height: 300px;
  padding-top: 70px;
  padding-bottom: 70px;
}
.blog-post-banner .ic-title {
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
}
.blog-post-banner .ic-meta {
  color: #fff;
}
.blog-post-banner .ic-meta ul {
  display: flex;
  opacity: 0.7;
}
.blog-post-banner .ic-meta ul li {
  margin-right: 20px;
}
.blog-post-banner .ic-meta ul li a {
  color: #fff;
}

.post-outside {
  margin-top: -120px;
}

.single-post .main-bar {
  border-bottom: 1px solid #eee;
}

.ic-load-more i:before,
.loadmore-btn i:before {
  -webkit-animation: unset;
  -moz-animation: unset;
  animation: unset;
}

.ic-share-post {
  display: flex;
  align-items: center;
}
.ic-share-post .title {
  display: inline-block;
  font-size: 18px;
  padding-right: 10px;
  margin: 0;
}
.ic-share-post ul {
  padding: 0;
  margin: 0;
}
.ic-share-post ul li {
  display: inline-block;
  margin-right: 5px;
}
.ic-share-post ul li a {
  width: 40px;
  height: 40px;
  color: var(--primary);
  background: var(--rgba-primary-2);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  border-radius: var(--border-radius-sm);
}
.ic-share-post ul li a:hover {
  background: var(--primary-hover);
  color: #fff;
}

#comment-list:empty + .paginate-links {
  margin-top: -30px;
}

@media only screen and (max-width: 991px) {
  .side-bar .widget:last-child {
    margin-bottom: 0;
  }
}

.ic-coming-soon {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  padding-left: 90px;
  display: flex;
  background-color: #fff;
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 575px) {
  .ic-coming-soon {
    padding-left: 50px;
  }
}
.ic-coming-soon .ic-title {
  font-size: 60px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1400px) {
  .ic-coming-soon .ic-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .ic-coming-soon .ic-title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .ic-coming-soon .ic-title {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 15px;
  }
}
.ic-coming-soon .ic-coming-bx {
  padding-left: 80px;
  padding-right: 80px;
  flex: 0 0 50%;
  max-width: 50%;
  align-items: center;
  display: flex;
}
@media only screen and (max-width: 1400px) {
  .ic-coming-soon .ic-coming-bx {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon .ic-coming-bx {
    flex: 0 0 100%;
    max-width: 100%;
    align-items: center;
    display: flex;
    padding: 60px 20px;
    text-align: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 575px) {
  .ic-coming-soon .ic-coming-bx {
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 1199px) {
  .ic-coming-soon .btn, .ic-coming-soon .wp-block-button__link {
    font-size: 13px;
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 575px) {
  .ic-coming-soon .btn, .ic-coming-soon .wp-block-button__link {
    font-size: 12px;
    padding: 12px 15px;
    letter-spacing: 0;
  }
}
.ic-coming-soon .slider-box {
  flex: 0 0 50%;
  max-width: 50%;
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon .slider-box {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.ic-coming-soon .slider-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ic-coming-soon.style-3 {
  overflow: hidden;
  padding-left: 0;
}
.ic-coming-soon.style-3 .logo {
  margin-bottom: 20px;
  width: 200px;
  padding: 5px;
}
.ic-coming-soon.style-3 .logo svg,
.ic-coming-soon.style-3 .logo img {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon.style-3 .logo {
    margin-bottom: 20px;
    width: 180px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon.style-3 .bottom-left {
    padding-bottom: 30px;
  }
  .ic-coming-soon.style-3 .center-md {
    min-height: calc(100vh - 100px);
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
  }
  .ic-coming-soon.style-3 .ic-coming-bx {
    display: block;
    padding: 0;
  }
  .ic-coming-soon.style-3 .countdown-timer {
    margin-bottom: 35px;
  }
}
.ic-coming-soon.style-3 .countdown {
  margin-bottom: 0;
}
.ic-coming-soon.style-3 .countdown .date {
  color: #fff;
}
.ic-coming-soon.style-3 .sy-box {
  background: #031322;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0;
}
.ic-coming-soon.style-3 .sy-box:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #271302;
  z-index: 3;
  opacity: 0.85;
}
.ic-coming-soon.style-3 .sy-controls {
  display: none;
}
.ic-coming-soon.style-3 .sy-pager {
  display: none;
}
.ic-coming-soon.style-3 .ic-title {
  color: #fff;
}
.ic-coming-soon.style-3 .copyright-text {
  color: #fff;
  margin: 0;
  font-size: 16px;
}
.ic-coming-soon.style-3 .sy-slide > img {
  height: 120%;
  object-fit: cover;
  min-height: 120vh;
}
.ic-coming-soon.style-3 .ic-social-icon {
  margin-bottom: 15px;
}
.ic-coming-soon.style-3 .ic-social-icon li {
  display: inline-block;
  margin-right: 5px;
}
.ic-coming-soon.style-3 .ic-social-icon li a {
  margin-right: 0px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  line-height: 40px;
  text-align: center;
  border-radius: var(--border-radius-lg);
  color: #fff;
}
.ic-coming-soon.style-3 .ic-social-icon li a:hover {
  background: var(--hover-primary);
}
.ic-coming-soon.mining-cs .ic-title {
  font-family: var(--font-family-title);
  letter-spacing: 10px;
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon.mining-cs .center-md {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .ic-coming-soon.mining-cs .center-md {
    padding: 30px 0;
  }
}
.ic-coming-soon.mining-cs .mining-worker {
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .ic-coming-soon.mining-cs .mining-worker {
    opacity: 0;
  }
}
.ic-coming-soon.mining-cs .mining-worker img {
  width: 12%;
  position: absolute;
}
.ic-coming-soon.mining-cs .mining-worker img:nth-child(1) {
  right: 25%;
  top: 0%;
  animation: dzMove1 8s linear infinite;
}
.ic-coming-soon.mining-cs .mining-worker img:nth-child(2) {
  left: 25%;
  top: 35%;
  animation: dzMove1 7s linear infinite;
}
.ic-coming-soon.mining-cs .mining-worker img:nth-child(3) {
  left: 0%;
  top: 25%;
  animation: dzMove1 9s linear infinite;
}
.ic-coming-soon.mining-cs .mining-worker img:nth-child(4) {
  bottom: 18%;
  right: 5%;
  animation: dzMove1 8.5s linear infinite;
}
.ic-coming-soon.mining-cs .mining-worker img:nth-child(5) {
  bottom: 2%;
  right: 35%;
  animation: dzMove1 8s linear infinite;
}
.ic-coming-soon.mining-cs .mining-worker img:nth-child(6) {
  left: 20%;
  top: 5%;
  animation: dzMove1 9s linear infinite;
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon.mining-cs .bottom-left {
    padding-bottom: 0;
  }
  .ic-coming-soon.mining-cs .bottom-right {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .ic-coming-soon.mining-cs .countdown-timer {
    padding-bottom: 0px;
  }
}
.ic-coming-soon.mining-cs .train-run {
  width: 80%;
  position: absolute;
  bottom: 10%;
  transform: rotate(-35deg) translate(20%, 0);
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon.mining-cs .train-run {
    width: 150%;
    bottom: 0;
  }
}
.ic-coming-soon.mining-cs .train-run .main-train {
  -webkit-animation: 30s scroll infinite linear;
  -moz-animation: 30s scroll infinite linear;
  -o-animation: 30s scroll infinite linear;
  -ms-animation: 30s scroll infinite linear;
  animation: 30s scroll infinite linear;
  background-repeat: repeat-x;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
}
.ic-coming-soon.mining-cs .train-run .train {
  opacity: 0;
}
.ic-coming-soon.mining-cs .train-run .track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon.mining-cs .countdown-timer .clock {
    display: inline-flex;
  }
}
.ic-coming-soon.solar-cs {
  --font-family-title:"Roboto", sans-serif;
  font-family: var(--font-family-title);
  color: #666;
}
.ic-coming-soon.solar-cs .ic-title {
  color: #000;
  font-family: var(--font-family-title);
}
.ic-coming-soon.solar-cs .copyright-text {
  color: #666;
}
.ic-coming-soon.solar-cs .countdown {
  margin-bottom: 25px;
}
.ic-coming-soon.solar-cs .countdown .date .time {
  color: var(--primary);
}
.ic-coming-soon.solar-cs .countdown .date span {
  color: #666;
}
.ic-coming-soon.solar-cs .lite img {
  width: 8%;
  position: absolute;
  bottom: 0;
  z-index: -3;
}
.ic-coming-soon.solar-cs .lite img:nth-child(1) {
  left: 5%;
  animation: dzMove1 8s linear infinite;
}
.ic-coming-soon.solar-cs .lite img:nth-child(2) {
  left: 20%;
  width: 12%;
  animation: dzMove1 6s linear infinite;
}
.ic-coming-soon.solar-cs .bg-wind {
  z-index: -4;
}
.ic-coming-soon.solar-cs .bg-wind .bg-wind-bx {
  width: 20px;
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon.solar-cs .bg-wind .bg-wind-bx {
    width: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon.solar-cs .bg-wind .bg-wind-bx {
    width: 8px;
  }
}
.ic-coming-soon.solar-cs .bg-wind .bg-wind-bx .wind-rotate {
  top: -215px;
  left: -215px;
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon.solar-cs .bg-wind .bg-wind-bx .wind-rotate {
    top: -145px;
    left: -145px;
  }
  .ic-coming-soon.solar-cs .bg-wind .bg-wind-bx .wind-rotate img {
    width: 300px;
  }
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon.solar-cs .bg-wind .bg-wind-bx .wind-rotate {
    top: -96px;
    left: -96px;
  }
  .ic-coming-soon.solar-cs .bg-wind .bg-wind-bx .wind-rotate img {
    width: 200px;
  }
}
.ic-coming-soon.solar-cs .bg-wind .bg-wind-bx.bg-wind-bx {
  right: 35%;
}
.ic-coming-soon.solar-cs .bg-wind .bg-wind-bx.wind-bx-2 {
  left: 15%;
  right: auto;
  transform: scale(0.5);
  transform-origin: bottom;
}
.ic-coming-soon.solar-cs .bg-wind .bg-wind-bx.wind-bx-3 {
  right: 15%;
  transform: scale(0.8);
  transform-origin: bottom;
  z-index: -3;
}
.ic-coming-soon.solar-cs .bike img {
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 180px;
  z-index: -2;
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon.solar-cs .bike img {
    width: 80px;
  }
}
.ic-coming-soon.solar-cs .bike .bike1 {
  animation: bikeMove 15s linear infinite;
}
.ic-coming-soon.solar-cs .bike .bike2 {
  animation: bikeMove 10s linear infinite;
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon.solar-cs {
    display: block;
  }
}
.ic-coming-soon.industry-cs #video-background {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
}
.ic-coming-soon.industry-cs:before {
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .ic-coming-soon.industry-cs .bottom-left {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .ic-coming-soon.industry-cs .countdown-timer {
    padding-bottom: 0;
  }
}

@keyframes bikeMove {
  100% {
    right: 110%;
  }
}
@-webkit-keyframes scroll {
  100% {
    background-position: -3000px 0px;
  }
}
.countdown {
  margin-bottom: 40px;
}
@media only screen and (max-width: 575px) {
  .countdown {
    margin-bottom: 20px;
  }
}
.countdown .date {
  color: #000;
  padding-right: 30px;
  display: inline-block;
}
@media only screen and (max-width: 1199px) {
  .countdown .date {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .countdown .date {
    padding-right: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .countdown .date {
    padding-right: 5px;
    padding-left: 5px;
  }
}
.countdown .date .time {
  color: var(--primary);
  font-family: var(--font-family-title);
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 90px;
  line-height: 90px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1400px) {
  .countdown .date .time {
    font-size: 55px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 1199px) {
  .countdown .date .time {
    font-size: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .countdown .date .time {
    font-size: 36px;
    line-height: 36px;
  }
}
.countdown .date span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media only screen and (max-width: 1199px) {
  .countdown .date span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .countdown .date span {
    font-size: 12px;
  }
}

/* Position */
.posi-center,
.bottom-right,
.bottom-left,
.top-right,
.top-left {
  position: fixed;
  z-index: 2;
  display: block;
}
@media only screen and (max-width: 991px) {
  .posi-center,
  .bottom-right,
  .bottom-left,
  .top-right,
  .top-left {
    position: unset;
  }
}

.bottom-right {
  bottom: 60px;
  right: 60px;
}

.bottom-left {
  bottom: 60px;
  left: 60px;
}

.top-right {
  top: 60px;
  right: 60px;
}

.top-left {
  top: 60px;
  left: 60px;
}

.posi-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.dez-align .top-right,
.dez-align .bottom-right {
  right: 10px;
}

.countdown-timer {
  padding-bottom: 30px;
}
.countdown-timer .clock-item {
  width: 155px;
  position: relative;
  margin: 0 10px;
}
@media only screen and (max-width: 1400px) {
  .countdown-timer .clock-item {
    width: 130px;
  }
}
@media only screen and (max-width: 767px) {
  .countdown-timer .clock-item {
    width: 120px;
  }
}
@media only screen and (max-width: 575px) {
  .countdown-timer .clock-item {
    width: 70px;
    margin: 0 5px;
  }
}
.countdown-timer .clock {
  display: flex;
}
.countdown-timer .clock .text {
  position: absolute;
  top: 0;
  width: 100%;
}
.countdown-timer .clock .type-time {
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .countdown-timer .clock .type-time {
    letter-spacing: 1px;
    font-size: 11px;
    line-height: 18px;
  }
}
.countdown-timer .clock .kineticjs-content {
  position: relative;
}
.countdown-timer .clock .kineticjs-content:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  z-index: -1;
}
.countdown-timer .clock .val {
  font-size: 70px;
  color: #fff;
  width: 100%;
  line-height: 155px;
  text-align: center;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1400px) {
  .countdown-timer .clock .val {
    font-size: 50px;
    line-height: 130px;
  }
}
@media only screen and (max-width: 767px) {
  .countdown-timer .clock .val {
    line-height: 120px;
  }
}
@media only screen and (max-width: 575px) {
  .countdown-timer .clock .val {
    line-height: 70px;
    font-size: 30px;
    margin-bottom: 5px;
    font-weight: 600;
  }
}

.sidenav-menu {
  position: fixed;
  left: 0;
  height: 100vh;
  width: 90px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px 20px;
  justify-content: space-between;
}
@media only screen and (max-width: 575px) {
  .sidenav-menu {
    width: 50px;
    padding: 10px 5px 20px 5px;
  }
}
.sidenav-menu .ic-social-icon {
  margin: 0;
}
.sidenav-menu .ic-social-icon li a {
  color: #000;
  text-transform: capitalize;
  font-weight: 400;
  writing-mode: vertical-rl;
  padding: 10px;
  margin: 0;
  display: block;
}

.under-construct {
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 80px;
  background-color: #f2f2f4;
  background-position: center;
  overflow: hidden;
}
.under-construct:after {
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url(../images/background/under-construct.jpg);
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 575px) {
  .under-construct:after {
    opacity: 0.85;
  }
}
@media only screen and (max-width: 1680px) {
  .under-construct {
    padding: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .under-construct {
    padding: 20px;
  }
}
.under-construct .logo-header {
  height: auto;
  width: 100%;
  margin-bottom: 30px;
}
.under-construct .logo-header a {
  display: inline-block;
}
@media only screen and (max-width: 575px) {
  .under-construct .logo-header {
    margin-bottom: 20px;
  }
}
.under-construct .ic-content .ic-title {
  font-size: 80px;
  line-height: 1.1;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1680px) {
  .under-construct .ic-content .ic-title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 1199px) {
  .under-construct .ic-content .ic-title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 575px) {
  .under-construct .ic-content .ic-title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
}
.under-construct .ic-content p {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.3;
  color: var(--title);
}
@media only screen and (max-width: 1680px) {
  .under-construct .ic-content p {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1199px) {
  .under-construct .ic-content p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .under-construct .ic-content p {
    font-size: 18px;
    line-height: 24px;
  }
}
.under-construct .inner-box {
  height: 100%;
  width: 50%;
  position: relative;
  z-index: 99;
}
@media only screen and (max-width: 1199px) {
  .under-construct .inner-box {
    width: 100%;
  }
}
.under-construct.style-2 {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.under-construct.style-2 .inner-box {
  height: auto;
  margin: auto;
}
.under-construct.style-2 .ic-title,
.under-construct.style-2 .ic-content p {
  color: #fff;
}
.under-construct.style-3 {
  display: flex;
  flex-direction: column;
}
.under-construct.style-3 .inner-box {
  width: auto;
  height: auto;
  margin: auto 0;
}
.under-construct.style-3 .inner-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 10rem;
}
.under-construct.style-3 .ic-content {
  padding-left: 200px;
}
.under-construct.style-3 .ic-content .ic-title {
  font-size: 62px;
  font-weight: 700;
}
.under-construct.style-3 .ic-content p {
  font-size: 28px;
}
.under-construct.style-3 .ic-content .ic-title,
.under-construct.style-3 .ic-content p {
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .under-construct.style-3 .inner-box img {
    width: 6rem;
  }
  .under-construct.style-3 .ic-content {
    padding-left: 130px;
  }
  .under-construct.style-3 .ic-content .ic-title {
    font-size: 45px;
  }
  .under-construct.style-3 .ic-content p {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .under-construct.style-3 .inner-box {
    text-align: center;
  }
  .under-construct.style-3 .inner-box img {
    position: unset;
    margin-bottom: 20px;
  }
  .under-construct.style-3 .ic-content {
    padding-left: 0;
  }
}
@media only screen and (max-width: 575px) {
  .under-construct.style-3 .ic-content .ic-title {
    font-size: 36px;
  }
  .under-construct.style-3 .ic-content p {
    font-size: 18px;
  }
}
.under-construct.style-4 {
  background-color: #fff;
}
.under-construct.style-4 .bg-wind {
  z-index: 1;
}
.under-construct.style-4 .bg-wind .bg-wind-bx {
  right: 15%;
}
.under-construct.style-4 .bg-wind .bg-wind-bx.wind-bx-3 {
  right: 35%;
}
@media only screen and (max-width: 767px) {
  .under-construct.style-4 .bg-wind {
    display: none;
  }
}

/* Error Page */
.error-page .ic_error {
  font-size: 180px;
  font-weight: 700;
  line-height: 150px;
  margin: auto;
  color: var(--primary);
  font-family: var(--font-family-title);
}
.error-page .error-head {
  max-width: 650px;
  margin: 30px auto;
}
@media only screen and (max-width: 767px) {
  .error-page .ic_error {
    font-size: 150px;
    line-height: 120px;
  }
}
@media only screen and (max-width: 575px) {
  .error-page .error-head {
    margin: 10px auto 25px;
  }
  .error-page .ic_error {
    font-size: 100px;
    line-height: 100px;
  }
}

.map-iframe {
  width: 100%;
}
.map-iframe iframe {
  width: 100%;
  border: 0;
  height: 500px;
}
.map-iframe.style-1 iframe {
  height: 600px;
  margin-bottom: -10px;
  border-radius: var(--border-radius-base);
}

.content-area .contact-inner {
  padding-left: 20px;
}
.content-area .ic-form {
  margin-left: -200px;
}
.content-area .map-iframe {
  width: 43.5vw;
  height: 100%;
  float: right;
}
.content-area .map-iframe iframe {
  height: 100%;
}
@media only screen and (max-width: 1199px) {
  .content-area .map-iframe {
    width: 41vw;
  }
}
@media only screen and (max-width: 991px) {
  .content-area .contact-inner {
    padding-left: 0;
  }
  .content-area .ic-form {
    margin-left: 0;
  }
  .content-area .map-iframe {
    width: 100%;
    padding-top: 50px;
    height: 400px;
  }
}

.contact-area1 {
  padding: 80px 40px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin-top: -200px;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--border-radius-base);
}
@media only screen and (max-width: 1400px) {
  .contact-area1 {
    padding: 50px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-area1 {
    padding: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-area1 {
    padding: 40px 15px;
  }
}

.ext-sidebar-menu ul li {
  margin-bottom: 20px;
}
.ext-sidebar-menu ul li a {
  background-color: #f7f6fb;
  padding: 12px 25px;
  font-size: 24px;
  font-weight: 700;
  color: var(--title);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  display: block;
  position: relative;
  border-radius: var(--border-radius-sm);
}
.ext-sidebar-menu ul li a:after {
  content: "\f054";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  line-height: 18px;
  font-size: 18px;
}
.ext-sidebar-menu ul li:hover a, .ext-sidebar-menu ul li.active a {
  color: #fff;
  background-color: var(--primary);
  box-shadow: 1px 1.732px 40px 0px var(--rgba-primary-3);
}
@media only screen and (max-width: 1199px) {
  .ext-sidebar-menu ul li a {
    font-size: 18px;
  }
  .ext-sidebar-menu ul li a:after {
    line-height: 14px;
    font-size: 14px;
  }
}
.ext-sidebar-menu.style-1 ul li {
  margin-bottom: 0;
  padding: 25px 0;
  border-bottom: 1px dashed #7a7e82;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.ext-sidebar-menu.style-1 ul li:before {
  content: none;
}
.ext-sidebar-menu.style-1 ul li a {
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  background-color: transparent;
  letter-spacing: 3px;
  padding: 0;
  text-transform: uppercase;
  font-family: var(--font-family-title);
  color: #212529;
  display: block;
}
.ext-sidebar-menu.style-1 ul li a:after {
  content: none;
}
.ext-sidebar-menu.style-1 ul li.active, .ext-sidebar-menu.style-1 ul li:hover {
  padding-left: 40px;
}
.ext-sidebar-menu.style-1 ul li.active a, .ext-sidebar-menu.style-1 ul li:hover a {
  color: var(--primary);
  background-color: transparent;
  box-shadow: none;
}
@media only screen and (max-width: 991px) {
  .ext-sidebar-menu.style-1 ul li {
    padding: 15px 0;
  }
  .ext-sidebar-menu.style-1 ul li a {
    font-size: 18px;
    line-height: 18px;
  }
}
.ext-sidebar-menu.style-2 ul li {
  border-bottom: 1px dashed #7a7e82;
  position: relative;
  margin-bottom: 0;
}
.ext-sidebar-menu.style-2 ul li:before {
  content: none;
}
.ext-sidebar-menu.style-2 ul li a {
  font-size: 24px;
  line-height: 24px;
  color: #212529;
  display: block;
  font-weight: 600;
  position: relative;
  background-color: transparent;
  padding: 25px 30px 25px 50px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
@media only screen and (max-width: 1199px) {
  .ext-sidebar-menu.style-2 ul li a {
    font-size: 18px;
    padding: 15px 20px 15px 40px;
  }
}
.ext-sidebar-menu.style-2 ul li a:after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding: 0;
  position: absolute;
  top: 50%;
  font-size: 14px;
  left: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 40px;
  line-height: 40px;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
@media only screen and (max-width: 1199px) {
  .ext-sidebar-menu.style-2 ul li a:after {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }
}
.ext-sidebar-menu.style-2 ul li:hover a {
  color: var(--primary);
  background-color: transparent;
  box-shadow: none;
  transform: translateX(10px);
  -moz-transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
}
.ext-sidebar-menu.style-2 ul li.active a {
  color: var(--primary);
  box-shadow: none;
}
.ext-sidebar-menu.style-2 ul li.active a:after {
  background: var(--primary);
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .ext-sidebar-menu.style-2 ul li a {
    font-size: 18px;
    line-height: 18px;
  }
}

.quote-bx {
  padding: 40px;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  color: #c2c6cc;
  border-radius: var(--border-radius-base);
  overflow: hidden;
}
.quote-bx:before {
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .quote-bx {
    padding: 30px 30px;
  }
}

.service-detail .ic-media {
  margin-bottom: 45px;
  border-radius: var(--border-radius-base);
}
@media only screen and (max-width: 767px) {
  .service-detail .ic-media {
    margin-bottom: 30px;
  }
}

.port-detail1 .ic-port-meta {
  padding: 20px 50px;
  margin-bottom: 40px;
}
.port-detail1 .ic-port-meta .sub-title {
  font-size: 18px;
  opacity: 0.9;
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .port-detail1 .ic-port-meta {
    padding: 20px 30px;
  }
}
@media only screen and (max-width: 575px) {
  .port-detail1 .ic-port-meta {
    padding: 20px 25px;
  }
}

.port-detail2 .ic-media {
  height: 500px;
  background-size: cover;
  border-radius: var(--border-radius-base);
}
@media only screen and (max-width: 991px) {
  .port-detail2 .ic-media {
    height: 350px;
  }
}
@media only screen and (max-width: 575px) {
  .port-detail2 .ic-media {
    height: 250px;
  }
}
.port-detail2 .ic-port-meta {
  padding: 50px 50px 10px;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: var(--border-radius-base);
}
.port-detail2 .ic-port-meta .meta-info {
  margin-bottom: 40px;
}
.port-detail2 .ic-port-meta .sub-title {
  font-size: 18px;
  opacity: 0.9;
  font-weight: 300;
}
@media only screen and (max-width: 1199px) {
  .port-detail2 .ic-port-meta {
    padding: 35px 35px 0;
  }
  .port-detail2 .ic-port-meta .meta-info {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .port-detail2 .ic-port-meta {
    padding: 25px 25px 0;
  }
  .port-detail2 .ic-port-meta .meta-info {
    margin-bottom: 25px;
  }
}

.logo-header {
  display: table;
  float: left;
  vertical-align: middle;
  padding: 0;
  color: #EFBB20;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 10px;
  margin-left: 0;
  height: 90px;
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 991px) {
  .logo-header {
    width: 180px;
    height: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .logo-header {
    width: 180px;
  }
}
.logo-header a {
  display: table-cell;
  vertical-align: middle;
}
.logo-header img {
  height: 60px;
  max-width: 200px;
  object-fit: contain;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
@media only screen and (max-width: 991px) {
  .logo-header img {
    max-width: 180px;
    height: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .logo-header img {
    max-width: 180px;
  }
}
.logo-header span {
  font-size: 20px;
  letter-spacing: 20px;
}

.top-bar {
  background-color: #fff;
  color: #212529;
  padding: 12px 0;
  position: relative;
}
.top-bar .ic-topbar-left {
  float: left;
}
.top-bar .ic-topbar-left li {
  padding-right: 20px;
}
.top-bar .ic-topbar-right {
  float: right;
}
.top-bar .ic-topbar-right li {
  padding-left: 15px;
}
.top-bar .ic-social li a {
  color: inherit;
}
.top-bar .ic-topbar-inner {
  margin-left: -15px;
  margin-right: -15px;
}
.top-bar .ic-topbar-center,
.top-bar .ic-topbar-left,
.top-bar .ic-topbar-right {
  padding-left: 15px;
  padding-right: 15px;
}
.top-bar .ic-topbar-center ul,
.top-bar .ic-topbar-left ul,
.top-bar .ic-topbar-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-bar .ic-topbar-center ul li,
.top-bar .ic-topbar-left ul li,
.top-bar .ic-topbar-right ul li {
  display: inline-block;
  font-size: 15px;
}
.top-bar .ic-topbar-center ul i,
.top-bar .ic-topbar-left ul i,
.top-bar .ic-topbar-right ul i {
  margin-right: 5px;
}
.top-bar .ic-topbar-center .ic-social-icon li,
.top-bar .ic-topbar-left .ic-social-icon li,
.top-bar .ic-topbar-right .ic-social-icon li {
  padding-left: 0;
}
@media only screen and (max-width: 991px) {
  .top-bar {
    display: none;
  }
}

.ic-quik-search {
  background: rgba(33, 37, 41, 0.95);
  position: fixed;
  height: 100%;
  width: 100%;
  top: -100%;
  left: 0;
  padding: 0px 30px;
  z-index: 999;
  overflow: hidden;
  display: none;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
}
.ic-quik-search form {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  top: 50%;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
  opacity: 1;
  transform: translateY(-50%);
}
.ic-quik-search .form-control, .ic-quik-search .wp-block-categories-dropdown select, .wp-block-categories-dropdown .ic-quik-search select,
.ic-quik-search .wp-block-archives-dropdown select,
.wp-block-archives-dropdown .ic-quik-search select, .ic-quik-search .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-author .ic-quik-search input, .ic-quik-search .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-email .ic-quik-search input, .ic-quik-search .comment-respond .comment-form p.comment-form-url input, .comment-respond .comment-form p.comment-form-url .ic-quik-search input,
.ic-quik-search .comment-respond .comment-form p textarea,
.comment-respond .comment-form p .ic-quik-search textarea {
  padding: 15px 60px 15px 15px;
  width: 100%;
  height: 90px;
  border: none;
  background: 0 0;
  color: #fff;
  font-size: 20px;
  border-bottom: 2px solid #fff;
  border-radius: 0;
}
.ic-quik-search .form-control::-webkit-input-placeholder, .ic-quik-search .wp-block-categories-dropdown select::-webkit-input-placeholder, .wp-block-categories-dropdown .ic-quik-search select::-webkit-input-placeholder,
.ic-quik-search .wp-block-archives-dropdown select::-webkit-input-placeholder,
.wp-block-archives-dropdown .ic-quik-search select::-webkit-input-placeholder, .ic-quik-search .comment-respond .comment-form p.comment-form-author input::-webkit-input-placeholder, .comment-respond .comment-form p.comment-form-author .ic-quik-search input::-webkit-input-placeholder, .ic-quik-search .comment-respond .comment-form p.comment-form-email input::-webkit-input-placeholder, .comment-respond .comment-form p.comment-form-email .ic-quik-search input::-webkit-input-placeholder, .ic-quik-search .comment-respond .comment-form p.comment-form-url input::-webkit-input-placeholder, .comment-respond .comment-form p.comment-form-url .ic-quik-search input::-webkit-input-placeholder,
.ic-quik-search .comment-respond .comment-form p textarea::-webkit-input-placeholder,
.comment-respond .comment-form p .ic-quik-search textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.ic-quik-search .form-control:-ms-input-placeholder, .ic-quik-search .wp-block-categories-dropdown select:-ms-input-placeholder, .wp-block-categories-dropdown .ic-quik-search select:-ms-input-placeholder,
.ic-quik-search .wp-block-archives-dropdown select:-ms-input-placeholder,
.wp-block-archives-dropdown .ic-quik-search select:-ms-input-placeholder, .ic-quik-search .comment-respond .comment-form p.comment-form-author input:-ms-input-placeholder, .comment-respond .comment-form p.comment-form-author .ic-quik-search input:-ms-input-placeholder, .ic-quik-search .comment-respond .comment-form p.comment-form-email input:-ms-input-placeholder, .comment-respond .comment-form p.comment-form-email .ic-quik-search input:-ms-input-placeholder, .ic-quik-search .comment-respond .comment-form p.comment-form-url input:-ms-input-placeholder, .comment-respond .comment-form p.comment-form-url .ic-quik-search input:-ms-input-placeholder,
.ic-quik-search .comment-respond .comment-form p textarea:-ms-input-placeholder,
.comment-respond .comment-form p .ic-quik-search textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.ic-quik-search .form-control::placeholder, .ic-quik-search .wp-block-categories-dropdown select::placeholder, .wp-block-categories-dropdown .ic-quik-search select::placeholder,
.ic-quik-search .wp-block-archives-dropdown select::placeholder,
.wp-block-archives-dropdown .ic-quik-search select::placeholder, .ic-quik-search .comment-respond .comment-form p.comment-form-author input::placeholder, .comment-respond .comment-form p.comment-form-author .ic-quik-search input::placeholder, .ic-quik-search .comment-respond .comment-form p.comment-form-email input::placeholder, .comment-respond .comment-form p.comment-form-email .ic-quik-search input::placeholder, .ic-quik-search .comment-respond .comment-form p.comment-form-url input::placeholder, .comment-respond .comment-form p.comment-form-url .ic-quik-search input::placeholder,
.ic-quik-search .comment-respond .comment-form p textarea::placeholder,
.comment-respond .comment-form p .ic-quik-search textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.ic-quik-search span {
  position: absolute;
  right: 15px;
  top: 50%;
  margin: -15px 0;
  height: 25px;
  font-size: 20px;
  cursor: pointer;
}
.ic-quik-search.On {
  top: 0;
}

.site-header {
  position: relative;
  z-index: 9999;
}
.site-header .main-bar {
  background: #fff;
  width: 100%;
  position: relative;
}
.site-header .main-bar-wraper .logo-header .light-logo {
  display: table-cell;
}
.site-header .main-bar-wraper .logo-header .dark-logo {
  display: none;
}
.site-header .main-bar-wraper.is-fixed .logo-header .light-logo {
  display: none;
}
.site-header .main-bar-wraper.is-fixed .logo-header .dark-logo {
  display: table-cell;
}
.site-header .navbar {
  position: unset;
}
.site-header .container {
  position: relative;
}
.site-header .extra-nav {
  float: right;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
  height: 90px;
}
.site-header .extra-nav .extra-cell {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .site-header .extra-nav {
    height: 80px;
  }
}
@media only screen and (max-width: 1680px) {
  .site-header .extra-nav {
    margin-left: 10px;
  }
}
.site-header .extra-nav #quik-search-btn {
  color: #212529;
  cursor: pointer;
  margin-right: 0px;
  border: 0;
  width: 45px;
  height: 45px;
  background: #ebebeb;
  line-height: 45px;
  text-align: center;
  font-size: 18px;
  border-radius: 45px;
}
@media only screen and (max-width: 575px) {
  .site-header .extra-nav .btn, .site-header .extra-nav .wp-block-button__link {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.site-header .extra-nav .phone-call {
  font-size: 22px;
  display: flex;
  align-items: center;
  color: var(--title);
  font-weight: 500;
  margin-right: 50px;
}
.site-header .extra-nav .phone-call i {
  margin-right: 15px;
  color: var(--primary);
}
@media only screen and (max-width: 1480px) {
  .site-header .extra-nav .phone-call {
    display: none;
  }
}
.site-header .extra-nav ul li {
  display: inline-block;
}
.site-header .extra-nav ul li .icon {
  padding: 0;
  background: transparent;
  min-width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
}

.navbar-toggler {
  border: 0 solid #efbb20;
  font-size: 16px;
  line-height: 24px;
  margin: 40px 0 39px 15px;
  padding: 0;
  float: right;
  outline: none;
}
@media only screen and (max-width: 991px) {
  .navbar-toggler {
    margin: 15px 0 15px 15px;
  }
}
@media only screen and (max-width: 575px) {
  .navbar-toggler {
    margin: 15px ​0 15px 15px;
  }
}

.navicon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  box-shadow: 0 5px 15px -10px var(--primary);
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  border-radius: var(--border-radius-sm);
}
.navicon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  opacity: 1;
  background: #fff;
  left: 10px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.navicon span:nth-child(1) {
  top: 15px;
  width: 30px;
}
.navicon span:nth-child(2) {
  top: 23.5px;
  width: 25px;
}
.navicon span:nth-child(3) {
  top: 33px;
  width: 20px;
}
.navicon.open span:nth-child(1) {
  top: 25px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.navicon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.navicon.open span:nth-child(3) {
  top: 25px;
  width: 30px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.header-tb .navicon span {
  background: #fff;
}

.header-nav {
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .header-nav {
    overflow-y: scroll;
    position: fixed;
    width: 60px;
    left: -280px;
    height: 100vh !important;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
    top: 0;
    background-color: #fff;
    margin: 0;
    z-index: 99;
    overflow: hidden;
  }
}
@media only screen and (max-width: 991px) {
  .header-nav.show {
    left: -1px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0;
    width: 280px;
  }
}
.header-nav.nav-dark {
  background-color: #202020;
}
.header-nav .logo-header {
  display: none;
}
@media only screen and (max-width: 991px) {
  .header-nav .logo-header {
    display: block;
    padding: 25px 20px;
    float: none;
    height: auto;
    width: 100%;
  }
  .header-nav .logo-header img {
    max-width: unset;
    vertical-align: middle;
  }
}
.header-nav .nav {
  float: right;
  padding: 0;
  font-size: 0;
}
.header-nav .nav > li {
  margin: 0px;
  font-weight: 400;
  position: relative;
}
.header-nav .nav > li.has-mega-menu {
  position: inherit;
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li {
    border-bottom: 1px solid #eee;
    width: 100%;
  }
}
.header-nav .nav > li.sub-menu-down > a:after {
  content: "\f078";
  font-size: 9px;
  margin-left: 5px;
  margin-top: 0;
  vertical-align: middle;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li.sub-menu-down > a:after {
    content: "" !important;
  }

  .header-nav .nav > li.sub-menu-down > a span:after {
    content: "\f067";
    background-color: var(--primary);
    color: #fff;
    height: 30px;
    line-height: 30px;
    right: 0;
    text-align: center;
    width: 30px;
    z-index: 3;
    float: right;
    font-size: 14px;
    margin: 0;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
  }
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li.sub-menu-down > a:after:before {
    content: "\f054";
  }
}
.header-nav .nav > li > a {
  color: #1e1d23;
  font-size: 15px;
  padding: 37px 10px;
  cursor: pointer;
  font-weight: 400;
  display: inline-block;
  position: relative;
  border-width: 0 0 0 1px;
  line-height: 1.1;
}
.header-nav .nav > li > a.active {
  color: var(--primary);
}
@media only screen and (max-width: 1680px) {
  .header-nav .nav > li > a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-nav .nav > li > a {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li > a {
    padding: 8px 0;
    display: block;
    line-height: 30px;
    font-size: 16px;
  }
}
.header-nav .nav > li .mega-menu,
.header-nav .nav > li .sub-menu {
  background-color: #fff;
  display: block;
  left: 0;
  list-style: none;
  opacity: 0;
  padding: 5px 0;
  position: absolute;
  visibility: hidden;
  width: 220px;
  z-index: 10;
  margin-top: 20px;
  box-shadow: 0px 1px 40px 0px rgba(0, 0, 0, 0.1);
  text-align: left;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li .mega-menu,
  .header-nav .nav > li .sub-menu {
    display: none;
    position: static;
    visibility: visible;
    width: auto;
    background: transparent;
    box-shadow: none;
    margin: 0;
    border-top: 1px solid #eee;
    padding: 10px 0;
    -webkit-transition: none;
    -ms-transition: none;
    transition: none;
  }
  .header-nav .nav > li .mega-menu > li > a i,
  .header-nav .nav > li .sub-menu > li > a i {
    color: #fff;
    display: block;
    float: right;
    height: 30px;
    line-height: 30px;
    right: 0;
    text-align: center;
    width: 30px;
    z-index: 3;
    font-size: 14px;
    margin: 0;
    background: #aaa;
  }
}
.header-nav .nav > li .mega-menu li,
.header-nav .nav > li .sub-menu li {
  position: relative;
}
.header-nav .nav > li .mega-menu li a,
.header-nav .nav > li .sub-menu li a {
  color: #212529;
  display: block;
  font-size: 14px;
  padding: 8px 25px;
  line-height: 1.3;
  position: relative;
  transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  font-weight: 500;
}
.header-nav .nav > li .mega-menu li a:after,
.header-nav .nav > li .sub-menu li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: var(--primary);
  left: 20px;
  top: 18px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li .mega-menu li a,
  .header-nav .nav > li .sub-menu li a {
    padding: 2px 0 1px 16px;
    display: block;
    line-height: 30px;
    position: relative;
  }
  .header-nav .nav > li .mega-menu li a:after,
  .header-nav .nav > li .sub-menu li a:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    width: auto;
    height: auto;
    background: unset;
    top: 2px;
    color: #262F5A;
    font-size: 12px;
    position: absolute;
    left: 0;
    font-weight: 700;
  }
}
.header-nav .nav > li .mega-menu li:hover > a,
.header-nav .nav > li .sub-menu li:hover > a {
  color: var(--primary);
  padding: 8px 20px 8px 35px;
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li .mega-menu li:hover > a,
  .header-nav .nav > li .sub-menu li:hover > a {
    padding: 2px 0 1px 16px;
    background: transparent;
  }
}
.header-nav .nav > li .mega-menu li:hover > a:after,
.header-nav .nav > li .sub-menu li:hover > a:after {
  width: 10px;
}
.header-nav .nav > li .mega-menu li > .sub-menu,
.header-nav .nav > li .sub-menu li > .sub-menu {
  left: 220px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li .mega-menu li > .sub-menu,
  .header-nav .nav > li .sub-menu li > .sub-menu {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li .mega-menu .mega-menu,
  .header-nav .nav > li .mega-menu .sub-menu,
  .header-nav .nav > li .sub-menu .mega-menu,
  .header-nav .nav > li .sub-menu .sub-menu {
    border-top: 0;
    padding-left: 20px;
  }
  .header-nav .nav > li .mega-menu .mega-menu li a:after,
  .header-nav .nav > li .mega-menu .sub-menu li a:after,
  .header-nav .nav > li .sub-menu .mega-menu li a:after,
  .header-nav .nav > li .sub-menu .sub-menu li a:after {
    width: 5px;
    content: "";
    height: 5px;
    background: #262F5A;
    border-radius: 4px;
    top: 13px;
  }
}
@media only screen and (min-width: 991px) {
  .header-nav .nav > li .sub-menu li > a > i {
    color: inherit;
    display: block;
    float: right;
    font-size: 12px;
    opacity: 1;
    margin-top: 4px;
  }
}
.header-nav .nav > li .mega-menu {
  display: flex;
  right: 0px;
  width: 100%;
  z-index: 9;
  padding: 0;
}
.header-nav .nav > li .mega-menu > li {
  display: block;
  padding: 30px 0 25px;
  position: relative;
  vertical-align: top;
  width: 33%;
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li .mega-menu > li {
    width: 100%;
    padding: 0;
  }
}
.header-nav .nav > li .mega-menu > li > a {
  color: #212529;
  display: block;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
}
.header-nav .nav > li .mega-menu > li > a > i {
  font-size: 14px;
  margin-right: 5px;
  text-align: center;
  width: 15px;
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li .mega-menu > li > a {
    display: none;
  }
}
.header-nav .nav > li .mega-menu > li:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0px;
  top: 0px;
  display: block;
  width: 1px;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li .mega-menu > li:after {
    content: none;
  }
}
.header-nav .nav > li .mega-menu > li:last-child:after {
  display: none;
}
.header-nav .nav > li .mega-menu > li:hover > a {
  background-color: transparent;
}
.header-nav .nav > li .mega-menu > li li i {
  font-size: 14px;
  margin-right: 5px;
  text-align: center;
  width: 15px;
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li .mega-menu {
    display: none;
    padding: 10px 0;
  }
}
.header-nav .nav > li:hover > .mega-menu, .header-nav .nav > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li:hover > .mega-menu, .header-nav .nav > li:hover > .sub-menu {
    -webkit-transition: none;
    -ms-transition: none;
    transition: none;
  }
}
.header-nav .nav > li:hover > .mega-menu li:hover > .sub-menu, .header-nav .nav > li:hover > .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  top: -1px;
}
.header-nav .nav > li.open .mega-menu,
.header-nav .nav > li.open .sub-menu {
  display: block;
  opacity: 1;
  -webkit-transition: none;
  -ms-transition: none;
  transition: none;
}
.header-nav .nav > li.open .open.menu-item-has-children > a:before {
  transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.header-nav .nav > li.open .open .mega-menu,
.header-nav .nav > li.open .open .sub-menu {
  display: block;
  opacity: 1;
  -webkit-transition: none;
  -ms-transition: none;
  transition: none;
}
@media only screen and (max-width: 1400px) {
  .header-nav .nav > li:nth-last-child(3) .sub-menu .sub-menu, .header-nav .nav > li:nth-last-child(2) .sub-menu .sub-menu, .header-nav .nav > li:last-child .sub-menu .sub-menu {
    left: -220px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-nav .nav > li:last-child .sub-menu {
    left: auto;
    right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .header-nav .nav {
    float: none;
    padding: 0 20px;
    display: block;
  }
}
.header-nav .ic-social-icon {
  display: none;
  text-align: center;
}
.header-nav .ic-social-icon li {
  display: inline-block;
  margin: 0 2px;
}
.header-nav .ic-social-icon a {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #eee;
  line-height: 38px;
  text-align: center;
  border-radius: 40px;
}
@media only screen and (max-width: 991px) {
  .header-nav .ic-social-icon {
    display: block;
    padding-top: 30px;
    padding-bottom: 20px;
  }
}

.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.header-transparent .top-bar,
.header-transparent .main-bar {
  background: transparent;
}
.header-transparent .container-fluid, .header-transparent .container-sm, .header-transparent .container-md, .header-transparent .container-lg, .header-transparent .container-xl {
  padding-left: 80px;
  padding-right: 80px;
}
@media only screen and (max-width: 1199px) {
  .header-transparent .container-fluid, .header-transparent .container-sm, .header-transparent .container-md, .header-transparent .container-lg, .header-transparent .container-xl {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.header-transparent .top-bar ul li,
.header-transparent .top-bar ul li a {
  color: #fff;
}
.header-transparent .side-menu-btn .menu-icon-in span {
  background-color: #fff;
}
.header-transparent .is-fixed .side-menu-btn .menu-icon-in span {
  background-color: #212529;
}
@media only screen and (min-width: 991px) {
  .header-transparent .nav > li > a {
    color: #fff;
  }
}
.header-transparent .navbar-toggler span {
  background: #fff;
}
.header-transparent .is-fixed .nav > li > a {
  color: #212529;
}
.header-transparent .is-fixed .navbar-toggler span {
  background: #fff;
}
.header-transparent .top-bar {
  border-color: #fff;
}
.header-transparent .top-bar .ic-topbar-left li,
.header-transparent .top-bar .ic-topbar-left i,
.header-transparent .top-bar .ic-topbar-right li,
.header-transparent .top-bar .ic-topbar-right i {
  color: #fff;
}

.is-fixed .main-bar {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: all 0.5s;
}

@media only screen and (max-width: 991px) {
  .mo-left .header-nav {
    overflow-y: hidden;
    position: fixed;
    width: 60px;
    left: -280px;
    height: 100vh !important;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    top: 0;
    background-color: #fff;
    margin: 0;
    z-index: 99;
  }
  .mo-left .header-nav.nav-dark {
    background-color: #202020;
  }
  .mo-left .header-nav.show {
    left: -1px;
    transition: all 0.15s;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -o-transition: all 0.15s;
    margin: 0;
    width: 280px;
  }
  .mo-left .header-nav .logo-header {
    display: block;
    float: none;
    height: auto !important;
    max-width: 100%;
    padding: 25px 20px;
    width: 100% !important;
  }
  .mo-left .header-nav .logo-header img {
    max-width: unset;
    vertical-align: middle;
  }
  .mo-left .header-nav li.open a {
    position: relative;
  }
  .mo-left .navbar-toggler.open {
    z-index: 99;
  }
  .mo-left .navbar-toggler.open:after {
    background-color: rgba(0, 0, 0, 0.6);
    content: "";
    left: 0;
    position: fixed;
    right: -20px;
    top: -63px;
    transform: scale(100);
    -o-transform: scale(100);
    -moz-transform: scale(100);
    -webkit-transform: scale(100);
    width: 100%;
    z-index: -1;
    transition: all 0.5s;
    transform-origin: top right;
    margin: 0 0px 0px 20px;
    -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.6);
  }
  .mo-left .navbar-toggler.open span {
    background: #fff;
  }
}
.text-black .nav > li > a {
  color: var(--title);
}
.text-black .navbar-toggler span {
  background: #fff;
}

/* Start Header is-fixed Animation */
.main-bar {
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}

.is-fixed .main-bar {
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}

@-moz-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-ms-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
/* homedemo */
.header-nav .nav > li.homedemo .mega-menu {
  display: flex;
  flex-wrap: wrap;
  overflow-y: scroll;
  border-radius: 0;
  min-height: auto;
  max-height: calc(100vh - 120px);
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li.homedemo .mega-menu {
    display: none;
  }
}
.header-nav .nav > li.homedemo .mega-menu > li {
  flex: 0 0 25%;
  max-width: 25%;
  border: 1px solid #eee;
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li.homedemo .mega-menu > li {
    flex: 0 0 100%;
    max-width: 100%;
    border: 0;
  }
}
.header-nav .nav > li.homedemo .mega-menu > li > a {
  border: 0;
  padding-bottom: 0;
}
@media only screen and (min-width: 991px) {
  .header-nav .nav > li.homedemo .mega-menu > li > a {
    padding: 8px 20px 8px 20px !important;
  }
}
.header-nav .nav > li.homedemo .mega-menu > li > a img {
  margin-bottom: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.17);
  transition: all 0.5s;
  width: 100%;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li.homedemo .mega-menu > li > a img {
    display: none;
  }
}
.header-nav .nav > li.homedemo .mega-menu > li > a span {
  display: block;
  text-transform: capitalize;
  font-size: 15px;
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li.homedemo .mega-menu > li > a span {
    display: block;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    color: inherit;
  }
}
.header-nav .nav > li.homedemo .mega-menu > li > a:after {
  content: none;
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li.homedemo .mega-menu > li > a {
    display: block;
    padding: 2px 0 1px 16px;
    position: relative;
  }
  .header-nav .nav > li.homedemo .mega-menu > li > a:after {
    content: "\f054";
  }
}
.header-nav .nav > li.homedemo .mega-menu > li:after {
  content: none;
}
.header-nav .nav > li.homedemo .mega-menu > li:hover > a img {
  transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
.header-nav .nav > li.homedemo .mega-menu > li:nth-child(2n) {
  background: rgba(0, 0, 0, 0.04);
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li.homedemo .mega-menu > li:nth-child(2n) {
    background: transparent;
  }
}
@media only screen and (max-width: 991px) {
  .header-nav .nav > li.homedemo.open .mega-menu {
    display: block;
  }
}

/* Header Bottom */
@media only screen and (min-width: 991px) {
  .header-bottom .main-bar-wraper:not([class*=is-fixed]) .header-nav .nav > li > .mega-menu,
  .header-bottom .main-bar-wraper:not([class*=is-fixed]) .header-nav .nav > li > .sub-menu {
    bottom: 100% !important;
  }
  .header-bottom .main-bar-wraper:not([class*=is-fixed]) .header-nav .nav > li > a i {
    transform: rotate(180deg);
    transition: all 0.5s;
  }
  .header-bottom .main-bar-wraper:not([class*=is-fixed]) .header-nav .nav > li > .sub-menu::after {
    border-left: 0 solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #fff;
    border-bottom: 0 solid transparent;
    bottom: -15px;
    top: auto;
  }
  .header-bottom .main-bar-wraper:not([class*=is-fixed]) .is-fixed .header-nav .nav > li .sub-menu {
    bottom: auto;
  }
  .header-bottom .main-bar-wraper:not([class*=is-fixed]) .is-fixed .header-nav .nav > li .sub-menu::after {
    border-left: 0 solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
    top: -15px;
    left: 25px;
    bottom: auto;
    border-top: 0;
  }
  .header-bottom .main-bar-wraper:not([class*=is-fixed]) .header-nav .nav > li .sub-menu li > .sub-menu {
    bottom: 0;
    top: auto;
  }
}
.new-badge span {
  background: #ff0000;
  color: #fff !important;
  display: inline-block !important;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 400;
  line-height: normal;
  animation: 0.8s shake infinite alternate;
  margin-left: 5px;
}

@keyframes shake {
  0% {
    transform: skewX(-15deg);
  }
  5% {
    transform: skewX(15deg);
  }
  10% {
    transform: skewX(-15deg);
  }
  15% {
    transform: skewX(15deg);
  }
  20% {
    transform: skewX(0deg);
  }
  100% {
    transform: skewX(0deg);
  }
}
.site-header.style-1 .extra-cell {
  display: flex;
  align-items: center;
}
.site-header.style-1 .extra-cell > a, .site-header.style-1 .extra-cell > div {
  margin-left: 30px;
}
@media only screen and (max-width: 1680px) {
  .site-header.style-1 .extra-cell > a, .site-header.style-1 .extra-cell > div {
    margin-left: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .site-header.style-1 .extra-cell .login-btn {
    display: none;
  }
}
.site-header.style-1 .extra-cell .login-btn i {
  font-size: 18px;
  margin-right: 10px;
  line-height: 18px;
}
.site-header.style-1 .extra-cell .btn-quote {
  padding: 14px 24px;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .site-header.style-1 .extra-cell {
    display: flex;
  }
}
.site-header.style-1 .ic-social-icon {
  display: none;
  text-align: center;
}
.site-header.style-1 .ic-social-icon li {
  display: inline-block;
  margin: 0 2px;
}
.site-header.style-1 .ic-social-icon a {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #eee;
  line-height: 38px;
  text-align: center;
  border-radius: 40px;
}
@media only screen and (max-width: 991px) {
  .site-header.style-1 .ic-social-icon {
    display: block;
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
.site-header.style-1 .header-nav .nav > li {
  font-family: "Roboto", sans-serif;
}
.site-header.style-1 .header-nav .nav > li > a {
  font-weight: 500;
  text-transform: uppercase;
}
@media only screen and (min-width: 991px) {
  .site-header.style-1 .header-nav .nav > li:last-child a:after {
    content: none;
  }
}
.site-header.style-1 .header-nav .nav > li.sub-menu-down > a {
  display: flex;
  align-items: center;
}
.site-header.style-1 .header-nav .nav > li.sub-menu-down > a:after {
  content: "\f067";
  font-size: 9px;
  margin-left: 10px;
  margin-top: 0;
}
@media only screen and (max-width: 1199px) {
  .site-header.style-1 .header-nav .nav > li.sub-menu-down > a:after {
    margin-left: 2px;
  }
}
@media only screen and (max-width: 991px) {
  .site-header.style-1 .header-nav .nav > li.sub-menu-down > a {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .site-header.style-1 .header-nav .nav > li.sub-menu-down.open > a:after {
    content: "\f068";
  }
}
.site-header.style-1 .header-nav .nav > li:hover > a,
.site-header.style-1 .header-nav .nav > li.active > a {
  color: var(--primary);
}
.site-header.style-1 .is-fixed .main-bar {
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
}
.site-header.style-1 .is-fixed .main-bar .container {
  box-shadow: none;
}
@media only screen and (max-width: 991px) {
  .site-header.style-1 {
    padding-top: 0;
    position: relative;
  }
}
.site-header.style-1 .phone-no {
  color: var(--primary);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 3px;
  margin: 0;
  font-family: "Roboto", sans-serif;
}
@media only screen and (max-width: 1680px) {
  .site-header.style-1 .phone-no {
    display: none;
  }
}
.site-header.style-1 .ic-topbar-right ul {
  margin-left: -5px;
  margin-right: -5px;
}
.site-header.style-1 .ic-topbar-right ul li {
  padding-left: 5px;
  padding-right: 5px;
}
@media only screen and (min-width: 991px) {
  .site-header.style-1.header-transparent .main-bar .container {
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
  }
}
.site-header.style-1.header-transparent .is-fixed .main-bar {
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
}
.site-header.style-1.header-transparent .is-fixed .main-bar .container {
  box-shadow: none;
}

.menu-btn {
  background: transparent;
  width: 45px;
  height: 45px;
  box-shadow: none;
  border-radius: 0.25rem;
}
@media only screen and (max-width: 1680px) {
  .menu-btn {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .menu-btn {
    display: none;
  }
}
.menu-btn span {
  background: #212529;
  left: 10px;
}
.menu-btn span:nth-child(1) {
  top: 14px;
  width: 25px;
}
.menu-btn span:nth-child(2) {
  top: 21.5px;
  width: 20px;
}
.menu-btn span:nth-child(3) {
  top: 29px;
  width: 15px;
}
.menu-btn.open span:nth-child(1) {
  top: 22px;
}
.menu-btn.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.menu-btn.open span:nth-child(3) {
  top: 22px;
  width: 25px;
}

.site-header.style-2 .top-bar {
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}
.site-header.style-2 .top-bar .ic-topbar-center ul i,
.site-header.style-2 .top-bar .ic-topbar-left ul i,
.site-header.style-2 .top-bar .ic-topbar-right ul i {
  color: var(--primary);
}
.site-header.style-2 .extra-nav .btn-quote i {
  display: none;
  font-size: 25px;
}
.site-header.style-2 .header-nav .nav {
  margin-left: 50px;
  padding-left: 30px;
  border-left: 1px solid #eee;
}
.site-header.style-2 .header-nav .nav > li > a {
  font-size: 17px;
  padding: 36px 20px;
}
@media only screen and (max-width: 991px) {
  .site-header.style-2 .header-nav .nav {
    margin-left: 0;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (max-width: 1400px) {
  .site-header.style-2 .header-nav .nav {
    margin-left: 20px;
    padding-left: 20px;
  }
  .site-header.style-2 .header-nav .nav > li > a {
    padding: 36px 18px;
  }
}
@media only screen and (max-width: 1280px) {
  .site-header.style-2 .header-nav .nav > li > a {
    padding: 36px 12px;
  }
}
@media only screen and (max-width: 1199px) {
  .site-header.style-2 .extra-nav .btn-quote {
    padding: 12px 14px;
    border-radius: var(--border-radius-sm);
  }
  .site-header.style-2 .extra-nav .btn-quote i {
    display: block;
  }
  .site-header.style-2 .extra-nav .btn-quote span {
    display: none;
  }
  .site-header.style-2 .header-nav .nav > li > a {
    padding: 36px 14px;
  }
}
@media only screen and (max-width: 991px) {
  .site-header.style-2 .header-nav .nav {
    margin: 0;
  }
  .site-header.style-2 .header-nav .nav > li > a {
    padding: 10px 0;
    color: #000;
  }
  .site-header.style-2 .header-nav .nav > li > a:before {
    content: none;
  }
}
.site-header.style-2.header-transparent .main-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.site-header.style-2.header-transparent .extra-nav .phone-call {
  color: #fff;
}
.site-header.style-2.header-transparent .top-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.site-header.style-2.header-transparent .header-nav .nav {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.site-header.style-2.header-transparent .is-fixed .extra-nav .phone-call {
  color: var(--title);
}
.site-header.style-2.header-transparent .is-fixed .header-nav .nav {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.site-header.header-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.header-nav.nav-style-1 .nav > li > a:before {
  content: "";
  height: 4px;
  background: var(--primary);
  width: 0;
  position: absolute;
  top: -1px;
  right: -1px;
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
}
.header-nav.nav-style-1 .nav > li:hover > a:before, .header-nav.nav-style-1 .nav > li.active > a:before {
  width: 100%;
  transform-origin: right;
  -moz-transform-origin: right;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  -o-transform-origin: right;
  right: auto;
  left: 0;
}

.site-header.style-3 .top-bar {
  border-bottom: 1px solid #eee;
}
.site-header.style-3 .top-bar .ic-topbar-center ul i,
.site-header.style-3 .top-bar .ic-topbar-left ul i,
.site-header.style-3 .top-bar .ic-topbar-right ul i {
  color: var(--primary);
}
.site-header.style-3 .header-nav .nav > li:after {
  content: "";
  height: 20px;
  width: 1px;
  background-color: #eee;
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}
.site-header.style-3 .header-nav .nav > li:hover > a, .site-header.style-3 .header-nav .nav > li.active > a {
  color: var(--primary);
}
.site-header.style-3 .extra-nav .btn-appointment i {
  font-size: 20px;
  margin-left: 5px;
}

/* SideNav ======= */
.site-header.style-4 {
  z-index: 99999;
}
.site-header .full-sidenav {
  position: fixed;
  left: -700px;
  max-width: 600px;
  width: 100%;
  top: 0;
  background: var(--primary);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  overflow-y: auto;
  z-index: 999;
  padding: 80px;
}
.site-header .full-sidenav.active {
  left: 0;
}
.site-header .full-sidenav .mCSB_container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.site-header .full-sidenav.nav {
  margin-bottom: auto;
}
@media only screen and (max-width: 991px) {
  .site-header .full-sidenav {
    max-width: 500px;
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .site-header .full-sidenav {
    padding: 10px 0;
    max-width: 320px;
  }
}
.site-header .full-sidenav .logo-header {
  display: block;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .site-header .full-sidenav .logo-header {
    margin-bottom: 20px;
  }
}
.site-header .full-sidenav .nav.navbar-nav {
  margin-bottom: auto;
}
.site-header.header-full .navbar-toggler {
  float: none;
  z-index: 9;
}
.site-header.header-full .navbar-toggler:focus {
  box-shadow: unset;
}
.site-header.header-full .menu-close {
  width: 50px;
  height: 50px;
  background: #212529;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 99;
  display: block;
  text-align: center;
  line-height: 53px;
  color: #fff;
  font-size: 18px;
}
.site-header.header-full .is-fixed .main-bar {
  box-shadow: none;
  background: transparent;
}

.header-content-bx {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  width: auto;
}
.header-content-bx .navbar-toggler {
  margin: 20px;
}
.header-content-bx .logo-header {
  padding: 0 40px 0 10px;
}
@media only screen and (max-width: 575px) {
  .header-content-bx {
    width: 100%;
  }
  .header-content-bx .navbar-toggler {
    margin: 15px;
  }
  .header-content-bx .logo-header {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 20px;
  }
}

.header-nav.full-sidenav .nav > li {
  text-transform: capitalize;
}
.header-nav.full-sidenav .nav > li.sub-menu-down > a:after {
  float: right;
  font-size: 20px;
  margin-top: 3px;
}
.header-nav.full-sidenav .nav > li > a {
  color: #fff;
  padding: 10px 0;
  width: 100%;
  font-weight: 700;
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .header-nav.full-sidenav .nav > li > a {
    font-size: 20px;
    font-weight: 500;
  }
}
.header-nav.full-sidenav .nav > li .sub-menu,
.header-nav.full-sidenav .nav > li .mega-menu {
  box-shadow: none;
  -webkit-transition: unset;
  -moz-transition: unset;
  -ms-transition: unset;
  -o-transition: unset;
  transition: unset;
  width: 100%;
  padding: 0;
  min-width: 100%;
  margin-top: 0;
  background: transparent;
  padding: 10px 0;
}
.header-nav.full-sidenav .nav > li .sub-menu li a,
.header-nav.full-sidenav .nav > li .mega-menu li a {
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 400;
}
.header-nav.full-sidenav .nav > li > .sub-menu, .header-nav.full-sidenav .nav > li:hover > .sub-menu, .header-nav.full-sidenav .nav > li > .mega-menu, .header-nav.full-sidenav .nav > li:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  position: unset;
}
.header-nav.full-sidenav .social-menu,
.header-nav.full-sidenav .logo-header,
.header-nav.full-sidenav .nav {
  float: none;
  width: 100%;
}
.header-nav.full-sidenav .mCustomScrollBox {
  width: 100%;
}

.social-menu {
  margin-top: 50px;
}
.social-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 15px;
}
.social-menu ul li {
  display: inline-block;
}
.social-menu ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  padding-right: 15px;
}
.social-menu ul li a i {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.social-menu ul li a:hover {
  color: #fff;
}
.social-menu ul li a:hover i {
  transform: scale(1.3);
}
.social-menu .copyright-head {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 767px) {
  .social-menu {
    padding: 20px 30px;
  }
}

@media only screen and (max-width: 991px) {
  .mo-left.style-4 .header-nav .nav > li {
    border-bottom: 0;
  }
  .mo-left.style-4 .header-nav .nav > li .mega-menu,
  .mo-left.style-4 .header-nav .nav > li .sub-menu {
    border-top: 0;
  }
  .mo-left.style-4 .header-nav .nav > li .mega-menu li a:after,
  .mo-left.style-4 .header-nav .nav > li .sub-menu li a:after {
    content: none;
  }
  .mo-left.style-4 .navbar-toggler.open:after {
    content: none;
  }
}
@media only screen and (max-width: 575px) {
  .mo-left.style-4 {
    position: relative;
  }
}

/* SideNav ======= */
.site-header.style-5 {
  z-index: 99999;
}
.site-header.style-5 .ic-topbar-right ul li a, .site-header.style-5 .ic-topbar-left ul li a {
  border: 0 !important;
}
.site-header.style-5 .top-bar::after {
  display: none;
}

.ic-bnr-inr {
  background: #f8f8f8;
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .ic-bnr-inr {
    height: 300px;
  }
}
@media only screen and (max-width: 575px) {
  .ic-bnr-inr {
    height: 250px;
  }
}
.ic-bnr-inr .container {
  display: table;
  height: 100%;
}
.ic-bnr-inr .ic-bnr-inr-entry {
  height: 450px;
  vertical-align: middle;
  display: table-cell;
}
@media only screen and (max-width: 991px) {
  .ic-bnr-inr .ic-bnr-inr-entry {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .ic-bnr-inr .ic-bnr-inr-entry {
    text-align: center;
  }
  .ic-bnr-inr .ic-bnr-inr-entry .breadcrumb-row {
    display: inline-block;
  }
}
@media only screen and (max-width: 575px) {
  .ic-bnr-inr .ic-bnr-inr-entry {
    height: 250px;
  }
}
.ic-bnr-inr h1, .ic-bnr-inr .h1 {
  font-weight: 700;
  font-size: 80px;
  margin-bottom: 10px;
  text-transform: capitalize;
  line-height: 1.1;
}
@media only screen and (max-width: 1400px) {
  .ic-bnr-inr h1, .ic-bnr-inr .h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .ic-bnr-inr h1, .ic-bnr-inr .h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .ic-bnr-inr h1, .ic-bnr-inr .h1 {
    font-size: 36px;
  }
}
.ic-bnr-inr p {
  max-width: 600px;
  margin: auto;
  color: #fff;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .ic-bnr-inr p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .ic-bnr-inr p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.ic-bnr-inr.ic-bnr-inr-lg {
  height: 600px;
}
.ic-bnr-inr.ic-bnr-inr-lg .ic-bnr-inr-entry {
  height: 600px;
}
@media only screen and (max-width: 991px) {
  .ic-bnr-inr.ic-bnr-inr-lg {
    height: 400px;
  }
  .ic-bnr-inr.ic-bnr-inr-lg .ic-bnr-inr-entry {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .ic-bnr-inr.ic-bnr-inr-lg {
    height: 320px;
  }
  .ic-bnr-inr.ic-bnr-inr-lg .ic-bnr-inr-entry {
    height: 320px;
  }
}
@media only screen and (max-width: 575px) {
  .ic-bnr-inr.ic-bnr-inr-lg {
    height: 250px;
  }
  .ic-bnr-inr.ic-bnr-inr-lg .ic-bnr-inr-entry {
    height: 250px;
  }
}
.ic-bnr-inr.ic-bnr-inr-md {
  height: 50px;
}
.ic-bnr-inr.ic-bnr-inr-md .ic-bnr-inr-entry {
  height: 50px;
}
@media only screen and (max-width: 991px) {
  .ic-bnr-inr.ic-bnr-inr-md {
    height: 50px;
  }
  .ic-bnr-inr.ic-bnr-inr-md .ic-bnr-inr-entry {
    height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .ic-bnr-inr.ic-bnr-inr-md {
    height: 50px;
  }
  .ic-bnr-inr.ic-bnr-inr-md .ic-bnr-inr-entry {
    height: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .ic-bnr-inr.ic-bnr-inr-md {
    height: 50px;
  }
  .ic-bnr-inr.ic-bnr-inr-md .ic-bnr-inr-entry {
    height: 50px;
  }
}
.ic-bnr-inr.ic-bnr-inr-sm {
  height: 300px;
}
.ic-bnr-inr.ic-bnr-inr-sm .ic-bnr-inr-entry {
  height: 300px;
}
.ic-bnr-inr.ic-bnr-inr-sm h1, .ic-bnr-inr.ic-bnr-inr-sm .h1 {
  font-size: 52px;
}
@media only screen and (max-width: 991px) {
  .ic-bnr-inr.ic-bnr-inr-sm h1, .ic-bnr-inr.ic-bnr-inr-sm .h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .ic-bnr-inr.ic-bnr-inr-sm h1, .ic-bnr-inr.ic-bnr-inr-sm .h1 {
    font-size: 36px;
  }
}
.ic-bnr-inr.ic-bnr-inr-sm p {
  font-size: 16px;
}
@media only screen and (max-width: 575px) {
  .ic-bnr-inr.ic-bnr-inr-sm {
    height: 250px;
  }
  .ic-bnr-inr.ic-bnr-inr-sm .ic-bnr-inr-entry {
    height: 250px;
  }
}
.ic-bnr-inr.bnr-no-img:before {
  content: none;
}

.breadcrumb-row {
  display: inline-table;
}
.breadcrumb-row .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.breadcrumb-row .breadcrumb .breadcrumb-item {
  position: relative;
  margin: 0;
  padding-left: 30px;
  padding-right: 15px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}
.breadcrumb-row .breadcrumb .breadcrumb-item.active {
  color: #fff;
}
.breadcrumb-row .breadcrumb .breadcrumb-item a {
  color: #fff;
}
.breadcrumb-row .breadcrumb .breadcrumb-item::before {
  content: "\f113";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "flaticon";
  font-size: 16px;
  color: #fff;
}
.breadcrumb-row .breadcrumb .breadcrumb-item:first-child {
  padding-left: 0;
}
.breadcrumb-row .breadcrumb .breadcrumb-item:first-child::before {
  content: none;
}
.breadcrumb-row .breadcrumb .breadcrumb-item:last-child {
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  .breadcrumb-row .breadcrumb .breadcrumb-item {
    font-size: 14px;
  }
  .breadcrumb-row .breadcrumb .breadcrumb-item::before {
    font-size: 14px;
  }
}

.ic-bnr-inr.style-1 {
  position: relative;
}
.ic-bnr-inr.style-1 h1, .ic-bnr-inr.style-1 .h1 {
  margin-bottom: 35px;
  color: #fff;
  text-decoration: 7px underline var(--primary);
  text-underline-offset: 5px;
}
@media only screen and (max-width: 1199px) {
  .ic-bnr-inr.style-1 h1, .ic-bnr-inr.style-1 .h1 {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .ic-bnr-inr.style-1 h1, .ic-bnr-inr.style-1 .h1 {
    text-decoration: 3px underline var(--primary);
    text-underline-offset: 3px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .ic-bnr-inr.style-1 h1, .ic-bnr-inr.style-1 .h1 {
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 991px) {
  .ic-bnr-inr.style-1 .ic-media {
    display: none;
  }
  .ic-bnr-inr.style-1 .ic-bnr-inr-entry {
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .ic-bnr-inr.style-1 h1, .ic-bnr-inr.style-1 .h1 {
    margin-bottom: 15px;
  }
}

.site-header.style-1.header-transparent + .page-content .ic-bnr-inr .ic-bnr-inr-entry {
  padding-top: 140px;
}
@media only screen and (max-width: 991px) {
  .site-header.style-1.header-transparent + .page-content .ic-bnr-inr .ic-bnr-inr-entry {
    padding-top: 0;
  }
}

.ic-bnr-inr.style-2 {
  margin-bottom: 25px;
  overflow: unset;
}
@media only screen and (max-width: 575px) {
  .ic-bnr-inr.style-2 {
    margin-bottom: 0;
  }
}
.ic-bnr-inr.style-2 .ic-bnr-inr-entry {
  padding-top: 0;
  text-align: center;
}
.ic-bnr-inr.style-2 h1, .ic-bnr-inr.style-2 .h1 {
  color: #fff;
}
.ic-bnr-inr.style-2:after {
  content: "";
  background-image: url(../images/banner/pattern1.png);
  background-size: cover;
  z-index: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.ic-bnr-inr.style-2 .breadcrumb-row {
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  display: inline-table;
  padding: 0 15px;
  min-width: fit-content;
}
.ic-bnr-inr.style-2 .breadcrumb-row .breadcrumb {
  margin: 0;
  background-color: #fff;
  padding: 15px 30px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-width: 0 0 6px;
  border-style: solid;
  border-color: var(--primary);
  border-radius: var(--border-radius-sm);
}
.ic-bnr-inr.style-2 .breadcrumb-row .breadcrumb .breadcrumb-item {
  color: var(--title);
}
.ic-bnr-inr.style-2 .breadcrumb-row .breadcrumb .breadcrumb-item a {
  color: var(--title);
}
.ic-bnr-inr.style-2 .breadcrumb-row .breadcrumb .breadcrumb-item::before {
  color: var(--primary);
}
@media only screen and (max-width: 575px) {
  .ic-bnr-inr.style-2 .breadcrumb-row {
    position: unset;
    transform: unset;
    padding: 0;
  }
  .ic-bnr-inr.style-2 .breadcrumb-row .breadcrumb {
    padding: 10px 18px;
    border-width: 0 0 3px;
  }
  .ic-bnr-inr.style-2 .breadcrumb-row .breadcrumb .breadcrumb-item {
    padding-left: 25px;
    padding-right: 10px;
  }
  .ic-bnr-inr.style-2 .breadcrumb-row .breadcrumb .breadcrumb-item::before {
    font-size: 13px;
  }
  .ic-bnr-inr.style-2 .breadcrumb-row .breadcrumb .breadcrumb-item:first-child {
    padding-left: 0;
  }
  .ic-bnr-inr.style-2 .breadcrumb-row .breadcrumb .breadcrumb-item:last-child {
    padding-right: 0;
  }
}
.ic-bnr-inr.style-2 .bg-shape-left {
  height: 1000px;
  width: 1000px;
  background-color: var(--rgba-primary-6);
  left: -560px;
  position: absolute;
  transform: rotate(40deg);
  top: -440px;
}
.ic-bnr-inr.style-2 .bg-shape-left:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 100px;
  background-color: var(--rgba-primary-4);
}
.ic-bnr-inr.style-2 .bg-shape-left:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 200px;
  background-color: var(--rgba-primary-8);
}
@media only screen and (max-width: 1199px) {
  .ic-bnr-inr.style-2 .bg-shape-left {
    height: 800px;
    width: 850px;
  }
}
@media only screen and (max-width: 767px) {
  .ic-bnr-inr.style-2 .bg-shape-left {
    height: 700px;
    width: 800px;
  }
  .ic-bnr-inr.style-2 .bg-shape-left:after {
    right: 50px;
  }
  .ic-bnr-inr.style-2 .bg-shape-left:before {
    right: 100px;
  }
}
@media only screen and (max-width: 575px) {
  .ic-bnr-inr.style-2 .bg-shape-left {
    width: 700px;
  }
  .ic-bnr-inr.style-2 .bg-shape-left:after {
    right: 30px;
  }
  .ic-bnr-inr.style-2 .bg-shape-left:before {
    right: 60px;
  }
}
.ic-bnr-inr.style-2 .bg-shape-right {
  height: 400px;
  width: 500px;
  background-color: var(--rgba-primary-6);
  transform: rotate(40deg);
  position: absolute;
  right: -320px;
  bottom: -300px;
}
@media only screen and (max-width: 1199px) {
  .ic-bnr-inr.style-2 .bg-shape-right {
    height: 350px;
    width: 450px;
    right: -290px;
    bottom: -260px;
  }
}
@media only screen and (max-width: 767px) {
  .ic-bnr-inr.style-2 .bg-shape-right {
    width: 400px;
  }
}
@media only screen and (max-width: 575px) {
  .ic-bnr-inr.style-2 .bg-shape-right {
    height: 250px;
    width: 390px;
  }
}
.ic-bnr-inr.style-2 .shap-bx {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.page-title {
  padding: 30px 0;
}
.page-title.dashboard {
  background: transparent;
  margin-left: 75px;
  padding: 20px 0 0px;
}
.page-title .page-title-content p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
}
.page-title .page-title-content p span {
  font-weight: 500;
  color: var(--primary);
}

.breadcrumbs {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 575px) {
  .breadcrumbs {
    justify-content: flex-start;
  }
}
.breadcrumbs li a {
  color: #AEAED5;
  display: inline-block;
  margin-left: 15px;
  font-size: 14px;
}
.breadcrumbs li:first-child a {
  margin-left: 0px;
}
.breadcrumbs li.active a {
  color: var(--primary);
}

.bottom {
  background: #1b2a4e;
}
@media only screen and (max-width: 575px) {
  .bottom {
    padding-bottom: 0;
  }
}
.bottom .bottom-logo p {
  line-height: 30px;
  font-weight: 400;
  color: #aaaaaa;
}
@media only screen and (max-width: 991px) {
  .bottom .bottom-widget {
    margin-bottom: 30px;
  }
}
.bottom .bottom-widget .widget-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.bottom .bottom-widget ul li a {
  color: #aaaaaa;
  font-weight: 400;
  margin-bottom: 10px;
  display: inline-block;
}

footer {
  font-size: 15px;
}
footer .widget {
  margin-bottom: 40px;
}
footer strong {
  color: #fff;
}
footer .footer-logo {
  margin-bottom: 25px;
}
footer .footer-logo img {
  max-width: 100%;
  filter: brightness(0) invert(1);
}
footer .widget-logo ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
footer .widget-logo ul li {
  display: inline-block;
  flex: 50%;
  padding: 0 15px 15px 0px;
}
footer .widget_about p {
  margin-bottom: 20px;
  line-height: 24px;
}
footer .footer-title {
  margin: 0;
  font-weight: 700;
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
  color: #fff;
  line-height: 1.2;
}
footer .footer-title .ic-separator {
  position: absolute;
  bottom: 0;
  left: 0;
}
footer .widget:hover .footer-title span:after {
  width: 5px;
}
footer .widget:hover .footer-title span:before {
  width: 55px;
}
footer .footer-top {
  padding: 70px 0 20px;
}
@media only screen and (max-width: 767px) {
  footer .footer-top {
    padding: 50px 0 0;
  }
}
footer .footer-bottom {
  background-color: #36404a;
  font-size: 15px;
  padding: 15px 0;
}
footer .footer-bottom .copyright-text a {
  color: #fff;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  footer .footer-bottom {
    text-align: center;
  }
  footer .footer-bottom .text-end {
    margin-top: 10px;
  }
}
footer .widget-link li {
  display: inline-block;
  text-transform: uppercase;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  footer .widget-link li {
    margin-left: 8px;
    margin-right: 7px;
  }
}
footer .widget-link a {
  color: #fff;
}
footer .widget_services ul li a {
  color: #fff;
  display: block;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
footer .widget_services.style-1 ul li a {
  padding: 5px 0 5px 15px;
}
footer .widget_services.style-1 ul li a:before {
  content: "\f105";
  font-family: fontawesome;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}
footer .wp-block-latest-posts li,
footer .wp-block-categories-list li,
footer .wp-block-archives-list li,
footer .widget_categories ul li,
footer .widget_archive ul li,
footer .widget_meta ul li,
footer .widget_pages ul li,
footer .widget_recent_comments ul li,
footer .widget_nav_menu li,
footer .widget_recent_entries ul li,
footer .widget_services ul li {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}

.widget_getintuch ul li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 52px;
  min-height: 45px;
}
.widget_getintuch ul li h5, .widget_getintuch ul li .h5 {
  font-size: 20px;
  line-height: 1.33;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1199px) {
  .widget_getintuch ul li h5, .widget_getintuch ul li .h5 {
    font-size: 18px;
    line-height: 1.2;
  }
}
.widget_getintuch ul li i {
  position: absolute;
  left: 0;
  top: 4px;
  height: 40px;
  width: 40px;
  min-width: 40px;
  line-height: 40px;
  margin-right: 10px;
  text-align: center;
  background-color: var(--primary);
  display: block;
  color: #fff;
  font-size: 16px;
  border-radius: var(--border-radius-lg);
}

.contact-ft-1 {
  text-align: center;
  margin-bottom: 40px;
}
.contact-ft-1 i {
  color: var(--primary);
  font-size: 50px;
  line-height: 1;
  margin-bottom: 15px;
  display: inline-block;
}
.contact-ft-1 h4, .contact-ft-1 .h4 {
  color: #fff;
  text-decoration: underline;
}
.contact-ft-1 h5, .contact-ft-1 .h5 {
  color: #fff;
  font-weight: 400;
}

.list-column ul {
  display: flex;
  flex-wrap: wrap;
}
.list-column ul li {
  flex: 0 0 50%;
  max-width: 50%;
}

.fb-link {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fb-link li {
  display: inline-block;
}
.fb-link li a {
  color: #fff;
  position: relative;
}
.fb-link li a:after {
  content: "";
  background: var(--primary);
  width: 5px;
  height: 5px;
}

.footer-link li {
  display: inline-block;
  position: relative;
  padding: 0 25px 0 20px;
}
.footer-link li a {
  color: inherit;
}
.footer-link li:before {
  content: "";
  height: 8px;
  width: 8px;
  background-color: var(--primary);
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 4px;
  transform: translateY(-50%);
}

.widget_time ul li {
  display: block;
  margin-bottom: 5px;
}
.widget_time ul li label {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  margin-right: 3px;
}

.ft-subscribe form button.btn, .ft-subscribe form button.wp-block-button__link {
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  height: 60px;
  width: 60px;
  padding: 0;
  justify-content: center;
  text-align: center;
}
.ft-subscribe.style-2 {
  box-shadow: 1px 1.732px 60px 0px rgba(0, 0, 0, 0.1);
}
.ft-subscribe.style-2 button.btn, .ft-subscribe.style-2 button.wp-block-button__link {
  margin: 0;
  padding: 18px 30px;
  width: unset;
  height: unset;
}
.ft-subscribe.style-2 button.btn i, .ft-subscribe.style-2 button.wp-block-button__link i {
  display: none;
}
@media only screen and (max-width: 575px) {
  .ft-subscribe.style-2 button.btn span, .ft-subscribe.style-2 button.wp-block-button__link span {
    display: none;
  }
  .ft-subscribe.style-2 button.btn i, .ft-subscribe.style-2 button.wp-block-button__link i {
    display: block;
  }
}
.ft-subscribe.style-2 .form-control, .ft-subscribe.style-2 .wp-block-categories-dropdown select, .wp-block-categories-dropdown .ft-subscribe.style-2 select,
.ft-subscribe.style-2 .wp-block-archives-dropdown select,
.wp-block-archives-dropdown .ft-subscribe.style-2 select, .ft-subscribe.style-2 .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-author .ft-subscribe.style-2 input, .ft-subscribe.style-2 .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-email .ft-subscribe.style-2 input, .ft-subscribe.style-2 .comment-respond .comment-form p.comment-form-url input, .comment-respond .comment-form p.comment-form-url .ft-subscribe.style-2 input,
.ft-subscribe.style-2 .comment-respond .comment-form p textarea,
.comment-respond .comment-form p .ft-subscribe.style-2 textarea {
  height: 80px;
  background-color: #fff;
}
.ft-subscribe.style-2 .form-control::placeholder, .ft-subscribe.style-2 .wp-block-categories-dropdown select::placeholder, .wp-block-categories-dropdown .ft-subscribe.style-2 select::placeholder,
.ft-subscribe.style-2 .wp-block-archives-dropdown select::placeholder,
.wp-block-archives-dropdown .ft-subscribe.style-2 select::placeholder, .ft-subscribe.style-2 .comment-respond .comment-form p.comment-form-author input::placeholder, .comment-respond .comment-form p.comment-form-author .ft-subscribe.style-2 input::placeholder, .ft-subscribe.style-2 .comment-respond .comment-form p.comment-form-email input::placeholder, .comment-respond .comment-form p.comment-form-email .ft-subscribe.style-2 input::placeholder, .ft-subscribe.style-2 .comment-respond .comment-form p.comment-form-url input::placeholder, .comment-respond .comment-form p.comment-form-url .ft-subscribe.style-2 input::placeholder,
.ft-subscribe.style-2 .comment-respond .comment-form p textarea::placeholder,
.comment-respond .comment-form p .ft-subscribe.style-2 textarea::placeholder {
  color: #777777;
  font-family: var(--font-family-base);
  letter-spacing: 0;
}
@media only screen and (max-width: 575px) {
  .ft-subscribe.style-2 {
    box-shadow: none;
  }
  .ft-subscribe.style-2 .form-control, .ft-subscribe.style-2 .wp-block-categories-dropdown select, .wp-block-categories-dropdown .ft-subscribe.style-2 select,
  .ft-subscribe.style-2 .wp-block-archives-dropdown select,
  .wp-block-archives-dropdown .ft-subscribe.style-2 select, .ft-subscribe.style-2 .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-author .ft-subscribe.style-2 input, .ft-subscribe.style-2 .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-email .ft-subscribe.style-2 input, .ft-subscribe.style-2 .comment-respond .comment-form p.comment-form-url input, .comment-respond .comment-form p.comment-form-url .ft-subscribe.style-2 input,
  .ft-subscribe.style-2 .comment-respond .comment-form p textarea,
  .comment-respond .comment-form p .ft-subscribe.style-2 textarea {
    box-shadow: 1px 1.732px 60px 0px rgba(0, 0, 0, 0.1);
    height: 60px;
  }
}

.ft-subscribe-wrapper {
  margin-bottom: -40px;
}
@media only screen and (max-width: 575px) {
  .ft-subscribe-wrapper {
    margin-bottom: -30px;
  }
}

.site-footer .recent-posts-entry .widget-post-bx .widget-post .ic-media {
  width: 80px;
  min-width: 80px;
  border-radius: var(--border-radius-sm);
}
.site-footer .recent-posts-entry .widget-post-bx .widget-post .title {
  font-family: var(--font-family-base);
}
.site-footer .recent-posts-entry .widget-post-bx .widget-post .title a {
  color: #fff;
}
.site-footer .recent-posts-entry .widget-post-bx .widget-post .ic-info {
  padding-left: 15px;
}
.site-footer.style-1 {
  color: #9d9aaa;
  background-color: var(--secondary);
  background-position: center;
  background-size: cover;
}
.site-footer.style-1 .footer-top {
  padding: 120px 0 80px;
}
.site-footer.style-1 .footer-top .text {
  margin: 0 50px 45px;
}
.site-footer.style-1 .footer-top .footer-logo {
  margin-bottom: 25px;
}
.site-footer.style-1 .footer-top .footer-logo img {
  height: 60px;
}
.site-footer.style-1 .widget-title {
  margin-bottom: 25px;
}
.site-footer.style-1 .widget-title .title {
  color: #fff;
}
.site-footer.style-1 .footer-bottom {
  background-color: rgba(0, 0, 0, 0.3);
  background-position: center;
  background-size: cover;
  padding: 0;
}
.site-footer.style-1 .footer-bottom .fb-inner {
  padding-top: 20px;
  padding-bottom: 20px;
}
.site-footer.style-1 .footer-bottom ul li {
  display: inline-block;
}
.site-footer.style-1 .footer-bottom ul li a {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.site-footer.style-1 .footer-bottom ul li a:hover {
  color: var(--primary);
}
.site-footer.style-1 .footer-bottom ul li:before {
  color: var(--primary);
}
.site-footer.style-1 .footer-bottom ul li:last-child {
  padding-right: 0;
}
.site-footer.style-1 .footer-title {
  padding-bottom: 0;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1400px) {
  .site-footer.style-1 .footer-top {
    padding: 100px 0 60px;
  }
}
@media only screen and (max-width: 991px) {
  .site-footer.style-1 .footer-top {
    padding: 70px 0 30px;
  }
  .site-footer.style-1 .footer-bottom .text-end {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .site-footer.style-1 .footer-top {
    padding: 50px 0 10px;
  }
  .site-footer.style-1 .footer-top .text {
    margin: 0 0px 30px;
  }
  .site-footer.style-1 .footer-top .footer-logo {
    margin-bottom: 30px;
  }
}

.site-footer.style-2 {
  color: #fff;
  background-color: var(--primary-dark);
  background-position: center;
  background-size: cover;
}
.site-footer.style-2 .footer-info {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 60px 0;
}
.site-footer.style-2 .footer-info .footer-logo {
  margin-bottom: 0;
  max-width: 100%;
}
.site-footer.style-2 .footer-info .footer-logo img {
  height: 60px;
}
.site-footer.style-2 .footer-info .widget_categories {
  padding-left: 0;
  margin-bottom: 0;
}
.site-footer.style-2 .footer-info .widget_categories ul {
  margin: 0 -15px;
}
.site-footer.style-2 .footer-info .widget_categories ul li {
  display: inline-block;
  width: auto;
  margin: 0 15px;
}
.site-footer.style-2 .footer-top {
  padding: 80px 0 40px;
}
.site-footer.style-2 .footer-top .text {
  margin: 0 50px 45px;
}
.site-footer.style-2 .footer-top .footer-logo {
  margin-bottom: 25px;
}
.site-footer.style-2 .footer-top .footer-logo img {
  height: 60px;
}
.site-footer.style-2 .widget-title {
  margin-bottom: 20px;
}
.site-footer.style-2 .widget-title .title {
  color: #fff;
}
.site-footer.style-2 .widget_about {
  padding-right: 15px;
}
.site-footer.style-2 .widget_categories {
  padding-left: 50px;
}
.site-footer.style-2 .footer-link li a {
  color: #fff;
}
.site-footer.style-2 .footer-bottom {
  background-color: #09090c;
  background-position: center;
  background-size: cover;
  padding: 0;
}
.site-footer.style-2 .footer-bottom .fb-inner {
  padding-top: 20px;
  padding-bottom: 20px;
}
.site-footer.style-2 .footer-bottom ul li {
  display: inline-block;
}
.site-footer.style-2 .footer-bottom ul li a {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.site-footer.style-2 .footer-bottom ul li a:hover {
  color: var(--primary);
}
.site-footer.style-2 .footer-bottom ul li:before {
  color: var(--primary);
}
.site-footer.style-2 .footer-bottom ul li:last-child {
  padding-right: 0;
}
.site-footer.style-2 .footer-title {
  padding-bottom: 0;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .site-footer.style-2 .widget_categories {
    padding-left: 0;
  }
  .site-footer.style-2 .widget_about {
    padding-right: 0;
  }
  .site-footer.style-2 .footer-info {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 991px) {
  .site-footer.style-2 .footer-top {
    padding: 70px 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .site-footer.style-2 .footer-bottom .text-end {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .site-footer.style-2 .footer-top {
    padding: 50px 0 10px;
  }
  .site-footer.style-2 .footer-top .text {
    margin: 0 0px 30px;
  }
  .site-footer.style-2 .footer-top .footer-logo {
    margin-bottom: 30px;
  }
  .site-footer.style-2 .footer-info {
    padding: 40px 5px 30px;
  }
}

.site-footer.style-3 {
  background-color: var(--secondary);
}
.site-footer.style-3 .widget-title .title {
  color: #fff;
}
.site-footer.style-3 .footer-logo {
  margin-bottom: 15px;
}
.site-footer.style-3 .footer-logo img {
  height: 70px;
}
.site-footer.style-3 .icon-bx-wraper.style-13 .icon-bx {
  background-color: inherit;
}
.site-footer.style-3 .icon-bx-wraper.style-13 .title {
  color: #fff;
}
.site-footer.style-3 .footer-logo-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 50px;
  padding-bottom: 20px;
  align-items: center;
}
.site-footer.style-3 .footer-logo-head .icon-bx-wraper {
  float: right;
}
@media only screen and (max-width: 575px) {
  .site-footer.style-3 .footer-logo-head {
    margin-bottom: 30px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .site-footer.style-3 .footer-logo-head .icon-bx-wraper {
    float: unset;
    justify-content: center;
  }
  .site-footer.style-3 .footer-logo-head .footer-logo {
    margin-bottom: 35px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .site-footer.style-3 .footer-logo-head .icon-bx-wraper .icon-bx {
    line-height: 58px;
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  .site-footer.style-3 .footer-logo-head .icon-bx-wraper .icon-bx i {
    font-size: 26px;
  }
  .site-footer.style-3 .footer-logo-head .icon-bx-wraper .title {
    font-size: 18px;
  }
  .site-footer.style-3 .footer-logo-head .icon-bx-wraper p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .site-footer.style-3 .footer-logo-head {
    padding-bottom: 10px;
  }
  .site-footer.style-3 .footer-logo-head .footer-logo {
    max-width: 200px;
  }
  .site-footer.style-3 .footer-logo-head .icon-bx-wraper {
    justify-content: start;
    margin-bottom: 20px;
  }
}
.site-footer.style-3 .footer-top {
  padding: 120px 0 70px;
}
.site-footer.style-3 .footer-top .widget_about p {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .site-footer.style-3 .footer-top {
    padding: 80px 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .site-footer.style-3 .footer-top .widget_categories.p-l50 {
    padding-left: 0;
    padding-right: 0;
  }
  .site-footer.style-3 .footer-top .widget_about p {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .site-footer.style-3 .footer-top {
    padding: 50px 0 20px;
  }
}
.site-footer.style-3 .footer-bottom {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px 0;
}
.site-footer.style-3 .footer-bottom .copyright-text {
  color: inherit;
}
.site-footer.style-3 .footer-bottom .footer-link li a {
  color: inherit;
}
@media only screen and (max-width: 991px) {
  .site-footer.style-3 .footer-bottom .text-start {
    margin-bottom: 5px;
  }
}

.site-footer.style-4 {
  color: #777777;
  background-color: #f8f8f8;
  position: relative;
  z-index: 0;
  padding-top: 30px;
}
.site-footer.style-4 .widget_getintuch ul li i {
  background-color: transparent;
  color: var(--primary);
  font-size: 35px;
  text-align: left;
  width: 25px;
  min-width: 25px;
}
.site-footer.style-4 .widget_links ul li {
  padding: 5px 0;
}
.site-footer.style-4 .widget_links ul li a {
  color: #777777;
}
.site-footer.style-4 .widget_links ul li:before {
  position: relative;
  content: "";
  display: inline-block;
  top: -5px;
  width: 0;
  height: 1px;
  background: var(--primary);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.site-footer.style-4 .widget_links ul li:hover:before {
  width: 20px;
  margin-right: 8px;
}
.site-footer.style-4 .widget_links ul li:hover a {
  color: var(--primary);
}
@media only screen and (max-width: 991px) {
  .site-footer.style-4 .widget.widget_links.p-l50 {
    padding-left: 0;
  }
}
.site-footer.style-4 .copyright-text {
  color: inherit;
}
.site-footer.style-4 .footer-top {
  padding: 100px 0 50px 0px;
}
@media only screen and (max-width: 991px) {
  .site-footer.style-4 .footer-top {
    padding: 100px 0 50px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .site-footer.style-4 .footer-top {
    padding: 50px 0;
  }
}
.site-footer.style-4 .footer-bottom {
  background-color: #ebebeb;
  z-index: 1;
  position: relative;
}
.site-footer.style-4 .circle-bg {
  position: absolute;
  opacity: 1;
  top: 80px;
  left: -7%;
  z-index: -1;
  width: 320px;
}
.site-footer.style-4 .circle-bg-2 {
  position: absolute;
  opacity: 1;
  bottom: 0;
  right: -2%;
  width: 220px;
  z-index: -1;
}

.site-footer.style-5 {
  background-color: #fff;
  border-top: 1px solid #d3d3d3;
  position: relative;
}
.site-footer.style-5 .widget-title {
  margin-bottom: 15px;
}

.site-footer.style-6 {
  position: relative;
}
.site-footer.style-6 .overlay-black-light:before,
.site-footer.style-6 .overlay-black-middle:before,
.site-footer.style-6 .overlay-black-dark:before {
  background-color: #070613;
}
.site-footer.style-6 .footer-logo img {
  height: 60px;
}
.site-footer.style-6 .widget_categories li {
  padding-left: 0 !important;
}
.site-footer.style-6 .widget_categories li a {
  color: #fff;
}
.site-footer.style-6 .widget_categories li a::before {
  opacity: 0;
}
.site-footer.style-6 .widget_categories li:hover {
  padding-left: 0.5rem !important;
}
.site-footer.style-6 .widget_categories li:hover a {
  color: var(--primary);
}
.site-footer.style-6 .widget_categories li:hover a::before {
  opacity: 1;
}
.site-footer.style-6 .widget-title {
  margin-bottom: 15px;
}
.site-footer.style-6 .widget-title .title {
  color: #fff;
}
.site-footer.style-6 .widget_about {
  font-weight: 500;
  color: #fff;
}
.site-footer.style-6 .widget_gallery ul {
  margin-left: -5px;
  margin-right: -5px;
}
.site-footer.style-6 .widget_gallery li {
  padding: 5px;
}
.site-footer.style-6 .widget_gallery li img {
  min-height: 80px;
  object-fit: cover;
}
.site-footer.style-6 .footer-bottom {
  background: #161525;
}
.site-footer.style-6 .footer-bottom .copyright-text {
  color: rgba(255, 255, 255, 0.7);
}
.site-footer.style-6 .footer-bottom .footer-link li::before {
  display: none;
}
.site-footer.style-6 .footer-bottom .footer-link li a {
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 575px) {
  .site-footer.style-6 .footer-bottom .footer-link li {
    padding: 0 10px;
  }
}
.site-footer.style-6 .footer-link {
  margin: 0 -12px;
}
.site-footer.style-6 .footer-link li {
  padding: 0 12px;
}
.site-footer.style-6 .widget-title .title {
  margin-bottom: 5px;
}

.ic-separator.style-3 {
  width: 60px;
  height: 2px;
  border-radius: 2px;
  margin: 0;
  background: var(--primary);
  display: block;
}

#bg {
  background-attachment: fixed;
  background-size: cover;
}

.main-bar-wraper.sticky-no .main-bar {
  position: unset;
}

@media only screen and (min-width: 1680px) {
  .boxed .under-construct {
    padding: 50px;
  }
  .boxed .under-construct .ic-content .ic-title {
    font-size: 70px;
  }
  .boxed .under-construct .ic-content p {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1680px) {
  .frame .ic-coming-bx {
    padding-left: 30px;
    padding-right: 30px;
  }
  .frame .countdown .date .time {
    font-size: 70px;
    line-height: 70px;
  }
}
@media only screen and (min-width: 1199px) {
  .boxed .container-fluid, .boxed .container-sm, .boxed .container-md, .boxed .container-lg, .boxed .container-xl {
    padding-left: 15px;
    padding-right: 15px;
  }
  .boxed .page-wraper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .boxed .footer-fixed .site-footer {
    left: 50%;
    width: 1200px;
    margin: 0 -600px;
  }
  .boxed .site-header.style-2 .header-nav .nav {
    margin-left: 20px;
    padding-left: 20px;
  }
  .boxed .site-header.style-2 .extra-nav .phone-call {
    display: none;
  }
  .boxed .site-header.style-2 .extra-nav .btn-quote {
    padding: 12px 14px;
    border-radius: var(--border-radius-sm);
  }
  .boxed .site-header.style-2 .extra-nav .btn-quote span {
    display: none;
  }
  .boxed .site-header.style-2 .extra-nav .btn-quote i {
    display: block;
  }
  .boxed .is-fixed .main-bar {
    transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -webkit-transition: none;
    -o-transition: none;
    position: unset;
  }
  .boxed .ic-coming-soon .ic-title {
    font-size: 42px;
  }
  .boxed .ic-coming-soon .countdown .date {
    padding-right: 15px;
  }
  .boxed .ic-coming-soon .countdown .date span {
    font-size: 14px;
  }
  .boxed .ic-coming-soon .countdown .date .time {
    font-size: 70px;
    line-height: 70px;
  }
  .boxed .ic-coming-soon .ic-coming-bx {
    padding-left: 30px;
    padding-right: 30px;
  }
  .boxed .main-silder-swiper .btn-prev,
  .boxed .main-silder-swiper .btn-next {
    top: auto;
    bottom: 10px;
  }
  .boxed .main-silder-swiper .btn-prev {
    left: 5px;
  }
  .boxed .main-silder-swiper .btn-next {
    right: auto;
    left: 70px;
  }
  .boxed .about-media.style-1 {
    height: 100%;
    width: 100%;
    float: right;
  }
  .boxed .about-media.style-2 {
    padding-left: 50px;
  }
  .boxed .about-media.style-2:after {
    left: 0;
    bottom: -50px;
  }
  .boxed .counter-area-1 .media-full,
  .boxed .test-area1 .media-full {
    width: calc(100% + 20px);
  }
  .boxed .hiw-area-1:after {
    width: 15vw;
  }
  .boxed .under-construct .ic-content .ic-title {
    font-size: 60px;
  }
  .boxed .under-construct .ic-content p {
    font-size: 28px;
  }
  .boxed .sidenav-menu {
    position: absolute;
  }
  .boxed .team-swiper-area .btn-prev {
    left: -25px;
  }
  .boxed .team-swiper-area .btn-next {
    right: -25px;
  }
  .boxed .service-area-2 {
    margin-top: -30px;
  }
  .frame {
    padding: 30px;
  }
  .frame .page-wraper {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
    height: auto;
  }
  .frame .is-fixed .main-bar {
    left: 0;
    width: 100%;
    margin: 0;
    position: unset;
  }
  .frame button.scroltop {
    right: 50px;
    bottom: 50px;
  }
  .frame .sidenav-menu {
    position: absolute;
  }
  .frame .team-swiper-area .btn-prev {
    left: -25px;
  }
  .frame .team-swiper-area .btn-next {
    right: -25px;
  }
}
@media only screen and (max-width: 1024px) {
  .frame {
    padding: 0 !important;
  }
  .frame button.scroltop {
    right: 15px;
    bottom: 15px;
  }
}
.theme-sharped {
  --border-radius-base: 0;
  --border-radius-sm: 0;
  --border-radius-lg: 0;
  -webkit-transition: none;
  -ms-transition: none;
  transition: none;
}

.theme-rounded {
  --border-radius-base: 18px;
  -webkit-transition: none;
  -ms-transition: none;
  transition: none;
}

[dir=rtl] .top-bar .ic-topbar-center ul i,
[dir=rtl] .top-bar .ic-topbar-left ul i,
[dir=rtl] .top-bar .ic-topbar-right ul i {
  margin-right: 0;
  margin-left: 5px;
}
[dir=rtl] .top-bar .ic-topbar-left li {
  padding-left: 20px;
  padding-right: 0;
}
[dir=rtl] .site-header .extra-nav {
  float: left;
}
[dir=rtl] .site-header .extra-nav .phone-call {
  margin-right: auto;
  margin-left: 50px;
}
[dir=rtl] .site-header .extra-nav .phone-call i {
  margin-right: auto;
  margin-left: 15px;
}
[dir=rtl] .site-header .logo-header {
  float: right;
}
[dir=rtl] .site-header.style-1 .extra-cell > a,
[dir=rtl] .site-header.style-1 .extra-cell > div {
  margin-left: 0;
  margin-right: 30px;
}
[dir=rtl] .site-header.style-1 .header-nav .nav > li.sub-menu-down > a:after {
  margin-left: 0;
  margin-right: 10px;
}
[dir=rtl] .site-header.style-2.header-transparent .header-nav .nav {
  border-left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
[dir=rtl] .site-header.style-2.header-transparent .is-fixed .header-nav .nav {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
[dir=rtl] .site-header.style-2 .header-nav .nav {
  margin-left: 0;
  margin-right: 50px;
  padding-left: 0;
  padding-right: 30px;
  border-left: 0;
  border-right: 1px solid #eee;
}
@media only screen and (max-width: 1400px) {
  [dir=rtl] .site-header.style-2 .header-nav .nav {
    margin-left: 0;
    margin-right: 20px;
    padding-left: 0;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 991px) {
  [dir=rtl] .site-header.style-2 .header-nav .nav {
    margin: 0;
    padding-left: 20px;
  }
}
[dir=rtl] .site-header.style-4 .navicon span {
  left: auto;
  right: 10px;
}
[dir=rtl] .site-header.style-4 .header-content-bx .logo-header {
  padding: 0 10px 0 40px;
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .site-header.style-4 .header-content-bx .logo-header {
    border-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 0;
    padding-right: 20px;
  }
  [dir=rtl] .site-header.style-4 .header-content-bx .navbar-toggler {
    margin: 15px;
  }
}
[dir=rtl] .site-header.style-4 .social-menu ul li a {
  padding-right: 0;
  padding-left: 15px;
}
[dir=rtl] .site-header .full-sidenav {
  left: auto;
  right: -700px;
}
[dir=rtl] .site-header .full-sidenav.active {
  left: auto;
  right: 0;
}
[dir=rtl] .site-header.header-full .menu-close {
  right: auto;
  left: 0;
}
[dir=rtl] .header-nav.full-sidenav .nav > li.sub-menu-down > a:after {
  float: left;
}
[dir=rtl] .header-nav .nav > li .mega-menu,
[dir=rtl] .header-nav .nav > li .sub-menu {
  left: auto;
  text-align: right;
  right: 0;
}
[dir=rtl] .header-nav .nav > li .mega-menu li > .sub-menu,
[dir=rtl] .header-nav .nav > li .sub-menu li > .sub-menu {
  left: auto;
  right: 220px;
}
[dir=rtl] .header-nav .nav > li .mega-menu li a:after,
[dir=rtl] .header-nav .nav > li .sub-menu li a:after {
  left: auto;
  right: 20px;
}
[dir=rtl] .header-nav .nav > li .sub-menu li > a > i {
  float: left;
  transform: rotateY(180deg);
}
@media only screen and (max-width: 1680px) {
  [dir=rtl] .site-header .extra-nav {
    margin-left: 0;
    margin-right: 10px;
  }
}
@media only screen and (min-width: 991px) {
  [dir=rtl] .header-nav .nav {
    float: left;
  }
  [dir=rtl] .header-nav .nav > li .mega-menu li:hover > a,
  [dir=rtl] .header-nav .nav > li .sub-menu li:hover > a {
    padding: 8px 35px 8px 20px;
  }
}
@media only screen and (max-width: 991px) {
  [dir=rtl] .header-nav {
    right: -280px;
    left: auto;
  }
  [dir=rtl] .header-nav.show {
    right: -1px;
    left: auto;
  }
  [dir=rtl] .header-nav .nav > li.sub-menu-down > a:after {
    right: auto;
    float: left;
    left: 0;
  }
  [dir=rtl] .header-nav .nav > li .mega-menu,
  [dir=rtl] .header-nav .nav > li .sub-menu {
    text-align: right;
  }
  [dir=rtl] .header-nav .nav > li .mega-menu li a,
  [dir=rtl] .header-nav .nav > li .sub-menu li a {
    padding: 2px 16px 1px 1px;
  }
  [dir=rtl] .header-nav .nav > li .mega-menu li a:after,
  [dir=rtl] .header-nav .nav > li .sub-menu li a:after {
    content: "\f053";
    left: auto;
    right: 0;
  }
  [dir=rtl] .header-nav .nav > li .mega-menu .mega-menu,
  [dir=rtl] .header-nav .nav > li .mega-menu .sub-menu,
  [dir=rtl] .header-nav .nav > li .sub-menu .mega-menu,
  [dir=rtl] .header-nav .nav > li .sub-menu .sub-menu {
    padding-left: 0;
    padding-right: 20px;
  }
  [dir=rtl] .header-nav .nav > li .mega-menu .mega-menu li a:after,
  [dir=rtl] .header-nav .nav > li .mega-menu .sub-menu li a:after,
  [dir=rtl] .header-nav .nav > li .sub-menu .mega-menu li a:after,
  [dir=rtl] .header-nav .nav > li .sub-menu .sub-menu li a:after {
    content: "";
  }
  [dir=rtl] .header-nav .nav > li .sub-menu li > a > i {
    float: left;
  }
  [dir=rtl] .navbar-toggler {
    margin: 15px 15px 15px 0;
    float: left;
  }
  [dir=rtl] .navbar-toggler.open:after {
    transform-origin: left;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    -o-transform-origin: left;
    -moz-transform-origin: left;
  }
  [dir=rtl] .navbar-toggler.open span:nth-child(2) {
    left: 60px;
  }
}
[dir=rtl] .year-exp {
  left: 20px;
  right: auto;
}
[dir=rtl] .year-exp .text {
  margin-left: 0;
  margin-right: 20px;
}
[dir=rtl] .about-contact i {
  margin-left: 20px;
  margin-right: 0;
}
[dir=rtl] .about-media.style-1 {
  float: left;
}
[dir=rtl] .about-media.style-2:after {
  left: auto;
  right: -50px;
  border-color: #fff var(--primary) var(--primary) #fff;
}
@media only screen and (max-width: 1400px) {
  [dir=rtl] .about-media.style-2 {
    margin-left: 0;
    margin-right: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  [dir=rtl] .about-media.style-2 {
    margin-right: 0;
    padding-left: 0;
    padding-right: 50px;
  }
  [dir=rtl] .about-media.style-2:after {
    left: auto;
    right: 0;
  }
}
@media only screen and (max-width: 991px) {
  [dir=rtl] .about-media.style-2 {
    padding-right: 25px;
  }
}
[dir=rtl] .about-media.style-3 {
  padding-left: 0;
  padding-right: 60px;
}
[dir=rtl] .about-media.style-3 .video-bx {
  left: auto;
  right: 0;
}
@media only screen and (min-width: 991px) {
  [dir=rtl] .service-area-2 [class*=col-]:first-child .icon-bx-wraper {
    border-radius: 0 var(--border-radius-base) var(--border-radius-base) 0;
  }
  [dir=rtl] .service-area-2 [class*=col-]:last-child .icon-bx-wraper {
    border-radius: var(--border-radius-base) 0 0 var(--border-radius-base);
  }
}
[dir=rtl] .ext-sidebar-menu ul li a:after {
  content: "\f053";
  right: auto;
  left: 25px;
}
[dir=rtl] .ext-sidebar-menu.style-2 ul li a {
  padding: 25px 50px 25px 30px;
}
[dir=rtl] .ext-sidebar-menu.style-2 ul li a:after {
  content: "\f067";
  left: auto;
  right: 0;
}
@media only screen and (max-width: 1199px) {
  [dir=rtl] .ext-sidebar-menu.style-2 ul li a {
    padding: 15px 40px 15px 20px;
  }
}
[dir=rtl] .ic-team.style-2 .ic-content {
  padding-left: 0;
  padding-right: 20px;
}
[dir=rtl] .ic-team.style-2 .ic-content:after {
  left: auto;
  right: 0;
}
[dir=rtl] .ic-team.style-2 .team-social {
  padding-left: 0;
  padding-right: 10px;
}
[dir=rtl] .ic-team.style-3 .team-social {
  right: auto;
  left: 10px;
}
[dir=rtl] .ic-team.style-4 .ic-position.line:before {
  margin-left: 10px;
  margin-right: 0;
}
[dir=rtl] .ic-team.style-7 {
  padding-left: 0;
  padding-right: 60px;
}
@media only screen and (max-width: 767px) {
  [dir=rtl] .ic-team.style-7 {
    padding: 0;
  }
}
[dir=rtl] .ic-team.style-7 .ic-social-icon {
  left: auto;
  right: 80px;
  padding-left: 0;
  padding-right: 25px;
}
[dir=rtl] .ic-team.style-7 .ic-info {
  right: auto;
  left: -30px;
}
@media only screen and (max-width: 767px) {
  [dir=rtl] .ic-team.style-7 .ic-info {
    right: auto;
    left: -10px;
  }
}
[dir=rtl] .ic-team.style-7:hover {
  padding-left: 0;
  padding-right: 60px;
}
[dir=rtl] .ic-team.style-7:hover .ic-social-icon {
  left: auto;
  right: 0px;
}
[dir=rtl] .ic-team.style-7:hover .ic-info {
  right: auto;
  left: 36px;
}
[dir=rtl] .icon-bx-wraper.left .icon-bx-xl,
[dir=rtl] .icon-bx-wraper.left .icon-bx-lg,
[dir=rtl] .icon-bx-wraper.left .icon-bx-md,
[dir=rtl] .icon-bx-wraper.left .icon-bx-sm,
[dir=rtl] .icon-bx-wraper.left .icon-bx-xs {
  margin-left: 20px;
  margin-right: 0;
  float: right;
}
[dir=rtl] .icon-bx-wraper.left .icon-xl,
[dir=rtl] .icon-bx-wraper.left .icon-lg,
[dir=rtl] .icon-bx-wraper.left .icon-md,
[dir=rtl] .icon-bx-wraper.left .icon-sm,
[dir=rtl] .icon-bx-wraper.left .icon-xs {
  float: right;
  margin-left: 10px;
  margin-right: 0;
}
[dir=rtl] .icon-bx-wraper.right .icon-bx-xl,
[dir=rtl] .icon-bx-wraper.right .icon-bx-lg,
[dir=rtl] .icon-bx-wraper.right .icon-bx-md,
[dir=rtl] .icon-bx-wraper.right .icon-bx-sm,
[dir=rtl] .icon-bx-wraper.right .icon-bx-xs {
  float: left;
  margin-left: 0;
  margin-right: 20px;
}
[dir=rtl] .icon-bx-wraper.right .icon-xl,
[dir=rtl] .icon-bx-wraper.right .icon-lg,
[dir=rtl] .icon-bx-wraper.right .icon-md,
[dir=rtl] .icon-bx-wraper.right .icon-sm,
[dir=rtl] .icon-bx-wraper.right .icon-xs {
  float: left;
  margin-left: 0;
  margin-right: 10px;
}
[dir=rtl] .icon-bx-wraper.style-3 .icon-lg {
  margin-right: 0;
  margin-left: 25px;
}
[dir=rtl] .icon-bx-wraper.style-4 .icon-lg {
  margin-left: 15px;
  margin-right: 0;
}
[dir=rtl] .icon-bx-wraper.style-5 .icon-bx {
  margin-left: 20px;
  margin-right: 0;
}
[dir=rtl] .icon-bx-wraper.style-6 .btn, [dir=rtl] .icon-bx-wraper.style-6 .wp-block-button__link {
  left: auto;
  right: 40px;
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .icon-bx-wraper.style-6 .btn, [dir=rtl] .icon-bx-wraper.style-6 .wp-block-button__link {
    right: 30px;
  }
}
[dir=rtl] .icon-bx-wraper.style-9 .list-num {
  left: auto;
  right: -5px;
}
[dir=rtl] .icon-bx-wraper.style-10 .icon-bx {
  margin-right: 0;
  margin-left: 25px;
}
[dir=rtl] .icon-bx-wraper.style-11 .btn-link i {
  margin-left: 0;
  margin-right: 8px;
  transform: rotateY(180deg);
}
[dir=rtl] .icon-bx-wraper.style-12 .title {
  padding-left: 0;
  padding-right: 20px;
}
[dir=rtl] .icon-bx-wraper.style-16:after {
  left: 10px;
  right: auto;
}
[dir=rtl] .icon-bx-wraper.style-17 .btn i, [dir=rtl] .icon-bx-wraper.style-17 .wp-block-button__link i {
  transform: rotateY(180deg);
}
[dir=rtl] .icon-bx-wraper.style-19:before {
  left: auto;
  right: 0;
}
[dir=rtl] .icon-bx-wraper.style-19 .icon-lg {
  margin-right: 0;
  margin-left: 20px;
}
[dir=rtl] .icon-bx-wraper.style-20 {
  padding: 10px 10px 10px 0;
}
[dir=rtl] .icon-bx-wraper.style-20::after {
  left: auto;
  right: 0;
  border-left: 0;
  border-right: var(--border-radius-sm);
}
[dir=rtl] .icon-bx-wraper.style-20::before {
  right: auto;
  left: 15px;
  border-radius: 50px 0 0 50px;
}
[dir=rtl] .icon-bx-wraper.style-20 .icon-content::before {
  left: auto;
  right: -1px;
  transform: translateY(-50%) rotate(180deg);
}
[dir=rtl] .icon-bx-wraper.style-20 .icon-content p {
  padding-right: 0;
  padding-left: 20px;
}
[dir=rtl] .icon-bx-wraper.style-20 .icon-bx {
  margin-left: 0;
  margin-right: -40px;
}
[dir=rtl] .icon-bx-wraper.style-21 {
  padding: 20px 30px 20px 56px;
}
@media only screen and (max-width: 1199px) {
  [dir=rtl] .icon-bx-wraper.style-21 {
    padding: 18px;
  }
}
[dir=rtl] .icon-bx-wraper.style-21:nth-child(2) {
  margin-right: 5rem;
  margin-left: 0;
}
[dir=rtl] .icon-bx-wraper.style-21:nth-child(1) {
  margin-right: 0;
  margin-left: 4rem;
}
[dir=rtl] .icon-bx-wraper.style-21:nth-child(3) {
  margin-left: 4rem;
  margin-right: 0;
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .icon-bx-wraper.style-21 {
    margin-right: 0 !important;
  }
}
[dir=rtl] .icon-bx-wraper.style-21::before {
  left: auto;
  right: 0;
}
[dir=rtl] .icon-bx-wraper.style-21 .data-text {
  left: auto;
  right: -20px;
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .icon-bx-wraper.style-21 .data-text {
    left: auto;
    right: -10px;
  }
}
[dir=rtl] .icon-bx-wraper.style-21 .icon-content {
  padding-left: 0;
  padding-right: 15px;
}
[dir=rtl] .overlay.style-1 .view-btn {
  left: auto;
  right: -100px;
}
[dir=rtl] .overlay.style-1:hover .view-btn {
  left: auto;
  right: 0;
}
[dir=rtl] .overlay.style-2 .view-btn {
  right: auto;
  left: -40px;
}
[dir=rtl] .overlay.style-2 .view-btn:after {
  margin-right: 0;
  margin-left: 30px;
}
[dir=rtl] .overlay.style-2 .ic-info {
  padding: 30px 30px 20px 100px;
}
[dir=rtl] .ic-overlay-box.style-1 .ic-media span {
  right: auto;
  left: 0;
}
[dir=rtl] .ic-overlay-box.style-1:hover .ic-media span {
  right: auto;
  left: 60px;
}
[dir=rtl] .ic-overlay-box.style-2 .ic-info {
  text-align: right;
}
[dir=rtl] .ic-overlay-box.style-2 .ic-media span {
  left: 0;
  right: auto;
}
[dir=rtl] .ic-overlay-box.style-2:hover .ic-media span {
  right: auto;
  left: 20px;
}
[dir=rtl] .hiw-area-1:after {
  left: auto;
  right: 0;
}
[dir=rtl] .widget_getintuch ul li {
  padding-left: 0;
  padding-right: 52px;
}
[dir=rtl] .widget_getintuch ul li i {
  left: auto;
  right: 0;
  margin-left: 10px;
  margin-right: 0;
}
[dir=rtl] .widget_archive ul li,
[dir=rtl] .wp-block-categories-list li,
[dir=rtl] .wp-block-archives-list li,
[dir=rtl] .wp-block-latest-posts li,
[dir=rtl] .widget_categories ul li {
  text-align: left;
  padding: 0.5rem 1.5rem 0.5rem 0rem !important;
}
[dir=rtl] .block-categories-list li a:before,
[dir=rtl] .wp-block-archives-list li a:before,
[dir=rtl] .widget_categories ul li a:before,
[dir=rtl] .widget_archive ul li a:before,
[dir=rtl] .widget_meta ul li a:before,
[dir=rtl] .widget_pages ul li a:before,
[dir=rtl] .widget_recent_comments ul li a:before,
[dir=rtl] .widget_nav_menu ul li a:before,
[dir=rtl] .widget_recent_entries ul li a:before,
[dir=rtl] .widget_services ul li a:before {
  left: auto;
  right: -1.5rem;
}
[dir=rtl] .widget_archive li a,
[dir=rtl] .wp-block-latest-posts li a,
[dir=rtl] .wp-block-categories-list li a,
[dir=rtl] .wp-block-archives-list li a,
[dir=rtl] .widget_categories li a {
  float: right;
  text-align: right;
}
[dir=rtl] .recent-posts-entry .widget-post-bx .widget-post .ic-info {
  padding-left: 0;
  padding-right: 20px;
}
[dir=rtl] .ic-meta ul li {
  margin-left: 20px;
  margin-right: 0;
}
[dir=rtl] .ic-meta ul li i {
  margin-right: 0;
  margin-left: 10px;
}
[dir=rtl] .ic-card.style-1 .btn-link i {
  margin-left: 0;
  margin-right: 10px;
  transform: rotateY(180deg);
}
[dir=rtl] .ic-card.style-2 .ic-meta ul li i {
  margin-right: 0;
  margin-left: 8px;
}
[dir=rtl] .ic-card.style-2 .btn-link i {
  margin-right: 0;
  font-size: 14px;
  margin-left: 10px;
}
[dir=rtl] .ic-card.style-3 .btn-link i {
  font-size: 14px;
  transform: rotateY(180deg);
}
[dir=rtl] .ic-card.style-4 .ic-meta ul li {
  padding-left: 0;
  padding-right: 15px;
}
[dir=rtl] .ic-card.style-4 .ic-meta ul li:after {
  left: auto;
  right: 0;
}
[dir=rtl] .ic-card.style-4 .icon-btn {
  right: auto;
  left: 0;
  transform: rotateY(180deg);
}
[dir=rtl] .search-bx.style-1 .form-control, [dir=rtl] .search-bx.style-1 .wp-block-categories-dropdown select, .wp-block-categories-dropdown [dir=rtl] .search-bx.style-1 select,
[dir=rtl] .search-bx.style-1 .wp-block-archives-dropdown select,
.wp-block-archives-dropdown [dir=rtl] .search-bx.style-1 select, [dir=rtl] .search-bx.style-1 .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-author [dir=rtl] .search-bx.style-1 input, [dir=rtl] .search-bx.style-1 .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-email [dir=rtl] .search-bx.style-1 input, [dir=rtl] .search-bx.style-1 .comment-respond .comment-form p.comment-form-url input, .comment-respond .comment-form p.comment-form-url [dir=rtl] .search-bx.style-1 input,
[dir=rtl] .search-bx.style-1 .comment-respond .comment-form p textarea,
.comment-respond .comment-form p [dir=rtl] .search-bx.style-1 textarea {
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0 !important;
}
[dir=rtl] .search-bx.style-1 button {
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm) !important;
}
[dir=rtl] .pagination li .prev,
[dir=rtl] .pagination li .next {
  transform: rotateY(180deg);
}
[dir=rtl] .comments-area .comment-list > .comment .comment-body {
  padding: 0 110px 0 0;
}
[dir=rtl] .comments-area .comment-list > .comment .comment-body .comment-author .avatar {
  left: auto;
  right: 0;
}
[dir=rtl] .comments-area .comment-list > .comment .comment-body .reply .comment-reply-link {
  right: auto;
  left: 0;
}
[dir=rtl] .comments-area .comment-list > .comment .comment-body .reply .comment-reply-link i {
  margin-right: 0;
  font-size: 14px;
  margin-left: 8px;
}
@media only screen and (max-width: 767px) {
  [dir=rtl] .comments-area .comment-list > .comment .comment-body {
    padding: 0 75px 0 0;
  }
}
[dir=rtl] .comments-area.style-1 .comment-list > .comment .comment-body {
  padding: 0 115px 25px 0;
}
@media only screen and (max-width: 767px) {
  [dir=rtl] .comments-area.style-1 .comment-list > .comment .comment-body {
    padding: 0 75px 25px 0;
  }
}
[dir=rtl] .comments-area .comment-list > .comment > .children {
  padding-left: 0;
  padding-right: 50px;
}
[dir=rtl] .ic-separator.style-1:before,
[dir=rtl] .ic-separator.style-1:after {
  left: auto;
  right: 0;
}
[dir=rtl] .ic-share-post ul li {
  margin-right: 0;
  margin-left: 5px;
}
[dir=rtl] .post-tags strong {
  margin-right: 0;
  margin-left: 10px;
}
[dir=rtl] .ic-page-text ul > li:before,
[dir=rtl] .ic-page-text ol > li:before,
[dir=rtl] .ic-card.blog-single .ic-post-text ul > li:before,
[dir=rtl] .ic-card.blog-single .ic-post-text ol > li:before {
  left: auto;
  right: -0.938rem;
}
[dir=rtl] .ic-page-text > ol,
[dir=rtl] .ic-page-text > ul,
[dir=rtl] .ic-card.blog-single .ic-post-text > ol,
[dir=rtl] .ic-card.blog-single .ic-post-text > ul,
[dir=rtl] .ic-card.blog-single .ic-post-text.text > ol,
[dir=rtl] .ic-card.blog-single .ic-post-text.text > ul {
  padding-left: 0;
  padding-right: 1.25rem;
}
[dir=rtl] .wp-block-quote.is-large cite:before,
[dir=rtl] .wp-block-quote.is-style-large cite:before,
[dir=rtl] blockquote.wp-block-quote cite:before,
[dir=rtl] blockquote.wp-block-pullquote cite:before,
[dir=rtl] blockquote.wp-block-pullquote.alignright cite:before,
[dir=rtl] blockquote.wp-block-pullquote.alignleft cite:before,
[dir=rtl] blockquote cite:before {
  margin-left: 0.625rem;
  margin-right: 0;
}
[dir=rtl] .widget_tag_cloud .tagcloud a {
  margin: 0 0 15px 15px;
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .widget_tag_cloud .tagcloud a {
    margin: 0 0 10px 10px;
  }
}
[dir=rtl] .ic-page-text > .wp-block-gallery,
[dir=rtl] .ic-card.blog-single .ic-post-text > .wp-block-gallery,
[dir=rtl] .ic-card.blog-single .ic-post-text.text > .wp-block-gallery {
  padding: 0;
}
[dir=rtl] .site-footer .recent-posts-entry .widget-post-bx .widget-post .ic-info {
  padding-left: 0;
  padding-right: 15px;
}
[dir=rtl] .site-footer.style-2 .widget_categories {
  padding-left: 0;
  padding-right: 50px;
}
[dir=rtl] .site-footer.style-2 .footer-bottom ul li:last-child {
  padding-left: 0;
  padding-right: 20px;
}
@media only screen and (max-width: 1199px) {
  [dir=rtl] .site-footer.style-2 .widget_categories {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1199px) {
  [dir=rtl] .site-footer.style-4 .widget.widget_links.p-l50 {
    padding-right: 0;
  }
}
[dir=rtl] .site-footer.style-6 .widget_categories li {
  padding-right: 0 !important;
}
[dir=rtl] .site-footer.style-6 .widget_categories li:hover {
  padding-left: 0 !important;
  padding-right: 0.5rem !important;
}
[dir=rtl] .footer-link li {
  padding: 0 20px 0 25px;
}
[dir=rtl] .footer-link li:before {
  left: auto;
  right: 0;
}
[dir=rtl] .test-area1 .testi-inner:after {
  float: left;
  margin-right: 0;
  margin-left: -145px;
  right: auto;
  left: 0;
  border-radius: var(--border-radius-base) 0 0 var(--border-radius-base);
}
[dir=rtl] .test-area1.left .testi-inner:after {
  border-radius: 0 var(--border-radius-base) var(--border-radius-base) 0;
}
[dir=rtl] .test-area1 .testimonial-1 {
  padding: 50px 0 50px 50px;
}
[dir=rtl] .test-area1 .swiper-container {
  margin-right: 0;
  margin-left: -145px;
}
@media only screen and (max-width: 767px) {
  [dir=rtl] .test-area1 .testimonial-1 {
    padding: 25px;
  }
  [dir=rtl] .test-area1 .testi-inner:after {
    margin-left: 0;
  }
  [dir=rtl] .test-area1 .swiper-container {
    margin-left: 0;
  }
}
[dir=rtl] .testimonial-1:after {
  right: auto;
  left: 60px;
  transform: rotateY(180deg);
}
[dir=rtl] .testimonial-1 .testimonial-pic {
  margin-right: 0;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  [dir=rtl] .testimonial-1:after {
    left: 30px;
  }
  [dir=rtl] .testimonial-1 .testimonial-pic {
    margin-left: 15px;
  }
}
[dir=rtl] .testimonial-2:after {
  right: auto;
  left: 40px;
  transform: rotateY(180deg);
}
[dir=rtl] .testimonial-3 .testimonial-pic .info {
  padding-left: 0;
  padding-right: 20px;
}
[dir=rtl] .testimonial-4:after {
  right: auto;
  left: 40px;
  transform: rotateY(180deg);
}
[dir=rtl] .testimonial-5 .testimonial-pic {
  margin-right: 0;
  margin-left: 20px;
}
[dir=rtl] .testimonial-5 .testimonial-pic:after {
  left: auto;
  right: -18px;
  padding: 10px 12px 0 0;
}
[dir=rtl] .content-area .map-iframe {
  float: left;
}
[dir=rtl] .content-area .ic-form {
  margin-left: 0;
  margin-right: -200px;
}
@media only screen and (max-width: 991px) {
  [dir=rtl] .content-area .ic-form {
    margin-right: 0;
  }
}
[dir=rtl] .content-area-2 .map-iframe:after {
  right: auto;
  left: 0;
  border-left: 20px solid var(--primary);
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .content-area-2 .map-iframe {
    padding: 8px 0 8px 8px;
  }
}
[dir=rtl] .ic-form.style-3 .input-group-prepend + .form-control, [dir=rtl] .ic-form.style-3 .wp-block-categories-dropdown .input-group-prepend + select, .wp-block-categories-dropdown [dir=rtl] .ic-form.style-3 .input-group-prepend + select,
[dir=rtl] .ic-form.style-3 .wp-block-archives-dropdown .input-group-prepend + select,
.wp-block-archives-dropdown [dir=rtl] .ic-form.style-3 .input-group-prepend + select, [dir=rtl] .ic-form.style-3 .comment-respond .comment-form p.comment-form-author .input-group-prepend + input, .comment-respond .comment-form p.comment-form-author [dir=rtl] .ic-form.style-3 .input-group-prepend + input, [dir=rtl] .ic-form.style-3 .comment-respond .comment-form p.comment-form-email .input-group-prepend + input, .comment-respond .comment-form p.comment-form-email [dir=rtl] .ic-form.style-3 .input-group-prepend + input, [dir=rtl] .ic-form.style-3 .comment-respond .comment-form p.comment-form-url .input-group-prepend + input, .comment-respond .comment-form p.comment-form-url [dir=rtl] .ic-form.style-3 .input-group-prepend + input,
[dir=rtl] .ic-form.style-3 .comment-respond .comment-form p .input-group-prepend + textarea,
.comment-respond .comment-form p [dir=rtl] .ic-form.style-3 .input-group-prepend + textarea,
[dir=rtl] .ic-form.style-3 .input-group-prepend + .form-control + .bootstrap-select,
[dir=rtl] .ic-form.style-3 .wp-block-categories-dropdown .input-group-prepend + select + .bootstrap-select,
.wp-block-categories-dropdown [dir=rtl] .ic-form.style-3 .input-group-prepend + select + .bootstrap-select,
[dir=rtl] .ic-form.style-3 .wp-block-archives-dropdown .input-group-prepend + select + .bootstrap-select,
.wp-block-archives-dropdown [dir=rtl] .ic-form.style-3 .input-group-prepend + select + .bootstrap-select,
[dir=rtl] .ic-form.style-3 .comment-respond .comment-form p.comment-form-author .input-group-prepend + input + .bootstrap-select,
.comment-respond .comment-form p.comment-form-author [dir=rtl] .ic-form.style-3 .input-group-prepend + input + .bootstrap-select,
[dir=rtl] .ic-form.style-3 .comment-respond .comment-form p.comment-form-email .input-group-prepend + input + .bootstrap-select,
.comment-respond .comment-form p.comment-form-email [dir=rtl] .ic-form.style-3 .input-group-prepend + input + .bootstrap-select,
[dir=rtl] .ic-form.style-3 .comment-respond .comment-form p.comment-form-url .input-group-prepend + input + .bootstrap-select,
.comment-respond .comment-form p.comment-form-url [dir=rtl] .ic-form.style-3 .input-group-prepend + input + .bootstrap-select,
[dir=rtl] .ic-form.style-3 .comment-respond .comment-form p .input-group-prepend + textarea + .bootstrap-select,
.comment-respond .comment-form p [dir=rtl] .ic-form.style-3 .input-group-prepend + textarea + .bootstrap-select,
[dir=rtl] .ic-form.style-3 .input-group-prepend + .form-control + .custom-file-label,
[dir=rtl] .ic-form.style-3 .wp-block-categories-dropdown .input-group-prepend + select + .custom-file-label,
.wp-block-categories-dropdown [dir=rtl] .ic-form.style-3 .input-group-prepend + select + .custom-file-label,
[dir=rtl] .ic-form.style-3 .wp-block-archives-dropdown .input-group-prepend + select + .custom-file-label,
.wp-block-archives-dropdown [dir=rtl] .ic-form.style-3 .input-group-prepend + select + .custom-file-label,
[dir=rtl] .ic-form.style-3 .comment-respond .comment-form p.comment-form-author .input-group-prepend + input + .custom-file-label,
.comment-respond .comment-form p.comment-form-author [dir=rtl] .ic-form.style-3 .input-group-prepend + input + .custom-file-label,
[dir=rtl] .ic-form.style-3 .comment-respond .comment-form p.comment-form-email .input-group-prepend + input + .custom-file-label,
.comment-respond .comment-form p.comment-form-email [dir=rtl] .ic-form.style-3 .input-group-prepend + input + .custom-file-label,
[dir=rtl] .ic-form.style-3 .comment-respond .comment-form p.comment-form-url .input-group-prepend + input + .custom-file-label,
.comment-respond .comment-form p.comment-form-url [dir=rtl] .ic-form.style-3 .input-group-prepend + input + .custom-file-label,
[dir=rtl] .ic-form.style-3 .comment-respond .comment-form p .input-group-prepend + textarea + .custom-file-label,
.comment-respond .comment-form p [dir=rtl] .ic-form.style-3 .input-group-prepend + textarea + .custom-file-label {
  padding: 10px 65px 10px 20px;
}
[dir=rtl] .ic-form.style-3 .input-group-prepend {
  left: auto;
  right: 10px;
  border-right: 0;
  border-left: 1px solid #9192a4;
  margin-left: 10px;
  margin-right: 0;
}
[dir=rtl] .ic-form.style-3 .input-group-prepend + textarea.form-control,
[dir=rtl] .ic-form.style-3 .comment-respond .comment-form p .input-group-prepend + textarea,
.comment-respond .comment-form p [dir=rtl] .ic-form.style-3 .input-group-prepend + textarea {
  padding: 18px 65px 18px 20px;
}
[dir=rtl] .list-circle li,
[dir=rtl] .list-angle-double li,
[dir=rtl] .list-square li,
[dir=rtl] .list-settings li {
  padding: 6px 15px 6px 5px;
}
[dir=rtl] .list-circle li:before,
[dir=rtl] .list-angle-double li:before,
[dir=rtl] .list-square li:before,
[dir=rtl] .list-settings li:before {
  left: auto;
  right: 0;
}
[dir=rtl] .list-settings li {
  padding: 8px 50px 8px 5px;
}
[dir=rtl] .breadcrumb-row .breadcrumb .breadcrumb-item {
  padding-right: 30px;
  padding-left: 15px;
}
[dir=rtl] .breadcrumb-row .breadcrumb .breadcrumb-item::before {
  content: "\f114";
  left: auto;
  right: 0;
}
[dir=rtl] .breadcrumb-row .breadcrumb .breadcrumb-item:first-child {
  padding-right: 0;
}
[dir=rtl] .breadcrumb-row .breadcrumb .breadcrumb-item:first-child::before {
  content: none;
}
[dir=rtl] .breadcrumb-row .breadcrumb .breadcrumb-item:last-child {
  padding-left: 0;
}
[dir=rtl] .breadcrumb-row .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  padding-right: 0;
  float: right;
  padding-left: 0.5rem;
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .ic-bnr-inr.style-2 .breadcrumb-row .breadcrumb .breadcrumb-item {
    padding-left: 10px;
    padding-right: 25px;
  }
  [dir=rtl] .ic-bnr-inr.style-2 .breadcrumb-row .breadcrumb .breadcrumb-item:first-child {
    padding-left: 10px;
    padding-right: 0;
  }
  [dir=rtl] .ic-bnr-inr.style-2 .breadcrumb-row .breadcrumb .breadcrumb-item:last-child {
    padding-left: 0;
    padding-right: 25px;
  }
}
[dir=rtl] .sidenav-menu {
  left: auto;
  right: 0;
  border-right: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
[dir=rtl] .ic-coming-soon {
  padding-left: 0;
  padding-right: 90px;
}
[dir=rtl] .ic-coming-soon .btn.m-r10, [dir=rtl] .ic-coming-soon .m-r10.wp-block-button__link {
  margin-right: 0;
  margin-left: 10px;
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .ic-coming-soon {
    padding-right: 50px;
  }
}
[dir=rtl] .countdown .date {
  padding-right: 0;
  padding-left: 30px;
}
@media only screen and (max-width: 1199px) {
  [dir=rtl] .countdown .date {
    padding-left: 10px;
  }
}
[dir=rtl] .swiper-container {
  direction: ltr;
}
[dir=rtl] .swiper-container .swiper-slide {
  direction: rtl;
}
[dir=rtl] .section-head.style-1 .sub-title {
  padding-right: 55px;
  padding-left: 0;
}
[dir=rtl] .section-head.style-1 .sub-title:before {
  left: auto;
  right: 0;
}
[dir=rtl] .section-head.style-1 .sub-title:after {
  left: auto;
  right: 16px;
}
@media only screen and (max-width: 767px) {
  [dir=rtl] .silder-one .silder-content {
    padding: 30px 15px 30px 50px;
  }
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .silder-one .silder-content {
    padding: 0;
  }
}
[dir=rtl] .silder-two .bg-shape-left {
  left: auto;
  transform: rotate(140deg);
  right: -560px;
}
[dir=rtl] .silder-two .bg-shape-right {
  right: auto;
  left: -320px;
  transform: rotate(-40deg);
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .silder-three.main-silder-swiper .btn-prev {
    left: auto;
    right: -10px;
  }
  [dir=rtl] .silder-three.main-silder-swiper .btn-next {
    left: auto;
    right: 36px;
  }
}
[dir=rtl] .silder-for .silder-content {
  left: auto;
  right: 10%;
}
[dir=rtl] .ic-bnr-inr.style-2 .shap-bx {
  transform: rotateY(180deg);
}
[dir=rtl] .lg-outer {
  direction: ltr;
}
[dir=rtl] .slider-3 .down-side {
  left: 15%;
  right: auto;
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .slider-3 .down-side {
    left: 15px;
  }
}
[dir=rtl] .list-circle li:before,
[dir=rtl] .list-angle-double li:before,
[dir=rtl] .list-square li:before,
[dir=rtl] .list-square-check li:before,
[dir=rtl] .list-settings li:before {
  left: auto;
  right: 0;
}
[dir=rtl] .list-square-check li {
  padding: 10px 60px 10px 15px;
}
[dir=rtl] .about-bx2 .year-exp {
  left: auto;
  right: 0;
  padding: 30px 5px 5px 40px;
}
[dir=rtl] .about-bx2 .year-exp .year {
  margin-right: 0;
  margin-left: 20px;
}
[dir=rtl] .about-bx2 .year-exp .text {
  margin: 0;
}
[dir=rtl] .about-bx5 .ic-media {
  padding-left: 15px;
  padding-right: 0;
}
[dir=rtl] .about-bx5 .ic-media:after {
  right: auto;
  left: 80px;
}
[dir=rtl] .about-bx5 .ic-media .circle-bg {
  left: auto;
  right: -25%;
}
[dir=rtl] .about-bx5 .ic-media.right {
  padding-right: 15px;
  padding-left: 0;
}
[dir=rtl] .about-bx5 .ic-media.right:after {
  left: auto;
  right: 80px;
}
[dir=rtl] .about-bx5 .ic-media.right .circle-bg {
  left: -25%;
  right: auto;
}
@media only screen and (max-width: 991px) {
  [dir=rtl] .about-bx5 .ic-media {
    padding-left: 0;
    padding-right: 0;
  }
  [dir=rtl] .about-bx5 .ic-media.right {
    padding-right: 0;
    padding-left: 0;
  }
}
[dir=rtl] .about-bx6 .ic-media .img1 {
  left: auto;
  right: 0;
}
[dir=rtl] .about-bx6 .ic-media .img2 {
  margin-left: 0;
  margin-right: 200px;
}
[dir=rtl] .about-bx6 .ic-media .img2:after {
  right: auto;
  left: 60px;
}
@media only screen and (min-width: 991px) {
  [dir=rtl] .blog-area1 [class*=col-]:first-child .ic-card .ic-media {
    border-radius: 0 var(--border-radius-base) 0 0;
  }
  [dir=rtl] .blog-area1 [class*=col-]:first-child .ic-card .ic-info {
    border-radius: 0 0 var(--border-radius-base) 0;
  }
  [dir=rtl] .blog-area1 [class*=col-]:first-child .ic-card.blog-top .ic-info {
    border-radius: 0 var(--border-radius-base) 0 0;
  }
  [dir=rtl] .blog-area1 [class*=col-]:first-child .ic-card.blog-top .ic-media {
    border-radius: 0 0 var(--border-radius-base) 0;
  }
  [dir=rtl] .blog-area1 [class*=col-]:last-child .ic-card .ic-media {
    border-radius: var(--border-radius-base) 0 0 0;
  }
  [dir=rtl] .blog-area1 [class*=col-]:last-child .ic-card .ic-info {
    border-radius: 0 0 0 var(--border-radius-base);
  }
  [dir=rtl] .blog-area1 [class*=col-]:last-child .ic-card.blog-top .ic-info {
    border-radius: var(--border-radius-base) 0 0 0;
  }
  [dir=rtl] .blog-area1 [class*=col-]:last-child .ic-card.blog-top .ic-media {
    border-radius: 0 0 0 var(--border-radius-base);
  }
}
[dir=rtl] .blog-single.style-1 .ic-meta ul li {
  margin-left: 10px;
  margin-right: 0;
}
[dir=rtl] .blog-single.style-1 .ic-meta ul li:first-child {
  margin-left: 10px;
  margin-right: 0;
}
[dir=rtl] .ft-subscribe form .input-group button.btn,
[dir=rtl] .ft-subscribe form .input-group button.wp-block-button__link {
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm) !important;
}
[dir=rtl] .ft-subscribe form .input-group .form-control, [dir=rtl] .ft-subscribe form .input-group .wp-block-categories-dropdown select, .wp-block-categories-dropdown [dir=rtl] .ft-subscribe form .input-group select,
[dir=rtl] .ft-subscribe form .input-group .wp-block-archives-dropdown select,
.wp-block-archives-dropdown [dir=rtl] .ft-subscribe form .input-group select, [dir=rtl] .ft-subscribe form .input-group .comment-respond .comment-form p.comment-form-author input, .comment-respond .comment-form p.comment-form-author [dir=rtl] .ft-subscribe form .input-group input, [dir=rtl] .ft-subscribe form .input-group .comment-respond .comment-form p.comment-form-email input, .comment-respond .comment-form p.comment-form-email [dir=rtl] .ft-subscribe form .input-group input, [dir=rtl] .ft-subscribe form .input-group .comment-respond .comment-form p.comment-form-url input, .comment-respond .comment-form p.comment-form-url [dir=rtl] .ft-subscribe form .input-group input,
[dir=rtl] .ft-subscribe form .input-group .comment-respond .comment-form p textarea,
.comment-respond .comment-form p [dir=rtl] .ft-subscribe form .input-group textarea {
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0 !important;
}
[dir=rtl] .ic-share-post .title {
  padding-right: 0;
  padding-left: 10px;
}
[dir=rtl] .search-bx button {
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}
[dir=rtl] .search-bx .form-control, .wp-block-categories-dropdown [dir=rtl] .search-bx select,
.wp-block-archives-dropdown [dir=rtl] .search-bx select, .comment-respond .comment-form p.comment-form-author [dir=rtl] .search-bx input, .comment-respond .comment-form p.comment-form-email [dir=rtl] .search-bx input, .comment-respond .comment-form p.comment-form-url [dir=rtl] .search-bx input,
.comment-respond .comment-form p [dir=rtl] .search-bx textarea,
[dir=rtl] .search-bx .wp-block-categories-dropdown select,
[dir=rtl] .wp-block-categories-dropdown .search-bx select,
[dir=rtl] .search-bx .wp-block-archives-dropdown select,
[dir=rtl] .wp-block-archives-dropdown .search-bx select,
[dir=rtl] .search-bx .comment-respond .comment-form p.comment-form-author input,
[dir=rtl] .comment-respond .comment-form p.comment-form-author .search-bx input,
[dir=rtl] .search-bx .comment-respond .comment-form p.comment-form-email input,
[dir=rtl] .comment-respond .comment-form p.comment-form-email .search-bx input,
[dir=rtl] .search-bx .comment-respond .comment-form p.comment-form-url input,
[dir=rtl] .comment-respond .comment-form p.comment-form-url .search-bx input,
[dir=rtl] .search-bx .comment-respond .comment-form p textarea,
[dir=rtl] .comment-respond .comment-form p .search-bx textarea {
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0 !important;
}
[dir=rtl] .ic-box.style-3 .ic-info {
  left: 0;
  right: auto;
  border-radius: 0 var(--border-radius-base) 0 0;
}
[dir=rtl] .ic-box.style-3 .ic-info .line {
  margin-left: 15px;
  margin-right: 0;
}
[dir=rtl] .ic-box.style-3 .view-btn {
  left: auto;
  right: 30px;
}
[dir=rtl] .swiper-container-initialized .btn-next i,
[dir=rtl] .swiper-container-initialized .btn-prev i {
  transform: rotateY(180deg);
}
[dir=rtl] .main-silder-swiper .btn-prev {
  left: auto;
  right: 50px;
}
[dir=rtl] .main-silder-swiper .btn-next {
  left: 50px;
  right: auto;
}
@media only screen and (max-width: 1400px) {
  [dir=rtl] .main-silder-swiper .btn-next {
    right: auto;
    left: -10px;
  }
  [dir=rtl] .main-silder-swiper .btn-prev {
    left: auto;
    right: -10px;
  }
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .main-silder-swiper .btn-prev {
    left: 36px;
    right: auto;
  }
  [dir=rtl] .main-silder-swiper .btn-next {
    right: auto;
    left: -10px;
  }
}
[dir=rtl] .banner-one .video-btn i {
  margin-right: 0;
  margin-left: 15px;
}
[dir=rtl] .client-logo-wrapper .clients-grid {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 0;
}
[dir=rtl] .client-logo-wrapper .clients-grid:nth-child(5), [dir=rtl] .client-logo-wrapper .clients-grid:nth-child(10) {
  border-left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .client-logo-wrapper .clients-grid:nth-child(5), [dir=rtl] .client-logo-wrapper .clients-grid:nth-child(10) {
    border-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
  [dir=rtl] .client-logo-wrapper .clients-grid:nth-child(even) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }
}
[dir=rtl] .progress-bx.style-3 .progress .progress-bar .progress-value {
  right: auto;
  left: 0;
}
[dir=rtl] .inquiry-modal .btn-close {
  right: auto;
  left: -40px;
}
[dir=rtl] .under-construct.style-3 .inner-box img {
  left: auto;
  right: 0;
}
[dir=rtl] .under-construct.style-3 .ic-content {
  padding-left: 0;
  padding-right: 200px;
}
@media only screen and (max-width: 991px) {
  [dir=rtl] .under-construct.style-3 .ic-content {
    padding-left: 0;
    padding-right: 130px;
  }
}
@media only screen and (max-width: 767px) {
  [dir=rtl] .under-construct.style-3 .ic-content {
    padding-right: 0;
  }
}
[dir=rtl] .under-construct.style-4 .bg-wind .bg-wind-bx {
  right: auto;
  left: 15%;
}
[dir=rtl] .under-construct.style-4 .bg-wind .bg-wind-bx.wind-bx-3 {
  right: auto;
  left: 35%;
}
[dir=rtl] .under-construct.style-4 .bg-wind .bg-wind-bx .wind-bx-2 {
  left: auto;
  right: 6%;
}
[dir=rtl] .testimonial-15:after {
  left: -30px;
  padding-left: 30px;
  padding-right: 10px;
  right: auto;
}
[dir=rtl] .testimonial-15 .testimonial-pic {
  float: right;
  margin-left: 15px;
  margin-right: 0;
}
[dir=rtl] .food-project {
  margin-left: 0;
  margin-right: calc((100% - 1200px) / 2);
  padding-right: 15px;
  padding-left: 0;
}
@media only screen and (max-width: 1199px) {
  [dir=rtl] .food-project {
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
  }
}
[dir=rtl] .project-nav {
  right: auto;
  left: 200px;
}
@media only screen and (max-width: 1199px) {
  [dir=rtl] .project-nav {
    left: 10px;
    right: auto;
  }
}
[dir=rtl] .service-box.style2:after {
  left: auto;
  right: -10px;
}
[dir=rtl] .service-box.style2.right:after {
  right: auto;
  left: -10px;
}
[dir=rtl] .about-bx8 .about-img-box {
  position: relative;
  display: flex;
}
[dir=rtl] .about-bx8 .about-img-box .about-img-two {
  margin-right: auto;
  margin-left: 0;
}
[dir=rtl] .about-bx8 .about-img-box .about-img-one {
  right: 0;
  left: auto;
}
[dir=rtl] .about-bx8 .about-img-box .about-shape4 {
  left: -70px;
  right: auto;
}
[dir=rtl] .about-bx8 .about-img-box .about-shape1 {
  right: 0;
  left: auto;
}
[dir=rtl] .about-bx8 .about-img-box .about-shape2 {
  right: 50px;
  left: auto;
}
[dir=rtl] .about-bx8 .about-contact-box {
  padding: 0 100px 0px 0px;
}
@media only screen and (max-width: 1199px) {
  [dir=rtl] .about-bx8 .about-contact-box {
    padding: 0;
  }
}
[dir=rtl] .agro-video {
  float: left;
}
[dir=rtl] .agro-about:after {
  right: -40px;
  left: auto;
  border-left: 0;
  border-right: 10px solid #fff;
}
[dir=rtl] .agro-list li {
  padding-right: 45px;
  padding-left: 0;
}
[dir=rtl] .agro-list li:before {
  right: 0;
  left: auto;
}
[dir=rtl] .testimonial-area8 {
  margin-left: auto;
  padding-left: 0;
  padding-right: 100px;
}
[dir=rtl] .testimonial-area8:after {
  left: auto;
  right: 0;
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .testimonial-area8 {
    padding-right: 0;
  }
}
[dir=rtl] .testimonial-6 {
  text-align: right;
}
[dir=rtl] .trending-post .ic-info .ic-meta ul li:last-child {
  margin-left: 0;
}
[dir=rtl] .testimonial-7::before {
  left: auto;
  right: 0;
}
[dir=rtl] .testimonial-nav9 .testimonial-next9 i,
[dir=rtl] .testimonial-nav9 .testimonial-prev9 i {
  transform: rotate(180deg);
}
[dir=rtl] .construct-header .top-bar:after {
  right: auto;
  left: calc(50% + 300px);
  transform: skewX(-30deg);
  border-left: 4px solid #fff;
  border-right: 0;
}
@media only screen and (max-width: 1199px) {
  [dir=rtl] .construct-header .top-bar:after {
    left: calc(50% + 250px);
  }
}
[dir=rtl] .construct-header .ic-topbar-right ul li a,
[dir=rtl] .construct-header .ic-topbar-left ul li a {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 0;
}
[dir=rtl] .construct-header .ic-topbar-right ul li:last-child a,
[dir=rtl] .construct-header .ic-topbar-left ul li:last-child a {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
[dir=rtl] .construct-header .extra-nav {
  margin-right: 30px;
  margin-left: 0;
}
[dir=rtl] .ic-portfolio-bx .port-box {
  text-align: right;
}
[dir=rtl] .testimonial-box1 .testimonial-pic {
  margin-right: 0;
  margin-left: 5px;
}
[dir=rtl] .testimonial-box1 .testimonial-quote {
  left: 30px;
  right: 0;
  transform: rotate(180deg);
}
[dir=rtl] .testimonial-box1:after {
  left: 0;
  right: auto;
  transform: rotate(135deg) translate(42px, 0px);
  -webkit-transform: rotate(135deg) translate(42px, 0px);
  -moz-transform: rotate(135deg) translate(42px, 0px);
}
[dir=rtl] .ic-card.style-6 .ic-meta .post-author {
  margin-left: 0;
}
[dir=rtl] .ic-card.style-6 .ic-meta .post-author img {
  margin-right: 0;
  margin-left: 10px;
}
[dir=rtl] .about-bx7 .about-contact-box {
  padding-right: 100px;
  padding-left: 0;
}
@media only screen and (max-width: 991px) {
  [dir=rtl] .about-bx7 .about-contact-box {
    padding-right: 0;
  }
}
[dir=rtl] .about-bx7 .about-contact-box .rotate-text {
  left: auto;
  right: -255px;
}
@media only screen and (max-width: 991px) {
  [dir=rtl] .about-bx7 .about-contact-box .rotate-text {
    display: none;
  }
}
[dir=rtl] .about-bx7 .nav-tabs li {
  padding-left: 60px;
  padding-right: 0;
}
[dir=rtl] .about-bx7 .nav-tabs li:after {
  left: 20px;
  right: auto;
}
[dir=rtl] .contact-info-bx li {
  padding-left: 0;
  padding-right: 35px;
}
[dir=rtl] .contact-info-bx li i {
  left: auto;
  right: 0;
  margin: 0;
}
[dir=rtl] .footer-bottom-in .ic-social-icon li a {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
[dir=rtl] .footer-bottom-in .ic-social-icon li:first-child a {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
[dir=rtl] .banner-one .mining-worker {
  left: auto;
  right: 50%;
}
[dir=rtl] .ic-form.style-4 label {
  left: auto;
  right: 0;
}
[dir=rtl] .about-bx9 .about-year span {
  padding-left: 15px;
  padding-right: 30px;
}
[dir=rtl] .about-bx9 .about-year span:after {
  left: auto;
  right: 0;
}
[dir=rtl] .about-bx9 .about-contact-box {
  padding-left: 0;
  padding-right: 30px;
}
@media only screen and (max-width: 991px) {
  [dir=rtl] .about-bx9 .about-contact-box {
    padding-right: 0;
  }
}
[dir=rtl] .about-bx10 .about-contact-box .about-inner-content ul li {
  padding-left: 0;
  padding-right: 34px;
}
[dir=rtl] .about-bx10 .about-contact-box .about-inner-content ul li::before {
  left: auto;
  right: 0;
}
[dir=rtl] .about-bx10 .about-img-box .back-img {
  left: 0;
  right: auto;
}
@media only screen and (max-width: 767px) {
  [dir=rtl] .about-bx10 .about-img-box .back-img {
    right: auto;
    left: -10px;
  }
}
[dir=rtl] .about-bx10 .about-img-box .about-text {
  left: auto;
  right: -38px;
}
@media only screen and (max-width: 991px) {
  [dir=rtl] .about-bx10 .about-img-box .about-text {
    left: auto;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  [dir=rtl] .about-bx10 .about-img-box .about-text {
    left: auto;
    right: -30px;
  }
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .about-bx10 .about-img-box .about-text {
    left: auto;
    right: -10px;
  }
}
[dir=rtl] .blog-section::after {
  right: auto;
  left: 0;
}
[dir=rtl] .left-container {
  margin-left: 0;
  margin-right: calc((100% - 1170px) / 2);
}
@media only screen and (max-width: 1199px) {
  [dir=rtl] .left-container {
    margin-left: 0;
    margin-right: calc((100% - 960px) / 2);
  }
}
@media only screen and (max-width: 991px) {
  [dir=rtl] .left-container {
    margin-left: 0;
    margin-right: calc((100% - 720px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  [dir=rtl] .left-container {
    margin-left: 0;
    margin-right: 0%;
  }
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .left-container {
    margin-left: 0;
    margin-right: calc((100% - 540px) / 2);
  }
}
@media only screen and (max-width: 575px) {
  [dir=rtl] .left-container {
    margin-left: 0;
    margin-right: 0%;
  }
}
[dir=rtl] .left-container .ic-content p {
  padding-right: 0;
  padding-left: 3rem;
}
@media only screen and (max-width: 1400px) {
  [dir=rtl] .left-container .ic-content p {
    padding-left: 0;
  }
}
[dir=rtl] .new-badge span {
  margin-left: 0;
  margin-right: 5px;
}
@media only screen and (max-width: 1400px) {
  [dir=rtl] .silder-four .btn-prev {
    left: auto !important;
    right: -10px !important;
  }
}

[dir=rtl] .text-start {
  text-align: right !important;
}
[dir=rtl] .text-end {
  text-align: left !important;
}
[dir=rtl] .float-start {
  float: right !important;
}
[dir=rtl] .float-end {
  float: left !important;
}
@media (min-width: 992px) {
  [dir=rtl] .text-lg-start {
    text-align: right !important;
  }
  [dir=rtl] .text-lg-end {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  [dir=rtl] .text-md-start {
    text-align: right !important;
  }
  [dir=rtl] .text-md-end {
    text-align: left !important;
  }
}
@media (min-width: 576px) {
  [dir=rtl] .text-sm-end {
    text-align: left !important;
  }
  [dir=rtl] .text-sm-start {
    text-align: right !important;
  }
}

[dir=rtl] .p-l5 {
  padding-left: 0;
  padding-right: 5px;
}
[dir=rtl] .p-l10 {
  padding-left: 0;
  padding-right: 10px;
}
[dir=rtl] .p-l15 {
  padding-left: 0;
  padding-right: 15px;
}
[dir=rtl] .p-l20 {
  padding-left: 0;
  padding-right: 20px;
}
[dir=rtl] .p-l30 {
  padding-left: 0;
  padding-right: 30px;
}
[dir=rtl] .p-l40 {
  padding-left: 0;
  padding-right: 40px;
}
[dir=rtl] .p-l50 {
  padding-left: 0;
  padding-right: 50px;
}
[dir=rtl] .p-l60 {
  padding-left: 0;
  padding-right: 60px;
}
[dir=rtl] .p-l70 {
  padding-left: 0;
  padding-right: 70px;
}
[dir=rtl] .p-l80 {
  padding-left: 0;
  padding-right: 80px;
}
[dir=rtl] .p-l90 {
  padding-left: 0;
  padding-right: 90px;
}
[dir=rtl] .p-l100 {
  padding-left: 0;
  padding-right: 100px;
}
[dir=rtl] .p-r5 {
  padding-left: 5px;
  padding-right: 0;
}
[dir=rtl] .p-r10 {
  padding-left: 10px;
  padding-right: 0;
}
[dir=rtl] .p-r15 {
  padding-left: 15px;
  padding-right: 0;
}
[dir=rtl] .p-r20 {
  padding-left: 20px;
  padding-right: 0;
}
[dir=rtl] .p-r30 {
  padding-left: 30px;
  padding-right: 0;
}
[dir=rtl] .p-r40 {
  padding-left: 40px;
  padding-right: 0;
}
[dir=rtl] .p-r50 {
  padding-left: 50px;
  padding-right: 0;
}
[dir=rtl] .p-r60 {
  padding-left: 60px;
  padding-right: 0;
}
[dir=rtl] .p-r70 {
  padding-left: 70px;
  padding-right: 0;
}
[dir=rtl] .p-r80 {
  padding-left: 80px;
  padding-right: 0;
}
[dir=rtl] .p-r90 {
  padding-left: 90px;
  padding-right: 0;
}
[dir=rtl] .p-r100 {
  padding-left: 100px;
  padding-right: 0;
}
[dir=rtl] .m-l5 {
  margin-left: 0;
  margin-right: 5px;
}
[dir=rtl] .m-l10 {
  margin-left: 0;
  margin-right: 10px;
}
[dir=rtl] .m-l15 {
  margin-left: 0;
  margin-right: 15px;
}
[dir=rtl] .m-l20 {
  margin-left: 0;
  margin-right: 20px;
}
[dir=rtl] .m-l30 {
  margin-left: 0;
  margin-right: 30px;
}
[dir=rtl] .m-l40 {
  margin-left: 0;
  margin-right: 40px;
}
[dir=rtl] .m-l50 {
  margin-left: 0;
  margin-right: 50px;
}
[dir=rtl] .m-l60 {
  margin-left: 0;
  margin-right: 60px;
}
[dir=rtl] .m-l70 {
  margin-left: 0;
  margin-right: 70px;
}
[dir=rtl] .m-l80 {
  margin-left: 0;
  margin-right: 80px;
}
[dir=rtl] .m-l90 {
  margin-left: 0;
  margin-right: 90px;
}
[dir=rtl] .m-l100 {
  margin-left: 0;
  margin-right: 100px;
}
[dir=rtl] .m-r5 {
  margin-left: 5px;
  margin-right: auto;
}
[dir=rtl] .m-r10 {
  margin-left: 10px;
  margin-right: 0;
}
[dir=rtl] .m-r15 {
  margin-left: 15px;
  margin-right: 0;
}
[dir=rtl] .m-r20 {
  margin-left: 20px;
  margin-right: 0;
}
[dir=rtl] .m-r30 {
  margin-left: 30px;
  margin-right: 0;
}
[dir=rtl] .m-r40 {
  margin-left: 40px;
  margin-right: 0;
}
[dir=rtl] .m-r50 {
  margin-left: 50px;
  margin-right: 0;
}
[dir=rtl] .m-r60 {
  margin-left: 60px;
  margin-right: 0;
}
[dir=rtl] .m-r70 {
  margin-left: 70px;
  margin-right: 0;
}
[dir=rtl] .m-r80 {
  margin-left: 80px;
  margin-right: 0;
}
[dir=rtl] .m-r90 {
  margin-left: 90px;
  margin-right: 0;
}
[dir=rtl] .m-r100 {
  margin-left: 100px;
  margin-right: 0;
}

@media only screen and (min-width: 991px) {
  [dir=rtl] .boxed .main-silder-swiper .btn-prev {
    left: auto;
    right: 5px;
    transform: rotateY(180deg);
  }
  [dir=rtl] .boxed .main-silder-swiper .btn-next {
    right: 70px;
    left: auto;
    transform: rotateY(180deg);
  }
}
@media only screen and (min-width: 1199px) {
  [dir=rtl] .boxed .about-media.style-2 {
    padding-left: 0;
    padding-right: 50px;
  }
  [dir=rtl] .boxed .about-media.style-2:after {
    left: auto;
    right: 0;
  }
  [dir=rtl] .boxed .ic-coming-soon .countdown .date {
    padding-left: 15px;
    padding-right: 0;
  }
}

/*# sourceMappingURL=style.css.map */
