@import url("https://fonts.googleapis.com/css2?family=Readex+Pro:wght@200;300;500;600;700&family=Spline+Sans:wght@300;400;500;600;700&display=swap");

:root {
   --mainColor: #F00404;
  --secondaryColor: #D73232;
  --bgColor: #F9FAFA;
  --headingColor: #F00404;
  --whiteColor: #FFFFFF;
  --blackColor: #222222;
  --fontSize: 16px;
  --transition: .5s;
  --border-radius: 4px;
  --transition: .5s;
  --box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar {-webkit-appearance: none;}
::-webkit-scrollbar:vertical {width: 8px;}
::-webkit-scrollbar:horizontal {height: 8px;}
::-webkit-scrollbar-thumb {background-color: #CC171E;border-radius: 0;border: 0}
::-webkit-scrollbar-track {border-radius: 10px;background-color: #FDF1F2;}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 8px;
}

@font-face {
    font-family: Cocon;
    src: url(../../fonts/Cocon.otf);
}

html {
  scroll-behavior: smooth;
}

.row {
  margin-right: -20px;
  margin-left: -20px;
}

.row>* {
  padding-right: 20px;
  padding-left: 20px;
}

@media only screen and (max-width: 767px) {
  .row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .row>* {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .row>* {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.MainRooms {
    border: 1px solid #F00404;
    color: #F00404;
    background: white;
    text-align: center;
    padding: 12px 30px;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}
.MainRooms:hover {
   color: white;
   background: #F00404;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  font-size: 16px;
  color: var(--whiteColor);
  padding: 16px 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  line-height: 1;
  background-color: var(--mainColor);
  border: none;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
  height: 50px;
  color: #333;
  border: 1px solid #eaedff;
  background-color: var(--whiteColor);
  border-radius: 0;
  font-size: 15px;
  padding: 15px 15px;
  width: 100%;
}

input[type="file"] {
  border: 1px solid #eaedff;
  color: #333;
}

select, select.form-control {
  border: 1px solid #e9e9ed;
  border-radius: 0;
  font-size: 15px;
  width: fit-content;
  padding: 12px 15px;
  height: 50px;
  color: #f00404;
}

textarea, textarea.form-control {
  color: #271273;
  border: 1px solid #eaedff;
  background-color: var(--whiteColor);
  border-radius: 0;
  font-size: 15px;
  padding: 10px 20px;
  width: 100%;
}

input:focus, textarea:focus {
  color: #000000;
  background-color: transparent;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  outline: 0;
  border: 1px solid var(--mainColor);
}

.bg-color input:focus, .bg-color textarea:focus {
  background-color: var(--whiteColor);
}

textarea {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  button, input[type="button"], input[type="reset"], input[type="submit"] {
   font-size: 15px;
   padding: 14px 24px;
  }
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

:focus,
button:focus,
.btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: var(--mainColor);
}

.bg-color {
  background-color: #F9FAFA;
}

a,
button,
input[type="submit"] {
  cursor: pointer;
}

a {
  color: var(--mainColor);
  text-transform: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover,
a :focus {
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--blackColor);
}

a:focus {
  outline: 0 solid;
}

img {
  height: auto;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

.mfp-iframe-holder .mfp-close {
  background-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.4;
  color: #444;
  font-family: "Readex Pro", sans-serif;
}

body {
  font-size: 16px;
  font-family: "Spline Sans", sans-serif;
  color: #666666;
}

p {
  font-size: 15.8px;
  line-height: 1.8;
  color: #666666;
}

p:last-child {
  margin-bottom: 0;
}

p:empty {
  margin: 0;
}

.ri-twitter-fill::before {
  content: "𝕏" !important;
  position: relative;
  bottom: 2px;
}

.header-top-right .ri-twitter-fill::before {
  content: "𝕏" !important;
  position: relative;
  bottom: 1px;
}

.bx.bxl-twitter::before {
  content: "𝕏" !important;
  position: relative;
  bottom: 1px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-200 {
  padding-bottom: 200px;
}

.ptb-10 {
  padding-bottom: 10px;
  padding-bottom: 10px;
}

.ptb-20 {
  padding-bottom: 20px;
  padding-bottom: 20px;
}

.ptb-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.ptb-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ptb-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.ptb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ptb-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ptb-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mtb-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mtb-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.z-0 {
  z-index: 0;
  position: relative;
}

.help-block {
  color: #E31C25;
}

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

.list-style li {
  list-style: none;
}

.page-wrapper {
  overflow-x: hidden;
  overflow-y: hidden;
}

.main.page-wrapper {
  margin-top: 138px;
}

.mfp-wrap.mfp-gallery button:hover {
  background: transparent;
}

@media only screen and (max-width: 767px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .main.page-wrapper {
    margin-top: 259px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .main.page-wrapper {
    margin-top: 171px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
  .main.page-wrapper {
    margin-top: 159px;
  }
}

/*---------------------------------
  Mixins & Animation CSS
-----------------------------------*/
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .social-profile.style1 li a, .social-profile.style2 li a, .social-profile.style3 li a, .promo-wrap.style2 .promo-card .promo-icon, .project-card.style2 .like-btn, .project-card.style3 .like-btn, .project-card.style4 .project-img .like-btn, .header-wrap .header-top .header-top-left, .header-wrap .header-top .header-top-left .contact-info, .header-wrap .header-top .header-top-left .contact-info li, .header-wrap .header-top .header-top-right, .select-lang .navbar-language .dropdown-toggle, .event-info-item-wrap .event-info-item, .project-card.style4, .counter-card-wrap.style2 .counter-card, .counter-card-wrap.style3 .counter-card, .event-card, .team-card.style2 .team-info-wrap, .progess-bar-item, .blog-card .blog-info .blog-author, .donate-box .donate-amt, .fund-collection, .owl-carousel .owl-nav, .pp-post-item, .promo-wrap.style2, .donation-form .radionbtn-wrap, .counter-card-wrap, .post-author, .comment-item-wrap .comment-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .social-profile.style1 li a, .social-profile.style2 li a, .social-profile.style3 li a, .promo-wrap.style2 .promo-card .promo-icon, .project-card.style2 .like-btn, .project-card.style3 .like-btn, .project-card.style4 .project-img .like-btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-wrap .header-top .header-top-left, .header-wrap .header-top .header-top-left .contact-info, .header-wrap .header-top .header-top-left .contact-info li, .header-wrap .header-top .header-top-right, .select-lang .navbar-language .dropdown-toggle, .event-info-item-wrap .event-info-item, .project-card.style4, .counter-card-wrap.style2 .counter-card, .counter-card-wrap.style3 .counter-card, .event-card, .team-card.style2 .team-info-wrap, .progess-bar-item, .blog-card .blog-info .blog-author {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

.team-card.style2 .team-info-wrap, .progess-bar-item {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.donate-box .donate-amt {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-wrap .header-top .header-top-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.fund-collection {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 85px;
  width: 85px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform-origin: center;
  transform-origin: center center;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 #fff;
  -ms-box-shadow: 0 0 0 0 #fff;
  -o-box-shadow: 0 0 0 0 #fff;
  box-shadow: 0 0 0 0 #fff;
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.play-now {
  position: relative;
  height: 85px;
  width: 85px;
  text-align: center;
  line-height: 92px;
  background-color: transparent;
  border: 3px solid #fff;
  color: #fff;
  z-index: 1;
  font-size: 28px;
  padding-left: 5px;
  display: block;
  -webkit-transform-origin: center;
  transform-origin: center center;
  border-radius: 50%;
  margin: 0 auto;
}

.play-now .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.play-now .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.HStar {
    overflow-x: auto !important;
    padding: 0 0 8px 0 !important;
    scrollbar-width: thin;
    scrollbar-color: #CC0000 #FFE5E5;
}
.HStar>span{
    white-space: nowrap !important;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/*---------------------------------
  Back To Top Button CSS
-----------------------------------*/
.back-to-top {
  font-size: 24px;
  width: 45px;
  height: 45px;
  line-height: 42px;
  text-align: center;
  display: none;
  position: fixed;
  bottom: 230px;
  right: 20px;
  z-index: 999;
  border-radius: 5px;
  background: var(--mainColor);
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.back-to-top:hover {
  background: var(--secondaryColor);
}

.back-to-top.open {
  bottom: 30px;
}

.back-to-top i {
  color: #fff;
}

/*---------------------------------
  Preloader CSS
-----------------------------------*/
.preloader-style {
  height: 100%;
  width: 100%;
  position: fixed;
  background-color: var(--bgColor);
  top: 0;
  left: 0;
  z-index: 99999;
}

.preloader-style .preloader-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.preloader-style::before {
  position: absolute;
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.preloader-style .preloader-container {
  width: 80px;
  height: 80px;
  animation: rotate-ten 3s infinite linear reverse;
}

.preloader-style .preloader-container .ball {
  position: absolute;
  width: 65%;
  height: 65%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 3px solid var(--whiteColor);
  background-color: var(--mainColor);
  z-index: 5;
}

.preloader-style .preloader-container .petal {
  position: absolute;
  width: 28%;
  height: 50%;
  bottom: 50%;
  left: 50%;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

.preloader-style .preloader-container .petal::before {
  position: absolute;
  content: "";
  width: 72%;
  height: 40%;
  left: 50%;
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transform: scale(1, 1.8) rotate(45deg);
          transform: scale(1, 1.8) rotate(45deg);
  background: var(--mainColor);
}

.preloader-style .preloader-container .petal::after {
  position: absolute;
  content: "";
  width: 72%;
  height: 40%;
  left: 50%;
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transform: scale(1, 1.8) rotate(45deg);
          transform: scale(1, 1.8) rotate(45deg);
  background: var(--mainColor);
  top: 100%;
}

.preloader-style .preloader-container .petal:nth-of-type(1) {
  -webkit-transform: translate(-50%, 0%) rotate(0deg);
          transform: translate(-50%, 0%) rotate(0deg);
}

.preloader-style .preloader-container .petal:nth-of-type(2) {
  -webkit-transform: translate(-50%, 0%) rotate(30deg);
          transform: translate(-50%, 0%) rotate(30deg);
}

.preloader-style .preloader-container .petal:nth-of-type(3) {
  -webkit-transform: translate(-50%, 0%) rotate(60deg);
          transform: translate(-50%, 0%) rotate(60deg);
}

.preloader-style .preloader-container .petal:nth-of-type(4) {
  -webkit-transform: translate(-50%, 0%) rotate(90deg);
          transform: translate(-50%, 0%) rotate(90deg);
}

.preloader-style .preloader-container .petal:nth-of-type(5) {
  -webkit-transform: translate(-50%, 0%) rotate(120deg);
          transform: translate(-50%, 0%) rotate(120deg);
}

.preloader-style .preloader-container .petal:nth-of-type(6) {
  -webkit-transform: translate(-50%, 0%) rotate(150deg);
          transform: translate(-50%, 0%) rotate(150deg);
}

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

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

/*---------------------------------
  Button & Link CSS
----------------------------------*/
.btn {
  display: inline-block;
  line-height: 26px;
  font-weight: 400;
  border-radius: 5px;
  text-align: center;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  position: relative;
  z-index: 1;
  border: none;
  padding: 15px 30px 15px;
  border-radius: 0;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  background-color: var(--mainColor);
}

.btn:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn:hover {
  background-color: var(--blackColor);
  border-color: var(--blackColor);
  color: var(--whiteColor);
}

.btn:hover:after, .btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.btn.style1 {
  background-color: var(--mainColor);
  border-radius: 15px 0 15px 0;
}

.btn.style1:after, .btn.style1:before {
  background: var(--blackColor);
}

.btn.style2 {
  background-color: var(--secondaryColor);
  border-radius: 15px 0 15px 0;
  color: #fff;
  border-radius: 10px 0 10px 0;
}

.btn.style2:after, .btn.style2:before {
  background: var(--blackColor);
}

.btn.style2:hover {
  color: #fff;
}

.btn.style3 {
  background-color: var(--blackColor);
  color: #fff;
}

.btn.style3:after, .btn.style3:before {
  background: var(--mainColor);
}

.btn.style3:hover {
  color: #fff;
}

.btn.style4 {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--blackColor);
}

.btn.style4:after, .btn.style4:before {
  background: var(--mainColor);
}

.btn.style4:hover {
  color: #fff;
}

.btn.style5 {
  background-color: transparent;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
}

.btn.style5:after, .btn.style5:before {
  background: var(--mainColor);
}

.btn.style5:hover {
  color: #fff;
}

.btn.style6 {
  background-color: #fff;
  color: var(--mainColor);
}

.btn.style6:after, .btn.style6:before {
  background: var(--mainColor);
}

.btn.style6:hover {
  color: #fff;
}

.btn.icon {
  padding: 16px 30px 16px 60px;
}

.btn.icon i {
  position: absolute;
  left: 30px;
  top: 50%;
  right: initial;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
  bottom: 6px;
}

.link {
  font-weight: 500;
  line-height: 26px;
  display: inline-block;
  position: relative;
  color: var(--mainColor);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.link:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background: var(--mainColor);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.link i {
  position: relative;
  top: 3px;
  margin-left: 5px;
  font-size: 14px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.link.style1 {
  color: var(--mainColor);
}

.link:hover {
  color: var(--mainColor);
}

.link:hover:after {
  visibility: visible;
  opacity: 1;
  width: 100%;
}

.link:hover i {
  margin-left: 10px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 30px;
}

@media only screen and (max-width: 991px) {
  .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 20px;
  }
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.owl-carousel .owl-nav button.owl-prev i, .owl-carousel .owl-nav button.owl-next i {
  font-size: 20px;
  line-height: 0.8;
  display: inline-block;
  position: relative;
  top: 1px;
  color: var(--mainColor);
  margin: 0 auto;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.owl-carousel .owl-nav button.owl-prev:hover, .owl-carousel .owl-nav button.owl-next:hover {
  background-color: var(--mainColor);
  border-color: transparent;
}

.owl-carousel .owl-nav button.owl-prev:hover i, .owl-carousel .owl-nav button.owl-next:hover i {
  color: #fff;
}

.owl-carousel .owl-dots button.owl-dot {
  display: inline-block;
  margin: 0 6px;
  position: relative;
  bottom: -5px;
}

.owl-carousel .owl-dots button.owl-dot span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.owl-carousel .owl-dots button.owl-dot.active span {
  background: var(--mainColor);
}

/*-------------------------------
  User Account CSS
-------------------------------*/
.user-account {
  margin-left: 15px;
}

.user-account i {
  position: relative;
  top: 5px;
  margin-right: 4px;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--whiteColor);
}

.user-account a {
  color: var(--whiteColor);
  font-size: 15px;
}

.user-account a:hover {
  color: var(--blackColor);
}

/*-------------------------------
  Social Link  CSS
-------------------------------*/
.social-profile li {
  display: inline-block;
  margin: 0 4px;
}

.social-profile li:first-child {
  margin-left: 0;
}

.social-profile li:last-child {
  margin-right: 0;
}

.social-profile li:last-child {
  margin-right: 0;
}

.social-profile li a {
  display: block;
  text-align: center;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.social-profile li a i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  line-height: 0.8;
}

.social-profile li a:hover {
  border-color: transparent;
  color: var(--mainColor);
}

.social-profile.style1 li a, .social-profile.style2 li a, .social-profile.style3 li a {
  width: 35px;
  height: 35px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.social-profile.style1 li a {
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.social-profile.style1 li a i {
  color: var(--mainColor);
}

.social-profile.style1 li a:hover {
  background-color: var(--mainColor);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.social-profile.style1 li a:hover i {
  color: #fff;
}

.social-profile.style2 li a {
  background: #f9f9f9;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.social-profile.style2 li a i {
  color: rgba(0, 0, 0, 0.3);
}

.social-profile.style2 li a:hover {
  background-color: var(--mainColor);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.social-profile.style2 li a:hover i {
  color: #fff;
}

.social-profile.style3 li a {
  background: transparent;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.social-profile.style3 li a i {
  color: rgba(0, 0, 0, 0.3);
}

.social-profile.style3 li a:hover {
  background-color: var(--mainColor);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.social-profile.style3 li a:hover i {
  color: #fff;
}

/*-------------------------------
  Pagination  CSS
-------------------------------*/
.page-nav {
  text-align: center;
  margin-top: 25px;
}

.page-nav li {
  margin: 0 5px;
  display: inline-block;
}

.page-nav li a {
  display: block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 16px;
  line-height: 54px;
  font-weight: 600;
  opacity: 0.7;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.page-nav li a i {
  font-size: 18px;
  line-height: 1;
  margin: 0 auto;
  position: relative;
  top: 2px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.page-nav li a.active, .page-nav li a:hover {
  color: #fff;
  opacity: 1;
  background-color: var(--mainColor);
}

.page-nav li a.active i, .page-nav li a:hover i {
  color: #fff;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .social-profile.style1 li a, .social-profile.style2 li a, .social-profile.style3 li a, .promo-wrap.style2 .promo-card .promo-icon, .project-card.style2 .like-btn, .project-card.style3 .like-btn, .project-card.style4 .project-img .like-btn, .header-wrap .header-top .header-top-left, .header-wrap .header-top .header-top-left .contact-info, .header-wrap .header-top .header-top-left .contact-info li, .header-wrap .header-top .header-top-right, .select-lang .navbar-language .dropdown-toggle, .event-info-item-wrap .event-info-item, .project-card.style4, .counter-card-wrap.style2 .counter-card, .counter-card-wrap.style3 .counter-card, .event-card, .team-card.style2 .team-info-wrap, .progess-bar-item, .blog-card .blog-info .blog-author, .donate-box .donate-amt, .fund-collection, .owl-carousel .owl-nav, .pp-post-item, .promo-wrap.style2, .donation-form .radionbtn-wrap, .counter-card-wrap, .post-author, .comment-item-wrap .comment-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .social-profile.style1 li a, .social-profile.style2 li a, .social-profile.style3 li a, .promo-wrap.style2 .promo-card .promo-icon, .project-card.style2 .like-btn, .project-card.style3 .like-btn, .project-card.style4 .project-img .like-btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-wrap .header-top .header-top-left, .header-wrap .header-top .header-top-left .contact-info, .header-wrap .header-top .header-top-left .contact-info li, .header-wrap .header-top .header-top-right, .select-lang .navbar-language .dropdown-toggle, .event-info-item-wrap .event-info-item, .project-card.style4, .counter-card-wrap.style2 .counter-card, .counter-card-wrap.style3 .counter-card, .event-card, .team-card.style2 .team-info-wrap, .progess-bar-item, .blog-card .blog-info .blog-author {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

.header-wrap .header-top .header-top-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/*---------------------------------
  Header CSS 
-----------------------------------*/
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes toBottomFromTop10 {
  49% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  51% {
    opacity: 1;
  }
}

@keyframes toBottomFromTop10 {
  49% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  51% {
    opacity: 1;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.header-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header-wrap.sticky {
  position: fixed;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: #fff;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  width: 100%;
  top: -54px;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

.header-wrap .header-top {
  padding: 12px 0 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #df0404;
}

@media only screen and (max-width: 767px) {
    .Hdr {
        border-bottom: 1px solid white;
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 767px) {
    .HdrInf {
        padding: 0 10px !important;
    }
}

.header-wrap .header-top .header-top-left .contact-info li {
/*  margin-right: 20px;
  padding-right: 20px;*/
  position: relative;
  border-right: 1px solid rgba(255, 255, 255);
}

.header-wrap .header-top .header-top-left .contact-info li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.header-wrap .header-top .header-top-left .contact-info li i {
  font-size: 16px;
  line-height: 0.8;
  color: var(--whiteColor);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header-wrap .header-top .header-top-left .contact-info li a, .header-wrap .header-top .header-top-left .contact-info li p {
  display: inline-block;
  margin-left: 8px;
  margin-bottom: 0;
  font-size: 15px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header-wrap .header-top .header-top-left .contact-info li a:hover, .header-wrap .header-top .header-top-left .contact-info li p:hover {
  color: var(--blackColor);
}

.header-wrap .header-top .header-top-right .social-profile {
  text-align: right;
  margin-right: 15px;
  position: relative;
  padding-right: 15px;
  /*border-right: 1px solid white;*/
}

.header-wrap .header-top .header-top-right .social-profile:before {
  position: absolute;
  top: 50%;
  right: -2px;
  content: "";
  width: 1px;
  height: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 379px) {
    .header-wrap .header-top .header-top-right .social-profile:before {
        background-color: #DF0404;
    }
    .header-wrap .header-top .header-top-right .social-profile{
        border-right :none
    }
    .user-account {
        margin-top: 7px !important;
    }

}


.header-wrap .header-top .header-top-right .social-profile li a {
  width: 30px;
  height: 30px;
  background-color: white;
}

.header-wrap .header-top .header-top-right .social-profile li a i {
  font-size: 14px;
  color: #F00404;
}
.header-wrap .header-top .header-top-right .social-profile li a i:hover {
  font-size: 14px;
  color: var(--whiteColor);
}

.header-wrap .header-top .header-top-right .social-profile li a:hover {
  background-color: var(--secondaryColor);
}

.header-wrap .header-bottom {
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 10px 0;
}

.header-wrap .header-bottom .container {
  position: relative;
}

.searchbox {
  position: relative;
}

.searchbox input {
  width: 100%;
  height: 55px;
  background-color: rgba(0, 0, 0, 0.06);
  padding: 12px 30px 12px 18px;
  border: none;
  border-radius: 15px 0 15px 0;
}

.searchbox form a {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  border: none;
  padding: 5px 10px 5px 5px;
  height: 100%;
}

.searchbox form a i {
  color: #000;
  position: relative;
  top: 14px;
}

.searchbtn {
  background-color: transparent;
  color: var(--blackColor);
  border: none;
  padding: 0;
  position: relative;
  top: 2px;
}

.searchbtn:hover {
  background-color: transparent;
  color: var(--blackColor);
}

.searchbtn i {
  font-size: 20px;
  line-height: 1;
}

.search-area {
  position: absolute;
  top: 85px;
  right: 12px;
  background-color: #fff;
  padding: 15px 15px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 320px;
  visibility: hidden;
  opacity: 0;
  border-radius: 0 0 5px 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.search-area.open {
  visibility: visible;
  opacity: 1;
  top: 78px;
}

.search-area input {
  width: 100%;
  height: 57px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 35px 15px 15px;
  background-color: transparent;
  color: #000;
}

.search-area form a {
  position: absolute;
  top: 35px;
  right: 22px;
  border: none;
  background-color: transparent;
}

.search-area form a i {
  font-size: 20px;
  opacity: 0.5;
  line-height: 0.8;
  color: var(--blackColor);
}

.select-lang {
  padding-left: 20px;
  position: relative;
}

.select-lang i {
  position: absolute;
  top: 3px;
  left: 0;
  font-size: 18px;
  line-height: 1;
  color: var(--mainColor);
}

.select-lang .navbar-language .dropdown-toggle {
  background-color: transparent;
  border: none;
  font-size: 15px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 6px;
  padding-right: 16px;
  color: #666666;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: inherit;
}

.select-lang .navbar-language .dropdown-toggle:after {
  display: none;
}

.select-lang .navbar-language .dropdown-toggle:before {
  position: absolute;
  top: -1px;
  right: -2px;
  content: "\EA4E";
  font-family: "remixicon";
  font-weight: 400;
  border: 0;
  margin-left: 8px;
  font-size: 16px;
}

.select-lang .navbar-language .dropdown-menu {
  margin: 0;
  padding: 5px 0;
  -webkit-box-shadow: 0 9px 54px 0 rgba(32, 32, 32, 0.1);
  box-shadow: 0 9px 54px 0 rgba(32, 32, 32, 0.1);
  left: 0;
  right: auto;
  border: 0;
  border-radius: 0;
  -webkit-transform: translateY(75px) !important;
  transform: translateY(75px) !important;
  display: block;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.select-lang .navbar-language .dropdown-menu a {
  padding: 5px 10px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 15px;
}

.select-lang .navbar-language .dropdown-menu a img {
  width: 20px;
  margin-right: 10px;
}

.select-lang .navbar-language .dropdown-menu.show {
  -webkit-transform: translateY(40px) !important;
  transform: translateY(40px) !important;
  opacity: 1;
  pointer-events: all;
}

@media only screen and (max-width: 767px) {
  .header-wrap.sticky {
    top: -172px;
  }
  .header-wrap .navbar-brand img {
    max-width: 150px;
  }
  .header-wrap .header-top {
    padding: 15px 0;
    background-color: #DF0404;
    border: none;
  }
  .header-wrap .header-top .header-top-right .social-profile {
    margin-left: 10px;
    padding-left: 10px;
  }
  .header-wrap .header-top .header-top-left {
    margin-bottom: 10px;
  }
  .header-wrap .header-top .header-top-left .contact-info {
    width: 100%;
  }
  .header-wrap .header-top .header-top-left .contact-info li {
    text-align: center;
    margin-bottom: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    border: none;
  }
  .header-wrap .header-top .header-top-left .contact-info li span {
    top: 0px;
    width: 25px;
    height: 25px;
  }
  .header-wrap .header-top .header-top-left .contact-info li span i {
    font-size: 14px;
  }
  .header-wrap .header-top .header-top-left .contact-info li a, .header-wrap .header-top .header-top-left .contact-info li p {
    font-size: 14px;
  }
  .header-wrap .header-top .header-top-right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-wrap .header-top .header-top-right .social-profile li a {
    width: 34px;
    height: 34px;
  }
  .search-area {
    width: 100%;
    right: 0;
  }
  .search-area.open {
    top: 76px;
  }
  .mobile-bar-wrap .searchbtn {
    top: -2px;
  }
  .search-area input {
    height: 50px;
    font-size: 14px;
    padding: 10px 35px 10px 15px;
  }
  .search-area form a i {
    font-size: 18px;
    position: relative;
    bottom: 2px;
  }
  .user-account {
    margin-top: 0px;
  }
  .select-lang {
    margin-top: 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-wrap.sticky {
    top: -77px;
  }
  .header-wrap .header-top .header-top-left .contact-info li:last-child {
    padding-top: 5px;
  }
  .header-wrap .header-top .header-top-left .contact-info li i {
    font-size: 15px;
  }
  .header-wrap .header-top .header-top-left .contact-info li a, .header-wrap .header-top .header-top-left .contact-info li p {
    font-size: 14px;
  }
  .header-wrap .header-top .header-top-right .select-lang span {
    font-size: 14px;
  }
  .header-wrap .header-top .header-top-right .social-profile {
    margin-right: 10px;
    padding-right: 10px;
  }
  .social-profile li {
    margin: 0 3px;
  }
  .select-lang {
    padding-left: 18px;
  }
  .user-account {
    margin-left: 12px;
  }
  .header-wrap .header-bottom .other-options .btn {
    font-size: 15px;
    padding: 12px 20px;
  }
  .header-wrap .navbar .navbar-nav .nav-item {
    margin: 0 9px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-wrap.sticky {
    top: -76px;
  }
  .header-wrap .header-top {
    padding: 12px 0;
  }
  .user-account {
    margin-top: 0px;
  }
  .header-wrap .header-top .header-top-left .contact-info li {
    margin-right: 8px;
    padding-right: 8px;
    border-right: none;
    padding-top: 2px;
  }
  .header-wrap .header-top .header-top-left .contact-info li i {
    font-size: 12px;
  }
  .header-wrap .header-top .header-top-left .contact-info li a, .header-wrap .header-top .header-top-left .contact-info li p {
    font-size: 14px;
    margin-left: 5px;
  }
  .header-wrap .header-top .header-top-right .social-profile {
    margin-left: 10px;
    padding-left: 10px;
  }
  .header-wrap .header-top .header-top-right .social-profile li {
    margin: 0 3px;
  }
  .header-wrap .header-top .header-top-right .social-profile li a {
    width: 25px;
    height: 25px;
  }
  .header-wrap .header-top .header-top-right .social-profile li a i {
    font-size: 13px;
  }
  .header-wrap .header-top .header-top-left,
  .header-wrap .header-top .header-top-right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-wrap .navbar-brand img {
    max-width: 180px;
  }
  .mobile-bar-wrap .searchbtn {
    top: -2px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-wrap .navbar-brand img {
    max-width: 200px;
    padding: 5px 0;
  } 
}

@media only screen and (max-width: 991px) {
  .select-lang .navbar-language .dropdown-menu {
    min-width: 6rem;
  }
  .header-wrap .header-top .header-top-left .contact-item {
    width: 100%;
    margin: 0 0 15px;
  }
  .header-wrap .header-top .header-top-left .contact-item p,
  .header-wrap .header-top .header-top-left .contact-item a {
    color: #000;
    font-size: 14px;
    font-weight: 400;
  }
  .header-wrap .header-bottom .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-wrap .header-bottom .container .search-area.open {
    top: 76px;
  }
  .header-wrap .header-bottom .navbar .navbar-collapse {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
  }
  .header-wrap .header-bottom .navbar .navbar-nav {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item {
    position: relative;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .menu-expand {
    position: absolute;
    right: 0;
    top: 14px;
    cursor: pointer;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .menu-expand i {
    color: #000;
    font-size: 18px;
    line-height: 1;
    position: relative;
    top: 7px;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item a i {
    display: none;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item a.active {
    color: var(--mainColor);
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item a.btn {
    display: inline-block;
    padding: 10px 30px 10px;
    color: #fff;
    margin-top: 15px;
    font-weight: 500;
    font-size: 14px;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item a.btn i {
    display: inline-block;
    top: 6px;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu {
    width: 100%;
    background-color: var(--bgColor);
    border: none;
    padding: 0;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a {
    font-size: 14px;
    padding-left: 10px;
    margin-left: 10px;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
    color: var(--mainColor);
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
    margin-left: 20px;
  }
  .header-wrap .header-bottom .user-login span {
    position: relative;
    top: -3px;
  }
  .header-wrap .header-bottom .user-login span i {
    font-size: 20px;
  }
  .mobile-bar-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: right;
    position: relative;
    top: 4px;
  }
  .menu-close {
    position: absolute;
    top: 13px;
    right: 16px;
  }
  .menu-close i {
    color: #000;
    font-size: 25px;
  }
  .mobile-menu {
    text-align: right;
    margin-left: 20px;
  }
  .mobile-menu a {
    width: 38px;
    height: 38px;
    border-radius: 62% 38% 46% 54% / 60% 63% 37% 40%;
    text-align: center;
    background-color: var(--mainColor);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .mobile-menu a i {
    font-size: 22px;
    color: #fff;
    margin: 0 auto;
  }
  .mobile-menu {
    display: inline-block;
    position: relative;
    top: -5px;
  }
  .mobile-top-bar {
    display: inline-block;
    margin-right: 6px;
    cursor: pointer;
    position: relative;
    top: 0px;
  }
  .mobile-top-bar span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #000;
    border-radius: 20px;
    margin: 5.9px 0;
  }
  .mobile-top-bar span:nth-child(1) {
    margin-top: 0;
  }
  .mobile-top-bar span:nth-child(2) {
    width: 12px;
    margin-left: 8px;
  }
  .main-menu-wrap {
    width: 100%;
    position: fixed;
    background: var(--bgColor);
    z-index: 999;
    top: 0;
    height: 100vh;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    left: -100%;
    padding: 55px 20px 30px;
    overflow-y: auto;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .main-menu-wrap.open {
    left: 0;
  }
  .main-menu > li.has-children.menu-open > span.menu-expand {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .main-menu > li.has-children.menu-open > span.menu-expand i {
    color: #000;
  }
  .main-menu > li > ul > li.has-children.menu-open > span.menu-expand {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .main-menu li {
    position: relative;
  }
  .main-menu li:last-child {
    margin: 0;
  }
  .main-menu li > span.menu-expand {
    position: absolute;
    right: 0;
    top: 13px;
    cursor: pointer;
  }
  .main-menu li > span.menu-expand i {
    color: #000;
    font-size: 18px;
  }
  .main-menu li > span.menu-expand:hover {
    color: #000;
  }
  .main-menu li a.active {
    color: var(--mainColor);
  }
  .main-menu li > a {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-transform: capitalize;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
  .main-menu li > a:hover {
    color: #000;
  }
  .main-menu li > ul.sub-menu {
    padding-left: 20px;
  }
  .header-wrap .header-bottom .main-menu-wrap #menu > ul > li > a::after {
    display: none;
  }
  .main-menu li a.active {
    font-weight: 600;
    color: #000;
    border-color: rgba(0, 0, 0, 0.3);
  }
}

@media only screen and (min-width: 992px) {
  .menu-expand i {
    display: none;
  }
  .header-wrap .navbar {
    padding: 0;
  }
  .header-wrap .navbar .navbar-brand {
    padding: 0 20px 0 0;
  }
  .header-wrap .navbar ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
  }
  .header-wrap .navbar .navbar-nav {
    margin-left: auto;
  }
  .header-wrap .navbar .navbar-nav .nav-item {
    position: relative;
    margin: 0 10px;
  }
  .header-wrap .navbar .navbar-nav .nav-item.first-child {
    margin-left: 0;
  }
  .header-wrap .navbar .navbar-nav .nav-item a {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    padding: 30px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    position: relative;
  }
  .header-wrap .navbar .navbar-nav .nav-item a:hover, 
  .header-wrap .navbar .navbar-nav .nav-item a:focus, 
  .header-wrap .navbar .navbar-nav .nav-item a.active {
    color: var(--mainColor)!important;
  }
  .header-wrap .navbar .navbar-nav .nav-item a i {
    font-size: 16px;
    line-height: 1;
    position: relative;
    top: 4px;
    display: inline-block;
    margin-left: -3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .header-wrap .navbar .navbar-nav .nav-item a:hover i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu {
    display: block !important;
    border: none;
    top: 83px;
    left: -23px;
    z-index: 99;
    opacity: 0;
    width: 150px;
    display: block;
    border-radius: 0;
    padding: 12px 0;
    position: absolute;
    visibility: hidden;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotateX(-75deg);
    transform: rotateX(-75deg);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li {
    margin: 0;
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a {
    padding: 10px 20px;
    position: relative;
    display: block;
    font-weight: 500;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a:before {
    position: absolute;
    top: 50%;
    left: 0px;
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--mainColor);
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a.active, .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
    color: var(--mainColor);
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a.active:before, .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a:hover:before {
    width: 20px;
    visibility: visible;
    opacity: 1;
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a.active, .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
    padding-left: 30px;
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
    width: 100%;
    right: auto;
    left: 0;
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li a i {
    margin: 0;
    position: absolute;
    top: 55%;
    font-size: 16px;
    line-height: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    top: 0;
    opacity: 0;
    left: -280px;
    right: auto;
    visibility: hidden;
  }
  .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  .header-wrap .navbar .navbar-nav .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotatex(0deg);
    transform: rotatex(0deg);
  }
  .header-wrap .navbar .other-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }
  .header-wrap .navbar .other-options .option-item {
    margin: 0 0 0 20px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .navbar-brand img {
    max-width: 200px;
    padding: 5px 0;
  }
}

@media only screen and (min-width: 1400px) {
  .header-wrap .navbar .navbar-nav .nav-item {
    margin: 0 15px;
  }
  .header-wrap .navbar .navbar-nav .nav-item a {
    font-size: 17px;
  }
}

@media only screen and (min-width: 1600px) {
  .header-wrap .container {
    max-width: 1520px;
  }
}

/*---------------------------------
  Footer CSS
-----------------------------------*/
.footer-wrap {
  position: relative;
}

.footer-wrap .footer-top {
 /* background-color: #181818;*/
  position: relative;
  z-index: 1;
}
.bg footer {
	z-index: 1;
	position: relative;
    background-image: url(../img/footer.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
	overflow: hidden;

}

.bg footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: #181818; /* Old browsers */
	background: -moz-linear-gradient(left, #181818 1%,#221414 24%,#4a2626 67%,#8c1d1d 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #181818 1%,#221414 24%,#4a2626 67%,#8c1d1d 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #181818 1%,#221414 24%,#4a2626 67%,#8c1d1d 100%);
    opacity: 0.85;
    z-index: -1;
}

.footer-wrap .footer-top .footer-shape-one,
.footer-wrap .footer-top .footer-shape-two,
.footer-wrap .footer-top .footer-shape-three,
.footer-wrap .footer-top .footer-shape-four {
  position: absolute;
  z-index: -1;
}

.footer-wrap .footer-top .footer-shape-one {
  bottom: 0;
  left: 15px;
}

.footer-wrap .footer-top .footer-shape-two {
  top: 20px;
  right: 45px;
}

.footer-wrap .footer-top .footer-shape-three {
  top: 120px;
  right: 0;
}

.footer-wrap .footer-top .footer-shape-four {
  top: 60px;
  right: 0;
}

.footer-wrap .footer-bottom {
  background-color: #000;
}

.footer-wrap .footer-widget {
  margin-bottom: 25px;
}

.footer-wrap .footer-widget .footer-widget-title {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 36px;
  padding-bottom: 20px;
}

.footer-wrap .footer-widget .footer-widget-title:before {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.15);
}

.footer-wrap .footer-widget .footer-widget-title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 35px;
  height: 2px;
  background-color: var(--mainColor);
}

.footer-wrap .footer-widget .footer-logo {
  display: block;
}

.footer-wrap .footer-widget .comp-desc {
  color: rgba(255, 255, 255, 0.8);
  margin: 25px 0 30px 0;
  padding-bottom: 25px;
  position: relative;
}

.footer-wrap .footer-widget .comp-desc:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.15);
}

.footer-wrap .footer-widget .comp-desc:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--mainColor);
}

.footer-wrap .footer-widget .newsletter-form {
  position: relative;
}

.footer-wrap .footer-widget .newsletter-form input {
  width: 100%;
  height: 60px;
  border-radius: 10px 0 10px 0;
  padding: 13px 105px 12px 18px;
  color: #fff;
  border: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.footer-wrap .footer-widget .newsletter-form input::placeholder {
  color: #fff;
}

.footer-wrap .footer-widget .newsletter-form button {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--mainColor);
  color: #fff;
  border: none;
  height: 60px;
  border-radius: 0 0 10px 0;
  padding: 12px 20px;
  transition: var(--transition);
}

.footer-wrap .footer-widget .newsletter-form button:hover {
  background-color: var(--blackColor);
}

.footer-wrap .footer-widget .footer-menu li {
  margin-bottom: 18px;
}

.footer-wrap .footer-widget .footer-menu li:last-child {
  margin-bottom: 0;
}

.footer-wrap .footer-widget .footer-menu li a {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 25px;
}

.footer-wrap .footer-widget .footer-menu li a:after {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  width: 16px;
  height: 1px;
  background-color: var(--mainColor);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer-wrap .footer-widget .footer-menu li a:hover {
  color: var(--mainColor);
  padding-left: 28px;
}

.footer-wrap .footer-widget .contact-info li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 25px;
}

.footer-wrap .footer-widget .contact-info li:last-child {
  margin-bottom: 0;
}

.footer-wrap .footer-widget .contact-info li h6 {
  color: #fff;
  font-weight: 500;
  margin: 0 0 5px;
}

.footer-wrap .footer-widget .contact-info li i {
  position: absolute;
  top: 3px;
  left: 0;
  font-size: 16px;
  line-height: 1;
  color: var(--mainColor);
}

.footer-wrap .footer-widget .contact-info li p, .footer-wrap .footer-widget .contact-info li a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-wrap .footer-widget .contact-info li:hover p, .footer-wrap .footer-widget .contact-info li:hover a {
  color: var(--mainColor);
}

.footer-bottom {
  padding: 18px 10px;
}

.footer-bottom .copyright-text {
  margin: 0;
  color: #fff;
}

.footer-bottom .copyright-text i {
  position: relative;
  top: 2px;
  margin-right: 2px;
}

.footer-bottom .copyright-text span {
  color: var(--mainColor);
}

.footer-bottom .copyright-text a {
  color: var(--mainColor);
  font-weight: 500;
}

.footer-bottom .copyright-text a:hover {
  text-decoration: underline;
}

.footer-bottom .social-profile {
  text-align: right;
}

.footer-bottom .social-profile li a {
  background-color: var(--mainColor);
  color: #fff;
  font-size: 18px;
}

.footer-bottom .social-profile li a i {
  color: #fff;
}

.footer-bottom .social-profile li a:hover {
  background-color: var(--secondaryColor);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.footer-bottom .social-profile li a:hover i {
  color: #fff;
}

@media only screen and (max-width: 575px) {
  .footer-wrap .footer-bottom .copyright-text {
    margin-bottom: 15px;
  }
  .footer-wrap .footer-bottom .copyright-text,
  .footer-wrap .footer-bottom .social-profile {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .footer-wrap .footer-top .footer-shape-one {
    left: auto;
    right: 0px;
  }
  .footer-wrap .footer-top .footer-shape-two {
    right: 25px;
    top: 10px;
  }
  .footer-wrap .footer-top .footer-shape-four {
    right: 0px;
    top: 20px;
    max-width: 75px;
  }
  .footer-wrap .footer-widget .footer-widget-title {
    font-size: 17px;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  .footer-wrap .footer-widget .comp-desc {
    font-size: 14px;
    margin: 15px 0 22px;
    padding-bottom: 15px;
  }
  .footer-wrap .footer-widget .contact-info li {
    margin-bottom: 10px;
  }
  .footer-wrap .footer-widget .contact-info p, .footer-wrap .footer-widget .contact-info a {
    font-size: 14px;
  }
  .footer-wrap .footer-widget .footer-menu li {
    margin-bottom: 8px;
  }
  .footer-wrap .footer-widget .footer-menu li a {
    font-size: 14px;
  }
  .footer-wrap .footer-widget .footer-menu li a i {
    font-size: 14px;
    top: -3px;
  }
  .footer-wrap .footer-bottom .social-profile li a {
    width: 30px;
    height: 30px;
  }
  .footer-wrap .footer-bottom .social-profile li a i {
    font-size: 14px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-wrap .footer-top .footer-shape-one {
    max-width: 140px;
  }
  .footer-wrap .footer-top .footer-shape-two {
    max-width: 70px;
  }
  .footer-wrap .footer-top .footer-shape-three {
    max-width: 70px;
  }
  .footer-wrap .footer-widget .footer-widget-title {
    margin-bottom: 22px;
    padding-bottom: 15px;
  }
  .footer-wrap .footer-widget .newsletter-form input, .footer-wrap .footer-widget .newsletter-form button {
    font-size: 14px;
  }
  .footer-wrap .footer-widget .newsletter-form input {
    height: 55px;
    padding: 12px 130px 12px 15px;
  }
  .footer-wrap .footer-widget .newsletter-form button {
    padding: 12px 16px;
    height: 55px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-wrap .footer-widget .contact-info li {
    margin-bottom: 20px;
  }
  .footer-wrap .footer-widget .footer-widget-title {
    font-size: 18px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-wrap .footer-top .footer-shape-four {
    top: 40px;
  }
  .footer-wrap .footer-top .footer-widget .newsletter-form input, .footer-wrap .footer-top .footer-widget .newsletter-form button {
    font-size: 14px;
  }
  .footer-wrap .footer-top .footer-widget .newsletter-form input {
    height: 55px;
    padding: 12px 130px 12px 15px;
  }
  .footer-wrap .footer-top .footer-widget .newsletter-form button {
    padding: 12px 16px;
  }
  .footer-wrap .footer-widget .footer-widget-title {
    font-size: 18px;
  }
  .footer-wrap .footer-widget .contact-info li {
    margin-bottom: 10px;
  }
  .footer-wrap .row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .footer-wrap .row>* {
    padding-right: 10px;
    padding-left: 10px;
  }
  .footer-wrap .footer-widget .newsletter-form button {
    height: 55px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-menu li a,
  .comp-desc,
  .footer-wrap .footer-widget .contact-info li p,
  .footer-wrap .footer-widget .contact-info li a {
    font-size: 15px;
  }
  .footer-wrap .footer-widget .footer-widget-title {
    font-size: 19px;
  }
}

/*---------------------------------
  Breadscrumb CSS
-----------------------------------*/
.breadscrumb-section {
  background-color: var(--bgColor);
  position: relative;
  overflow: hidden;
}

.breadscrumb-section .breadscrumb-contain {
  padding: 0; 
  text-align: center;
  color: #222;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadscrumb-section .breadscrumb-contain h2 {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 15px;
}

.breadscrumb-section .breadscrumb-contain nav {
  margin-left: auto;
  margin-right: auto;
}

.breadscrumb-section .breadscrumb-contain nav .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.breadscrumb-section .breadscrumb-contain nav .breadcrumb .breadcrumb-item {
  font-weight: 500;
}

.breadscrumb-section .breadscrumb-contain nav .breadcrumb .breadcrumb-item i {
  color: #4a5568;
  font-size: 22px;
  line-height: 30px;
}

.breadscrumb-section .breadscrumb-contain nav .breadcrumb .breadcrumb-item i:hover {
  color: var(--mainColor);
}

.breadscrumb-section .breadscrumb-contain nav .breadcrumb .breadcrumb-item+.breadcrumb-item {
  position: relative;
  font-size: 16px;
  line-height: 20px;
}

.breadscrumb-section .breadscrumb-contain nav .breadcrumb .breadcrumb-item.active {
  color: #000;
}

.breadscrumb-section .breadscrumb-contain nav .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  font-family: "boxicons";
  font-weight: 900;
  content: "\e9fa";
  color: #4a5568;
  line-height: 1;
  font-size: 20px;
}

@media only screen and (max-width: 767px) {
  .breadscrumb-section .breadscrumb-contain {
    display: block;
    padding-top: 25px;
  }
  .breadscrumb-section .breadscrumb-contain h2 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 24px;
    margin-top: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadscrumb-section .breadscrumb-contain h2 {
    font-size: 28px;
  }
}

/*==========================
404 Page Error Area CSS
============================*/
.page-error-content {
  text-align: center;
}

.page-error-content h3 {
  font-size: 35px;
  margin-bottom: 20px;
  margin-top: 45px;
}

.page-error-content p {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.page-error-content .btn {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .page-error-content h3 {
    font-size: 25px;
    margin-top: 30px;
  }
}

/*==========================
Accordion Area CSS
============================*/
.faq-accordion {
  margin-top: 40px;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
  border-radius: 5px;
  display: block;
  margin-bottom: 15px;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 20px 40px 17px 25px;
  color: var(--whiteColor);
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 500;
  background-color: var(--mainColor);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: 13px;
  top: 20px;
  font-size: 25px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.faq-accordion .accordion .accordion-title.active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  margin-top: -6px;
  padding: 23px;
  background-color: var(--bgColor);
  font-size: 16px;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

@media only screen and (max-width: 767px) {
  .faq-accordion {
    margin-top: 20px;
  }
  .faq-accordion .accordion .accordion-title {
    font-size: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-accordion .accordion .accordion-title {
    font-size: 16px;
  }
}

/*
Section Area CSS
<<<<======================================================>>>>*/
.section-title {
  max-width: 1500px;
  margin: 0px auto 10px;
  text-align: center;
  position: relative;
}


.section-title span {
  color: var(--mainColor);
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
  position: relative;
  display: block;
}

.section-title h2:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .section-title {
    max-width: 100%;
    margin: 0px auto 40px;
  }
  .section-title h2 {
    font-size: 20px;
    line-height: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    max-width: 100%;
    margin: 0px auto 30px;
  }
  .section-title h2 {
    font-size: 28px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    margin: 0px auto 30px;
  }
  .section-title h2 {
    font-size: 35px;
  }
}

/*==========================
Contact Area CSS
============================*/
.contact-form-area {
  background: white;
}
.contact-form .form-group {
  margin-bottom: 30px;
}

.contact-form h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

.header-wrap .navbar .navbar-brand {
    padding: 0 20px 0 0;
    max-width: 200px!important;
}

.contact-form .form-group label {
  margin-bottom: 5px;
}

.contact-form .form-group .form-control {
  border-radius: 0;
  height: 60px;
  border: 1px solid #ebebeb;
  background-color: #f9fffc;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.contact-form .form-group .form-control::-webkit-input-placeholder {
  color: #d4d9d6;
}

.contact-form .form-group .form-control:-ms-input-placeholder {
  color: #d4d9d6;
}

.contact-form .form-group .form-control::-ms-input-placeholder {
  color: #d4d9d6;
}

.contact-form .form-group .form-control::placeholder {
  color: #d4d9d6;
}

.contact-form .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #7aca76;
}

.contact-form .form-group textarea.form-control {
  height: auto;
}

.contact-form .submit-btn {
  border: none;
  background-color: #7aca76;
  color: var(--whiteColor);
  border-radius: 4px;
  padding: 15px 35px;
  font-size: 16px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border: 1px solid #7aca76;
}

.contact-form .submit-btn i {
  font-size: 20px;
  position: relative;
  top: 4px;
}

.contact-form .submit-btn:hover {
  background-color: transparent;
  color: #7aca76;
}

.contact-form .form-group .form-control {
  border: 1px solid #89748c;
  background-color: transparent;
  border-radius: 4px;
}

.contact-form .form-group .form-control::-webkit-input-placeholder {
  color: #998f9d;
}

.contact-form .form-group .form-control:-ms-input-placeholder {
  color: #998f9d;
}

.contact-form .form-group .form-control::-ms-input-placeholder {
  color: #998f9d;
}

.contact-form .form-group .form-control::placeholder {
  color: #998f9d;
}

.contact-form .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #F00404;
}

.contact-form .submit-btn {
  background-color: #F00404;
  border: 1px solid #F00404;
  width: 100%;
}

.contact-form .submit-btn:hover {
  background-color: transparent;
  color: #F00404;
}

.contact-img {
  text-align: center;
  position: relative;
  z-index: 1;
}
.img-contact {
 -webkit-background-size:cover;
 -moz-background-size:cover;
 -o-background-size:cover;
 background-size:100% auto;
 background-repeat:no-repeat;
 background-position:center center;
 width:40%;
 margin-bottom:15px
}

.contact-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 450px;
  height: 450px;
  background-color: #d9c4da;
  border-radius: 100%;
  z-index: -1;
  margin: auto;
  text-align: center;
  right: 0;
}

.contact-form .contact__msg {
  display: none;
  text-align: center;
  margin-top: 20px;
}

.contact-form .subscribe__msg {
  display: none;
  margin-top: 20px;
}

.contact-form .hidden {
  display: none;
}

@media only screen and (max-width: 767px) {
  .contact-form {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .contact-form h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .contact-form h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
  }
}

/*==========================
Testimonial Area CSS
============================*/
.single-testimonial-box {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.single-testimonial-box .content-bg {
  padding: 30px;
  background-color: #fff5dc;
  border-radius: 20px;
  text-align: center;
  position: relative;
}

.single-testimonial-box .content-bg::after {
  right: 0;
  z-index: 1;
  bottom: -8px;
  opacity: .05;
  color: #000000;
  line-height: 1;
  content: "\ed68";
  position: absolute;
  font-family: 'boxicons';
  font-size: 100px;
}

.single-testimonial-box .content-bg ul {
  margin-bottom: 20px;
}

.single-testimonial-box .content-bg ul li {
  display: inline-block;
}

.single-testimonial-box .content-bg ul li span {
  position: relative;
  bottom: 2px;
  left: 5px;
}

.single-testimonial-box .content-bg ul li i {
  color: #ffc107;
  font-size: 20px;
}

.single-testimonial-box .content-bg p {
  font-size: 16px;
  padding-bottom: 40px;
}

.single-testimonial-box .client-info {
  margin-top: -50px;
  position: relative;
}

.single-testimonial-box .client-info img {
  margin: auto auto 20px;
  max-width: 100px;
}

.single-testimonial-box .client-info h3 {
  font-size: 18px;
  margin-bottom: 7px;
  color: #ff715d;
}

.single-testimonial-box .client-info span {
  font-size: 16px;
  display: block;
}

.testimonial-slider.owl-theme .owl-nav .owl-prev, 
.testimonial-slider.owl-theme .owl-nav .owl-next {
  top: 50%;
  padding: 0;
  left: -25px;
  width: 40px;
  height: 40px;
  font-size: 30px;
  line-height: 45px;
  border-radius: 50%;
  position: absolute;
  color: var(--whiteColor);
  border: 1px solid #eae2d7;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
}

.testimonial-slider.owl-theme .owl-nav .owl-prev i, 
.testimonial-slider.owl-theme .owl-nav .owl-next i {
  color: var(--whiteColor);
}

.testimonial-slider.owl-theme .owl-nav .owl-prev:hover, 
.testimonial-slider.owl-theme .owl-nav .owl-next:hover {
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
  border-color: var(--secondaryColor);
}

.testimonial-slider.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -25px;
}

.testimonial-slider.owl-theme .owl-nav {
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .single-testimonial-box .content-bg::after {
    font-size: 50px;
    right: 2px;
    bottom: -4px;
  }
  .single-testimonial-box .client-info span {
    font-size: 15px;
  }
  .testimonial-slider.owl-theme .owl-nav .owl-prev, 
  .testimonial-slider.owl-theme .owl-nav .owl-next {
    left: -20px;
  }
  .testimonial-slider.owl-theme .owl-nav .owl-next {
    right: -20px;
    left: initial;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-testimonial-box .content-bg::after {
    font-size: 60px;
  }
  .single-testimonial-box .client-info span {
    font-size: 15px;
  }
}

/*==========================
Team Area CSS
============================*/
.team-area .social-link li a .bx.bxl-twitter:before, 
.team-area .social li a .bx.bxl-twitter:before {
  content: "𝕏" !important;
  font-size: 16px;
  position: relative;
  bottom: 3px;
}

.single-team-box {
  text-align: center;
  padding-top: 40px;
  position: relative;
  overflow: hidden;
}

.single-team-box .content {
  background-color: #f9f9f9;
  text-align: left;
  padding: 25px 25px 15px;
  position: relative;
}

.single-team-box .content h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.single-team-box .content span {
  display: block;
  color: var(--mainColor);
  font-size: 15px;
}

.single-team-box .content i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background-color: var(--mainColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--whiteColor);
  border-radius: 2px;
  position: absolute;
  right: 20px;
  top: -16px;
  display: inline-block;
}

.single-team-box .image {
  position: relative;
}

.single-team-box .image .social-link {
  position: absolute;
  right: 20px;
  bottom: 25px;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-team-box .image .social-link li {
  display: block;
  margin-bottom: 8px;
}

.single-team-box .image .social-link li:last-child {
  margin-bottom: 0;
}

.single-team-box .image .social-link li a {
  width: 32px;
  height: 32px;
  text-align: center;
  color: var(--blackColor);
  background-color: var(--whiteColor);
  font-size: 18px;
  position: relative;
  border-radius: 2px;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: .4s;
  transition: .4s;
  display: block;
}

.single-team-box .image .social-link li a i {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-48%);
          transform: translateY(-48%);
}

.single-team-box .image .social-link li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.single-team-box .image .social-link li:nth-child(2) a, 
.single-team-box .image .social-link li:nth-child(4) a, 
.single-team-box .image .social-link li:nth-child(6) a, 
.single-team-box .image .social-link li:nth-child(8) a {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.single-team-box:hover .content i {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.single-team-box:hover .image .social-link li a {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}

.team-area .owl-theme .owl-nav.disabled+.owl-dots {
  line-height: 1;
}

.team-area .owl-theme .owl-dots .owl-dot span {
  background-color: var(--secondaryColor);
  width: 20px;
  height: 5px;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 0;
  margin-bottom: 0;
}

.team-area .owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--mainColor);
}

.team-area .owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--mainColor);
  width: 30px;
  height: 5px;
}

.team-details-content .title {
  font-size: 50px;
  margin-bottom: 15px;
}

.team-details-content .subtitle {
  display: block;
  color: var(--mainColor);
  border-bottom: 3px solid;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.team-details-content p {
  font-size: 20px;
  margin-top: 40px;
  line-height: 1.7;
}

.team-details-content .social-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px;
}

.team-details-content .social-share li {
  margin: 10px;
}

.team-details-content .social-share li a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 4px 15px rgb(0 0 0 / 8%);
  box-shadow: 0 4px 15px rgb(0 0 0 / 8%);
  color: var(--whiteColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.team-details-content .social-share li a:hover {
  background-color: var(--mainColor);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

@media only screen and (max-width: 767px) {
  .single-team-box {
    padding-top: 20px;
  }
  .single-team-box .content h3 {
    font-size: 17px;
  }
  .single-team-box .content span {
    font-size: 14px;
  }
  .team-details-content .title {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .team-details-content .subtitle {
    font-size: 15px;
    line-height: 20px;
  }
  .team-details-content p {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .team-details-content .social-share li {
    margin: 8px;
  } 
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-team-box {
    padding-top: 30px;
  }
  .team-details-content .title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .team-details-content .subtitle {
    font-size: 18px;
    line-height: 22px;
  }
  .team-details-content p {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .team-details-content .social-share li {
    margin: 8px;
  } 
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-details-content .title {
    font-size: 35px;
    margin-bottom: 15px;
  }
  .team-details-content .subtitle {
    font-size: 20px;
    line-height: 24px;
  }
  .team-details-content p {
    font-size: 18px;
    margin-top: 30px;
  }
}

/*==========================
About Area CSS
============================*/
.about-content-two {
  margin-top: -6px;
  margin-bottom: 30px;
}

.about-content-two .top-title {
  color: var(--mainColor);
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.about-content-two h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-content-two p {
  margin-bottom: 30px;
}

.about-content-two ul {
  margin-bottom: 35px;
}

.about-content-two ul li {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
}

.about-content-two ul li:last-child {
  margin-bottom: 0;
}

.about-content-two ul li i {
  display: inline-block;
  background-color: var(--bgColor);
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: var(--mainColor);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  top: -3px;
  left: 0;
}

.about-content-two ul li:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

.about-img-two {
  background-image: url(../img/about.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  border-radius: 10px;
}

.about-img-two .video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-counter {
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: var(--whiteColor);
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  position: relative;
}

.single-counter i {
  background-color: #def5ee;
  color: var(--mainColor);
  font-size: 30px;
  line-height: 1;
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 25px;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.single-counter p {
  color: var(--mainColor);
  line-height: 1;
  margin-bottom: 0;
  font-size: 18px;
}

.single-counter h2 {
  color: #121521;
  line-height: 1;
  font-size: 40px;
  margin-top: -8px;
  margin-bottom: 10px;
}

.single-counter:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.single-counter:hover i {
  background-color: var(--whiteColor);
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.counter-area .counter-col {
  padding: 20px;
}

/* Video Button Style */
.video-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 89px;
  text-align: center;
  border-radius: 50px;
  color: var(--mainColor);
  position: relative;
  top: 3px;
  z-index: 1;
  background-color: var(--mainColor);
}

.video-btn i {
  font-size: 50px;
  font-weight: 700;
  color: var(--whiteColor);
  position: absolute;
  top: 0;
  left: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.video-btn::after, .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50px;
  background-color: var(--mainColor);
}

.video-btn::before {
  -webkit-animation: ripple 1.6s ease-out infinite;
          animation: ripple 1.6s ease-out infinite;
}

.video-btn::after {
  -webkit-animation: ripple 1.6s ease-out infinite;
          animation: ripple 1.6s ease-out infinite;
}

.video-btn:hover {
  background-color: var(--mainColor);
}

.video-btn:hover i {
  color: var(--whiteColor);
}

.video-btn:hover::after, .video-btn:hover::before {
  background-color: var(--mainColor);
}

@-webkit-keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

@keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

@media only screen and (max-width: 767px) {
  .about-content-two {
    margin-top: -4px;
  }
  .about-content-two h2 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .about-content-two p {
    margin-bottom: 25px;
  }
  .about-content-two ul {
    margin-bottom: 30px;
  }
  .about-content-two ul li {
    font-size: 14px;
  }
  .about-img-two {
    height: 300px;
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content-two h2 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .about-content-two p {
    margin-bottom: 25px;
  }
  .about-content-two ul {
    margin-bottom: 30px;
  }
  .about-content-two ul li {
    font-size: 14px;
  }
  .about-img-two {
    height: 500px;
    margin-top: 30px;
  }
}

/*==========================
Features Area CSS
============================*/
.features-area .feature-thumbnail img {
  border-radius: 10px;
  width: 100%;
}

.features-area .feature-content .subtitle {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

.features-area .feature-content .title {
  font-size: 40px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.features-area .feature-content p {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .features-area .column:first-child {
    margin-bottom: 20px;
  }
  .features-area .feature-content .title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .features-area .feature-content p {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-area .column:first-child {
    margin-bottom: 30px;
  }
  .features-area .feature-content .title {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .features-area .feature-content p {
    margin-bottom: 22px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-area .feature-content .title {
    font-size: 35px;
    margin-bottom: 10px;
  }
  .features-area .feature-content p {
    margin-bottom: 15px;
  }
}

/*==========================
Blog Area CSS
============================*/
.content-blog {
  border: 1px solid #f1f1f1;
  border-radius: 6px;
  padding: 20px;
  margin-top: 40px;
  min-height: 400px;
}

.content-blog .thumbnail {
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.content-blog .thumbnail a {
  display: block;
  border-radius: 6px;
}

.content-blog .thumbnail a img {
  width: 100%;
  border-radius: 6px;
  transition: .5s;
}

.content-blog:hover .thumbnail img {
  transform: scale(1.1);
}

.content-blog .thumbnail .blog-category {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.content-blog .thumbnail .blog-category a {
  display: block;
  background-color: var(--blackColor);
  border: 1px solid var(--whiteColor);
  padding: 2px 10px;
  border-radius: 4px;
  color: var(--whiteColor);
  font-size: 14px;
}

.content-blog .thumbnail .blog-category a:hover {
  opacity: 0.9;
}

.content-blog .content .title {
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.3;
  font-size: 19px;
}

.content-blog .content .title a {
  color: var(--blackColor);
}

.content-blog .content .title a:hover {
  color: var(--mainColor);
}

.content-blog .content .read-more-btn .blog-btn {
  display: inline-flex;
}

.content-blog .content .blog-btn {
  padding: 0;
  align-items: center;
  color: var(--blackColor);
  border-radius: 6px;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  transition: all .3s ease-in-out;
  z-index: 1;
}

.content-blog .content .blog-btn:hover, .content-blog .content .blog-btn:hover i {
  color: var(--mainColor);
}

.content-blog .blog-btn:before {
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 6px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  transition: transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.content-blog .blog-btn:hover:before {
  transform: scale(1.1);
}

.content-blog .content .blog-btn:hover:after {
  width: 100%;
  left: 0;
}

.content-blog .content .blog-btn:after {
  content: "";
  height: 1px;
  width: 0;
  background-color: var(--mainColor);
  position: absolute;
  bottom: 0;
  right: 0;
  transition: var(--transition);
}

.content-blog .content .blog-btn i {
  padding-left: 2px;
  top: -1px;
  color: var(--blackColor);
  transition: var(--transition);
  margin-left: 2px;
  margin-right: 0;
  position: relative;
  font-size: 22px;
}

@media only screen and (max-width: 767px) {
  .content-blog {
    padding: 15px;
    margin-top: 20px;
    min-height: 300px;
  }
  .content-blog .thumbnail {
    margin-bottom: 20px;
  }
  .content-blog .content .title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .content-blog {
    padding: 15px;
    margin-top: 30px;
    min-height: 347px;
  }
  .content-blog .content .title {
    font-size: 16px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .content-blog {
    padding: 15px;
    min-height: 315px;
  }
  .content-blog .content .title {
    font-size: 17px;
  }
}

/*==========================
Pagination Area CSS
============================*/
.post-pagination {
  margin-top: 40px;
  width: 100%;
  text-align: center;
}

.pagination {
  display: block;
}

.post-pagination nav.pagination ul {
  position: relative;
  margin: -3px;
  padding: 0;
}

.post-pagination nav.pagination ul li {
  margin: 5px;
  display: inline-block;
}

.post-pagination nav.pagination ul li span {
  line-height: 42px;
  min-width: 42px;
  text-align: center;
  color: var(--whiteColor);
  transition: all .5s;
  display: inline-block;
  padding: 0 15px;
  border: 1px solid #E3E6E9;
  border-radius: 6px;
}

.post-pagination nav.pagination ul li span.current {
  background: var(--mainColor);
  border-color: var(--mainColor);
}

.post-pagination nav.pagination ul li a {
  line-height: 42px!important;
  min-width: 42px!important;
  text-align: center!important;
  color: var(--blackColor)!important;
  transition: all .5s!important;
  display: inline-block!important;
  padding: 0!important;
  transition: all .5s!important;
  border: 1px solid #E3E6E9!important;
  border-radius: 6px!important;
}

.post-pagination nav.pagination ul li a:hover {
  background: var(--mainColor)!important;
  color: var(--whiteColor)!important;
  border-color: var(--mainColor)!important;
}

.post-pagination nav.pagination ul li a i {
  font-size: 22px;
  top: 4px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .post-pagination {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post-pagination {
    margin-top: 30px;
  }
}

/*==========================
Blog Sidebar Area CSS
============================*/
.blog-single-widget {
  border: 1px solid #f3f3f3;
  border-radius: 6px;
  padding: 20px;
  margin-top: 40px;
}

.blog-single-widget:first-child {
  margin-top: 40px!important;
}

.blog-single-widget .widget-title {
  margin-bottom: 20px;
}

.blog-search, .wp-block-search {
  position: relative;
}

.blog-search .search-button, .wp-block-search .search-button {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: 0 none;
  padding: 0;
  background-color: rgba(0,0,0,0);
  color: var(--headingColor);
  width: auto;
}

.blog-search input, .wp-block-search input {
  height: 50px;
  background-color: #f0f2f5;
  padding: 0 20px;
  padding-left: 50px;
  font-size: 16px;
  border-radius: 6px;
}

.blog-search .search-button i, .wp-block-search .search-button i {
  position: relative;
  top: 2px;
}

.blog-single-widget ul {
  padding-left: 20px;
  list-style: disc;
}

.blog-single-widget ul li {
  margin: 10px 0;
/*  list-style: disc;
*/}

.blog-single-widget ul li::marker {
  font-size: 18px;
  color: #ced0d4;
  transition: var(--transition);
}

.blog-single-widget ul li a {
  color: #65676b;
  transition: var(--transition);
}

.blog-single-widget ul li a:hover {
  color: var(--mainColor);
  transition: var(--transition);
}

.widget_tag_cloud .tagcloud {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.widget_tag_cloud .tagcloud a {
  border: 2px solid #E3E6E9;
  font-size: 14px;
  color: #666666;
  height: 40px;
  padding: 0 20px;
  margin: 5px;
  display: inline-block;
  line-height: 35px;
  border-radius: 500px;
}

.widget_tag_cloud .tagcloud a:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .blog-sidebar-area.blog-right-sidebar {
    margin-top: 20px;
  }
  .blog-sidebar-area.blog-left-sidebar {
    margin-bottom: 20px;
  }
  .blog-single-widget {
    margin-top: 20px;
    padding: 15px;
  }
  .widget_tag_cloud .tagcloud a {
    padding: 0 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-sidebar-area.blog-right-sidebar {
    margin-top: 30px;
  }
  .blog-sidebar-area.blog-left-sidebar {
    margin-bottom: 30px;
  }
  .blog-single-widget {
    margin-top: 30px;
  }
}

/*==========================
Blog Details Area CSS
============================*/
.blog-details-area h3 {
  margin-bottom: 20px;
}

.blog-details-image, .blog-details-content {
  margin-bottom: 40px;
}

.comment-area .title {
  margin-bottom: 20px;
}

.comment-list .comment .single-comment {
  padding: 15px 0;
  display: flex;
}

.comment-list .comment .single-comment .comment-img {
  margin-bottom: 15px;
  min-width: 100px;
  margin-right: 20px;
}

.comment-list .comment .single-comment .comment-img img {
  border-radius: 100%;
  width: 100px;
  height: 100px;
}

.comment-list .comment .commenter {
  line-height: 33px;
  margin-bottom: 6px;
}

.comment-list .comment .comment-meta {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.comment-list .comment .time-spent {
  color: #999FAE;
  font-size: 16px;
  line-height: 24px;
}

.comment-list .comment .reply-edit a.comment-reply-link {
  font-size: 16px;
  line-height: 24px;
  display: flex;
  color: var(--mainColor);
  margin-left: 8px;
  padding-left: 8px;
  position: relative;
  font-weight: 500;
  overflow: visible;
}

.comment-list .comment .reply-edit a.comment-reply-link:hover {
  color: var(--blackColor);
}

.comment-list .comment .reply-edit a.comment-reply-link::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -2px;
  width: 4px;
  height: 4px;
  background: #999FAE;
  border-radius: 100%;
}

.comment-list ul.children {
  padding-left: 75px;
}

.comment-area, .comment-respond {
  margin-bottom: 40px;
}

.comment-respond .title {
  margin-bottom: 20px;
}

.comment-respond .comment-notes {
  color: #999FAE;
  margin-bottom: 40px;
}

.comment-respond .form-group {
  margin-bottom: 30px;
  position: relative;
}

.comment-respond .form-group label {
  position: absolute;
  top: -11px;
  left: 20px;
  pointer-events: none;
  z-index: 4;
  background: #fff;
  padding: 0 10px;
}

.comment-respond .form-group label {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

.comment-respond .form-group textarea {
  min-height: 160px;
  border-radius: 6px;
  resize: none;
  padding: 15px;
  font-size: 15px;
  background-color: #fff;
  line-height: 1.5;
  padding-left: 30px;
  padding-top: 20px;
}

.comment-respond .form-group input::placeholder {
  background-color: transparent;
}

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

.bg-color .comment-respond .form-group label {
  background: var(--bgColor);
}

.bg-color .comment-respond .form-group input,
.bg-color .comment-respond .form-group textarea {
  background: var(--bgColor);
}

.blog-details-image-gallery {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .blog-details-image, .blog-details-content {
    margin-bottom: 20px;
  }
  .blog-details-area h3 {
    font-size: 18px;
  }
  .comment-list .comment .single-comment .comment-img {
    min-width: 60px;
    margin-right: 10px;
  }
  .comment-list .comment .single-comment .comment-img img {
    width: 50px;
    height: 50px;
  }
  .comment-list ul.children {
    padding-left: 15px;
  }
  .comment-list .comment .time-spent {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .comment-area {
    margin-bottom: 20px;
  }
  .comment-respond {
    margin-bottom: 20px;
  }
  .blog-details-area .blog-sidebar-area.blog-right-sidebar {
    margin-bottom: 20px;
    margin-top: 0;
  }
  .comment-respond .title {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .comment-respond .comment-notes {
    margin-bottom: 25px;
  }
  .comment-respond .form-group {
    margin-bottom: 20px;
  }
  .blog-details-image-gallery {
    margin-top: 20px;
  }
  .blog-details-image-gallery .col-lg-6 img {
    margin-bottom: 20px;
  }
  .blog-details-image-gallery .col-lg-6:last-child img {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-image, .blog-details-content {
    margin-bottom: 30px;
  }
  .blog-details-area h3 {
    font-size: 20px;
  }
  .comment-area {
    margin-bottom: 30px;
  }
  .comment-respond {
    margin-bottom: 30px;
  }
  .blog-details-area .blog-sidebar-area.blog-right-sidebar {
    margin-bottom: 30px;
    margin-top: 0;
  }
  .comment-respond .title {
    margin-bottom: 10px;
    font-size: 22px;
  }
  .comment-respond .comment-notes {
    margin-bottom: 30px;
  }
  .blog-details-image-gallery {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 1200px) {
  .blog-area.blog-details-area {
    padding-bottom: 20px;
  }
}

/*================================================
My Account Area CSS
=================================================*/
.my-account-area .custom-card {
  padding: 30px;
  background: #f5f5f5;
  border-radius: 25px;
}

.my-account-area .title {
  margin-bottom: 60px;
}

.my-account-area .form-control {
  height: 50px;
}

.my-account-area input {
  margin-bottom: 20px;
}

.my-account-area .form-check {
  margin: 20px 0;
}

@media only screen and (max-width: 767px) {
  .my-account-area .col-lg-6 .custom-card {
    margin-bottom: 20px;
  }
  .my-account-area .col-lg-6:last-child .custom-card {
    margin-bottom: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .my-account-area .col-lg-6 .custom-card {
    margin-bottom: 30px;
  }
  .my-account-area .col-lg-6:last-child .custom-card {
    margin-bottom: 0px;
  }
}

/*================================================
Banner Area CSS
=================================================*/
.banner-wrapper-area {
  position: relative;
  z-index: 1;
  background-color: var(--bgColor);
  padding-top: 70px;
  padding-bottom: 70px;
}

.banner-wrapper-content h1 {
  font-size: 55px;
  margin-bottom: 30px;
}

.banner-wrapper-content p {
  font-size: 17px;
  color: #222222;
}

.banner-wrapper-image {
  padding-left: 0px;
  padding-right: 0px;
  text-align: center;
}

.banner-wrapper-image img {
  width: 100%;
  border-radius: 10px;
}

.banner-wrapper-content .btn-box {
  margin-top: 35px;
}

.banner-wrapper-content .btn-box .btn {
  padding: 15px 44px;
}

@media only screen and (max-width: 767px) {
  .banner-wrapper-area {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .banner-wrapper-content {
    text-align: center;
    top: 0;
  }
  .banner-wrapper-content h1 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .banner-wrapper-content p {
    font-size: 14px;
  }
  .banner-wrapper-content .btn-box {
    margin-top: 20px;
  }
  .banner-wrapper-content .btn-box .btn {
    margin-left: 4px;
    margin-right: 4px;
    padding: 15px 20px;
    font-size: 15px;
  }
  .banner-wrapper-image {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-wrapper-area {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .banner-wrapper-content {
    text-align: center;
    max-width: 600px;
    top: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-wrapper-content h1 {
    font-size: 35px;
    line-height: 50px;
    margin-bottom: 15px;
  }
  .banner-wrapper-content p {
    font-size: 15px;
  }
  .banner-wrapper-content .btn-box {
    margin-top: 30px;
  }
  .banner-wrapper-content .btn-box .btn {
    margin-left: 7px;
    margin-right: 7px;
  }
  .banner-wrapper-image {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-wrapper-area {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .banner-wrapper-content h1 {
    font-size: 45px;
  }
}

/*================================================
Video Area CSS
=================================================*/
.banner-bg-video {
  padding: 150px 0;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
}

.banner-bg-video .bg-overlay-black-30:before {
  background: rgba(0, 16, 34, 0.3);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.banner-bg-video h1 {
  font-size: 38px;
}

.banner-bg-video .banner-bg-video-sub-title {
  font-size: 18px;
  display: block;
}

.banner-bg-video .bg-overlay-black-50 {
  position: relative;
  z-index: 1;
}

.banner-bg-video .bg-overlay-black-50:before {
  background: rgba(0, 16, 34, 0.5);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.banner-bg-video .nav-tabs.nav-tabs-02 {
  border: none;
}

.banner-bg-video .nav-tabs.nav-tabs-02 .nav-item {
  margin-bottom: 0;
}

.banner-bg-video .nav-tabs.nav-tabs-02 .nav-item .nav-link.active {
  background: var(--mainColor);
  color: var(--whiteColor);
}

.banner-bg-video .nav-tabs.nav-tabs-02 .nav-item .nav-link {
  background: transparent;
  color: var(--whiteColor);
  padding: 6px 20px;
  line-height: 24px;
  border-radius: 3px;
  margin-right: 20px;
}

.banner-bg-video .search {
  position: relative;
}

.banner-bg-video .search i {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--mainColor);
  padding: 22px 30px;
  cursor: pointer;
  margin: 4px;
  font-size: 20px;
}

.banner-bg-video .search input {
  padding-left: 30px;
  padding-right: 130px;
  height: 71px;
}

@media only screen and (max-width: 767px) {
  .banner-bg-video {
    padding: 70px 0;
  }
  .banner-bg-video h1 {
    font-size: 25px;
  }
  .banner-bg-video .nav-tabs.nav-tabs-02 .nav-item .nav-link {
    padding: 6px 16px;
    margin-bottom: 5px;
  }
  .banner-bg-video .search i {
    padding: 22px 10px;
  }
  .banner-bg-video .search input {
    padding-left: 15px;
    padding-right: 40px;
  }
  .banner-bg-video .bg-overlay-black-50.p-4 {
    padding: 1rem!important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-bg-video {
    padding: 100px 0;
  }
  .banner-bg-video h1 {
    font-size: 28px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-bg-video h1 {
    font-size: 30px;
  }
}

/*================================================
Slider Area CSS
=================================================*/
.single-banner-part.bg_1 {
  background-image: url(../img/slides/slider-1.jpg);
}

.single-banner-part.bg_2 {
  background-image: url(../img/slides/slider-2.jpg);
}

.single-banner-part.bg_3 {
  background-image: url(../img/slides/slider-3.jpg);
}

.banner-slider .single-banner-part {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-slider .single-banner-part {
  position: relative;
  z-index: 2;
  height: 600px;
  display: flex;
  align-items: center;
}

.banner-slider .single-banner-part:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0b1c39;
  opacity: 0.5;
  z-index: -1;
}

.banner-slider .single-banner-part .banner-iner {
  text-align: center;
}

.banner-slider .single-banner-part .banner-iner h5 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 4.5px;
  color: #fff;
  font-weight: 400;
}

.banner-slider .single-banner-part .banner-iner h2 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: 70px;
  margin: 19px 0 36px;
}

.banner-slider .owl-nav button.owl-next,
.banner-slider .owl-nav button.owl-prev {
  border: 2px solid #d4d7dc;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  color: #d4d7dc;
  background-color: transparent;
  position: absolute;
  left: 50px;
  top: 47%;
  display: inline-block;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.banner-slider .owl-nav button.owl-next i,
.banner-slider .owl-nav button.owl-prev i {
  font-size: 35px;
  font-weight: 600;
  position: relative;
  top: 6px;
  color: #fff;
}

.banner-slider .owl-nav button.owl-next:hover,
.banner-slider .owl-nav button.owl-prev:hover {
  background-color: var(--mainColor);
  border: 2px solid var(--mainColor);
  color: #fff;
}

.banner-slider .owl-nav button.owl-next {
  left: auto;
  right: 50px;
}

.banner-slider .owl-item.active .banner-iner h5,
.banner-slider .owl-item.active .banner-iner h2,
.banner-slider .owl-item.active .banner-iner .banner-btn {
  -webkit-animation: animmate_In_Left 1s ease 0s both;
  animation: animmate_In_Left 1s ease 0s both;
}

.banner-slider .owl-item.active .banner-iner h5 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.banner-slider .owl-item.active .banner-iner h2 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.banner-slider .owl-item.active .banner-iner .banner-btn {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.banner-btn {
  display: inline-block;
  text-align: center;
  color: var(--whiteColor);
  border: 2px solid #fff;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  border-radius: 50px;
  -webkit-box-shadow: 3px 3px #ebebeb;
          box-shadow: 3px 3px #ebebeb;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  width: 200px;
  font-size: 17px;
  font-weight: 600;
  box-shadow: none;
}

.banner-btn:hover {
  color: var(--whiteColor);
  border: 2px solid var(--mainColor);
  background-color: var(--mainColor);
}

.banner-btn::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: transparent;
  z-index: -1;
  content: '';
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.banner-btn:hover::before {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes animmate_In_Left {
  0% {
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes animmate_In_Left {
  0% {
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  .banner-slider .single-banner-part {
    height: 500px;
  }
  .banner-slider .single-banner-part .banner-iner {
    margin: 0 20px;
  }
  .banner-slider .single-banner-part .banner-iner h5 {
    line-height: 28px;
  }
  .banner-slider .single-banner-part .banner-iner h2 {
    font-size: 25px;
    line-height: 35px;
  }
  .banner-btn {
    width: 150px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-slider .single-banner-part .banner-iner h5 {
    line-height: 28px;
  }
  .banner-slider .single-banner-part .banner-iner h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .banner-btn {
    width: 150px;
  }
}

/*================================================
Booking Area CSS
=================================================*/
.booking-form-title {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.booking-form-title h2 {
  font-size: 35px;
  margin-bottom: 15px;
  position: relative;
  display: block;
}

.booking-tabs-button {
  background-color: transparent;
  text-align: center;
}

.booking-tabs-button .nav-tabs {
  background-color: transparent;
  display: block;
  border-bottom: 2px solid #eeeeee;
  border-radius: 0;
}

.booking-tabs-button .nav-tabs .nav-link {
  border: none;
  background-color: transparent;
  color: var(--blackColor);
  border-radius: 0;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: -2px;
  font-size: 17px;
  text-align: center;
  display: inline-block;
  text-transform: capitalize;
  overflow: visible;
  height: 50px;
}

.booking-tabs-button .nav-tabs .nav-link.active {
  color: var(--mainColor);
  border-bottom: 2px solid var(--mainColor);
  position: relative;
}

.booking-tabs-button .nav-tabs .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: var(--mainColor);
  border-radius: 50px;
  margin: auto;
}

.booking-tabs-button .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: var(--mainColor);
  border-radius: 50px;
  margin: auto;
  opacity: 0.8;
}

.contact-form.book-form h2 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
  color: var(--mainColor);
}

.contact-form.book-form select {
  background-image: url(../img/select-icon.png);
  background-position: 100%;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .booking-form-title h2 {
    font-size: 20px;
  }
  .booking-tabs-button .nav-tabs .nav-link {
    font-size: 16px;
  }
  .booking-tabs-button .nav-tabs .nav-link.active {
    margin-bottom: 15px;
  }
  .contact-form.book-form h2 {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .booking-form-title h2 {
    font-size: 25px;
  }
  .booking-tabs-button .nav-tabs .nav-link {
    font-size: 16px;
  }
  .contact-form.book-form h2 {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .booking-form-title h2 {
    font-size: 30px;
  }
  .contact-form.book-form h2 {
    margin-top: 20px;
  }
}

/*================================================
Hotel Search Area CSS
=================================================*/
.hotel-search-area {
  position: relative;
  margin-top: -60px !important;
  z-index: 1;
}

.hotel-search-area .bg-white {
  padding: 30px;
}

.hotel-search-area select {
  background-image: url(../img/select-icon.png);
  background-position: 100%;
  background-repeat: no-repeat;
}

.hotel-search-area .btn.btn-primary {
  padding: 12px 30px 12px;
}

.hotel-search-area .btn.btn-primary:focus {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

@media only screen and (max-width: 767px) {
  .hotel-search-area {
    margin-top: -20px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hotel-search-area {
    margin-top: -40px !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hotel-search-area {
    margin-top: -20px !important;
  }
}

/*================================================
Room Area CSS
=================================================*/

.room-area .room-item {
  margin-top: 40px;
  height: auto;
}

.room-list .room-item .room-list-first img {
  width: 100%;
}

.room-area .room-item .bx.bxs-star.text-primary {
  color: #FEA116 !important;
  font-size: 16px;
}

.room-area .room-item img + small {
  background-color: var(--mainColor) !important;
}

.room-area .room-item .features span i {
  color: var(--mainColor) !important;
}

.room-area .room-item .btn.style2 {
  background-color: var(--blackColor);
}

.room-area .room-item .btn.style1::before, 
.room-area .room-item .btn.style1::after,
.room-area .room-item .btn.style2::before, 
.room-area .room-item .btn.style2::after {
  transition: none;
}

.room-area .room-item .btn.style2:hover::before, 
.room-area .room-item .btn.style2:hover::after {
  background-color: var(--mainColor);
  transition: none;
}

.room-area .room-slider .room-item {
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 15px;
}

.room-slider.owl-theme .owl-nav .owl-prev, 
.room-slider.owl-theme .owl-nav .owl-next {
  top: 50%;
  padding: 0;
  left: -15px;
  width: 40px;
  height: 40px;
  font-size: 30px;
  line-height: 45px;
  border-radius: 50%;
  position: absolute;
  color: var(--whiteColor);
  border: 1px solid #eae2d7;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
}

.room-slider.owl-theme .owl-nav .owl-prev i, 
.room-slider.owl-theme .owl-nav .owl-next i {
  color: var(--whiteColor);
}

.room-slider.owl-theme .owl-nav .owl-prev:hover, 
.room-slider.owl-theme .owl-nav .owl-next:hover {
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
  border-color: var(--secondaryColor);
}

.room-slider.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -15px;
}

.room-slider.owl-theme .owl-nav {
  margin-top: 0;
}

.room-slider.owl-theme.owl-carousel .owl-dots button.owl-dot {
  bottom: -20px;
}

@media only screen and (max-width: 767px) {
  .room-area .room-item {
    margin-top: 20px;
  }
  .room-area .room-item h5 {
    font-size: 18px;
  }
  .room-area .room-item .bx.bxs-star.text-primary {
    line-height: 28px;
    font-size: 15px;
  }
  .room-area .room-item .btn.style1 {
    margin: 0 5px 0 0;
  }
  .room-slider.owl-theme .owl-nav .owl-prev, 
  .room-slider.owl-theme .owl-nav .owl-next {
    left: -20px;
  }
  .room-slider.owl-theme .owl-nav .owl-next {
    right: -20px;
    left: initial;
  }
  .room-slider.owl-theme.owl-carousel .owl-dots button.owl-dot {
    bottom: -10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .room-area .room-item {
    margin-top: 30px;
  }
  .room-area .room-slider .room-item {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 20px;
  }
  .room-area .room-item .bx.bxs-star.text-primary {
    line-height: 28px;
    font-size: 15px;
  }
  .room-slider.owl-theme.owl-carousel .owl-dots button.owl-dot {
    bottom: -15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .room-area .room-slider .room-item {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .room-area .room-item .bx.bxs-star.text-primary {
    line-height: 28px;
    font-size: 15px;
  }
  .room-area .room-item .btn.style1 {
    margin: 0 5px 0 0;
  }
  .room-slider.owl-theme.owl-carousel .owl-dots button.owl-dot {
    bottom: -5px;
  }
}

@media only screen and (min-width: 992px) {
  .room-list {
    width: 50%;
    float: left;
  }
  .mainroom-list {
    width: 40%;
    float: left;
  }
  .mainroom-list_ {
    width: 60%;
    float: left;
  }
  .room-list .top-100 {
    top: 3.4% !important;
  }
}

@media only screen and (max-width: 992px) {
    .Smllstl {
        margin-top: 30px !important;
    }
    .pdnm {
        padding-bottom: 0px !important;
    }

}

.HOffLst {
    width: 100%;
    margin: 0;
    margin-bottom: 0px;
    padding: 0;
    padding-top: 10px;
}

/*================================================
Room Details Area CSS
=================================================*/
.room-details-area .room-detail-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0 30px;
  max-width: 100%;
}

.room-details-area .sticky-top .title {
  font-size: 25px;
  margin-bottom: 10px;
}

.room-details-area .sticky-top .btn {
  display: block;
}

.room-details-area .sticky-top .d-block i {
  position: relative;
  top: 1px;
}

.room-details-area .sticky-top .price {
  font-size: 30px;
  color: var(--mainColor);
  margin-bottom: 15px;
}

.room-details-area .sticky-top .area {
  font-size: 17px;
  color: var(--blackColor);
}

.room-details-area .sticky-top .agent-contact-name a:hover {
  opacity: 0.7;
}

.room-details-area .sticky-top .agent-contact-avatar {
  width: 50px;
}

.room-details-area .agent-contact-inner .text-primary a:hover {
  color: var(--whiteColor);
}

.room-details-area .agent-contact-inner a.btn.btn-link {
  color: var(--whiteColor);
  font-size: 15px;
  background: transparent;
}

.room-details-area .agent-contact-inner a.btn.btn-link:hover {
  color: var(--mainColor);
}

.room-detail-meta > li > a {
  margin-right: -1px;
  border: 1px solid #eeeeee;
  padding: 14px 20px;
  display: block;
  color: #969696;
}

.room-detail-meta > li > a:hover {
  color: var(--mainColor);
}

.room-detail-meta > li > a > i {
  font-size: 18px;
  position: relative;
  top: 2px;
}

.room-detail-meta .share-box {
  position: relative;
}

.room-detail-meta .share-box .share-box-social {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  bottom: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--secondaryColor);
  padding: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
  -webkit-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}

.share-box .share-box-social:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: var(--secondaryColor) transparent transparent transparent;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  z-index: 99;
  margin-left: -3px;
}

.room-detail-meta .share-box:hover .share-box-social {
  opacity: 1;
  visibility: visible;
  margin-bottom: 6px;
}

.share-box .share-box-social li a {
  padding: 0 10px;
  color: #ffffff;
  font-size: 13px;
  display: block;
}

.share-box .share-box-social li a:hover {
  opacity: 0.7;
}

.room-detail-meta .avatar.avatar-lg {
  width: 60px;
  height: 60px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
}

.room-detail-meta .avatar {
  width: 50px;
  height: 50px;
  display: inline-block;
}

.room-detail-meta .agent-contact-inner .border {
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.room-detail-gallery {
  position: relative;
}

.room-detail-gallery .nav-tabs.nav-tabs-02 {
  position: absolute;
  z-index: 8;
  top: 20px;
  left: 20px;
  border: none;
}

.room-detail-gallery .nav-tabs.nav-tabs-02 .nav-item {
  margin-right: 4px;
  margin-bottom: 0;
}

.nav-tabs.nav-tabs-02 .nav-item .nav-link {
  background: #fafafa;
  border: none;
  color: #001935;
  padding: 10px 20px;
  border-radius: 3px;
  margin-right: 20px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-tabs.nav-tabs-02 .nav-item .nav-link.active {
  background: var(--mainColor);
  border: none;
  color: #ffffff;
}

.room-detail-gallery .slider-slick, 
.room-detail-gallery iframe, 
.room-detail-gallery #street-view {
  min-height: 500px;
}

.room-list li {
  margin-bottom: 5px;
  font-size: 15px;
}

.room-list li b {
  color: #001935;
  font-weight: 600;
  margin-right: 3px;
}

.room-list-style-2 li {
  list-style: square;
}

.nearby-info .nearby-title i {
  position: relative;
  top: 1px;
}

.sticky-top {
  z-index: 9;
}

@media only screen and (max-width: 767px) {
  .room-details-area .sticky-top .title {
    font-size: 20px;
  }
  .room-details-area .sticky-top .price {
    font-size: 25px;
  }
  .room-detail-meta > li > a {
    padding: 14px 12px;
  }
  .room-detail-meta > li > a > i {
    font-size: 16px;
    padding-right: 4px !important;
  }
  .agent-contact-inner .contact-info {
    display: block !important;
  }
  .room-details-area .agent-contact-inner a.btn.btn-link {
    margin-top: 10px;
  }
  .room-detail-gallery .slider-slick, 
  .room-detail-gallery iframe, 
  .room-detail-gallery #street-view {
    min-height: 200px;
  }
  .room-details-area .mb-5 {
    margin-bottom: 1.5rem !important;
  }
  .room-details-area .mt-5 {
    margin-top: 1.5rem !important;
  }
  .room-details-area .mb-3 {
    margin-bottom: 0.5rem!important;
  }
  ul.room-list-style-2 {
    padding-left: 1.2rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .room-details-area .sticky-top .title {
    font-size: 21px;
  }
  .room-details-area .mt-5 {
    margin-top: 2rem !important;
  }
  .room-details-area .mb-5 {
    margin-bottom: 2rem !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .room-details-area .sticky-top .title {
    font-size: 22px;
  }
  .room-detail-meta > li > a {
    padding: 14px 15px;
  }
  .agent-contact-inner .contact-info {
    display: block !important;
  }
  .room-details-area .agent-contact-inner a.btn.btn-link {
    margin-top: 10px;
  }
}
.map-container {
    height: 313px;
    margin-bottom: 20px;
}
.map-box {
    border: 1px solid #ddd; /* Ajout d'une bordure */
    border-radius: 5px; /* Coins arrondis */
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.copya {
    margin-top: -7px !important;
}
.copyr {
    font-size: 1rem !important;
    margin-top: -3px !important;
    color:#C7C7C7 !important;
}
.copyr>a {
    color:#FF4D4D;
}
.copyr>a:hover {
    color:#FF0A0A;
}
.btnp{
    text-align: right;
}
#category-heading {
    padding: 10px;
    text-transform: none;
    font-size: 20px;
    width: 100%;
}
 .bg-title-zone {
    background: linear-gradient(to right, #f00, #fff);
    border-radius: 8px;
}
.titre>h2{
    text-align: left;
    font-size:1.4rem !important;
    margin-left: 7px;
    color:white;
    font-weight: normal;
}

.voir-tous {
    font-weight: 400;
    line-height: 1.4;
    color: #444;
    font-family: "Readex Pro", sans-serif;
    text-align: right;
    padding-right: 20px;
    font-size: 1.2rem;
}
.PFilter {
    padding: 8px 0;
      border-radius: 10px;
      background: #f00404;
      color: white;
      text-align: center;
      width: 113px;
      margin: 0 auto 20px auto;
      cursor: pointer;
      border: 1px solid #f00404;
}
.Region {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #f00404;
}

.HDescS {
    border-top:1px solid #f00404;
    margin: 23px 0;
}

.HShowMore {
    padding: 8px 0;
    border-radius: 10px;
    background: #f00404;
    color: white;
    text-align: center;
    width: 135px;
    margin: 40px auto 10px auto;
    cursor: pointer;
    border: 1px solid #f00404;
}
.HDescT {
    margin-top: 15px;
    font-size: 19px;
    font-weight: 400;
    color:#213C72;
    margin-bottom: 15px;
    border-radius: 8px;
    border:1px solid #99ACE1;
    padding: 5px 8px 7px 10px;
    background: #E4E9F7;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.HDescS {
    border-top:1px solid #B3D1F5;
    margin-bottom: 15px;
}

.HDesc {
    all:initial;
    font-family: var(--villoz-font, "Plus Jakarta Sans", sans-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.HDesc>p {
    margin: 0;
    line-height: 30px;
}
.HDesc>h5 {
    font-size: 16px !important;
}

.HDescMore {
    display: none;
}

.ShowMore {
    background: #fff;
    filter: blur(8px);
    width: 100%;
    height: 40px;
    margin-top: -44px;
    margin-left: -1%;
    border: none;
}

.ShowML {
    font-weight: 400;
    margin-left: 2px;
    color: #CB0214;
    cursor: pointer;
    margin-bottom: 15px;
    margin-top: 0;
}

.HServT {
    margin-top: 15px;
    font-size: 1.08rem;
    font-weight: normal;
    color:#BF0303;
    margin-bottom: 15px;
    font-family: Arial, Helvetica, sans-serif;
}

.HServT>img {
    width: 23px;
    margin-right: 10px;
    margin-top: -3px;
}

.HServL {
    font-size: 14px !important;
    line-height: 25px !important;
    font-weight: 400 !important;
    text-align: left;
    display: block !important;
}

.HDescT {
    padding-top: 11px
}

.HDescT>div {
    display: initial;
    padding-left: 10px;
}

.OpIcn {
    width: 30px;
    margin-top: -4px;
}

.SrvItm {
    background: #FFF3EB;
    border:1px solid #FFC194;
    border-radius: 10px;
    padding: 3px;
    margin: 10px;
}

.HServT>span {
    margin-right: 10px !important
}

.SrvTr {
    background: #FFF3EB;
}

.SrvChk, .SrvLab {
    border: none;
    padding: 0;
    margin: 0;
    color:#F06400
}

.SrvChk {
    padding-left: 10px
}

.SrvLab {
    padding-right: 10px
}
#MContent {
    resize: none;
}

/* Widgets
--------------------------------------------- */
.sidebar {
    padding: 40px;
    border: 1px solid #d6e2f0;
}
.sidebar__posts__title {
    margin: 0;
        margin-top: 0px;
    color: #132742;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    margin-top: -5px;
}
.sidebar .widget ul li, .sidebar__single ul li {
    font-size: 16px;
}
.sidebar .widget ul li, .sidebar__single ul li {
    position: relative;
}
.sidebar__posts__item:not(:last-of-type) {
    border-bottom: 1px solid #d6e2f0;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.sidebar__posts__item {
    display: flex;
    align-items: center;
}
li {
    list-style: none;
}
.sidebar__posts__image {
    flex-shrink: 0;
    margin-right: 20px;
}
.sidebar .widget ul li, .sidebar__single ul li {
    font-size: 16px;
}
.sidebar .widget ul li, .sidebar__single ul li {
    position: relative;
}
.sidebar .widget ul li a, .sidebar__single ul li a {
    transition: all 500ms ease;
    font-weight: 500;
    color: #737a83;
}
.sidebar__posts__meta a {
    display: inline-flex;
    align-items: center;
    color: #737a83;
    font-size: 13px;
    line-height: 1em;
    transition: all 500ms ease;
}
a, a:hover, a:focus, a:visited {
    text-decoration: none;
}

.sidebar__posts__meta a i {
    color: #f00404;
    margin-right: 3px;
}

.logo-light {
    max-width: 200px;
}
.footer-logo>img {
    max-width: 250px;
}
.bx-time-five {
    color: #FF3333;
    font-size: 1rem
}
.BookHN {
    vertical-align: top;padding: 5px 10px;font-size: 1.1rem;text-align: left;color:#D60000;height: 2px
}
.BookHL {
    vertical-align: top;padding: 5px 10px;font-size: 1rem;
}
.HBookTT {
    font-size: 1.15rem;color:#3B3B3B;
}

.MihaCheck {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.MihaCheck input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: 1px solid #0090F0;
}
.ChkErr {
    border: 1px solid red !important;
    background: #FFE0E0 !important
}

.MihaCheck:hover input ~ .checkmark {
    background-color: #ccc;
}
.MihaCheck input:checked ~ .checkmark {
    background-color: #0090F0;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.MihaCheck input:checked ~ .checkmark:after {
    display: block;
}
.MihaCheck .checkmark:after {
    left: 9px;
    top: 4px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.is-invalid {
    border: 1px solid red !important;
}

.HPrices{
    border: 1px solid #0081D6;background: #F5FBFF;border-radius: 8px 8px 0 0;padding: 0;margin-bottom: 8px
}
.HPriceLab {
    border-bottom: 1px solid #0081D6;vertical-align: middle;padding: 6px 8px;font-size: 1rem;color:#0062A3
}
.HPriceIc {
    border-bottom: 1px solid #0081D6;width:30px;padding-right: 7px
}
.HPriceTx {
    padding: 6px 8px;color:#0077C7;font-size: 1rem;text-align: left;background: white
}
.HPricePc {
    width:30px;padding-right: 7px;background: #fff;color:#00A800;font-size: 1.07rem;
}
.HPriceBs {
    width:30px;padding-right: 7px;background: #fff;color:#F00404;font-size: 1.04rem;text-decoration: line-through;text-align: right;
}
.ShowDetails {
    border-radius: 8px;
    background: white;
    color: #F00404;
    padding: 5px 12px;
    float: right;
    font-size: 0.95rem;
    cursor: pointer;
}
.BookThis {
    border-radius: 4px;
    background: #0074C2;
    color: white;
    padding: 8px 0;
    font-size: 0.95rem;
    cursor: pointer;
    width: 110px;
    text-align: center
}
.badge {
    color: #ffffff;
    background-color: #007ACC;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 7px;
}
.ROCtrl {
    border: 1px solid #007ACC;color:#007ACC;background: #F5FBFF;padding: 8px 0;text-align: center;max-width: 225px;cursor: pointer;margin: 8px 0;
}
.ROCtrl:hover {
    border: 1px solid #005C99;color:#005C99;background-color: #ADDEFF;
}
.modal-content {
    padding: 10px 15px 15px 15px
}
.PClose {
    cursor: pointer;
}
.RmDel {
    background: white;
    color:#EB0000;
    padding: 3px 3px 4px 4px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.5rem;
    border: 1px solid #EB0000;
    transition: background-color ease-in-out 0.5s !important;
    transition: color ease-in-out 0.5s !important;
}
.RmDel:hover {
    color:white;
    background: #EB0000;
    border:1px solid white;
}
.AddRoom {
    background: white;color: #EB0000;font-size: 1rem;padding: 5px 10px;border: 1px solid #EB0000;padding-bottom: 7px;cursor: pointer;
    transition: background-color ease-in-out 0.3s !important;
    transition: color ease-in-out 0.3s !important;
}
.AddRoom:hover {
    background: #EB0000;
    color:white;
    border:1px solid #EB0000;
}
.SetRooms {
    background: #EB0000;color: white;font-size: 1rem;padding: 6px 25px;border: 1px solid #EB0000;padding-bottom: 7px;cursor: pointer;
    transition: background-color ease-in-out 0.3s !important;
}
.SetRooms:hover {
    background-color: #A30000;
    border:1px solid #A30000;
}
#HOffer {
    font-size: 1rem;
    width: 50%;
    border: 1px solid #C4C4CF;
}
.PersCnt {
    padding-right: 0 !important;
}

@media (max-width:767px){
    #HOffer {
        font-size: 1rem;
        width: 100%;
        border: 1px solid #C4C4CF;
    }
    .PersCnt {
        background: #E5F5FF;
        border-radius: 10px;
        margin: 0 !important;
    }
}
.HHTable {
    padding: 0;
    border: none;
    width: 100%;
    margin: 0
}
.HHImg {
    width: 40px;
    padding: 0;
    border: none;
    padding: 5px
}
.HHImg>img {
    width: 40px;
    height: 40px;
}
.HHName {
    text-align: left;
    padding: 0;
    padding-left: 10px;
    color:#005C99;
    font-size: 1rem;
    border: none
}
.HDName {
    text-align: left;
    padding: 0;
    padding-left: 10px;
    color:#E00000;
    font-size: 1rem;
    border: none
}
.HHLoc {
    text-align: left;
    padding: 0;
    padding-left: 13px;
    color:#4A4A4A;
    font-size: 0.97rem;
    border: none
}

.HHPrc{
    text-align: left;
    padding: 0;
    padding-left: 10px;
    color:#E60000;
    font-size: 0.97rem;
    border: none
}
.OrderDT {
    padding: 5px;
    font-size: 0.95rem;
    color: #4C4C4C;
    padding-bottom: 8px;
}
.OrderIc {
    font-size: 1.2rem;
    width: 5px;
    padding-left: 10px
}
.OfferItm {
    border: 1px solid #D9D9D9;
    border-radius: 7px;
    padding: 7px;
    background: #F0F9FF
}

.OrderIm {
    width: 70px;
    text-align: center;
    border-right: 1px solid #D9D9D9;
    padding: 2px 10px 0 10px;
    vertical-align: top;
}
.HOfferRm {
    padding: 3px 10px 3px 13px;
}
.HOfferRm>div {
    font-size: 1rem;
    color:#CC0000;
    text-align: center;
    background: #FFDBDB;
    text-align: left;
    padding: 4px 10px;
    width: 120px;
    border-radius: 8px;
    margin-bottom: 9px;
}
.HOfferLab {
    font-size: 1rem;
    color:#4C4C4C;
    margin-bottom: 0
}
.OrderOfr {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 10px
}

.HOfferLab>span {
    font-size: 1rem;
    color:#007ACC;
}

.OrderBK {
    font-size: 0.96rem;
    color:#D10000;
    padding: 10px 10px 0 20px;
}
.OrderPX {
   font-size: 0.96rem;
   color:#006BB2;
   padding: 7px 10px 0 20px;
}
.OrderPC {
   font-size: 0.96rem;
   color:#D10000;
   padding: 7px 10px 0 20px;
}
.OrderVL {
    font-size: 1rem;
    color: #4C4C4C;
    padding: 5px 7px;
}
.OrderVL>span {
    color:#006EB8
}
.OrderTT {
    font-size: 1.1rem;
    color: #D60000;
    padding: 5px 7px;
}
.YOrder {
    font-size: 1.09rem;
    font-weight: normal;
    border-bottom: 1px solid #D9D9D9;
}
.YOrder>div {
    margin-bottom: 10px
}

@media (min-width:767px){
    .AdulteCls {
        padding: 0 10px 0 20px !important;
    }
    .ChildsCls {
        padding: 0 7px 0 5px
    }
}
.badge-success {
  color: #ffffff;
  background-color: #29cc97;
}
.badge-danger {
  color: #ffffff;
  background-color: #fe5461;
}
.L404 {
    width: 70%;
    height: auto;
}

@media (max-width: 992px) {
    .L404 {
        width: 100% !important;
        height: auto;
    }
}