/*------------------------------------------------------------------ */
/* ===================================
    Google font
====================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400;500;600;900&display=swap");
/* ===================================
   Scroll Top
====================================== */
.scroll-top-arrow,
.scroll-top-arrow:focus {
  font-size: 22px;
  line-height: 45px;
  color: #fff !important;
  display: none;
  height: 50px;
  width: 50px;
  padding: 0;
  position: fixed;
  right: 30px;
  text-align: center;
  text-decoration: none;
  top: 90%;
  z-index: 1049;
  border-radius: 100%;
  background: #40c6ec;
  font-weight: 200;
}

.scroll-top-arrow:hover {
  color: #fff !important;
  border-color: #0a4c89;
  background: #0a4c89;
}

.scroll-top-arrow i {
  line-height: 51px;
  position: relative;
}

.thin {
  font-weight: 300;
}
.regular {
  font-weight: 400;
}
.s-bold {
  font-weight: 500;
}
.bold {
  font-weight: 600;
}
.m-bold {
  font-weight: 800;
}

/*===================================
   Loader
====================================== */
.preloader {
  background: #0a4c89;
  background-color: #2589bb;
  /* Fallback */
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #0a4c89,
    #40c6ec,
    #40c6ec,
    #0a4c89
  );
  -moz-background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: -o-linear-gradient(35deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from-color', endColorstr='$to-color', GradientType=1);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader .spinner {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

/* ===================================
    Typography
====================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px;
  padding: 0;
  letter-spacing: 0;
  font-weight: 400;
}

h1 {
  font-size: 70px;
  line-height: 70px;
}

h2 {
  font-size: 55px;
  line-height: 60px;
}

h3 {
  font-size: 48px;
  line-height: 54px;
}

h4 {
  font-size: 40px;
  line-height: 46px;
}

h5 {
  font-size: 32px;
  line-height: 40px;
}

h6 {
  font-size: 25px;
  line-height: 30px;
}

body {
  font-family: "Inter", arial, sans-serif !important;
  font-size: 16px;
  color: #000;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  position: relative;
  min-height: 100% !important;
  background-color: #f6f6f6;
}

a {
  color: #0a4c89;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover,
a:active {
  color: #40c6ec;
  text-decoration: none;
}

a:focus,
a:active,
button:focus,
button:active,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none;
  text-decoration: none;
}

img {
  max-width: 100%;
  border-style: none;
}

video {
  background-size: cover;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

input,
textarea,
select {
  border: 1px solid #d1d1d1;
  font-size: 14px;
  padding: 8px 15px;
  width: 100%;
  margin: 0 0 20px 0;
  max-width: 100%;
  resize: none;
}

input[type="submit"] {
  width: auto;
}

input[type="button"],
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
textarea,
input[type="submit"] {
  -webkit-appearance: none;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #585858;
  outline: none;
}

input[type="button"]:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

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

ul,
ol,
dl {
  list-style-position: outside;
  margin-bottom: 25px;
  list-style-type: none !important;
}

/* * {
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

*:hover {
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
} */

::selection {
  color: #000;
  background: #dbdbdb;
}

::-moz-selection {
  color: #000;
  background: #dbdbdb;
}

::-webkit-input-placeholder {
  color: #6f6f6f;
  text-overflow: ellipsis;
}

::-moz-placeholder {
  color: #6f6f6f;
  text-overflow: ellipsis;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #6f6f6f;
  text-overflow: ellipsis;
  opacity: 1;
}

section {
  padding: 110px 0;
  overflow: hidden;
}

.no-transition *,
.swiper-container *,
.mfp-container *,
.skillbar-bar-main *,
.portfolio-grid *,
.parallax,
.header-searchbar *,
.header-social-icon * {
  transition-timing-function: initial;
  -moz-transition-timing-function: initial;
  -webkit-transition-timing-function: initial;
  -o-transition-timing-function: initial;
  -ms-transition-timing-function: initial;
  transition-duration: 0s;
  -moz-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
  -ms-transition-duration: 0s;
}

/* font family */
.alt-font {
  font-family: "Inter", arial, sans-serif;
}

.main-font {
  font-family: "Inter", arial, sans-serif;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===================================
    text color
====================================== */
.text-primary {
  color: #0a4c89 !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #073259 !important;
}

.text-secondary {
  color: #40c6ec !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #17b5e2 !important;
}

.text-dark {
  color: #4b4453 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #322d37 !important;
}

.text-light {
  color: #fef7ff !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #f8c4ff !important;
}

.text-info {
  color: #0081cf !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #00619c !important;
}

.text-danger {
  color: #cb342b !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #a12922 !important;
}

.text-success {
  color: #008f7a !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #005c4e !important;
}

.text-white {
  color: #fff !important;
}

a.text-white:hover,
a.text-white:focus {
  color: #e6e6e6 !important;
}

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

a.text-black:hover,
a.text-black:focus {
  color: black !important;
}

.text-yellow {
  color: #f9f871 !important;
}

a.text-yellow:hover,
a.text-yellow:focus {
  color: #f7f640 !important;
}

.text-blue {
  color: #0081cf !important;
}

a.text-blue:hover,
a.text-blue:focus {
  color: #00619c !important;
}

.text-green {
  color: #008f7a !important;
}

a.text-green:hover,
a.text-green:focus {
  color: #005c4e !important;
}

.text-red {
  color: #cb342b !important;
}

a.text-red:hover,
a.text-red:focus {
  color: #a12922 !important;
}

.text-orange {
  color: #ff9671 !important;
}

a.text-orange:hover,
a.text-orange:focus {
  color: #ff703e !important;
}

.text-extra-dark-gray {
  color: #231d2a !important;
}

a.text-extra-dark-gray:hover,
a.text-extra-dark-gray:focus {
  color: #0a080c !important;
}

.text-dark-gray {
  color: #494251 !important;
}

a.text-dark-gray:hover,
a.text-dark-gray:focus {
  color: #302b35 !important;
}

.text-extra-medium-gray {
  color: #939393 !important;
}

a.text-extra-medium-gray:hover,
a.text-extra-medium-gray:focus {
  color: #7a7a7a !important;
}

.text-medium-gray {
  color: #a8a0b1 !important;
}

a.text-medium-gray:hover,
a.text-medium-gray:focus {
  color: #8e849a !important;
}

.text-extra-light-gray {
  color: #e0e0e0 !important;
}

a.text-extra-light-gray:hover,
a.text-extra-light-gray:focus {
  color: #c7c7c7 !important;
}

.text-medium-light-gray {
  color: #ededed !important;
}

a.text-medium-light-gray:hover,
a.text-medium-light-gray:focus {
  color: #d4d4d4 !important;
}

.text-light-gray {
  color: #f9f9f9 !important;
}

a.text-light-gray:hover,
a.text-light-gray:focus {
  color: #e0e0e0 !important;
}

.text-very-light-gray {
  color: #f8f8f8 !important;
}

a.text-very-light-gray:hover,
a.text-very-light-gray:focus {
  color: #dfdfdf !important;
}

.text-default {
  color: #0a4c89 !important;
}

a.text-default:hover,
a.text-default:focus {
  color: #073259 !important;
}

/* ===================================
    Button
====================================== */
.btn {
  border-radius: 12px;
}

.btn-lg {
  font-size: 20px;
  padding: 9px 34px;
  line-height: 25px;
}

.btn-sm {
  font-size: 11px;
  padding: 4px 24px;
}

.btn-primary {
  color: #fff !important;
  background: #0a4c89;
  border-color: #0a4c89;
}

.btn-primary:hover {
  color: #0a4c89 !important;
  background: transparent !important;
  border-color: #0a4c89;
}

.btn-primary:hover i {
  color: #0a4c89;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #0a4c89 !important;
  background: transparent !important;
}

.btn-primary i {
  color: #fff;
}

.btn-secondary {
  color: #231d2a !important;
  background: #40c6ec;
  border-color: #40c6ec;
}

.btn-secondary:hover {
  color: #40c6ec !important;
  background: transparent !important;
  border-color: #40c6ec;
}

.btn-secondary:hover i {
  color: #40c6ec;
}

.btn-secondary:focus,
.btn-secondary.focus {
  color: #40c6ec !important;
  background: transparent !important;
}

.btn-secondary i {
  color: #231d2a;
}

.btn-dark {
  color: whitesmoke !important;
  background: #151a22;
  border: none;
}

.btn-dark:hover {
  background: #212b38 !important;
}

.btn-dark:focus,
.btn-dark.focus {
  color: #4b4453 !important;
  background: transparent !important;
}

.btn-dark i {
  color: #fff;
}

.btn-light {
  color: #231d2a !important;
  background: #fef7ff;
  border-color: #fef7ff;
}

.btn-light:hover {
  color: #fef7ff !important;
  background: transparent !important;
  border-color: #fef7ff;
}

.btn-light:hover i {
  color: #fef7ff;
}

.btn-light:focus,
.btn-light.focus {
  color: #fef7ff !important;
  background: transparent !important;
}

.btn-light i {
  color: #231d2a;
}

.btn-info {
  color: #fff !important;
  background: #0081cf;
  border-color: #0081cf;
}

.btn-info:hover {
  color: #0081cf !important;
  background: transparent !important;
  border-color: #0081cf;
}

.btn-info:hover i {
  color: #0081cf;
}

.btn-info:focus,
.btn-info.focus {
  color: #0081cf !important;
  background: transparent !important;
}

.btn-info i {
  color: #fff;
}

.btn-danger {
  color: #fff !important;
  background: #cb342b;
  border-color: #cb342b;
}

.btn-danger:hover {
  color: #cb342b !important;
  background: transparent !important;
  border-color: #cb342b;
}

.btn-danger:hover i {
  color: #cb342b;
}

.btn-danger:focus,
.btn-danger.focus {
  color: #cb342b !important;
  background: transparent !important;
}

.btn-danger i {
  color: #fff;
}

.btn-success {
  color: #fff !important;
  background: #008f7a;
  border-color: #008f7a;
}

.btn-success:hover {
  color: #008f7a !important;
  background: transparent !important;
  border-color: #008f7a;
}

.btn-success:hover i {
  color: #008f7a;
}

.btn-success:focus,
.btn-success.focus {
  color: #008f7a !important;
  background: transparent !important;
}

.btn-success i {
  color: #fff;
}

.btn-white {
  color: #231d2a !important;
  background: #fff;
  border-color: #fff;
}

.btn-white:hover {
  color: #fff !important;
  background: transparent !important;
  border-color: #fff;
}

.btn-white:hover i {
  color: #fff;
}

.btn-white:focus,
.btn-white.focus {
  color: #fff !important;
  background: transparent !important;
}

.btn-white i {
  color: #231d2a;
}

.btn-black {
  color: #fff !important;
  background: #000;
  border-color: #000;
}

.btn-black:hover {
  color: #000 !important;
  background: transparent !important;
  border-color: #000;
}

.btn-black:hover i {
  color: #000;
}

.btn-black:focus,
.btn-black.focus {
  color: #000 !important;
  background: transparent !important;
}

.btn-black i {
  color: #fff;
}

.btn-yellow {
  color: #231d2a !important;
  background: #f9f871;
  border-color: #f9f871;
}

.btn-yellow:hover {
  color: #f9f871 !important;
  background: transparent !important;
  border-color: #f9f871;
}

.btn-yellow:hover i {
  color: #f9f871;
}

.btn-yellow:focus,
.btn-yellow.focus {
  color: #f9f871 !important;
  background: transparent !important;
}

.btn-yellow i {
  color: #231d2a;
}

.btn-blue {
  color: #fff !important;
  background: #0081cf;
  border-color: #0081cf;
}

.btn-blue:hover {
  color: #0081cf !important;
  background: transparent !important;
  border-color: #0081cf;
}

.btn-blue:hover i {
  color: #0081cf;
}

.btn-blue:focus,
.btn-blue.focus {
  color: #0081cf !important;
  background: transparent !important;
}

.btn-blue i {
  color: #fff;
}

.btn-green {
  color: #fff !important;
  background: #008f7a;
  border-color: #008f7a;
}

.btn-green:hover {
  color: #008f7a !important;
  background: transparent !important;
  border-color: #008f7a;
}

.btn-green:hover i {
  color: #008f7a;
}

.btn-green:focus,
.btn-green.focus {
  color: #008f7a !important;
  background: transparent !important;
}

.btn-green i {
  color: #fff;
}

.btn-red {
  color: #fff !important;
  background: #cb342b;
  border-color: #cb342b;
}

.btn-red:hover {
  color: #cb342b !important;
  background: transparent !important;
  border-color: #cb342b;
}

.btn-red:hover i {
  color: #cb342b;
}

.btn-red:focus,
.btn-red.focus {
  color: #cb342b !important;
  background: transparent !important;
}

.btn-red i {
  color: #fff;
}

.btn-orange {
  color: #231d2a !important;
  background: #ff9671;
  border-color: #ff9671;
}

.btn-orange:hover {
  color: #ff9671 !important;
  background: transparent !important;
  border-color: #ff9671;
}

.btn-orange:hover i {
  color: #ff9671;
}

.btn-orange:focus,
.btn-orange.focus {
  color: #ff9671 !important;
  background: transparent !important;
}

.btn-orange i {
  color: #231d2a;
}

.btn-default {
  color: #fff !important;
  background: #0a4c89;
  border-color: #0a4c89;
}

.btn-default:hover {
  color: #0a4c89 !important;
  background: transparent !important;
  border-color: #0a4c89;
}

.btn-default:hover i {
  color: #0a4c89;
}

.btn-default:focus,
.btn-default.focus {
  color: #0a4c89 !important;
  background: transparent !important;
}

.btn-default i {
  color: #fff;
}

.btn-outline-primary {
  color: #0a4c89;
  background-color: transparent;
  background-image: none;
  border-color: #0a4c89;
}

.btn-outline-primary:hover {
  color: #fff !important;
  background-color: #0a4c89;
  border-color: #0a4c89;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  color: #fff;
  background-color: #0a4c89;
  border-color: #0a4c89;
}

.btn-outline-secondary {
  color: #40c6ec;
  background-color: transparent;
  background-image: none;
  border-color: #40c6ec;
}

.btn-outline-secondary:hover {
  color: #fff !important;
  background-color: #40c6ec;
  border-color: #40c6ec;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  color: #fff;
  background-color: #40c6ec;
  border-color: #40c6ec;
}

.btn-outline-dark {
  color: #4b4453;
  background-color: transparent;
  background-image: none;
  border-color: #4b4453;
}

.btn-outline-dark:hover {
  color: #fff !important;
  background-color: #4b4453;
  border-color: #4b4453;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  color: #fff;
  background-color: #4b4453;
  border-color: #4b4453;
}

.btn-outline-light {
  color: #fef7ff;
  background-color: transparent;
  background-image: none;
  border-color: #fef7ff;
}

.btn-outline-light:hover {
  color: #fff !important;
  background-color: #fef7ff;
  border-color: #fef7ff;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  color: #fff;
  background-color: #fef7ff;
  border-color: #fef7ff;
}

.btn-outline-info {
  color: #0081cf;
  background-color: transparent;
  background-image: none;
  border-color: #0081cf;
}

.btn-outline-info:hover {
  color: #fff !important;
  background-color: #0081cf;
  border-color: #0081cf;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  color: #fff;
  background-color: #0081cf;
  border-color: #0081cf;
}

.btn-outline-danger {
  color: #cb342b;
  background-color: transparent;
  background-image: none;
  border-color: #cb342b;
}

.btn-outline-danger:hover {
  color: #fff !important;
  background-color: #cb342b;
  border-color: #cb342b;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  color: #fff;
  background-color: #cb342b;
  border-color: #cb342b;
}

.btn-outline-success {
  color: #008f7a;
  background-color: transparent;
  background-image: none;
  border-color: #008f7a;
}

.btn-outline-success:hover {
  color: #fff !important;
  background-color: #008f7a;
  border-color: #008f7a;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  color: #fff;
  background-color: #008f7a;
  border-color: #008f7a;
}

.btn-outline-white {
  color: #fff;
  background-color: transparent;
  background-image: none;
  border-color: #fff;
}

.btn-outline-white:hover {
  color: #fff !important;
  background-color: #fff;
  border-color: #fff;
}

.btn-outline-white:focus,
.btn-outline-white.focus {
  color: #fff;
  background-color: #fff;
  border-color: #fff;
}

.btn-outline-black {
  color: #000;
  background-color: transparent;
  background-image: none;
  border-color: #000;
}

.btn-outline-black:hover {
  color: #fff !important;
  background-color: #000;
  border-color: #000;
}

.btn-outline-black:focus,
.btn-outline-black.focus {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-outline-yellow {
  color: #f9f871;
  background-color: transparent;
  background-image: none;
  border-color: #f9f871;
}

.btn-outline-yellow:hover {
  color: #fff !important;
  background-color: #f9f871;
  border-color: #f9f871;
}

.btn-outline-yellow:focus,
.btn-outline-yellow.focus {
  color: #fff;
  background-color: #f9f871;
  border-color: #f9f871;
}

.btn-outline-blue {
  color: #0081cf;
  background-color: transparent;
  background-image: none;
  border-color: #0081cf;
}

.btn-outline-blue:hover {
  color: #fff !important;
  background-color: #0081cf;
  border-color: #0081cf;
}

.btn-outline-blue:focus,
.btn-outline-blue.focus {
  color: #fff;
  background-color: #0081cf;
  border-color: #0081cf;
}

.btn-outline-green {
  color: #008f7a;
  background-color: transparent;
  background-image: none;
  border-color: #008f7a;
}

.btn-outline-green:hover {
  color: #fff !important;
  background-color: #008f7a;
  border-color: #008f7a;
}

.btn-outline-green:focus,
.btn-outline-green.focus {
  color: #fff;
  background-color: #008f7a;
  border-color: #008f7a;
}

.btn-outline-red {
  color: #cb342b;
  background-color: transparent;
  background-image: none;
  border-color: #cb342b;
}

.btn-outline-red:hover {
  color: #fff !important;
  background-color: #cb342b;
  border-color: #cb342b;
}

.btn-outline-red:focus,
.btn-outline-red.focus {
  color: #fff;
  background-color: #cb342b;
  border-color: #cb342b;
}

.btn-outline-orange {
  color: #ff9671;
  background-color: transparent;
  background-image: none;
  border-color: #ff9671;
}

.btn-outline-orange:hover {
  color: #fff !important;
  background-color: #ff9671;
  border-color: #ff9671;
}

.btn-outline-orange:focus,
.btn-outline-orange.focus {
  color: #fff;
  background-color: #ff9671;
  border-color: #ff9671;
}

.btn-outline-default {
  color: #0a4c89;
  background-color: transparent;
  background-image: none;
  border-color: #0a4c89;
}

.btn-outline-default:hover {
  color: #fff !important;
  background-color: #0a4c89;
  border-color: #0a4c89;
}

.btn-outline-default:focus,
.btn-outline-default.focus {
  color: #fff;
  background-color: #0a4c89;
  border-color: #0a4c89;
}

.btn i {
  margin-left: 6px;
  margin-right: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.btn-transparent-primary {
  color: #0a4c89;
  background-color: transparent;
  background-image: none;
  border-color: #0a4c89;
}

.btn-transparent-primary:hover {
  color: #fff !important;
  background-color: #0a4c89;
  border-color: #0a4c89;
}

.btn-transparent-primary:focus,
.btn-transparent-primary.focus {
  color: #fff;
  background-color: #0a4c89;
  border-color: #0a4c89;
}

.btn-transparent-secondary {
  color: #40c6ec;
  background-color: transparent;
  background-image: none;
  border-color: #40c6ec;
}

.btn-transparent-secondary:hover {
  color: #fff !important;
  background-color: #40c6ec;
  border-color: #40c6ec;
}

.btn-transparent-secondary:focus,
.btn-transparent-secondary.focus {
  color: #fff;
  background-color: #40c6ec;
  border-color: #40c6ec;
}

.btn-transparent-dark {
  color: #4b4453;
  background-color: transparent;
  background-image: none;
  border-color: #4b4453;
}

.btn-transparent-dark:hover {
  color: #fff !important;
  background-color: #4b4453;
  border-color: #4b4453;
}

.btn-transparent-dark:focus,
.btn-transparent-dark.focus {
  color: #fff;
  background-color: #4b4453;
  border-color: #4b4453;
}

.btn-transparent-light {
  color: #fef7ff;
  background-color: transparent;
  background-image: none;
  border-color: #fef7ff;
}

.btn-transparent-light:hover {
  color: #fff !important;
  background-color: #fef7ff;
  border-color: #fef7ff;
}

.btn-transparent-light:focus,
.btn-transparent-light.focus {
  color: #fff;
  background-color: #fef7ff;
  border-color: #fef7ff;
}

.btn-transparent-info {
  color: #0081cf;
  background-color: transparent;
  background-image: none;
  border-color: #0081cf;
}

.btn-transparent-info:hover {
  color: #fff !important;
  background-color: #0081cf;
  border-color: #0081cf;
}

.btn-transparent-info:focus,
.btn-transparent-info.focus {
  color: #fff;
  background-color: #0081cf;
  border-color: #0081cf;
}

.btn-transparent-danger {
  color: #cb342b;
  background-color: transparent;
  background-image: none;
  border-color: #cb342b;
}

.btn-transparent-danger:hover {
  color: #fff !important;
  background-color: #cb342b;
  border-color: #cb342b;
}

.btn-transparent-danger:focus,
.btn-transparent-danger.focus {
  color: #fff;
  background-color: #cb342b;
  border-color: #cb342b;
}

.btn-transparent-success {
  color: #008f7a;
  background-color: transparent;
  background-image: none;
  border-color: #008f7a;
}

.btn-transparent-success:hover {
  color: #fff !important;
  background-color: #008f7a;
  border-color: #008f7a;
}

.btn-transparent-success:focus,
.btn-transparent-success.focus {
  color: #fff;
  background-color: #008f7a;
  border-color: #008f7a;
}

.btn-transparent-white {
  color: #fff;
  background-color: transparent;
  background-image: none;
  border-color: #fff;
}

.btn-transparent-white:hover {
  color: #fff !important;
  background-color: #fff;
  border-color: #fff;
}

.btn-transparent-white:focus,
.btn-transparent-white.focus {
  color: #fff;
  background-color: #fff;
  border-color: #fff;
}

.btn-transparent-black {
  color: #000;
  background-color: transparent;
  background-image: none;
  border-color: #000;
}

.btn-transparent-black:hover {
  color: #fff !important;
  background-color: #000;
  border-color: #000;
}

.btn-transparent-black:focus,
.btn-transparent-black.focus {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-transparent-yellow {
  color: #f9f871;
  background-color: transparent;
  background-image: none;
  border-color: #f9f871;
}

.btn-transparent-yellow:hover {
  color: #fff !important;
  background-color: #f9f871;
  border-color: #f9f871;
}

.btn-transparent-yellow:focus,
.btn-transparent-yellow.focus {
  color: #fff;
  background-color: #f9f871;
  border-color: #f9f871;
}

.btn-transparent-blue {
  color: #0081cf;
  background-color: transparent;
  background-image: none;
  border-color: #0081cf;
}

.btn-transparent-blue:hover {
  color: #fff !important;
  background-color: #0081cf;
  border-color: #0081cf;
}

.btn-transparent-blue:focus,
.btn-transparent-blue.focus {
  color: #fff;
  background-color: #0081cf;
  border-color: #0081cf;
}

.btn-transparent-green {
  color: #008f7a;
  background-color: transparent;
  background-image: none;
  border-color: #008f7a;
}

.btn-transparent-green:hover {
  color: #fff !important;
  background-color: #008f7a;
  border-color: #008f7a;
}

.btn-transparent-green:focus,
.btn-transparent-green.focus {
  color: #fff;
  background-color: #008f7a;
  border-color: #008f7a;
}

.btn-transparent-red {
  color: #cb342b;
  background-color: transparent;
  background-image: none;
  border-color: #cb342b;
}

.btn-transparent-red:hover {
  color: #fff !important;
  background-color: #cb342b;
  border-color: #cb342b;
}

.btn-transparent-red:focus,
.btn-transparent-red.focus {
  color: #fff;
  background-color: #cb342b;
  border-color: #cb342b;
}

.btn-transparent-orange {
  color: #ff9671;
  background-color: transparent;
  background-image: none;
  border-color: #ff9671;
}

.btn-transparent-orange:hover {
  color: #fff !important;
  background-color: #ff9671;
  border-color: #ff9671;
}

.btn-transparent-orange:focus,
.btn-transparent-orange.focus {
  color: #fff;
  background-color: #ff9671;
  border-color: #ff9671;
}

.btn-transparent-default {
  color: #0a4c89;
  background-color: transparent;
  background-image: none;
  border-color: #0a4c89;
}

.btn-transparent-default:hover {
  color: #fff !important;
  background-color: #0a4c89;
  border-color: #0a4c89;
}

.btn-transparent-default:focus,
.btn-transparent-default.focus {
  color: #fff;
  background-color: #0a4c89;
  border-color: #0a4c89;
}

/* button rounded */
.btn.btn-rounded {
  border-radius: 50px;
}

.btn-gradient {
  color: #fff !important;
  background: #0a4c89;
  background-color: #2589bb;
  /* Fallback */
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #0a4c89,
    #40c6ec,
    #40c6ec,
    #0a4c89
  );
  -moz-background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: -o-linear-gradient(35deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from-color', endColorstr='$to-color', GradientType=1);
  transition: 0.5s;
}

.btn-gradient:hover {
  background: #0a4c89;
  background-color: #2589bb;
  /* Fallback */
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #40c6ec,
    #0a4c89,
    #0a4c89,
    #40c6ec
  );
  -moz-background: linear-gradient(55deg, #40c6ec, #0a4c89, #0a4c89, #40c6ec);
  background: -o-linear-gradient(35deg, #40c6ec, #0a4c89, #0a4c89, #40c6ec);
  background: linear-gradient(55deg, #40c6ec, #0a4c89, #0a4c89, #40c6ec);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from-color', endColorstr='$to-color', GradientType=1);
}

.video-play-button {
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 32px;
  height: 44px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  color: #0a4c89;
  font-size: 30px;
  position: relative;
  top: 130px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #fff repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #fff repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -ms-transition: all 200ms;
  -o-transition: all 200ms;
}

.video-play-button:hover,
.video-play-button:focus {
  color: #fff;
}

.video-play-button:hover:after {
  background: #fff;
}

.video-play-button i {
  z-index: 2;
  position: absolute;
  top: 23px;
  left: 16px;
  color: #0a4c89;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.mybtn1 {
  /* font-size: 14px; */
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 50px;
  display: inline-block;
  color: #fff;
  background: #0a4c89;
  background-color: #2589bb;
  /* Fallback */
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #0a4c89,
    #40c6ec,
    #40c6ec,
    #0a4c89
  );
  -moz-background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: -o-linear-gradient(35deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from-color', endColorstr='$to-color', GradientType=1);
  border: 0px;
  cursor: pointer;
  background-size: 400% 100%;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.14);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.mybtn1 i {
  opacity: 0;
  width: 0px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.mybtn1:hover {
  color: #fff;
  background-position: 100% 0;
}

.mybtn1:hover i {
  opacity: 1;
  padding-left: 10px;
  width: auto;
}

.mybtn1:focus {
  outline: 0px;
}

/* ===================================
   Dropdown
====================================== */
.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown > .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}

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

.dropdown-menu {
  /* min-width: 200px; */
  border-radius: 16px;
  border: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
  border-radius: 8px;
}

.dropdown-menu.columns-2 {
  min-width: 400px;
}

.dropdown-menu.columns-3 {
  min-width: 600px;
}

.dropdown-menu li a {
  padding: 5px 15px;
  font-weight: 300;
}

.multi-column-dropdown {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.multi-column-dropdown li a {
  display: block;
  clear: both;
  line-height: 1.428571429;
  color: #333;
  white-space: normal;
}

.multi-column-dropdown li a:hover {
  text-decoration: none;
  color: #262626;
  background-color: #999;
}

@media (max-width: 767px) {
  .dropdown-menu.multi-column {
    min-width: 240px !important;
    overflow-x: hidden;
  }
}

@media (min-width: 1200px) {
  .item-product {
    height: 540px !important;
  }
}

.error h1 {
  font-size: 240px;
  line-height: 240px;
}

.error p {
  font-size: 30px;
  line-height: 50px;
}

.svg-abs {
  position: absolute;
}

.svg-f-btm {
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}

.svg-white {
  fill: #f6f6f6;
}

.svg-f-top-invert {
  top: -2px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  transform: scale(-1);
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #0a4c89;
  background-color: #2589bb;
  /* Fallback */
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #0a4c89,
    #40c6ec,
    #40c6ec,
    #0a4c89
  );
  -moz-background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: -o-linear-gradient(35deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from-color', endColorstr='$to-color', GradientType=1);
}

.info {
  padding: 16px;
  border-radius: 24px;
  transition: opacity 1s linear;
  position: relative;
  -webkit-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  height: 100%;
  background-color: #fff;
}

.info .icon {
  color: #242424;
  font-size: 38px;
  background: #0a4c89;
  background: linear-gradient(to left, #2d99c7, #436f90);
  display: inline-block;
  text-align: center;
  line-height: 48px;
  border-radius: 36px;
  color: #fff;
  position: relative;
  padding: 64px 48px;
  margin-bottom: 16px;
  -webkit-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  transform: rotate(45deg);
  margin-top: -64px;
}

.info .icon .fas {
  transform: rotate(-45deg);
}

.info .info-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #242424;
  margin: 23px 0px 19px;
}

.info:hover {
  -webkit-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  cursor: pointer;
  box-shadow: 0 5px 25px 7px rgba(45, 145, 222, 0.1);
}

/* ===================================
    Background color
====================================== */
.bg-primary {
  background-color: #0a4c89 !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #073259 !important;
}

.bg-secondary {
  background-color: #40c6ec !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #17b5e2 !important;
}

.bg-dark {
  background-color: #4b4453 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #322d37 !important;
}

.bg-light {
  background-color: #fef7ff !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #f8c4ff !important;
}

.bg-info {
  background-color: #0081cf !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #00619c !important;
}

.bg-danger {
  background-color: #cb342b !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #a12922 !important;
}

.bg-success {
  background-color: #008f7a !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #005c4e !important;
}

.bg-white {
  background-color: #fff !important;
}

a.bg-white:hover,
a.bg-white:focus,
button.bg-white:hover,
button.bg-white:focus {
  background-color: #e6e6e6 !important;
}

.bg-black {
  background-color: #000 !important;
}

a.bg-black:hover,
a.bg-black:focus,
button.bg-black:hover,
button.bg-black:focus {
  background-color: black !important;
}

.bg-yellow {
  background-color: #f9f871 !important;
}

a.bg-yellow:hover,
a.bg-yellow:focus,
button.bg-yellow:hover,
button.bg-yellow:focus {
  background-color: #f7f640 !important;
}

.bg-blue {
  background-color: #0081cf !important;
}

a.bg-blue:hover,
a.bg-blue:focus,
button.bg-blue:hover,
button.bg-blue:focus {
  background-color: #00619c !important;
}

.bg-green {
  background-color: #008f7a !important;
}

a.bg-green:hover,
a.bg-green:focus,
button.bg-green:hover,
button.bg-green:focus {
  background-color: #005c4e !important;
}

.bg-red {
  background-color: #cb342b !important;
}

a.bg-red:hover,
a.bg-red:focus,
button.bg-red:hover,
button.bg-red:focus {
  background-color: #a12922 !important;
}

.bg-orange {
  background-color: #ff9671 !important;
}

a.bg-orange:hover,
a.bg-orange:focus,
button.bg-orange:hover,
button.bg-orange:focus {
  background-color: #ff703e !important;
}

.bg-extra-dark-gray {
  background-color: #231d2a !important;
}

a.bg-extra-dark-gray:hover,
a.bg-extra-dark-gray:focus,
button.bg-extra-dark-gray:hover,
button.bg-extra-dark-gray:focus {
  background-color: #0a080c !important;
}

.bg-dark-gray {
  background-color: #494251 !important;
}

a.bg-dark-gray:hover,
a.bg-dark-gray:focus,
button.bg-dark-gray:hover,
button.bg-dark-gray:focus {
  background-color: #302b35 !important;
}

.bg-extra-medium-gray {
  background-color: #939393 !important;
}

a.bg-extra-medium-gray:hover,
a.bg-extra-medium-gray:focus,
button.bg-extra-medium-gray:hover,
button.bg-extra-medium-gray:focus {
  background-color: #7a7a7a !important;
}

.bg-medium-gray {
  background-color: #a8a0b1 !important;
}

a.bg-medium-gray:hover,
a.bg-medium-gray:focus,
button.bg-medium-gray:hover,
button.bg-medium-gray:focus {
  background-color: #8e849a !important;
}

.bg-extra-light-gray {
  background-color: #e0e0e0 !important;
}

a.bg-extra-light-gray:hover,
a.bg-extra-light-gray:focus,
button.bg-extra-light-gray:hover,
button.bg-extra-light-gray:focus {
  background-color: #c7c7c7 !important;
}

.bg-medium-light-gray {
  background-color: #ededed !important;
}

a.bg-medium-light-gray:hover,
a.bg-medium-light-gray:focus,
button.bg-medium-light-gray:hover,
button.bg-medium-light-gray:focus {
  background-color: #d4d4d4 !important;
}

.bg-light-gray {
  background-color: #f9f9f9 !important;
}

a.bg-light-gray:hover,
a.bg-light-gray:focus,
button.bg-light-gray:hover,
button.bg-light-gray:focus {
  background-color: #e0e0e0 !important;
}

.bg-very-light-gray {
  background-color: #f8f8f8 !important;
}

a.bg-very-light-gray:hover,
a.bg-very-light-gray:focus,
button.bg-very-light-gray:hover,
button.bg-very-light-gray:focus {
  background-color: #dfdfdf !important;
}

.bg-default {
  background-color: #0a4c89 !important;
}

a.bg-default:hover,
a.bg-default:focus,
button.bg-default:hover,
button.bg-default:focus {
  background-color: #073259 !important;
}

.bg-gradient {
  background: #0a4c89;
  background-color: #2589bb;
  /* Fallback */
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #0a4c89,
    #40c6ec,
    #40c6ec,
    #0a4c89
  );
  -moz-background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: -o-linear-gradient(35deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from-color', endColorstr='$to-color', GradientType=1);
}

/* ===================================
    Background image
====================================== */
.parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fix-background {
  position: relative;
  background-size: cover;
  animation-duration: 0s;
  animation-fill-mode: none;
  -webkit-animation-duration: 0s;
  -webkit-animation-fill-mode: none;
  -moz-animation-duration: 0s;
  -moz-animation-fill-mode: none;
  -ms-animation-duration: 0s;
  -ms-animation-fill-mode: none;
  -o-animation-fill-mode: none;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.cover-background {
  position: relative !important;
  background-size: cover !important;
  overflow: hidden !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.bg-overlay {
  background-color: #000;
  opacity: 0.8;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.bg-overlay {
  background-color: #000;
  opacity: 0.8;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

/* Background Images */
.bg {
  background-size: cover;
  background: no-repeat;
  background-position: center center;
}

.bg-img {
  width: 100vw;
  min-height: 855px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0;
  margin-top: 0;
  position: relative;
  display: flex;
  align-items: center;
}

/*-------------------------------------------------------
          [ Overlay Effect Bg image ]
-------------------------------------------------------*/
[data-overlay-dark],
[data-overlay-color],
[data-overlay-light] {
  position: relative;
}

[data-overlay-dark] .container,
[data-overlay-color] .container,
[data-overlay-light] .container {
  position: relative;
  color: #fff;
  z-index: 2;
}

[data-overlay-dark]:before,
[data-overlay-color]:before,
[data-overlay-light]:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

[data-overlay-dark]:before {
  background: #0b1520;
}

[data-overlay-color]:before {
  background-color: #0a4c89;
}

[data-overlay-light]:before {
  background: #fff;
}

[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
  color: #fff;
}

[data-overlay-dark] p {
  color: #fff;
}

[data-overlay-light] h1,
[data-overlay-light] h2,
[data-overlay-light] h3,
[data-overlay-light] h4,
[data-overlay-light] h5,
[data-overlay-light] h6,
[data-overlay-light] span {
  color: #555;
}

[data-overlay-light] p {
  color: #555;
}

[data-overlay-dark="0"]:before,
[data-overlay-color="0"]:before,
[data-overlay-light="0"]:before {
  opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-color="1"]:before,
[data-overlay-light="1"]:before {
  opacity: 0.1;
}

[data-overlay-dark="2"]:before,
[data-overlay-color="2"]:before,
[data-overlay-light="2"]:before {
  opacity: 0.2;
}

[data-overlay-dark="3"]:before,
[data-overlay-color="3"]:before,
[data-overlay-light="3"]:before {
  opacity: 0.3;
}

[data-overlay-dark="4"]:before,
[data-overlay-color="4"]:before,
[data-overlay-light="4"]:before {
  opacity: 0.4;
}

[data-overlay-dark="5"]:before,
[data-overlay-color="5"]:before,
[data-overlay-light="5"]:before {
  opacity: 0.5;
}

[data-overlay-dark="6"]:before,
[data-overlay-color="6"]:before,
[data-overlay-light="6"]:before {
  opacity: 0.6;
}

[data-overlay-dark="7"]:before,
[data-overlay-color="7"]:before,
[data-overlay-light="7"]:before {
  opacity: 0.7;
}

[data-overlay-dark="8"]:before,
[data-overlay-color="8"]:before,
[data-overlay-light="8"]:before {
  opacity: 0.8;
}

[data-overlay-dark="9"]:before,
[data-overlay-color="9"]:before,
[data-overlay-light="9"]:before {
  opacity: 0.9;
}

[data-overlay-dark="10"]:before,
[data-overlay-color="10"]:before,
[data-overlay-light="10"]:before {
  opacity: 1;
}

/* ===================================
    Background Video
====================================== */
.king-full-video-area {
  position: relative;
  height: 100vh;
}

.king-full-video-area video {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  z-index: -100;
}

.king-full-video-area .king-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

/* ===================================
   Section background video
====================================== */
.section-bg-video {
  position: relative;
  overflow: hidden;
  max-height: 800px;
}

.section-bg-video .container-video {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.section-bg-video .bg-overlay {
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}

.section-bg-video .transparent-dark {
  opacity: 0.8;
}

.section-bg-video .heading-white {
  margin-bottom: 0;
}

.section-bg-video .heading-white .sub-heading {
  margin-bottom: 0;
}

.curve {
  position: absolute;
  z-index: 7;
}

.curve.curve-center:after {
  border-left: 50vw solid transparent;
}

.curve.curve-center:before {
  border-right: 50vw solid transparent;
}

.curve.curve-center.curve-top:after {
  border-left: 50vw solid transparent;
}

.curve.curve-center.curve-top:before {
  border-right: 50vw solid transparent;
}

.curve.curve-bottom {
  left: 0;
  bottom: -1px;
  width: 100%;
}

.curve.curve-bottom:after,
.curve.curve-bottom:before {
  bottom: 0;
}

.curve.curve-top {
  left: 0;
  top: -1px;
  width: 100%;
}

.curve.curve-top:after,
.curve.curve-top:before {
  top: 0;
  border-top: 50px solid #fff;
  border-bottom: 0;
}

.curve.curve-top:after {
  border-left: 70vw solid transparent;
}

.curve.curve-top:before {
  border-right: 30vw solid transparent;
}

.curve.curve-gray-b:after,
.curve.curve-gray-b:before {
  border-bottom: 50px solid #f9f9f9;
}

.curve.curve-gray-t:after,
.curve.curve-gray-t:before {
  border-top: 50px solid #f9f9f9;
}

.curve:after,
.curve:before {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 50px solid #fff;
  position: absolute;
}

.curve:after {
  right: 0;
  border-left: 30vw solid transparent;
}

.curve:before {
  left: 0;
  border-right: 70vw solid transparent;
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title.extra-padding .title {
  margin-bottom: 24px;
}

.section-title .title {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 13px;
  color: #242424;
  text-transform: uppercase;
  font-weight: 600;
}

.section-title p {
  max-width: 600px;
  font-size: 22px;
  font-weight: 500;
  color: #555;
  margin: 0 auto;
}

.section-title b {
  color: #0a4c89;
}

.item-product {
  height: 480px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 32px;
  overflow: hidden;
}

.item-product .content {
  background: linear-gradient(to top, #1b2126, #ffffff00);
  width: 100%;
}

.item-product:hover {
  cursor: pointer;
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}

#productModal .lot-title {
  font-size: 32px;
}

#productModal table.shop_attributes {
  font-size: 14px;
}

.badge {
  font-weight: 600;
  border-radius: 21px;
  padding: 8px 12px;
}

.badge.blur-dark {
  background: rgb(0 0 0 / 25%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ===================================
    Header
====================================== */
.scroll-down header:not(.open-menu) {
  /* margin-top: -100px; */
  transform: translateY(-90px);
}

.transition,
.transition:hover,
header {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.scroll-up header:not(.open-menu) > nav {
  background: rgb(255 255 255 / 65%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.inv-img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  filter: progid:DXImageTransform.Microsoft.BasicImage(invert=1);
}

.navbar .navbar-nav .nav-item {
  position: relative;
}

.navbar .navbar-nav .nav-item > ul {
  background: #ffffff none repeat scroll 0 0;
  border: 1px solid #ebebeb;
  box-shadow: 0 4px 13px -3px #808080;
  left: 0;
  min-width: 220px;
  opacity: 0;
  padding: 29px 0 27px;
  position: absolute;
  text-align: left;
  top: 100%;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  transition: all 0.5s ease 0s;
  visibility: hidden;
  z-index: 999;
}

.navbar .navbar-nav .nav-item > ul > li {
  display: block;
  line-height: 20px;
  margin-bottom: 16.5px;
  padding: 0;
  position: relative;
}

.navbar .navbar-nav .nav-item > ul > li > a {
  color: #707070;
  display: block;
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
  padding: 0 30px;
  text-transform: capitalize;
}

.navbar .navbar-nav .nav-item > ul > li > a::after {
  background: transparent;
  bottom: 17px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
  transition: all 0.4s ease 0s;
}

.navbar .navbar-nav .nav-item:hover ul {
  transform: scaleY(1);
  visibility: visible;
  opacity: 1;
}

.navbar .navbar-nav .nav-item .nav-link {
  background: transparent;
  border-color: transparent;
  font-weight: 400;
  color: #555;
  padding: 16px;
}

.navbar .navbar-nav .nav-item .nav-link.nav-link-filled {
  background-color: #1a70a5;
  border-radius: 16px;
}

.navbar .navbar-nav .nav-item .nav-link.nav-link-filled:hover {
  background-color: #278cbc !important;
}

.navbar .navbar-nav .nav-item:hover .nav-link {
  color: #fff;
  background: transparent;
}

.navbar .navbar-nav .nav-item .active {
  color: #fff;
  font-weight: 500;
  background: transparent;
}

header:not(.open-menu) .navbar-dark .navbar-nav .nav-item .nav-link {
  color: #fff !important;
}

header.open-menu .navbar-dark .navbar-nav .nav-item .active,
header.open-menu .navbar-dark .navbar-nav .active > .nav-link,
.scroll-up
  header:not(.open-menu)
  .navbar-dark
  .navbar-nav
  .nav-item
  .nav-link:not(.nav-link-filled) {
  color: #333 !important;
}

.navbar-dark .navbar-nav .nav-item:hover .nav-link {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-item .active {
  color: #fff !important;
}

header:not(.open-menu) .navbar-dark .navbar-nav .active > .nav-link,
header:not(.open-menu) .navbar-dark .navbar-nav .nav-link.active,
header:not(.open-menu) .navbar-dark .navbar-nav .nav-link.show,
header:not(.open-menu) .navbar-dark .navbar-nav .show > .nav-link {
  color: #fff !important;
}

header .navbar-toggler-c {
  display: none;
}

.navbar-dark .navbar-toggler-c,
.navbar-dark .navbar-toggler-f {
  color: #fff;
  border: none;
  font-size: 28px;
}

.b-logo {
  display: none;
}

.scroll-up .b-logo {
  display: block;
}

.scroll-up .navbar-dark .navbar-toggler-f {
  color: #151b23;
}

.scroll-up .w-logo {
  display: none;
}

.sticky.header-appear .navbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 400;
  background: #fff;
  box-shadow: 0 6px 14px -2px rgba(0, 0, 0, 0.16);
  animation: crSlideInDown 0.5s ease-out 0s 1 both;
  padding: 8px 16px;
}

.navbar-dark .navbar-brand {
  padding: 0;
}

.sticky.header-appear .navbar-brand .b-logo {
  display: block;
}

.sticky.header-appear .navbar-brand .w-logo {
  display: none;
}

.sticky.header-appear .navbar-nav .nav-item .nav-link {
  color: #555;
}

.sticky.header-appear .navbar-nav .nav-item:hover .nav-link {
  color: #0a4c89;
}

.sticky.header-appear .navbar-nav .nav-item .active {
  color: #0a4c89;
}

.sticky.header-appear .navbar-dark .navbar-nav .nav-link {
  color: #555 !important;
}

.sticky.header-appear .navbar-dark .navbar-nav .nav-link:hover .nav-link {
  color: #0a4c89;
  background: transparent;
}

.sticky.header-appear .navbar-dark .navbar-nav .nav-link .active {
  color: #0a4c89;
  background: transparent;
}

.sticky.header-appear .navbar-dark .cart-wrapper > i {
  color: #555;
}

.sticky.header-appear .navbar-dark .cart-wrapper .noti:before {
  background-color: #0a4c89;
}

.sticky.header-appear .navbar-dark .navbar-toggler-f {
  color: #555;
  border-color: #555;
}

.header-with-topbar {
  position: relative;
}

.header-with-topbar .top-header-area {
  font-size: 13px;
  position: relative;
  top: 0;
  z-index: 9;
  height: 50px;
  line-height: 50px;
  width: 100%;
  transition: ease-in-out 0.3s;
  -webkit-transition: ease-in-out 0.3s;
  -moz-transition: ease-in-out 0.3s;
  -ms-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
}

.header-with-topbar .top-header-area .info a {
  margin-right: 15px;
}

.header-with-topbar .top-header-area .header-icon a {
  margin-left: 15px;
}

.header-with-topbar .top-header-area .header-icon a:hover {
  color: #fff;
}

.header-with-topbar .fixed-top {
  position: fixed;
  top: 50px;
  right: 0;
  left: 0;
  z-index: 1030;
}

.cart-wrapper {
  margin-left: 34px;
  position: relative;
  cursor: pointer;
}

.cart-wrapper > i {
  font-size: 25px;
  color: #fff;
}

.cart-wrapper span {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  right: 2px;
  top: -10px;
}

.cart-wrapper .noti {
  position: absolute;
  right: -16px;
  top: -11px;
  background: #fff;
  width: 20px;
  color: #0a4c89;
  border-radius: 50%;
  height: 20px;
  font-size: 12px;
  text-align: center;
  line-height: 19px;
}

.cart-wrapper .noti:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 100%;
  z-index: -1;
  animation: pulse-noti 2s infinite;
  will-change: transform;
}

.cart-wrapper .noti:hover:before {
  animation: none;
}

.cart-wrapper .cart-item-wrapper {
  background: #ffffff none repeat scroll 0 0;
  border: 1px solid #ebebeb;
  color: #707070;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 10px;
  top: 30px;
  transition: all 0.3s ease 0s;
  width: 360px;
  z-index: 10;
}

.cart-wrapper .cart-item-wrapper .cart-product-content {
  max-height: 400px;
  overflow-y: auto;
}

.cart-wrapper .cart-item-wrapper .cart-product-content .single-cart-item {
  border-bottom: 1px solid #ebebeb;
  margin-top: 20px;
  position: relative;
  padding: 10px 20px;
}

.cart-wrapper
  .cart-item-wrapper
  .cart-product-content
  .single-cart-item
  .cart-img
  > a {
  display: block;
  width: 78px;
  height: 78px;
  text-align: center;
}

.cart-wrapper
  .cart-item-wrapper
  .cart-product-content
  .single-cart-item
  .cart-img
  > a
  img {
  width: auto;
  height: 100%;
}

.cart-wrapper
  .cart-item-wrapper
  .cart-product-content
  .single-cart-item
  .cart-text-btn
  .cart-text {
  padding-left: 15px;
}

.cart-wrapper
  .cart-item-wrapper
  .cart-product-content
  .single-cart-item
  .cart-text-btn
  .cart-text
  h5 {
  font-size: 20px;
  line-height: 22px;
}

.cart-wrapper
  .cart-item-wrapper
  .cart-product-content
  .single-cart-item
  .cart-text-btn
  .cart-text
  h5
  a {
  color: #0a4c89;
}

.cart-wrapper
  .cart-item-wrapper
  .cart-product-content
  .single-cart-item
  .cart-text-btn
  .cart-text
  .cart-price {
  float: right;
}

.cart-wrapper
  .cart-item-wrapper
  .cart-product-content
  .single-cart-item
  .cart-text-btn
  > button {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid transparent;
  color: #707070;
  cursor: pointer;
  font-size: 18px;
  padding: 0;
  position: absolute;
  right: 22px;
  top: -2px;
}

.cart-wrapper .cart-item-wrapper .cart-price-total {
  border-bottom: 1px solid #ebebeb;
  color: #23232c;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  padding: 25px 20px;
  text-transform: uppercase;
}

.cart-wrapper .cart-item-wrapper .cart-price-total span {
  top: 0;
}

.cart-wrapper .cart-item-wrapper .cart-links.d-flex {
  padding: 15px 20px;
}

.cart-wrapper:hover .cart-item-wrapper {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse-noti {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero {
  position: relative;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0;
  z-index: 0;
}

.hero .content {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero .content .home-left h1 span {
  color: #c2ab55;
}

.hero .content .home-left {
  padding-top: 50px;
}

.hero .content .home-left h1 {
  font-size: 50px;
  line-height: 55px;
  font-weight: 900;
}

.hero .content .btn-lg {
  font-size: 24px;
}

.hero .content .home-left h4 {
  font-size: 30px;
  line-height: 35px;
}

.hero .content .home-right img {
  display: inline-block;
  position: relative;
}

.hero .content .home-right img.rocket_img {
  max-height: 740px;
  z-index: 1;
}

.hero .content .home-right .rocket_globe_img_wrap {
  position: absolute;
  z-index: -1;
  max-width: 320px;
  width: 100%;
}

.hero .content .home-right img.rocket_globe_img {
  box-shadow: 12px 12px 32px rgba(0, 0, 0, 0.3) !important;
  border-radius: 100%;
}

.hero#home {
  background-image: url("section-bg-homr.svg");
}

/* ===================================
   Counter
====================================== */
.counter-item {
  cursor: pointer;
  /* display: flex; */
  align-items: baseline;
}

.counter-item .counter-value {
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #0a4c89,
    #40c6ec,
    #40c6ec,
    #0a4c89
  );
  -moz-background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: -o-linear-gradient(35deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 94px;
  line-height: 96px;
}

.counter-item p {
  color: #555;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.product-colors {
  min-height: 855px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0;
  margin-top: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.product-color-imgs {
  position: relative;
  min-height: 400px;
}

.product-color-imgs img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.product-color-imgs img.active {
  opacity: 1;
}

.product-colors-right {
  padding: 20px;
  background: #fff;
  opacity: 0.9;
  box-shadow: 0 0 35px 0 rgba(171, 171, 171, 0.25);
}

.product-colors-right .product-description {
  border-bottom: 1px solid #e1e8ee;
  margin-bottom: 20px;
}

.product-colors-right .product-description span {
  font-size: 14px;
  color: #0a4c89;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

.product-colors-right .product-description h1 {
  font-weight: 300;
  font-size: 40px;
  line-height: 45px;
  color: #0a4c89;
  letter-spacing: -2px;
}

.product-colors-right .product-description p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.product-colors-right .product-color span {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  display: inline-block;
}

.product-colors-right .product-color {
  margin-bottom: 30px;
}

.product-colors-right .color-choose div {
  display: inline-block;
}

.product-colors-right .color-choose input[type="radio"] {
  display: none;
}

.product-colors-right .color-choose input[type="radio"] + label span {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: -1px 4px 0 0;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
}

.product-colors-right .color-choose input[type="radio"]#red + label span {
  background-color: #c91524;
}

.product-colors-right .color-choose input[type="radio"]#blue + label span {
  background-color: #40c6ec;
}

.product-colors-right .color-choose input[type="radio"]#black + label span {
  background-color: #323232;
}

.product-colors-right .color-choose input[type="radio"]#orange + label span {
  background-color: #ec8040;
}

.product-colors-right .color-choose input[type="radio"]:checked + label span {
  background-image: url(../images/check-icn.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.product-colors-right .product-price {
  display: flex;
  align-items: center;
}

.product-colors-right .product-price span {
  font-size: 38px;
  font-weight: 600;
  color: #0a4c89;
  line-height: 38px;
}

.product-colors-right .qty {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  padding: 0 0 0 20px;
  border-radius: 25px;
  outline: none;
  border: none;
  width: 72px;
  height: 42px;
  color: #a9a9a9;
  background: #e0e0e0;
  margin-right: auto;
  margin-bottom: 0;
}

.p-feature .feature-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-feature .feature-slider .feature-circle {
  position: absolute;
  border-radius: 100%;
  height: 550px;
  width: 550px;
  float: right;
}

.p-feature .feature-slider img {
  width: auto;
  height: auto;
  margin: 0 auto;
}

.p-feature .title {
  text-align: center;
  width: 100%;
}

.p-feature .title h3 {
  margin: 0;
  color: #242424;
  font-size: 32px;
  font-weight: 600;
}

/* .p-feature .p-feature-content {
  padding-left: 50px;
} */

.p-feature .collapse-feature {
  cursor: pointer;
  margin-bottom: 24px;
  box-shadow: 0px 8px 25px rgba(36, 36, 36, 0.08);
  padding: 18px;
  width: 100%;
  display: inline-block;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-feature .collapse-feature:hover {
  box-shadow: 0 20px 32px -14px rgba(0, 0, 0, 0.3);
  -webkit-transform: translate(0px, -4px);
  -moz-transform: translate(0px, -4px);
  -ms-transform: translate(0px, -4px);
  -o-transform: translate(0px, -4px);
  transform: translate(0px, -4px);
}

.p-feature .collapse-feature .icon-box {
  font-size: 34px;
  font-weight: 600;
  color: #51acf1;
}
.p-feature .collapse-feature .icon-box span {
  font-size: 48px;
  color: #1e76b9;
}

.p-feature .collapse-feature .text-box {
  padding-left: 40px;
}

.p-feature .collapse-feature .text-box h4,
.p-feature .collapse-feature .text-box p {
  margin: 0;
}

.p-feature .collapse-feature .text-box h4 {
  font-size: 18px;
  color: #150a33;
  font-weight: 500;
  line-height: 28px;
}

.p-feature .collapse-feature .text-box p {
  font-size: 14px;
  line-height: 27px;
  color: #656565;
  margin-top: 10px;
}

.p-feature .collapse-feature .collapse-feature-body {
  padding-left: 40px;
}

.p-feature .collapse-feature.active .inner i {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.p-feature .collapse-feature.active .inner:before {
  opacity: 0;
}

.feature-circle {
  background: linear-gradient(
    -120deg,
    #40c6ec,
    #0a4c89,
    #40c6ec,
    #0a4c89,
    #40c6ec
  );
  background-size: 400%;
  animation: Gradient 15s linear infinite;
}

.table thead td,
.table thead th {
  border: none;
}

@keyframes Gradient {
  25% {
    background-position: 0 100%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0% 50%;
  }
}

.b-features {
  min-height: 550px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0;
  margin-top: 0;
  position: relative;
  padding: 0;
}

.b-features .b-features-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 60px;
  background: #fff;
}

.b-features .b-features-content h3 {
  font-size: 40px;
  line-height: 50px;
  color: #0a4c89;
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #0a4c89,
    #40c6ec,
    #40c6ec,
    #0a4c89
  );
  -moz-background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: -o-linear-gradient(35deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.b-features .b-features-circle-1 {
  position: absolute;
  left: 247px;
  bottom: 160px;
}

.b-features .b-features-triangle-1 {
  position: absolute;
  left: 50px;
  top: auto;
  bottom: 0;
}

.unboxed .unboxed-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.unboxed .unboxed-content .number-content {
  margin-bottom: 25px;
  margin-right: 40px;
}

.unboxed .unboxed-content .number-content .number {
  font-size: 5rem;
  line-height: 5rem;
}

.unboxed .unboxed-content .number-content span {
  font-size: 26px;
  text-align: center;
  line-height: 33px;
}

.unboxed .unboxed-content .unboxedlist {
  padding-left: 5px;
}

.unboxed .unboxed-content .unboxedlist li {
  position: relative;
  vertical-align: middle;
  margin-bottom: 31px;
}

.unboxed .unboxed-content .unboxedlist b {
  font-size: 26px;
  vertical-align: bottom;
  margin-right: 10px;
}

.unboxed .unboxed-img img {
  max-height: 600px;
}

/* ===================================
   Price
====================================== */
.price {
  background-repeat: no-repeat;
  background-position: 0;
  margin-top: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.price .pricing-tables {
  padding: 0 50px;
}

.price .item {
  position: relative;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f6;
}

.price .item .type {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.price .item .type img {
  position: absolute;
  bottom: -10px;
  left: -30px;
  width: calc(100% + 60px);
}

.price .item .type h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

.price .item .value {
  margin: 30px 0;
}

.price .item .value h3 {
  font-size: 55px;
  margin-bottom: 0;
}

.price .item .value h3 span {
  font-size: 30px;
}

.price .item .value .per {
  font-size: 13px;
  margin-top: 5px;
}

.price .item .features {
  text-align: left;
  overflow: hidden;
  padding: 15px 0;
}

.price .item .features ul {
  margin-bottom: 0;
}

.price .item .features li {
  margin-bottom: 15px;
}

.price .item .features li:last-child {
  margin-bottom: 0;
}

.price .item .features li .true {
  color: #008f7a;
}

.price .item .features li .false {
  color: #cb342b;
}

.price .item .features i {
  float: right;
  font-size: 11px;
}

.price .item .order {
  margin-top: 30px;
}

.price .item .order .butn {
  box-shadow: none;
}

.price .item.active {
  position: relative;
  top: -15px;
  background: #fff;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
}

.price .item.active .type h4 {
  font-size: 30px;
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #0a4c89,
    #40c6ec,
    #40c6ec,
    #0a4c89
  );
  -moz-background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: -o-linear-gradient(35deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price .item.active .value h3 {
  font-size: 80px;
  line-height: 80px;
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #0a4c89,
    #40c6ec,
    #40c6ec,
    #0a4c89
  );
  -moz-background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: -o-linear-gradient(35deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price .item.active .value .per {
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #0a4c89,
    #40c6ec,
    #40c6ec,
    #0a4c89
  );
  -moz-background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: -o-linear-gradient(35deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price .item.active:before {
  position: absolute;
  content: "";
  top: -20px;
  left: -35px;
  width: 131px;
  height: 130px;
  background: #0a4c89;
  opacity: 0.2;
  border-radius: 130px;
  -webkit-transform: rotate(101deg);
  transform: rotate(101deg);
}

.price .item.active:after {
  position: absolute;
  content: "";
  top: 120px;
  right: -49px;
  width: 88px;
  height: 88px;
  background: #40c6ec;
  opacity: 0.2;
  border-radius: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.price .item:hover {
  position: relative;
  top: -15px;
  background: #fff;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
}

.price .item:hover .type h4 {
  font-size: 30px;
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #0a4c89,
    #40c6ec,
    #40c6ec,
    #0a4c89
  );
  -moz-background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: -o-linear-gradient(35deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price .item:hover .value h3 {
  font-size: 80px;
  line-height: 80px;
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #0a4c89,
    #40c6ec,
    #40c6ec,
    #0a4c89
  );
  -moz-background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: -o-linear-gradient(35deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price .item:hover .value .per {
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #0a4c89,
    #40c6ec,
    #40c6ec,
    #0a4c89
  );
  -moz-background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: -o-linear-gradient(35deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price .item:hover:before {
  position: absolute;
  content: "";
  top: -20px;
  left: -35px;
  width: 131px;
  height: 130px;
  background: #0a4c89;
  opacity: 0.2;
  border-radius: 130px;
  -webkit-transform: rotate(101deg);
  transform: rotate(101deg);
}

.price .item:hover:after {
  position: absolute;
  content: "";
  top: 120px;
  right: -49px;
  width: 88px;
  height: 88px;
  background: #40c6ec;
  opacity: 0.2;
  border-radius: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.price .item:before {
  position: absolute;
  content: "";
  top: -20px;
  left: -35px;
  width: 131px;
  height: 130px;
  background: #b3b3b3;
  opacity: 0.2;
  border-radius: 130px;
  -webkit-transform: rotate(101deg);
  transform: rotate(101deg);
}

.price .item:after {
  position: absolute;
  content: "";
  top: 120px;
  right: -49px;
  width: 88px;
  height: 88px;
  background: #b3b3b3;
  opacity: 0.2;
  border-radius: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.price img.img-fluid.img2 {
  position: absolute;
  top: 0;
  z-index: -1;
  padding: 70px;
  left: 180px;
  -webkit-animation: shapeani2 3s linear infinite;
  animation: shapeani2 3s linear infinite;
}

.btn-success:focus,
.btn-success.focus {
  color: white !important;
  background: #008f7a !important;
}

.btn.shine {
  position: relative;
  overflow: hidden;
}

.btn.shine:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(128, 186, 232, 0) 99%,
    rgba(125, 185, 232, 0) 100%
  ); /* W3C */
  top: 0;
  left: -100px;
  animation: shine 3s infinite linear; /* Animation */
  opacity: 0.2;
}

@keyframes shine {
  0% {
    left: -100px;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* ----------------------------------------------------------------
     [ End Price ]
-----------------------------------------------------------------*/
/* ===================================
   Testimonials
====================================== */
.ratings {
  min-height: 855px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0;
  margin-top: 0;
  position: relative;
  display: flex;
  align-items: center;
  background: #fafafa;
}

.ratings .bgshape {
  position: absolute;
  top: 0px;
  right: 0px;
  max-width: 500px;
  z-index: 1;
}

.ratings .bgshape1 {
  position: absolute;
  top: 0;
  left: 0;
}

.ratings .bgshape2 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.ratings .shape1 {
  position: absolute;
  top: 200px;
  left: 20px;
  max-width: 130px;
  -webkit-animation: shapeani1 5s linear infinite;
  animation: shapeani1 5s linear infinite;
}

.ratings .shape2 {
  position: absolute;
  top: 130px;
  left: 150px;
  max-width: 70px;
  -webkit-animation: shapeani1 4s linear infinite;
  animation: shapeani1 4s linear infinite;
}

.ratings-item {
  margin: 15px;
}

.ratings-block {
  position: relative;
  padding-bottom: 0;
  padding-top: 90px;
}

.ratings-avtar {
  position: absolute;
  top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.ratings-avtar img {
  z-index: 2;
  position: absolute;
  border-radius: 100%;
  color: transparent;
  border: double 4px transparent;
  border-radius: 80px;
  width: 130px !important;
  height: 130px;
  box-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
  animation: pulse 2s infinite;
}

.ratings-avtar i {
  z-index: 2;
  position: absolute;
  top: 23px;
  left: 16px;
  color: #0a4c89;
}

.ratings-text {
  text-align: center;
  box-shadow: 0 0 65px 0 rgba(171, 171, 171, 0.25);
  background-color: #fff;
  padding: 100px 40px 40px;
  margin-bottom: 30px;
}

.ratings-text h3 {
  color: #0a4c89;
  margin-bottom: 0;
  font-size: 25px;
}

.ratings-text h6 {
  text-transform: capitalize;
  margin: 0;
}

.ratting-box span {
  color: #999999;
}

.ratting-box span.active {
  color: #0a4c89;
}

.ratting-box.hover-action span {
  cursor: pointer;
}

@keyframes pulse-r {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 76, 137, 0.4);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(10, 76, 137, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 76, 137, 0);
  }
}

/* ===================================
   Blog Home
====================================== */
.post {
  border-radius: 5px;
  background: #fff;
  position: relative;
  box-shadow: 2px 2px 20px -1px rgba(167, 179, 184, 0.3);
  margin: 0 15px 30px 15px;
}

.post .post-img {
  position: relative;
  overflow: hidden;
}

.post .post-img:hover img {
  transform: scale(1.1);
}

.post .post-img img {
  width: 100%;
  transition: all 0.5s;
}

.post .post-content {
  padding: 18px;
}

.post .post-content h3 {
  font-size: 18px;
  color: #555;
  font-weight: 600;
  padding: 0px 0 3px 0;
  line-height: 25px;
  margin-bottom: 10px;
}

.post .post-content h4 {
  font-size: 13px;
  font-weight: 400;
  color: #cb342b;
  line-height: 13px;
}

.post .post-content h4 span {
  color: #13b1c5;
}

.post .post-content p {
  font-size: 16px;
  color: #555;
  line-height: 23px;
  margin: 20px 0;
  padding-bottom: 45px;
}

.post .post-content .read-more {
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin-bottom: 10px;
}

.post .post-content .read-more a {
  height: 10px;
  width: 20px;
  background: #0a4c89;
  padding: 12px 16px;
  color: #fff;
  font-size: 16px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 2px 2px 20px -1px rgba(167, 179, 184, 0.5);
  transition: all 0.4s ease-in-out;
}

.post .post-content .read-more a:hover {
  background: #052442;
}

/*-----------------------------
** FAQ Area Start
------------------------------*/
.faq {
  padding: 110px 0px 107px;
  position: relative;
  overflow: hidden;
  background: #fafafa;
}

.faq .bgshape {
  position: absolute;
  top: 0px;
  right: 0px;
  max-width: 500px;
  z-index: 1;
}

.faq .bgshape1 {
  position: absolute;
  top: 0;
  left: 0;
}

.faq .bgshape2 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.faq .shape1 {
  position: absolute;
  top: 200px;
  left: 20px;
  max-width: 130px;
  -webkit-animation: shapeani1 5s linear infinite;
  animation: shapeani1 5s linear infinite;
}

.faq .shape2 {
  position: absolute;
  top: 130px;
  left: 150px;
  max-width: 70px;
  -webkit-animation: shapeani1 4s linear infinite;
  animation: shapeani1 4s linear infinite;
}

.faq .section-title .title span {
  -webkit-animation-duration: 5s;
  -moz-animation-duration: 5s;
  -o-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: text-color;
  -moz-animation-name: text-color;
  -o-animation-name: text-color;
  animation-name: text-color;
  -webkit-animation-direction: alternate;
  -moz-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.faq .round-shape8 {
  position: absolute;
  top: 60%;
  width: 80px;
  height: 80px;
  left: 50px;
  z-index: -9;
  -webkit-animation-duration: 4s;
  -moz-animation-duration: 4s;
  -o-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: shapeani1;
  -moz-animation-name: shapeani1;
  -o-animation-name: shapeani1;
  animation-name: shapeani1;
  -webkit-animation-direction: alternate;
  -moz-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.faq .round-shape3 {
  position: absolute;
  top: 85%;
  left: 0px;
  z-index: -9;
  -webkit-animation-duration: 4.4s;
  -moz-animation-duration: 4.4s;
  -o-animation-duration: 4.4s;
  animation-duration: 4.4s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: shapeani1;
  -moz-animation-name: shapeani1;
  -o-animation-name: shapeani1;
  animation-name: shapeani1;
  -webkit-animation-direction: alternate;
  -moz-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.faq .round-shape5 {
  position: absolute;
  top: 70%;
  left: 130px;
  width: 100px;
  height: 100px;
  z-index: -9;
  -webkit-animation-duration: 4.8s;
  -moz-animation-duration: 4.8s;
  -o-animation-duration: 4.8s;
  animation-duration: 4.8s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: shapeani1;
  -moz-animation-name: shapeani1;
  -o-animation-name: shapeani1;
  animation-name: shapeani1;
  -webkit-animation-direction: alternate;
  -moz-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.faq .round-shape7 {
  position: absolute;
  top: 51%;
  width: 80px;
  height: 80px;
  left: 130px;
  z-index: -9;
  -webkit-animation-duration: 5s;
  -moz-animation-duration: 5s;
  -o-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: shapeani1;
  -moz-animation-name: shapeani1;
  -o-animation-name: shapeani1;
  animation-name: shapeani1;
  -webkit-animation-direction: alternate;
  -moz-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.faq .accordion .panel {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 0px 8px 25px rgba(36, 36, 36, 0.08);
  -moz-box-shadow: 0px 8px 25px rgba(36, 36, 36, 0.08);
  box-shadow: 0px 8px 25px rgba(36, 36, 36, 0.08);
}

.faq .accordion .panel .panel-body {
  padding: 4px 20px 7px;
}

.faq .accordion .panel-title {
  /* display: block;
  width: 100%;
  background: #fff;
  padding: 15px 20px 15px 20px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #242424;
  border-radius: 3px; */
  cursor: pointer;
  position: relative;
}

.faq .accordion .panel-title::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 100%;
  border-radius: 3px 0px 0px 3px;
  right: 0;
  top: 0;
  text-align: center;
}

.faq .accordion .panel-title::before {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f067";
  font-weight: 900;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  text-align: center;
  z-index: 1;
  font-size: 16px;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.faq .accordion .panel-title[aria-expanded="true"]::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f068";
  font-weight: 900;
}

.faq .image-wrapper {
  display: block;
  width: 100%;
}

.faq .image-wrapper .image {
  position: relative;
  display: block;
}

.faq .image-wrapper .image .single-object {
  position: absolute;
  height: 320px;
  width: auto;
  z-index: -9;
  top: 40%;
  left: 30%;
}

.faq .image-wrapper .image .single-object img {
  width: auto;
  height: 100%;
  -webkit-animation-duration: 4.9s;
  -moz-animation-duration: 4.9s;
  -o-animation-duration: 4.9s;
  animation-duration: 4.9s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: shapeani1;
  -moz-animation-name: shapeani1;
  -o-animation-name: shapeani1;
  animation-name: shapeani1;
  -webkit-animation-direction: alternate;
  -moz-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.faq .image-wrapper .image .object {
  display: block;
  text-align: center;
}

.faq .image-wrapper .image .object img {
  position: relative;
  display: inline-block;
  z-index: -991;
}

/* ===================================
   Contact
====================================== */
.form-control {
  padding: 25px;
  font-size: 13px;
  margin-bottom: 10px;
  background: #e6e6e6;
  border: 0;
  border-radius: 30px;
}

.contact {
  min-height: 855px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0;
  margin-top: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.contact-form textarea {
  padding: 25px;
  font-size: 13px;
  margin-bottom: 10px;
  background: #e6e6e6;
  border: 0;
  border-radius: 10px;
  height: 120px !important;
  width: 100%;
}

.form-control:focus {
  border-color: #0a4c89;
}

.custom-select.is-invalid,
.form-control.is-invalid,
.was-validated .custom-select:invalid,
.was-validated .form-control:invalid {
  border: 1px solid;
  border-color: #dc3545;
}

.newsletter .newsletter-text .form-control {
  border-radius: 50px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 50px;
  text-align: center;
}

.newsletter .newsletter-button {
  text-align: center;
}

/* ===================================
   Footer
====================================== */
footer {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(to left, #2c9ac8, #0c4c89);
}

.footer-nav {
  width: 100%;
  position: relative;
  text-align: center;
}

.footer-nav a {
  margin: 5px;
}

footer a:hover,
footer a:active,
footer a:focus {
  text-decoration: none;
  color: #fff !important;
}

.verticle-line {
  width: 2px;
  height: 18px;
  position: relative;
  background: #fff;
  vertical-align: middle;
  display: inline-block;
}

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

.footer-social a {
  display: inline-block;
  text-align: center;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 32px;
  margin: 3px;
  border: 1px solid transparent;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.footer-social a:hover {
  border: 1px solid #fff;
  background: #fff;
}

.widget {
  color: #fff;
}
.widget .wid_title {
  font-weight: 500;
  margin: 12px 0 12px;
}

.widget ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.widget ul li {
  display: flex;
}

.widget ul li a {
  color: #fff;
  padding: 5px 0;
  font-weight: 600;
}

.modal-header .close {
  font-weight: 200;
  color: red;
  font-size: 38px;
  text-shadow: none;
}

.modal-content,
.modal-header,
.modal-footer {
  border: none;
}

.modal-content {
  border-radius: 24px;
}

.modal-full-w {
  width: calc(100% - 32px);
  max-width: 1180px;
}

.img-product {
  height: 640px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
}

tr.woocommerce-product-attributes-item > th {
  padding: 16px 0;
}

.additional-info-content > h2 {
  display: none;
}

/**
 * Breadcrumb Area
 */
.breadcrumb-area {
  padding: 410px 0 50px 0;
}

.breadcrumb-area .heading {
  margin-bottom: 5px;
  text-align: center;
}

.breadcrumb-area .heading h2 {
  color: #fff;
}

.breadcrumb-area .heading h2 b {
  color: #fff;
}

.breadcrumb-area .breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: transparent;
  border-radius: 0.25rem;
}

.breadcrumb-area .breadcrumb .breadcrumb-item {
  color: #fff;
}

.breadcrumb-area .breadcrumb .breadcrumb-item a {
  color: #fff;
}

.breadcrumb-area .breadcrumb .breadcrumb-item.active {
  color: #fff;
  font-weight: bold;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #fff;
  content: "/";
}

.slider-single .slick-slide img {
  display: block;
  margin: 0 auto;
  height: 500px;
}

.slider-nav .item img {
  padding: 10px;
  height: 150px;
  margin: 0 auto;
}

.tab-product .nav-link {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding-bottom: 20px;
  color: #555;
}

.tab-product .nav-link:hover {
  color: #0a4c89;
  border-bottom: 3px solid;
  font-weight: 600;
}

.tab-product .nav-link.active {
  color: #0a4c89;
  border-bottom: 3px solid;
  font-weight: 600;
}

.tab-product .tab-pane {
  margin-top: 30px;
}

.shop .product-item {
  position: relative;
  margin: 25px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 35px 0 rgba(171, 171, 171, 0.25);
}

.shop .product-item .product-item-image-inner img {
  width: auto;
  height: 270px;
  margin: 0 auto;
}

.shop .product-item .product-item-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
}

.shop .product-item .product-item-content > p {
  display: none;
}

.shop .product-item .product-item-content h5 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.shop .product-item .product-item-content h5 a {
  color: #555;
}

.shop .product-item .product-item-content h5 a:hover {
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #0a4c89,
    #40c6ec,
    #40c6ec,
    #0a4c89
  );
  -moz-background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: -o-linear-gradient(35deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  background: linear-gradient(55deg, #0a4c89, #40c6ec, #40c6ec, #0a4c89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop .product-item .price-box {
  text-align: center;
  position: relative;
}

.shop .product-item .price-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
  z-index: 2;
}

.shop .product-item .price-box .pricebox-price {
  font-size: 30px;
  font-weight: 900;
  color: #0a4c89;
}

.shop .product-item .price-box .pricebox-price b {
  margin-right: 5px;
}

.shop .product-item .price-box .add-to-cart-button {
  color: #fff;
  background: #0a4c89;
  transition: all 0.4s ease-out;
  text-align: center;
  padding: 10px 25px;
  border-radius: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: all 0.3s ease-in-out 0s;
  visibility: hidden;
  opacity: 0;
}

.shop .product-item .price-box .add-to-cart-button:hover {
  background: #0a4c89;
  background-color: #2589bb;
  /* Fallback */
  -webkit-background: -webkit-linear-gradient(
    35deg,
    #40c6ec,
    #0a4c89,
    #0a4c89,
    #40c6ec
  );
  -moz-background: linear-gradient(55deg, #40c6ec, #0a4c89, #0a4c89, #40c6ec);
  background: -o-linear-gradient(35deg, #40c6ec, #0a4c89, #0a4c89, #40c6ec);
  background: linear-gradient(55deg, #40c6ec, #0a4c89, #0a4c89, #40c6ec);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from-color', endColorstr='$to-color', GradientType=1);
}

.shop .product-item:hover .price-box::before {
  visibility: visible;
  opacity: 1;
}

.shop .product-item:hover .price-box .add-to-cart-button {
  visibility: visible;
  opacity: 1;
}

.slider-nav .item img {
  padding: 10px;
}

.home-circle3 {
  animation: movebounce 3.9s linear infinite;
}

.feature-circle1 {
  animation: movebounce 3s linear infinite;
}

.b-features-circle-1 {
  animation: moveleftbounce 3s linear infinite;
}

.b-features-triangle-1 {
  animation: movebounce 2.8s linear infinite;
}

.ratings-circle1 {
  animation: movebounce 2.8s linear infinite;
}

.about-circle1,
.feature-circle1,
.home-circle1,
.screenshot-circle1,
.team-circle2,
.ratings-circle2 {
  animation: movebounce 3s linear infinite;
}

.trans-hover {
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.trans-hover:hover {
  box-shadow: 0 35px 70px -16px rgba(0, 0, 0, 0.25);
  -webkit-transform: translate(0px, -4px);
  -moz-transform: translate(0px, -4px);
  -ms-transform: translate(0px, -4px);
  -o-transform: translate(0px, -4px);
  transform: translate(0px, -4px);
  border-radius: 8px;
  cursor: pointer;
}

.crop-content {
  max-height: 620px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.crop-content.active {
  max-height: none;
  overflow: visible;
}

.crop-content::after {
  content: "";
  height: 180px;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(250, 250, 250, 0.6) 0%,
    rgb(250, 250, 250) 100%
  );
  position: absolute;
  bottom: 0;
  left: 0;
}

.crop-content .show-more {
  position: absolute;
  bottom: 32px;
  z-index: 2;
  margin: auto;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  box-shadow: 0px 16px 28px -10px rgba(47, 87, 147, 0.8);
  text-transform: uppercase;
  min-width: 220px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.crop-content.active::after,
.crop-content.active .show-more .sm,
.crop-content .show-more .sl {
  display: none;
}
.crop-content.active .show-more .sl {
  display: inline-block;
}
.crop-content.active .show-more {
  bottom: -74px;
}

.crop-content .show-more:focus,
.crop-content .show-more:hover {
  background: #0a4c89 !important;
  color: #fff !important;
  box-shadow: 0px 26px 26px -16px rgba(47, 87, 147, 0.9);
  -webkit-transform: translate(-50%, -2px);
  -moz-transform: translate(-50%, -2px);
  -ms-transform: translate(-50%, -2px);
  -o-transform: translate(-50%, -2px);
  transform: translate(-50%, -2px);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

label.error {
  font-size: 12px;
  margin: 0;
  color: #ef3e3e;
}

.rotating {
  -webkit-animation: rotating 88s linear infinite;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

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

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

@-webkit-keyframes b-shadow {
  0% {
    -webkit-box-shadow: 0px 0px 0px 20px rgba(117, 178, 240, 0.3),
      0px 0px 0px 40px rgba(117, 178, 240, 0.3),
      0px 0px 0px 60px rgba(117, 178, 240, 0.3),
      0px 0px 0px 80px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3);
    box-shadow: 0px 0px 0px 20px rgba(117, 178, 240, 0.3),
      0px 0px 0px 40px rgba(117, 178, 240, 0.3),
      0px 0px 0px 60px rgba(117, 178, 240, 0.3),
      0px 0px 0px 80px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3);
  }
  50% {
    -webkit-box-shadow: 0px 0px 0px 50px rgba(117, 178, 240, 0.3),
      0px 0px 0px 75px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3),
      0px 0px 0px 125px rgba(117, 178, 240, 0.3),
      0px 0px 0px 150px rgba(117, 178, 240, 0.3);
    box-shadow: 0px 0px 0px 50px rgba(117, 178, 240, 0.3),
      0px 0px 0px 75px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3),
      0px 0px 0px 125px rgba(117, 178, 240, 0.3),
      0px 0px 0px 150px rgba(117, 178, 240, 0.3);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 20px rgba(117, 178, 240, 0.3),
      0px 0px 0px 40px rgba(117, 178, 240, 0.3),
      0px 0px 0px 60px rgba(117, 178, 240, 0.3),
      0px 0px 0px 80px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3);
    box-shadow: 0px 0px 0px 20px rgba(117, 178, 240, 0.3),
      0px 0px 0px 40px rgba(117, 178, 240, 0.3),
      0px 0px 0px 60px rgba(117, 178, 240, 0.3),
      0px 0px 0px 80px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3);
  }
}

@-moz-keyframes b-shadow {
  0% {
    box-shadow: 0px 0px 0px 20px rgba(117, 178, 240, 0.3),
      0px 0px 0px 40px rgba(117, 178, 240, 0.3),
      0px 0px 0px 60px rgba(117, 178, 240, 0.3),
      0px 0px 0px 80px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3);
  }
  50% {
    box-shadow: 0px 0px 0px 50px rgba(117, 178, 240, 0.3),
      0px 0px 0px 75px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3),
      0px 0px 0px 125px rgba(117, 178, 240, 0.3),
      0px 0px 0px 150px rgba(117, 178, 240, 0.3);
  }
  100% {
    box-shadow: 0px 0px 0px 20px rgba(117, 178, 240, 0.3),
      0px 0px 0px 40px rgba(117, 178, 240, 0.3),
      0px 0px 0px 60px rgba(117, 178, 240, 0.3),
      0px 0px 0px 80px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3);
  }
}

@-o-keyframes b-shadow {
  0% {
    box-shadow: 0px 0px 0px 20px rgba(117, 178, 240, 0.3),
      0px 0px 0px 40px rgba(117, 178, 240, 0.3),
      0px 0px 0px 60px rgba(117, 178, 240, 0.3),
      0px 0px 0px 80px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3);
  }
  50% {
    box-shadow: 0px 0px 0px 50px rgba(117, 178, 240, 0.3),
      0px 0px 0px 75px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3),
      0px 0px 0px 125px rgba(117, 178, 240, 0.3),
      0px 0px 0px 150px rgba(117, 178, 240, 0.3);
  }
  100% {
    box-shadow: 0px 0px 0px 20px rgba(117, 178, 240, 0.3),
      0px 0px 0px 40px rgba(117, 178, 240, 0.3),
      0px 0px 0px 60px rgba(117, 178, 240, 0.3),
      0px 0px 0px 80px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3);
  }
}

@keyframes b-shadow {
  0% {
    -webkit-box-shadow: 0px 0px 0px 20px rgba(117, 178, 240, 0.3),
      0px 0px 0px 40px rgba(117, 178, 240, 0.3),
      0px 0px 0px 60px rgba(117, 178, 240, 0.3),
      0px 0px 0px 80px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3);
    box-shadow: 0px 0px 0px 20px rgba(117, 178, 240, 0.3),
      0px 0px 0px 40px rgba(117, 178, 240, 0.3),
      0px 0px 0px 60px rgba(117, 178, 240, 0.3),
      0px 0px 0px 80px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3);
  }
  50% {
    -webkit-box-shadow: 0px 0px 0px 50px rgba(117, 178, 240, 0.3),
      0px 0px 0px 75px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3),
      0px 0px 0px 125px rgba(117, 178, 240, 0.3),
      0px 0px 0px 150px rgba(117, 178, 240, 0.3);
    box-shadow: 0px 0px 0px 50px rgba(117, 178, 240, 0.3),
      0px 0px 0px 75px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3),
      0px 0px 0px 125px rgba(117, 178, 240, 0.3),
      0px 0px 0px 150px rgba(117, 178, 240, 0.3);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 20px rgba(117, 178, 240, 0.3),
      0px 0px 0px 40px rgba(117, 178, 240, 0.3),
      0px 0px 0px 60px rgba(117, 178, 240, 0.3),
      0px 0px 0px 80px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3);
    box-shadow: 0px 0px 0px 20px rgba(117, 178, 240, 0.3),
      0px 0px 0px 40px rgba(117, 178, 240, 0.3),
      0px 0px 0px 60px rgba(117, 178, 240, 0.3),
      0px 0px 0px 80px rgba(117, 178, 240, 0.3),
      0px 0px 0px 100px rgba(117, 178, 240, 0.3);
  }
}

@-webkit-keyframes shapeani1 {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-moz-keyframes shapeani1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@-o-keyframes shapeani1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes shapeani1 {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

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

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

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

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

@-webkit-keyframes shapeimg {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes shapeimg {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes shapeimg {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes shapeimg {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ===================================
   Responsive
====================================== */
@media screen and (max-width: 991px) {
  .mybtn1 {
    font-size: 14px;
  }

  .site-header.open-menu {
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  header.open-menu {
    background-color: rgb(255 255 255 / 65%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .open-menu #navbarNav {
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 64px;
    font-size: 24px;
  }

  .open-menu .navbar-toggler-c {
    display: inline-block;
  }

  .open-menu .navbar-toggler-f {
    display: none;
  }

  section {
    padding: 80px 0;
    overflow: hidden;
  }
  .header-with-topbar .top-header-area {
    display: none;
  }
  .header-with-topbar .fixed-top {
    top: 0;
  }
  .navbar-collapse.collapse.show {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 96px;
    padding-bottom: 32px;
    width: 100%;
    height: 200vh;
    text-align: center;
    background: rgb(255 255 255 / 65%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 24px;
  }
  .navbar-collapse.collapse.show .nav-link {
    color: #555 !important;
  }
  .hero {
    background-position: -600px;
    height: 100%;
    padding-bottom: 0;
  }
  .hero .content {
    padding-top: 0;
    height: 100%;
  }
  .hero .content .home-left {
    text-align: center;
  }
  .counter-item {
    justify-content: center;
  }
  .contact {
    background-position: -420px;
  }
  .price .item {
    margin-bottom: 50px;
  }
  .ratings .bgshape {
    right: -140px;
  }
}

@media screen and (max-width: 768px) {
  .hero .content .home-left {
    text-align: center;
  }
  .hero .content .home-left h1 {
    font-size: 45px;
    line-height: 50px;
  }
  .hero .content .home-left .video-play-button {
    top: 70px;
  }
  h1 {
    font-size: 45px;
    line-height: 45px;
  }
  h4 {
    font-size: 28px;
    line-height: 28px;
  }
  .ratings {
    background-position: -160px;
  }
  .contact {
    background-position: -420px;
    background-image: none !important;
  }
  .b-features .b-features-content {
    padding: 20px;
  }
  .shop .product-item .price-box .add-to-cart-button {
    width: 100%;
  }
  .product-color-imgs img {
    position: absolute;
    /* left: 0; */
    top: 0;
    opacity: 0;
    transition: all 0.3s ease;
    margin: 0 auto;
    height: 400px;
  }
  .price .img img {
    height: 400px;
  }
  .price img.img-fluid.img2 {
    padding: 23px;
    left: 118px;
  }
  .ratings .bgshape {
    display: none;
  }
  .faq .bgshape {
    display: none;
  }
  .faq .shape1 {
    display: none;
  }
  .faq .shape2 {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .counter-item .counter-value {
    margin-bottom: 4px;
    font-size: 44px;
    line-height: 44px;
  }
  .hero .content .home-left {
    text-align: center;
  }
  .hero .content .home-left h1 {
    font-size: 45px;
    line-height: 50px;
  }
  .cart-wrapper .cart-item-wrapper {
    right: -60px;
    width: 354px;
  }
  .p-feature .feature-slider .feature-circle {
    height: 450px;
    width: 451px;
  }
  .shop .product-item {
    margin: 20px;
  }
  .shop .product-item .price-box .add-to-cart-button {
    width: 100%;
  }
  .ratings {
    background-position: -285px;
  }
  .product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
  }
  .product-price span {
    margin-bottom: 30px;
  }
  .product-price a {
    margin-left: 0 !important;
  }
  .product-price .qty {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .widget {
    text-align: center;
  }
  .widget ul li {
    justify-content: center;
  }
}

@media screen and (max-width: 400px) {
  .modal-content {
    border-radius: 28px;
  }

  .modal-full-w {
    width: auto;
  }

  .img-product {
    height: 420px;
  }

  .logo img {
    width: 86px;
    /* width: 46px;
    height: 40px;
    object-fit: cover;
    object-position: -2% 50%; */
  }
  .hero .content .home-left h1 {
    font-size: 36px;
    line-height: 48px;
  }
  .p-feature .feature-slider .feature-circle {
    height: 380px;
    width: 380px;
  }
  .b-features {
    background-position: -325px;
  }
  .product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .product-price span {
    margin-bottom: 10px;
  }
  .product-price a {
    margin-left: 0 !important;
  }
  .p-feature .p-feature-content {
    padding: 45px 15px;
  }
  .p-feature .collapse-feature {
    cursor: pointer;
    margin-bottom: 30px;
  }
  .p-feature .collapse-feature > div {
    flex-direction: column;
  }
  .unboxed .unboxed-content .number-content .number {
    font-size: 3rem;
    line-height: 3rem;
  }
  .unboxed .unboxed-content .number-content span {
    font-size: 16px;
    text-align: center;
    line-height: 33px;
  }
  .cart-wrapper .cart-item-wrapper {
    right: -90px;
    width: 250px;
  }
  .cart-wrapper .cart-item-wrapper .cart-product-content {
    max-height: 130px;
    overflow-y: auto;
  }
  .cart-wrapper .cart-item-wrapper .single-cart-item {
    flex-direction: column;
  }
  .cart-wrapper .cart-item-wrapper .single-cart-item .cart-img {
    display: none;
  }
  .cart-wrapper
    .cart-item-wrapper
    .cart-product-content
    .single-cart-item
    .cart-text-btn
    .cart-text {
    padding-left: 0;
  }
  .cart-wrapper
    .cart-item-wrapper
    .cart-product-content
    .single-cart-item
    .cart-text-btn
    .cart-text
    h5 {
    font-size: 16px;
    line-height: 20px;
    padding-right: 25px;
  }
  .cart-wrapper .cart-item-wrapper .cart-price-total {
    font-size: 16px;
    line-height: 17px;
    margin-bottom: 10px;
    padding: 19px 20;
  }
  .cart-wrapper .cart-item-wrapper .cart-price-total span {
    top: 0;
  }
  .cart-links {
    flex-direction: column;
  }
  .cart-links a {
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
  .b-features .b-features-content h3 {
    font-size: 30px;
    line-height: 35px;
    color: #b51010;
    background: linear-gradient(to right, #b51010 0%, #ac004b 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #b51010;
  }
  .shop .product-item {
    margin-right: 35px;
    margin-left: 0px;
  }
  .curve.curve-bottom {
    left: 0;
    bottom: -1px;
    width: 100%;
    display: none;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    color: whitesmoke;
    background: #151b23;
  }

  .svg-white {
    fill: #151b23;
  }

  footer {
    background: linear-gradient(to left, #0e3858, #436f90);
  }

  .dropdown-item {
    color: whitesmoke;
  }

  .navbar .navbar-nav .nav-item .nav-link,
  .scroll-up .navbar-dark .navbar-toggler-f,
  .dropdown-item:focus,
  .dropdown-item:hover,
  header.open-menu .navbar-dark .navbar-nav .nav-item .active,
  header.open-menu .navbar-dark .navbar-nav .active > .nav-link,
  .scroll-up
    header:not(.open-menu)
    .navbar-dark
    .navbar-nav
    .nav-item
    .nav-link:not(.nav-link-filled),
  .section-title .title,
  .widget ul li a {
    color: whitesmoke !important;
  }

  .scroll-up .b-logo {
    filter: brightness(200%);
  }

  .info .info-title,
  .section-title p {
    color: #9e9e9e;
  }

  .info {
    background: #212b38 !important;
  }

  .navbar .navbar-nav .nav-item .nav-link,
  .inv-img {
    opacity: 0.86;
  }

  .modal-content {
    background-color: #212b38;
    box-shadow: 0 6px 48px rgba(0, 0, 0, 0.5);
  }

  .scroll-up header:not(.open-menu) > nav {
    background: rgb(21 27 35 / 80%);
  }

  .dropdown-menu {
    box-shadow: 0 9px 48px rgba(0, 0, 0, 0.5);
    background-color: rgba(33, 43, 56, 0.85);
  }

  .dropdown-item:focus,
  .dropdown-item:hover {
    text-decoration: none;
    background-color: #2c4461;
  }

  .hero#home {
    background-image: url("section-bg-homr-dark.svg");
  }

  .hero#home .home-right {
    -webkit-filter: brightness(80%);
    filter: brightness(80%);
  }

  .modal-body .btn-dark {
    background: #384559;
  }

  a {
    color: #166ebf;
  }

  .scroll-top-arrow,
  .scroll-top-arrow:focus {
    background: #2f97b4;
  }

  header.open-menu {
    background: rgb(21 27 35 / 80%);
  }
}
