@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700;800;900&display=swap");
:root {
  --color-1: #1C3767;
  --color-2: #FF004F;
  --color-3: #409B3D;
  --splColor: #409B3D;
  --darkColor: #222;
  --liteColor: #f1f1f1;
  --font-1: "Nunito Sans", sans-serif;
}

html, body {
  scroll-padding-top: 80px;
  padding: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6, p, span, a, button, .btn, li, input, textarea {
  font-family: var(--font-1);
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.p0 {
  padding: 0;
}

.dis0 {
  display: none;
}

.sm-xs-fixed-wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
}
.sm-xs-fixed-wrap label,
.sm-xs-fixed-wrap button {
  display: block;
  width: 100%;
  background: var(--splColor);
  color: #fff;
  padding: 7px;
  border: none;
  text-transform: uppercase;
  text-align: center;
}

.bg_one {
  /* background: #e9f7ca; */
  background: #76BA1B;
}

.bg_two {
  /* background: #e0fddd; */
  background: #4B982A;
}

.bg_three {
  /* background: #d2f4e6; */
  background: #6d9204;
}

.bg_four {
  /* background: #e0fdea; */
  background: #1E5631;
}

/* FLOATING INPUT */
.floating-field-box {
  padding: 0px;
  margin-bottom: 10px;
}

.content-3 .floating-field-box {
  margin-bottom: 10px;
}

.user-input-wrps {
  position: relative;
  margin: 0 auto;
}

.user-input-wrps .inputText {
  width: 100%;
  outline: none;
  border: none;
  box-shadow: none !important;
  padding: 25px 13px 10px;
  background: transparent;
  border: 2px solid #111;
  border-radius: 6px;
  font-size: 16px;
  color: #000;
}

.user-input-wrps .inputText:focus {
  border-color: var(--theme-color);
  border-width: medium medium 2px;
}

.user-input-wrps .floating-labels {
  position: absolute;
  pointer-events: none;
  top: 18px;
  left: 15px;
  transition: 0.2s ease all;
  color: #111;
  font-size: 16px;
}

.floating-labels.active,
.user-input-wrps input.active + .floating-labels,
.user-input-wrps input:focus ~ .floating-labels {
  top: 8px;
  left: 15px;
  font-size: 13px;
  opacity: 1;
  color: #312e2d;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  /* -webkit-text-fill-color: #fff !important; */
}

.type-field {
  display: none;
}

.type-field.active {
  display: block;
}

.checkbox-holder {
  margin-top: 20px;
}

/* WHATSAPP NUMBER BOX */
.whatsapp-box {
  position: relative;
}

.whatsapp-box label {
  margin-bottom: 15px;
}

.whatsapp-box .floating-field-box {
  display: block;
}

.whatsapp-box input[type=checkbox]:checked ~ .floating-field-box {
  display: none;
}

/* MATERIALIZE CHECKBOX */
.materialize-checkbox {
  position: relative;
}

.materialize-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  box-sizing: border-box;
  padding: 0;
}

.materialize-checkbox label {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  line-height: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.materialize-checkbox label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  z-index: 0;
  border: 2px solid #000;
  border-radius: 1px;
  margin-top: 2px;
  transition: 0.2s;
}

.materialize-checkbox input[type=checkbox]:checked + label:before {
  top: -4px;
  left: -5px;
  width: 10px;
  height: 18px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-origin: 100% 100%;
}

.materialize-checkbox label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 0;
  transform: scale(0);
  border-radius: 1px;
  margin-top: 2px;
  transition: 0.2s;
}

.materialize-checkbox [type=checkbox]:not(.filled-in) + label:after {
  border: 0;
  transform: scale(0);
}

/* CHECKBOX LABEL */
.checkbox-label {
  position: relative;
  padding-left: 22px;
}
.checkbox-label input {
  display: none;
}
.checkbox-label span.checkbox-shadow {
  position: absolute;
  left: 0;
  top: 2px;
}
.checkbox-label span.checkbox-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  z-index: 0;
  border: 2px solid #000;
  border-radius: 1px;
  margin-top: 2px;
  transition: 0.2s;
}
.checkbox-label span.checkbox-shadow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 0;
  transform: scale(0);
  border-radius: 1px;
  margin-top: 2px;
  transition: 0.2s;
}
.checkbox-label input:checked + span:before {
  top: -4px;
  left: -5px;
  width: 10px;
  height: 18px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #26a69a;
  border-bottom: 2px solid #26a69a;
  transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-origin: 100% 100%;
}
.checkbox-label input:checked:not(.filled-in) + span:after {
  border: 0;
  transform: scale(0);
}

/* TITLES */
.title-1 {
  max-width: 750px;
  margin: 20px auto;
}
.title-1 h2 {
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  color: var(--color-1);
  font-size: 26px;
  margin-bottom: 10px;
}
.title-1.lite h2, .title-1.lite p {
  color: #fff;
}

/* COMMON */
section.common {
  padding: 0 0;
}

.btn-1 {
  border-radius: 8px;
  border: none;
  color: #fff;
  background-color: var(--color-3);
  padding: 7px 16px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.btn-1.flat {
  border-radius: 6px;
}
.btn-1.big {
  padding: 10px 25px 9px;
  font-size: 17px;
}
.btn-1:hover {
  background: var(--color-1);
  color: var(--liteColor);
}
.btn-1 svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  position: relative;
  left: 4px;
  top: -2px;
}
.btn-1:hover svg {
  fill: var(--color-1);
}

.btn-1.flat {
  border-radius: 6px;
}

.btn-1.inverse {
  background: var(--color-3);
  color: var(--color-1);
}
.btn-1.inverse:hover {
  background: var(--color-2);
}

.btn-1.dark {
  background: var(--color-1);
  color: #fff;
}
.btn-1.dark:hover {
  background: var(--color-3);
  color: #111;
  font-weight: bold;
}

.btn-2 {
  border-radius: 30px;
  background: transparent;
}
.btn-2:hover {
  background: #222;
  color: #fff;
}

.btn-3 {
  background: transparent;
  color: var(--color-1);
  font-family: var(--font-1);
  padding: 15px 0 0;
  display: inline-block;
  transition: 0.6s ease;
  font-weight: bold;
  border: none !important;
}
.btn-3:hover {
  padding-left: 15px;
}

.btn-borderd {
  background-color: transparent;
  padding: 7px 18px;
  border: 2px solid #222;
  border-radius: 60px;
  font-weight: bold;
  display: inline-block;
  color: #222;
  font-size: 16px;
}
.btn-borderd.big {
  padding: 10px 25px 9px;
  font-size: 17px;
}

.btn-borderd.flat {
  border-radius: 6px;
}

.btn-borderd:hover {
  background-color: var(--color-1);
  color: #fff;
}

.btn-1 + .btn-2 {
  margin-top: 10px;
  padding: 5px 10px;
}

.btn-view {
  background-color: var(--color-3);
  border: none;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 100%;
  text-align: center;
  transition: 0.3s ease;
  padding: 7px 0;
  min-width: 38px;
  min-height: 38px;
  text-transform: capitalize;
  font-weight: 500;
  margin: 0;
}
.btn-view:hover {
  background-color: var(--color-1);
  color: var(--liteColor);
}

ul.style-1 {
  margin-top: 10px;
}
ul.style-1 li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
ul.style-1 li a {
  color: inherit;
  display: block;
}
ul.style-1 li::before {
  content: "\f105";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "FontAwesome";
}
ul.style-1.lite li {
  color: #fff;
}

/* RESPONSIVE MENU */
.canvas-holder-1 ul.style-1 {
  margin-top: 15px;
}
.canvas-holder-1 ul.style-1 li {
  position: relative;
}
.canvas-holder-1 ul.style-1 li a {
  color: inherit;
  display: block;
  font-size: 14px;
  padding: 10px 15px;
  position: relative;
}
.canvas-holder-1 ul.style-1 li a.dropdown-item {
  padding: 8px 15px;
  background: transparent !important;
}
.canvas-holder-1 ul.style-1 li::before {
  content: "\f105";
  position: absolute;
  left: 0;
  top: 9px;
  font-family: "FontAwesome";
}
.canvas-holder-1 ul.style-1.lite li {
  color: #fff;
}

.accordion-xs-radio,
.accordion-xs {
  display: none;
}

.accordion-xs-radio + label {
  position: relative;
  width: 100%;
  text-transform: uppercase;
}

.accordion-xs-radio + label::before {
  content: "\f107";
  position: absolute;
  right: 10px;
  top: 0px;
  font-family: "FontAwesome";
  font-size: 18px;
  transition: 0.5s ease;
}

.accordion-xs-radio:checked + label::before {
  content: "\f106";
}

.accordion-xs-radio:checked ~ .accordion-xs {
  display: block;
  background: #fff;
  padding: 0;
}

.offcanvas-header {
  position: relative;
  width: 100%;
  background: #eee;
  margin-bottom: 15px;
}

.offcanvas-header .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  opacity: 1;
}

.rm-logo {
  padding: 0 0;
  width: 100%;
}

.rm-logo-img img {
  width: 100px;
}

.offcanvas-1 {
  width: 300px;
  background: var(--color-1);
  color: #fff;
}

.offcanvas-1 .collapse {
  background: #143a04;
  padding: 10px 5px;
  margin-top: 10px;
}

.offcanvas-1 .offcanvas-body {
  padding: 0 20px;
}
.offcanvas-1 .offcanvas-body .profile-box {
  padding: 15px;
  text-align: center;
}
.offcanvas-1 .offcanvas-body .profile-box .img {
  display: block;
}
.offcanvas-1 .offcanvas-body .profile-box .img img {
  --v: 90px;
  width: var(--v);
  height: var(--v);
  border-radius: var(--v);
}
.offcanvas-1 .offcanvas-body .profile-box h5 {
  margin-top: 5px;
}
.offcanvas-1 .offcanvas-body .profile-box p {
  margin-bottom: 5px;
  font-size: 13px;
  color: #ddd;
}

.canvas-holder-1 {
  margin-bottom: 25px;
  font-size: 14px;
}

.canvas-holder-1 p {
  margin-bottom: 5px;
}

.canvas-holder-1 h3 {
  font-size: 20px;
}

/* BROWE BY CATEGORIES */
section.browse-by-categories {
  padding-bottom: 20px;
}
section.browse-by-categories .grid-browse {
  position: relative;
  padding: 20px;
  display: grid;
  grid-template-columns: 220px auto;
  grid-gap: 20px;
  background-color: #fff;
  border-radius: 10px;
}
@media (max-width: 767px) {
  section.browse-by-categories .grid-browse {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 10px 0;
  }
}
section.browse-by-categories .grid-browse .grid-browse-left {
  border-radius: 10px;
  background-color: var(--color-1);
}
section.browse-by-categories .grid-browse .grid-browse-left label {
  font-weight: bold;
  padding: 20px;
  width: 100%;
  display: block;
  position: relative;
  font-size: 14px;
  color: #fff;
}
section.browse-by-categories .grid-browse .grid-browse-left label::before {
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 20px;
  font-family: "FontAwesome";
  transform: rotate(90deg);
  opacity: 0;
  transition: 0.6s ease;
}
section.browse-by-categories .grid-browse .grid-browse-left input {
  display: none;
}
section.browse-by-categories .grid-browse .grid-browse-left .category-holder {
  padding: 0 20px 15px;
}
@media (max-width: 767px) {
  section.browse-by-categories .grid-browse .grid-browse-left .category-holder {
    display: none;
  }
  section.browse-by-categories .grid-browse .grid-browse-left label::before {
    opacity: 1;
  }
  section.browse-by-categories .grid-browse .grid-browse-left input:checked ~ label::before {
    transform: rotate(270deg);
    opacity: 1;
    transition: 0.6s ease;
  }
  section.browse-by-categories .grid-browse .grid-browse-left input:checked ~ .category-holder {
    display: block;
  }
}
section.browse-by-categories .grid-browse .grid-browse-left ul li {
  margin-bottom: 2px;
}
section.browse-by-categories .grid-browse .grid-browse-left ul li a {
  display: block;
  color: #eee;
  padding: 6px 10px;
  position: relative;
  border-radius: 6px;
  font-size: 14px;
}
section.browse-by-categories .grid-browse .grid-browse-left ul li a::after {
  content: "\f178";
  position: absolute;
  right: 10px;
  top: 6px;
  font-family: "FontAwesome";
  opacity: 0;
}
section.browse-by-categories .grid-browse .grid-browse-left ul li a.active, section.browse-by-categories .grid-browse .grid-browse-left ul li a:hover {
  background-color: var(--color-3);
  color: #fff;
}
section.browse-by-categories .grid-browse .grid-browse-left ul li a.active::after, section.browse-by-categories .grid-browse .grid-browse-left ul li a:hover::after {
  opacity: 1;
  color: #fff;
}
section.browse-by-categories .grid-browse .grid-browse-right .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
@media (max-width: 1099px) {
  section.browse-by-categories .grid-browse .grid-browse-right .inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  section.browse-by-categories .grid-browse .grid-browse-right .inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  section.browse-by-categories .grid-browse .grid-browse-right .inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.browse-by-categories .grid-browse .grid-browse-right .inner .browse-box {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
section.browse-by-categories .grid-browse .grid-browse-right .inner .browse-box a {
  display: block;
}
section.browse-by-categories .grid-browse .grid-browse-right .inner .browse-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.browse-by-categories .grid-browse .grid-browse-right .inner .browse-box .browse-box-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  z-index: 10;
}
section.browse-by-categories .grid-browse .grid-browse-right .inner .browse-box .browse-box-footer .btn-download {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 60px;
  color: #fff;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}
section.browse-by-categories .grid-browse .grid-browse-right .inner .browse-box:hover .browse-box-footer .btn-download {
  background-color: var(--color-1);
}
@media (min-width: 768px) {
  section.browse-by-categories .grid-browse.index-page {
    max-width: 96%;
    margin: 0 auto;
    margin-top: -90px;
  }
}
section.browse-by-categories .grid-browse.category-page .grid-browse-right .browse-box {
  overflow: visible;
  background-color: #eee;
}
section.browse-by-categories .grid-browse.category-page .grid-browse-right .browse-box img {
  border-radius: 6px 6px 0 0;
}
section.browse-by-categories .grid-browse.category-page .grid-browse-right .browse-box .browse-box-footer {
  position: relative;
  bottom: auto;
  left: 0;
  width: 100%;
  padding: 0px;
  z-index: 10;
  border-radius: 0;
}
section.browse-by-categories .grid-browse.category-page .grid-browse-right .browse-box .browse-box-footer p.price {
  font-size: 19px;
  font-weight: bold;
  text-align: center;
  padding: 10px 10px 5px;
  background-color: #f5f5f5;
}
section.browse-by-categories .grid-browse.category-page .grid-browse-right .browse-box .browse-box-footer p.price span {
  font-size: 15px;
  text-decoration: line-through;
  color: var(--color-2);
}
section.browse-by-categories .grid-browse.category-page .grid-browse-right .browse-box .browse-box-footer a.btn-download {
  border-radius: 0;
  display: block;
  background-color: var(--color-1);
  border-radius: 0 0 6px 6px;
  padding: 5px;
}
section.browse-by-categories .grid-browse.category-page .grid-browse-right .browse-box:hover .browse-box-footer a.btn-download {
  background-color: var(--color-3);
  color: #222;
}

/* FAQ */
section.faq {
  padding: 40px 0;
  background-color: var(--color-1);
  position: relative;
}
section.faq .abs-svg {
  fill: #fff;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10;
}
section.faq .abs-svg.bottom {
  bottom: -50px;
  fill: #D7E6F5;
}
section.faq .abs-svg.fill-dark {
  fill: var(--color-1);
}
section.faq .accordion {
  max-width: 750px;
  margin: 0 auto;
}
section.faq .accordion .accordion-item {
  background-color: transparent;
  box-shadow: none;
  border: none;
  color: #fff;
}
section.faq .accordion .accordion-item .accordion-header {
  border: none;
}
section.faq .accordion .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  color: var(--splColor);
  box-shadow: none;
  outline: none;
  padding-left: 25px;
  font-weight: bold;
  text-transform: uppercase;
}
section.faq .accordion .accordion-item .accordion-header .accordion-button::after {
  display: none;
}
section.faq .accordion .accordion-item .accordion-header .accordion-button::before {
  content: "\f056";
  position: absolute;
  left: 0;
  top: 15px;
  font-family: "FontAwesome";
}
section.faq .accordion .accordion-item .accordion-header .accordion-button.collapsed {
  color: var(--liteColor);
}
section.faq .accordion .accordion-item .accordion-header .accordion-button.collapsed::before {
  content: "\f055";
}
section.faq .accordion .accordion-item .accordion-body {
  border: none;
}

/* BOTTOM STRIP */
.bottom-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: right;
  padding: 7px 10px;
  z-index: 10;
}
.bottom-strip a {
  display: inline-block;
  padding: 5px 14px;
  background-color: var(--color-3);
  color: #222;
  border-radius: 5px;
  font-weight: bold;
}
.bottom-strip a.buy-now {
  background-color: #f4c200;
}
@media (max-width: 767px) {
  .bottom-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
  .bottom-strip a {
    border-radius: 0;
    text-align: center;
  }
}

/* FOOTER */
footer {
  --c1: #FDEBD2;
  --c2: #D7E6F5;
  --c3: #4D6BC6;
  background-color: var(--color-1);
}
footer section {
  position: relative;
}
footer section .abs-svg {
  fill: #fff;
  position: absolute;
  left: 0;
  top: -10px;
  width: 100%;
}
footer section .abs-svg.bottom {
  top: auto;
  bottom: 0;
  fill: #D7E6F5;
}
footer section .abs-svg.fill-dark {
  fill: var(--color-1);
}
footer section.why-posters {
  background-color: var(--c1);
  padding: 30px 0 60px;
}
footer section.why-posters .title-1 p {
  text-decoration: underline;
  color: #666;
}
footer section.why-posters .abs-svg.bottom {
  fill: #4D6BC6;
}
footer section.why-posters .grid-why-posters-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media (min-width: 560px) and (max-width: 767px) {
  footer section.why-posters .grid-why-posters-box {
    grid-template-columns: repeat(2, 1fr);
  }
  footer section.why-posters .grid-why-posters-box .why-posters-box:last-child {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media (max-width: 559px) {
  footer section.why-posters .grid-why-posters-box {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 559px) {
  footer section.why-posters .grid-why-posters-box .why-posters-box {
    text-align: center;
  }
}
footer section.why-posters .grid-why-posters-box .why-posters-box p span.dotted {
  border-bottom: 2px dashed #555;
}
footer section.why-posters .grid-why-posters-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
footer section.why-posters .grid-why-posters-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
footer section.why-posters .question-box {
  margin-top: 25px;
  text-align: center;
}
footer section.why-posters .question-box a {
  margin-top: 10px;
}
footer .subscribe {
  background-color: var(--c2);
  padding: 50px 20px 100px;
}
footer .subscribe .abs-svg {
  fill: #4D6BC6;
  top: -30px;
}
footer .subscribe h5 {
  margin-bottom: 10px;
}
footer .subscribe form {
  max-width: 500px;
  display: grid;
  grid-template-columns: auto 110px;
  background-color: #fff;
  margin: 25px auto 0;
  border-radius: 50px;
  overflow: hidden;
}
footer .subscribe form input {
  width: 100%;
  padding: 10px 10px 10px 20px;
  border: none;
  outline: none;
}
footer .subscribe form button {
  border: none;
  font-weight: bold;
  background-color: transparent;
}
footer .powered-by {
  background-color: var(--c3);
  padding: 60px 20px 30px;
}
footer .powered-by h5 {
  color: #fff;
}
footer .powered-by form {
  max-width: 500px;
  display: grid;
  grid-template-columns: auto 110px;
  background-color: #fff;
  margin: 25px auto 0;
  border-radius: 50px;
  overflow: hidden;
}
footer .powered-by form input {
  width: 100%;
  padding: 10px 10px 10px 20px;
  border: none;
  outline: none;
}
footer .powered-by form button {
  border: none;
  font-weight: bold;
  background-color: transparent;
}
footer .powered-by .box-visitors {
  display: inline-block;
}
footer .powered-by .box-visitors h3 {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 10px;
  margin-right: 10px;
  text-transform: uppercase;
}
footer .powered-by .box-visitors p {
  font-size: 18px;
  display: inline-block;
}
footer .powered-by .box-visitors p span {
  position: relative;
  display: inline-block;
  padding: 2px 10px 0;
  font-size: 22px;
  border-radius: 3px;
  color: #002147;
  font-weight: bold !important;
  background-color: #fff;
  overflow: hidden;
}
footer .powered-by .box-visitors p span b {
  position: relative;
}
footer .powered-by .box-visitors p span ::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #f1f1f1;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  z-index: -1;
}
footer .powered-by .abs-svg {
  fill: #4D6BC6;
  top: -20px;
}
@media (max-width: 991px) {
  footer .powered-by .abs-svg {
    top: -15px;
  }
}
@media (max-width: 767px) {
  footer .powered-by .abs-svg {
    top: -8px;
  }
}

.grid-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  padding: 50px 0 40px;
}
@media (max-width: 767px) {
  .grid-footer {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 20px;
  }
}

.footer-box p {
  margin-bottom: 10px;
}
.footer-box h4 {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}
.footer-box ul.style-1 li::before {
  color: #fff !important;
}

.footer-box .logo img {
  width: 130px;
  margin-bottom: 15px;
}

.footer-box h4 + p {
  color: #eee;
  font-size: 14px;
}

.footer-box ul li {
  margin-bottom: 8px;
  font-size: 15px;
}
.footer-box ul li a {
  display: block;
  color: #ddd;
  font-size: 14px;
}
.footer-box ul li a:hover {
  color: #fff;
}

.footer-form-box {
  display: grid;
  grid-template-columns: auto 80px;
  border-radius: 50px;
  overflow: hidden;
}

.footer-form-box input.field {
  padding-left: 15px;
  outline: none !important;
  background: #ccc;
}

.footer-form-box .field {
  height: 40px;
  border: none;
}

.newsletter p {
  color: #333;
}

.footer-form-box button.field {
  background: var(--color-1);
  color: #fff;
}

span.fcontact {
  min-width: 28px;
  min-height: 28px;
  background: var(--color-1);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  margin-right: 6px;
  position: absolute;
  left: 0;
  top: 0;
}
span.fcontact svg {
  width: 17px;
  height: 17px;
  fill: var(--color-3);
  position: relative;
  top: 2px;
}

ul.style-2 li {
  position: relative;
  padding-left: 35px;
  font-size: 15px;
  margin-bottom: 10px;
}
ul.style-2 li strong {
  display: block;
  font-size: 18px;
}

ul.style-2 li .fa {
  position: absolute;
  left: 0;
  top: 3px;
  color: #666;
  font-size: 18px;
}

ul.style-2 li p {
  color: #666;
}

ul.style-2 li span {
  color: #a8aec4;
  font-size: 14px;
  font-weight: normal;
}

.copyright {
  background: rgba(12, 18, 48, 0.8784313725);
  text-align: center;
  padding: 15px;
}
@media (max-width: 767px) {
  .copyright {
    padding-bottom: 50px;
  }
}
.copyright .container p {
  margin: 0;
  color: #bbb;
  font-family: var(--font-1);
  font-size: 13px;
}

/* MODAL 1 */
.modal-1 {
  background-color: rgba(255, 255, 255, 0.7);
}

/* ANY EVENT */
section.any-event .title-1 {
  padding: 45px 0;
  max-width: 750px;
  margin: auto;
}
section.any-event .grid-event-box {
  position: relative;
  margin: 25px 0;
  padding: 25px;
  background-color: var(--color-1);
  border-radius: 20px;
}
section.any-event .grid-event-box .event-description a {
  position: relative;
  bottom: -60px;
}
@media (min-width: 992px) {
  section.any-event .grid-event-box {
    margin: 75px 0 75px;
    padding: 40px 40px 0;
    padding-left: 45%;
  }
}
@media (max-width: 991px) {
  section.any-event .grid-event-box {
    padding: 10px;
  }
  section.any-event .grid-event-box .event-description {
    padding: 25px;
    border-radius: 20px;
    margin-top: 20px;
  }
  section.any-event .grid-event-box .event-description a {
    position: relative;
    bottom: -10px;
  }
}
@media (min-width: 992px) {
  section.any-event .grid-event-box .event-img {
    position: absolute;
    top: -120px;
    left: 90px;
  }
}
@media (max-width: 991px) {
  section.any-event .grid-event-box .event-img {
    position: relative;
    text-align: center;
    margin: -70px auto 20px;
    max-width: 90%;
  }
}
section.any-event .grid-event-box .event-img img {
  width: 400px;
}
section.any-event .grid-event-box h2, section.any-event .grid-event-box p {
  color: #fff;
}

/* POSTERS */
section.posters {
  padding: 50px 0;
  position: relative;
  background-color: var(--color-1);
  margin-top: 40px;
}
@media (max-width: 991px) {
  section.posters {
    margin-top: 10px;
  }
}
section.posters .grid-poster-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  position: relative;
  padding: 45px 0 130px;
}
@media (max-width: 991px) {
  section.posters .grid-poster-box {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  section.posters .grid-poster-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 559px) {
  section.posters .grid-poster-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.posters .grid-poster-box .poster-box {
  position: relative;
  padding: 40px;
  border-radius: 25px;
  text-align: center;
  transition: 0.5s;
}
@media (min-width: 768px) and (max-width: 991px) {
  section.posters .grid-poster-box .poster-box:last-child {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media (max-width: 767px) {
  section.posters .grid-poster-box .poster-box {
    padding: 15px;
  }
}
section.posters .grid-poster-box .poster-box.bg-1 {
  background: #EDEFFA;
}
section.posters .grid-poster-box .poster-box.bg-2 {
  background: #FEF6EE;
}
section.posters .grid-poster-box .poster-box.bg-3 {
  background: #FBEDF6;
}
section.posters .grid-poster-box .poster-box img {
  position: absolute;
  top: 20px;
  left: 25px;
  width: 40px;
  z-index: 3;
}
section.posters .grid-poster-box .poster-box:hover img {
  transform: rotate(360deg);
  transition: 0.5s;
}
section.posters .grid-poster-box .poster-box .content {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 0 15px #e5e0e0;
  position: relative;
  z-index: 2;
}
section.posters .grid-poster-box .poster-box .content h3 {
  margin-top: 0;
}
section.posters .grid-poster-box:before {
  background: url(../../images/pattern-1.svg) no-repeat;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 13px;
  left: 10px;
  z-index: 1;
  background-size: 90% auto;
  background-position: 7px 0px;
}
@media (max-width: 991px) {
  section.posters .grid-poster-box:before {
    display: none;
  }
}

section.features {
  background: rgb(241, 246, 233);
  background: linear-gradient(90deg, rgb(241, 246, 233) 48%, rgb(248, 247, 229) 48%, rgb(255, 247, 226) 48%, rgb(255, 247, 226) 57%, rgb(251, 238, 230) 57%, rgb(246, 228, 235) 57%, rgb(246, 228, 235) 66%, rgb(232, 242, 254) 66%, rgb(232, 242, 254) 100%);
  padding: 40px 0;
}
section.features .grid-preparations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  margin: 20px 0 0px;
}
section.features .grid-preparations .preparation-box img {
  max-width: 100%;
  border-radius: 10px;
}
section.features .grid-preparations .preparation-box .content {
  background: #fff;
  width: calc(100% - 60px);
  border-radius: 6px;
  padding: 25px 15px 15px;
  text-align: center;
  position: relative;
  left: 30px;
  top: -30px;
  box-shadow: 2px 3px 5px #999;
}
section.features .grid-preparations .preparation-box .content h1 {
  font-weight: bold !important;
  font-size: 30px;
}
section.features .grid-preparations .preparation-box .content h5 {
  text-transform: uppercase;
  margin: 5px 0 10px;
  font-weight: bold;
  font-size: 16px;
  color: var(--color1);
}
section.features .grid-preparations .preparation-box .content strike {
  font-size: 18px;
  display: inline-block;
  padding: 0 10px;
  color: #777;
}
section.features .grid-preparations .preparation-box .content small {
  color: var(--color1);
  font-size: 20px;
}
section.features .grid-preparations .preparation-box .btn-buy {
  position: absolute;
  left: calc(50% - 50px);
  top: -15px;
  background: var(--color-1);
  display: inline-block;
  padding: 2px 12px 3px;
  border-radius: 5px;
  border: 1px solid #fff;
  color: #fff;
  width: 120px;
  font-size: 16px;
}
section.features .grid-preparations .preparation-box:hover .btn-buy {
  background: var(--color-2);
}
@media (max-width: 991px) {
  section.features .grid-preparations {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 559px) {
  section.features .grid-preparations {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.features .grid-feature-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
@media (max-width: 767px) {
  section.features .grid-feature-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.features .grid-feature-box .feature-box {
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  height: 100%;
  background-color: #fff;
  overflow: hidden;
  display: block;
}
section.features .grid-feature-box .feature-box .img {
  overflow: hidden;
}
section.features .grid-feature-box .feature-box .img img {
  transition: 0.6s ease;
  width: 100%;
}
section.features .grid-feature-box .feature-box .content {
  padding: 20px;
  color: #555;
}
section.features .grid-feature-box .feature-box .content h4 {
  font-size: 18px;
  color: #222;
  font-weight: bold;
  margin-bottom: 5px;
}
section.features .grid-feature-box .feature-box .content p {
  font-size: 14px;
  margin-bottom: 10px;
}
section.features .grid-feature-box .feature-box .btn-1 {
  background: transparent;
  border: 2px solid var(--color-1);
  color: var(--color-1);
}
section.features .grid-feature-box .feature-box:hover h4 {
  color: var(--color-2);
}
section.features .grid-feature-box .feature-box:hover .btn-1 {
  background: var(--color-2);
  border: 2px solid var(--color-2);
  color: var(--liteColor);
}
section.features .grid-feature-box .feature-box:hover img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  section.features .grid-feature-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 559px) {
  section.features .grid-feature-box {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* INDEX PAGE OR HOME PAGE */
.carousel-control-next, .carousel-control-prev {
  width: 50px;
  opacity: 1;
}
.carousel-control-next span, .carousel-control-prev span {
  background-color: var(--color-2);
  border-radius: 100px;
  padding: 10px;
  background-size: 75% 50%;
}

/* INNER PAGES */
.page-header {
  background: var(--liteColor);
  padding: 6px 10px 10px;
}
.page-header ul {
  margin: 0;
}
.page-header ul li {
  display: inline-block;
  padding-right: 20px;
  position: relative;
  margin-right: 10px;
  font-size: 13px;
}
.page-header ul li:last-child::before {
  display: none;
}
.page-header ul li::before {
  content: "\f105";
  position: absolute;
  right: 0;
  top: 1px;
  font-family: "FontAwesome";
}
.page-header ul li a {
  color: #000;
}

/* SERVICE DETAIL PAGE */
section.service-detail {
  padding: 25px 10px;
}
section.service-detail .grid-service-detail {
  display: grid;
  grid-template-columns: auto 350px;
  grid-gap: 20px;
}
@media (max-width: 767px) {
  section.service-detail .grid-service-detail {
    grid-template-columns: 1fr;
  }
}
section.service-detail .grid-service-detail .left img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}
section.service-detail .grid-service-detail .left .title-1 p {
  margin-bottom: 15px;
}
section.service-detail .grid-service-detail .right {
  background-color: #eee;
  padding: 25px;
  border-radius: 5px;
}
section.service-detail .grid-service-detail .right h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
section.service-detail .grid-service-detail .right ul {
  margin-top: 15px;
}
section.service-detail .grid-service-detail .right ul li {
  padding-top: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #bbb;
  position: relative;
}
section.service-detail .grid-service-detail .right ul li:last-child {
  border: none;
}
section.service-detail .grid-service-detail .right ul li label {
  font-size: 15px;
  margin-bottom: 5px;
  cursor: pointer;
  width: 100%;
}
section.service-detail .grid-service-detail .right .package-model {
  margin-bottom: 20px;
}
section.service-detail .grid-service-detail .right .package-model .package-model-box {
  background-color: #fff;
  padding: 10px;
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 60px auto;
  grid-gap: 10px;
}
section.service-detail .grid-service-detail .right .package-model .package-model-box img {
  border-radius: 6px;
}
section.service-detail .grid-service-detail .right .package-model .package-model-box .content h4 {
  font-size: 15px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: bold;
}
section.service-detail .grid-service-detail .right .package-model .package-model-box .content h5 {
  font-size: 16px;
  color: var(--color-2);
}
section.service-detail .grid-service-detail .right .package-model .package-model-box .content h5 span.strike {
  text-decoration: line-through;
  color: #555;
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
}
section.service-detail .grid-service-detail .right .package-model .package-model-box .content p {
  font-size: 13px;
}
section.service-detail .grid-service-detail .right .user-form {
  margin-bottom: 25px;
}
button.cart {
  position: fixed;
  right: 15px;
  bottom: 120px;
  background: var(--color-3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  line-height: 45px;
  border: none;
  color: #fff;
  display: none;
  outline: none;
}
button.cart.active {
  display: inline-block;
  z-index: 10;
}
button.cart img {
  width: 25px;
}
button.cart span.badge {
  position: absolute;
  right: 4px;
  top: 6px;
  padding: 0;
  font-size: 12px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 50%;
  font-weight: normal;
  background: red !important;
  color: #fff !important;
}

#selected-coureses {
  background: #eee;
  position: fixed;
  bottom: 90px;
  right: -400px;
  border-radius: 6px;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  width: 98%;
  margin: 20px auto;
  max-width: 350px;
  /* max-height: 300px; */
  overflow-y: auto;
  transition: 0.4s ease-in-out;
}
#selected-coureses h2 {
  padding: 10px 20px 10px;
  background: var(--color-1);
  margin: 0;
  color: #fff;
  position: relative;
  font-size: 17px;
  font-family: "Arial" !important;
}
#selected-coureses h2 pre {
  all: unset;
  display: inline-block;
  --value: 25px;
  width: var(--value);
  height: var(--value);
  border-radius: var(--value);
  line-height: var(--value);
  text-align: center;
  background: #F16930;
  font-size: 12px;
  color: #fff;
}
#selected-coureses h2 span {
  position: absolute;
  right: 13px;
  top: 10px;
  color: #FFD455 !important;
  font-size: 16px;
  cursor: pointer;
}
#selected-coureses .selected-courese-ul {
  margin: 0;
  position: relative;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}
#selected-coureses ul {
  margin: 0;
}
#selected-coureses ul li {
  position: relative;
  border-bottom: 1px solid #888;
  padding: 15px 20px 15px;
  color: #333;
}
#selected-coureses ul li:last-child {
  border-bottom: none;
}
#selected-coureses p {
  padding: 0;
  margin-bottom: 0;
}
#selected-coureses p.title {
  font-weight: bold;
  font-size: 16px;
}
#selected-coureses .btn-holder-courses {
  background: var(--color-1);
  padding: 10px;
}
#selected-coureses .btn-holder-courses .btn-read-more {
  margin-top: 0 !important;
  text-transform: capitalize;
  text-align: left;
  display: block;
  font-weight: bold;
  background: var(--color-1);
  border-radius: 0;
  color: #fff;
  pointer-events: none;
}
#selected-coureses .btn-submit {
  border-radius: 0;
  box-shadow: none;
  display: block;
  background: var(--color-3);
  outline: none !important;
  text-align: left;
  width: 100%;
  border-radius: 5px;
  padding: 5px 10px;
  color: #111;
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
#selected-coureses p.detail {
  display: grid;
  grid-template-columns: auto 40px;
}
#selected-coureses .remove {
  position: absolute;
  display: inline-block;
  color: #fff;
  background: var(--color-2);
  border-radius: 4px;
  padding: 0px 6px;
  font-size: 13px;
  text-align: center;
  bottom: 10px;
  right: 10px;
}
#selected-coureses .total-li {
  font-size: 30px;
  color: #0033A0;
}
#selected-coureses.active {
  right: 10px;
}

.apply {
  position: relative;
  /* border: 1px solid #333; */
  padding: 0px 20px 1px;
  /* border-radius: 6px; */
  /* background: #fff; */
  margin-bottom: 15px;
}
.apply ul li {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding: 10px 0 5px;
}
.apply ul li p.title {
  font-size: 16px;
  font-weight: bold;
}
.apply ul li:last-child {
  border-bottom: none;
}

/* SUPPORT PAGE */
section.support-header {
  background-image: url(../../images/bg-support.jpg);
  background-size: cover;
  background-position: right top;
  padding: 30px 30px 120px;
}
@media (max-width: 767px) {
  section.support-header {
    background: var(--color-1);
  }
}
section.support-header h3 {
  font-style: italic;
  color: var(--color-3);
}
section.support-header h2, section.support-header p {
  color: #fff;
}
section.support-header .holder {
  max-width: 750px;
}

section.support-block .grid-holder {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 35px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  position: relative;
  margin: -90px 0 30px;
}
@media (max-width: 767px) {
  section.support-block .grid-holder {
    grid-template-columns: 1fr;
  }
}
section.support-block .grid-holder h2 {
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--color-1);
  text-transform: uppercase;
  font-weight: bold;
}
section.support-block .grid-holder h4 {
  color: var(--color-1);
  font-size: 20px;
}
section.support-block .grid-holder .left a {
  color: #555;
  display: inline-block;
  margin-top: 5px;
}
section.support-block .grid-holder p + h4 {
  margin-top: 25px;
}
@media (min-width: 768px) {
  section.support-block .grid-holder .right {
    border-left: 1px solid #ddd;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  section.support-block .grid-holder .right {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    margin-top: 30px;
  }
}
section.support-block .grid-holder .right a {
  display: inline-block;
  margin: 15px 0;
  text-transform: uppercase;
}

/* BLOG PAGE */
section.features {
  background: rgb(241, 246, 233);
  background: linear-gradient(90deg, rgb(241, 246, 233) 48%, rgb(248, 247, 229) 48%, rgb(255, 247, 226) 48%, rgb(255, 247, 226) 57%, rgb(251, 238, 230) 57%, rgb(246, 228, 235) 57%, rgb(246, 228, 235) 66%, rgb(232, 242, 254) 66%, rgb(232, 242, 254) 100%);
  padding: 40px 0;
}

section.features .grid-feature-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

@media (max-width: 991px) {
  section.features .grid-feature-box {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  section.features .grid-feature-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.features .grid-feature-box .feature-box {
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  height: 100%;
  background-color: #fff;
  overflow: hidden;
  display: block;
}

section.features .grid-feature-box .feature-box .img {
  overflow: hidden;
}

section.features .grid-feature-box .feature-box .img img {
  transition: 0.6s ease;
  width: 100%;
}

section.features .grid-feature-box .feature-box .content {
  padding: 20px;
  color: #555;
}

section.features .grid-feature-box .feature-box .content h4 {
  font-size: 18px;
  color: #222;
  font-weight: bold;
  margin-bottom: 5px;
}

section.features .grid-feature-box .feature-box .content p {
  font-size: 14px;
  margin-bottom: 10px;
}

section.features .grid-feature-box .feature-box .btn-1 {
  background: transparent;
  border: 2px solid var(--color-1);
  color: var(--color-1);
}

section.features .grid-feature-box .feature-box:hover h4 {
  color: var(--color-2);
}

section.features .grid-feature-box .feature-box:hover .btn-1 {
  background: var(--color-2);
  border: 2px solid var(--color-2);
  color: var(--liteColor);
}

section.features .grid-feature-box .feature-box:hover img {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  section.features .grid-feature-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 559px) {
  section.features .grid-feature-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.service-detail-block {
  background-color: #fff;
  padding: 30px 0 0;
}
@media (max-width: 991px) {
  section.service-detail-block {
    padding: 15px 5px;
  }
}
section.service-detail-block .grid-service-detail {
  max-width: 900px;
  margin: auto;
}
@media (max-width: 991px) {
  section.service-detail-block .grid-service-detail {
    display: block;
  }
}
section.service-detail-block #gallery1 {
  margin-bottom: 10px;
}

/* MAILER PAGE */
section.mailer {
  width: 100%;
  min-width: 100vw;
  height: 100%;
  min-height: 100vh;
  display: flex;
  overflow: hidden !important;
}
section.mailer .inner {
  max-width: 750px;
  margin: auto;
  padding: 30px;
  text-align: center;
}
section.mailer .inner .title h2 {
  font-size: 23px;
  margin: 25px 0 0;
  color: #555;
}
section.mailer .inner .title h4 {
  font-size: 17px;
  margin: 5px 0 10px;
  color: #777;
}
section.mailer .inner .title p {
  color: #999;
}
section.mailer .inner .title p.lead {
  font-size: 28px;
}
section.mailer .inner .title .btn-1 {
  margin: 20px 0;
}
section.mailer .inner .logo-part img {
  width: 120px;
}
section.mailer .inner .img-big {
  max-width: 550px;
  width: 100%;
  margin: auto;
  margin: 20px auto;
}

/* CONTACT PAGE */
.contact-block {
  position: relative;
}

.contact-wrapper {
  padding: 20px;
}

.contact-wrapper .map {
  display: none;
}

.contact-wrapper {
  padding: 0;
}

.contact-wrapper .map {
  display: block;
}

.contact-wrapper .map iframe {
  width: 100%;
  min-height: 600px;
}

.contact-wrapper .map {
  position: relative;
}

.contact-wrapper .map .overlay {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.contact-detail-box {
  width: 100%;
  max-width: 650px;
  padding: 40px;
  background: #f3f3f3;
  color: #222;
}

@media (min-width: 768px) {
  .contact-detail-box {
    position: absolute;
    left: 40px;
    top: 40px;
    width: calc(100% - 40px);
  }
}
@media (max-width: 767px) {
  .contact-detail-box {
    position: absolute;
    left: 20px;
    top: 20px;
    width: calc(100% - 40px);
  }
}
.contact-detail-box h2 {
  color: #222;
  text-align: left;
  font-size: 20px;
  max-width: 400px;
  line-height: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.contact-detail-box p {
  color: #333;
  font-size: 16px;
  line-height: 24px;
}

.contact-detail-box a {
  color: var(--color-1);
}

.btn-request,
.btn-chat {
  display: inline-block;
  padding: 8px 25px 10px;
  background: var(--colorBlue);
  color: #fff !important;
  margin-right: 10px;
  margin-top: 10px;
}

.btn-chat {
  background: rgb(29, 110, 18);
}

.grid-address-box h3 {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  text-transform: uppercase;
  color: #222;
  margin-top: 20px;
  font-weight: bold;
}

.grid-address-box h3:before {
  height: 8px;
  width: 8px;
  content: "";
  left: 0;
  top: 4px;
  display: inline-block;
  background: #222;
  position: relative;
  margin-right: 15px;
  position: absolute;
  content: "";
}

.grid-subscribe-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .grid-subscribe-contact {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  .grid-subscribe-contact > div:last-child {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

.grid-subscribe-contact input {
  height: 45px;
  padding: 10px;
  width: 100%;
  background: transparent;
  color: #222;
  border: none;
  padding-left: 0;
  font-size: 14px;
  border: none;
  outline: none;
  border-bottom: 2px solid #222;
}

.grid-subscribe-contact input::-moz-placeholder {
  color: #222;
}

.grid-subscribe-contact input:-ms-input-placeholder {
  color: #222;
}

.grid-subscribe-contact input::placeholder {
  color: #222;
}

.grid-subscribe-contact button {
  text-align: center;
}

.grid-subscribe-contact button::after {
  display: none;
}

.grid-subscribe-contact button:hover {
  color: #ffc412;
}

/* ABOUT PAGE */
section.about-content {
  position: relative;
  padding: 20px;
  background-image: url("../../images/pattern-1.jpg");
  background-size: 300px;
  background-repeat: repeat;
}
section.about-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.94);
}

.grid-about-common {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.grid-about-common .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
}
@media (max-width: 991px) {
  .grid-about-common .inner {
    grid-template-columns: 1fr;
  }
}
.grid-about-common .inner > .content {
  padding: 30px;
}
@media (max-width: 991px) {
  .grid-about-common .inner > .content {
    padding: 0;
  }
}
.grid-about-common .inner p {
  font-size: 15px;
  color: #222;
}
.grid-about-common .title-top {
  color: #222;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 25px 10px;
}
.grid-about-common h4 {
  color: #222;
  margin: 0 0 10px;
  font-weight: bold;
  font-size: 20px;
}
.grid-about-common .holder {
  background: rgba(255, 255, 255, 0.35);
  padding: 30px;
  position: relative;
  border-left: 1px solid var(--darkColor);
}
.grid-about-common .holder.r-arrow {
  border-left: none;
  border-right: 1px solid var(--darkColor);
}
@media (max-width: 991px) {
  .grid-about-common .holder {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--darkColor);
  }
  .grid-about-common .holder.r-arrow {
    border-right: none;
    border-top: 1px solid var(--darkColor);
  }
  .grid-about-common .holder::before {
    content: "";
    position: absolute;
    right: 50px;
    top: -15px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--darkColor);
  }
}
@media (min-width: 992px) {
  .grid-about-common .holder::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--darkColor);
  }
  .grid-about-common .holder.r-arrow::before {
    right: -15px;
    left: auto;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--darkColor);
    border-right: none;
  }
}
.grid-about-common .holder.no-border {
  border: none;
}
.grid-about-common .holder.no-border::before {
  display: none;
}

/* MODAL 1 */
.modal-1 {
  padding-right: 0 !important;
}
.modal-1.white .modal-body {
  background: #fff;
}
.modal-1 .modal-content {
  border: none;
  background: transparent;
}
.modal-1 .modal-body {
  padding: 0;
  box-shadow: none;
  background: transparent;
  border-radius: 5px;
  overflow: hidden;
}
.modal-1 .modal-body h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
}
.modal-1 .modal-body p {
  margin-bottom: 20px;
  color: #ccc;
}
.modal-1 .btn-close {
  position: absolute;
  right: 30px;
  top: 30px;
  opacity: 1;
  z-index: 10;
}
.modal-1 .btn-1 {
  width: 100%;
  text-transform: uppercase;
  font-size: 15px;
  padding: 12px;
  border-radius: 10px;
}
.modal-1 .btn-1:hover {
  background: var(--yellowColor);
}
.modal-1 .btn-close {
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
}
.modal-1 .btn-close::after, .modal-1 .btn-close::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background: #fff;
  transform: rotate(40deg);
  right: 10px;
  top: 0;
}
.modal-1 .btn-close::after {
  transform: rotate(-40deg);
}
.modal-1 .modal-footer-authentication {
  margin-top: 30px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}
.modal-1 .modal-footer-authentication p {
  margin: 0;
}
.modal-1 .modal-footer-authentication a {
  color: var(--yellowColor);
  text-decoration: underline !important;
  display: inline-block;
  padding-bottom: 3px;
}
.modal-1 .modal-footer-authentication a.no-ul {
  text-decoration: none !important;
}
.modal-1 .or-box {
  text-align: center;
  margin-top: 20px;
  color: #fff;
}
.modal-1 .or-box h4 {
  font-size: 16px;
  margin-bottom: 20px;
}
.modal-1 .or-box .split-or-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.modal-1 .or-box .split-or-box a {
  display: flex;
  width: 100%;
  padding: 6px 12px;
  color: #fff;
  background: var(--fbColor);
  height: 100%;
}
.modal-1 .or-box .split-or-box a .inner {
  margin: auto;
}
.modal-1 .or-box .split-or-box a.btn-gmail {
  background: var(--gmailColor);
}

.authentication-form {
  position: relative;
  background: var(--color-1);
  border-radius: 10px;
  background-size: cover;
  z-index: 9;
  padding: 50px;
  position: relative;
}
.authentication-form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .authentication-form {
    padding: 30px;
  }
}
.authentication-form .h3 {
  color: #ddd;
}
.authentication-form p {
  color: #aaa;
}

.inner-modal {
  display: none;
  position: relative;
}
.inner-modal.active {
  display: block;
}

.combined-input {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 15px;
}
@media (max-width: 767px) {
  .combined-input {
    grid-template-columns: 1fr;
  }
}

.authentication-input-box {
  position: relative;
  margin-bottom: 15px;
}
.authentication-input-box > label {
  font-weight: normal;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: var(--liteColor);
  font-size: 14px;
  font-weight: 500;
}
.authentication-input-box .form-control {
  min-height: 45px;
  border-radius: 10px;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  resize: none;
}
.authentication-input-box .form-control + .error-box {
  color: var(--errorColor);
  margin-bottom: 10px;
  display: none;
  padding: 10px 0;
}
.authentication-input-box .form-control + .error-box:first-letter {
  text-transform: capitalize;
}
.authentication-input-box .form-control.error {
  box-shadow: 0 0 0 0.25rem rgba(238, 70, 21, 0.78);
}
.authentication-input-box .form-control.error + .error-box {
  display: block;
}

textarea.form-control {
  height: 90px;
}

/* PACKAGE OR PRICE PAGE */
section.package {
  background-color: rgb(245, 248, 250);
}
section.package .package-banner {
  padding: 60px 20px 40px;
  background: var(--color-1);
  text-align: center;
  position: relative;
}
section.package .package-banner h2, section.package .package-banner p {
  color: #fff;
}
section.package .package-banner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -110px;
  width: 100%;
  height: 120px;
  background: var(--color-1);
}
section.package .package-box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  max-width: 1050px;
  margin: auto;
  padding: 10px 20px 40px;
}
@media (max-width: 767px) {
  section.package .package-box-grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
section.package .package-box-grid .package-box {
  position: relative;
  background-color: rgb(255, 255, 255);
  border-top: 4px solid rgb(179, 189, 196);
  box-shadow: rgba(0, 32, 37, 0.24) 0px 8px 40px -24px;
  padding-bottom: 20px;
  padding: 40px;
  text-align: center;
  font-size: 14px;
}
@media (min-width: 992px) {
  section.package .package-box-grid .package-box {
    transform: scale(0.95);
  }
}
section.package .package-box-grid .package-box .package-header h3 {
  font-weight: bold;
  font-family: arial;
  margin-bottom: 10px;
  font-size: 22px;
}
section.package .package-box-grid .package-box .package-header h4 {
  text-decoration: line-through;
  color: #777;
}
section.package .package-box-grid .package-box .package-header h1 {
  font-weight: bold;
  margin-top: 15px;
  color: var(--color-1);
  font-family: arial;
}
@media (max-width: 991px) {
  section.package .package-box-grid .package-box .package-header h1 {
    font-size: 24px;
  }
}
section.package .package-box-grid .package-box .package-header h1 small:nth-child(2) {
  color: #777;
}
@media (min-width: 992px) {
  section.package .package-box-grid .package-box .package-header h1 small:nth-child(2) {
    font-size: 22px;
  }
}
section.package .package-box-grid .package-box .package-body ul li {
  position: relative;
  padding: 3px 0;
  padding-left: 16px;
  font-size: 14px;
  text-align: left;
  color: rgb(99, 115, 126);
}
section.package .package-box-grid .package-box .package-body ul li span.check,
section.package .package-box-grid .package-box .package-body ul li .fa {
  position: absolute;
  left: 0;
  top: 2px;
  color: #75759b;
}
section.package .package-box-grid .package-box .package-body ul li span.help {
  position: relative;
  top: -1px;
  left: 3px;
}
section.package .package-box-grid .package-box .package-body ul li:last-child {
  border: none;
}
section.package .package-box-grid .package-box .package-footer {
  margin: 15px 0;
}
section.package .package-box-grid .package-box.highlight {
  padding-bottom: 40px;
  z-index: 1;
  border-color: var(--color-3);
}
@media (min-width: 992px) {
  section.package .package-box-grid .package-box.highlight {
    left: -1px;
    top: -10px;
    transform: scale(1.05);
  }
}

/* EXPIRE PAGE */
div.block-expire {
  min-height: calc(100vh - 0px);
  padding: 30px;
  display: flex;
}
div.block-expire .auto {
  margin: auto;
  text-align: center;
}
div.block-expire .auto .lead {
  font-weight: bold;
}
div.block-expire .package-box-grid {
  padding: 0;
  grid-gap: 10px;
}
div.block-expire .package-box-grid .package-box {
  border: none !important;
}
div.block-expire .package-box-grid .package-box .action-btn {
  cursor: pointer;
  font-weight: bold;
  color: #DD374E;
  text-transform: uppercase;
  font-size: 13px;
}
div.block-expire .package-box-grid .package-box .package-body {
  display: none;
}
div.block-expire .package-box-grid .package-box .detail-checkbox:checked ~ .action-btn {
  display: none;
}
div.block-expire .package-box-grid .package-box .detail-checkbox:checked ~ .package-body {
  display: block;
}

.alert-expire {
  background: #DD374E;
  padding: 20px 25px;
  border-radius: 7px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}

/* MEDIA QURIES */
.menu-bar-sm-xs {
  position: relative;
  padding-top: 3px;
}

.visible-sm-xs,
.visible-xs {
  display: none;
}

@media (max-width: 991px) {
  .hidden-sm-xs {
    display: none;
  }
  .visible-sm-xs {
    display: block;
  }
  .container {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .visible-xs {
    display: block;
  }
  .hidden-xs {
    display: none;
  }
  .container {
    max-width: 96%;
  }
}
@media (max-width: 559px) {
  .container {
    max-width: 100%;
  }
}/*# sourceMappingURL=style.css.map */