/*
Imported CSS
<<<<======================================================>>>>*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&amp;family=Poppins:wght@300;400;500;600;700;800;900&amp;display=swap");

/*
Default CSS
<<<<======================================================>>>>*/
:root {
  --mainColor: #2C92BF;
  --secondaryColor: #EE6A51;
  --bgColor: #F9FaFb;
  --headingColor: #3C3C3C;
  --whiteColor: #FFFFFF;
  --blackColor: #222222;
  --fontSize: 16px;
  --transition: .5s;
  --border-radius: 4px;
  --font-primary: "DM Sans", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* 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,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

/* Links
--------------------------------------------- */
a:hover,
a:active {
  outline: 0;
}

a {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: var(--mainColor);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--blackColor);
}

a:focus {
  text-decoration: none;
}

/* Buttons
--------------------------------------------- */
button {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--headingColor);
  font-weight: 600;
  font-family: var(--font-secondary)
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

p {
  font-size: 16px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.ptb-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.ptb-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.pl-55 {
  padding-left: 55px;
}

.bg-color {
  background-color: var(--bgColor);
}

.black-color {
  background-color: #121212;
}

@media (max-width: 419px) {
  .auto-container {
    max-width: 240px;
  }
}

@media (min-width: 420px) {
  .auto-container {
    max-width: 340px;
  }
}

@media (min-width: 576px) {
  .auto-container {
    max-width: 450px;
  }
}

@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 992px;
  }
  .auto-container {
    max-width: 700px;
  }
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px;
  }
  .auto-container {
    max-width: 1000px;
  }
}

.container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
  padding-right: 40px;
  padding-left: 40px;
}

.container-block-fluid {
  padding-right: 20px;
  padding-left: 20px;
}

@media (max-width: 767px) {
  .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
    padding-right: 30px;
    padding-left: 30px;
  }
  .container-block-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.container-fluid .row,
.container-block-fluid .row {
  padding: 0;
  margin: 0;
}

.container-fluid .full-col,
.container-block-fluid .full-col {
  padding: 0;
}

/*
Preloader Area CSS
<<<<======================================================>>>>*/
.preloader {
  position: fixed;
  z-index: 999999;
  background: var(--bgColor);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; 
}

.preloader .lds-ripple {
  height: 100px;
  width: 100px;
  position: relative; 
}

.preloader .lds-ripple .loader {
  border: 0 solid transparent;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
  top: calc(50vh - 75px);
  left: calc(50vw - 75px); 
}

.preloader .lds-ripple .loader:before {
  content: '';
  border: 1em solid var(--mainColor);
  border-radius: 50%;
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: loader 2s linear infinite;
          animation: loader 2s linear infinite;
  opacity: 0;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s; 
}

.preloader .lds-ripple .loader:after {
  content: '';
  border: 1em solid var(--mainColor);
  border-radius: 50%;
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: loader 2s linear infinite;
          animation: loader 2s linear infinite;
  opacity: 0; 
}

@-webkit-keyframes loader {  
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0; 
  }
  50% {
    opacity: 1; 
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; 
  } 
}

@keyframes loader {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0; 
  }
  50% {
    opacity: 1; 
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  } 
}

/*
Button CSS
<<<<======================================================>>>>*/
.default-btn {
  font-size: 16px;
  color: var(--whiteColor);
  padding: 16px 30px;
  line-height: 1.5;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  border-radius: 0px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background-color: var(--mainColor);
}

.default-btn.icon {
  padding: 16px 30px 16px 60px;
}

.default-btn.icon i {
  position: absolute;
  left: 30px;
  top: 50%;
  right: initial;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
}

.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--blackColor);
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.default-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: var(--blackColor);
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.default-btn.active {
  color: var(--whiteColor);
  background-color: var(--blackColor);
  margin-right: 10px;
}

.default-btn.active::before {
  background-color: var(--mainColor);
}

.default-btn.active::after {
  background-color: var(--mainColor);
}

.default-btn:hover {
  color: var(--whiteColor);
}

.default-btn:hover::before {
  width: 50.2%;
}

.default-btn:hover::after {
  width: 50.2%;
}

/*====================================================
LTR and RTL Button CSS
======================================================*/
.ltr-rtl-button {
  position: fixed;
  cursor: pointer;
  top: 40%;
  left: 0px;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  -webkit-transition: .9s;
  transition: .9s;
}

.ltr-rtl-button .default-btn {
  line-height: 1;
}

.ltr-rtl-button .default-btn.active.ltr {
  margin-left: 0;
  margin-right: 0;
}

html[dir="rtl"] .ltr-rtl-button {
  left: 45px;
}

@media only screen and (max-width: 767px) {
  html[dir="rtl"] .ltr-rtl-button {
    left: 0px;
  }
}

/*====================================================
Style One CSS
======================================================*/
.error-area.style-one {
  padding-top: 100px;
  padding-bottom: 100px;
}

.error-content.style-one {
  text-align: center;
}

.error-content.style-one h3 {
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 45px;
}

.error-content.style-one p {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.error-content.style-one .default-btn {
  margin-top: 30px;
}

.error-area.style-one .default-btn {
  background-color: #00BEA3;
}

.error-area.style-one .default-btn::before {
  background-color: #375A64; 
} 

.error-area.style-one .default-btn::after {
  background-color: #375A64; 
}

.ltr-rtl-button.style-one .default-btn {
  background-color: #00BEA3;
}

.ltr-rtl-button.style-one .default-btn::before {
  background-color: #375A64; 
} 

.ltr-rtl-button.style-one .default-btn::after {
  background-color: #375A64; 
}

.ltr-rtl-button.style-one .default-btn.active {
  background-color: #375A64;
}

.ltr-rtl-button.style-one .default-btn.active::before {
  background-color: #00BEA3;
}

.ltr-rtl-button.style-one .default-btn.active::after {
  background-color: #00BEA3;
}

html[dir="rtl"] .error-content.style-one {
  text-align: right;
}

html[dir="rtl"] .error-content.style-one p {
  margin-left: initial;
  margin-right: initial;
}

@media only screen and (max-width: 767px) {
  .error-area.style-one {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .error-content.style-one h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 35px;
  }
  .error-content.style-one .default-btn {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-content.style-one h3 {
    font-size: 25px;
  }
}

/*====================================================
Style Two CSS
======================================================*/
.error-area.style-two {
  padding-top: 100px;
  padding-bottom: 100px;
}

.error-content.style-two {
  text-align: center;
}

.error-content.style-two h3 {
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 45px;
}

.error-content.style-two p {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.error-content.style-two .default-btn {
  margin-top: 30px;
}

.error-area.style-two .default-btn {
  background-color: #FF4F5B;
}

.error-area.style-two .default-btn::before {
  background-color: #375A64; 
} 

.error-area.style-two .default-btn::after {
  background-color: #375A64; 
}

.ltr-rtl-button.style-two .default-btn {
  background-color: #FF4F5B;
}

.ltr-rtl-button.style-two .default-btn::before {
  background-color: #375A64; 
} 

.ltr-rtl-button.style-two .default-btn::after {
  background-color: #375A64; 
}

.ltr-rtl-button.style-two .default-btn.active {
  background-color: #375A64;
}

.ltr-rtl-button.style-two .default-btn.active::before {
  background-color: #FF4F5B;
}

.ltr-rtl-button.style-two .default-btn.active::after {
  background-color: #FF4F5B;
}

html[dir="rtl"] .error-content.style-two {
  text-align: right;
}

html[dir="rtl"] .error-content.style-two p {
  margin-left: initial;
  margin-right: initial;
}

@media only screen and (max-width: 767px) {
  .error-area.style-two {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .error-content.style-two h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 35px;
  }
  .error-content.style-two .default-btn {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-content.style-two h3 {
    font-size: 25px;
  }
}

/*====================================================
Style Three CSS
======================================================*/
.error-area.style-three {
  padding-top: 50px;
  padding-bottom: 100px;
}

.error-content.style-three {
  text-align: center;
}

.error-content.style-three h1 {
  font-size: 300px;
  color: #2154F2;
  line-height: 1;
}

.error-content.style-three h3 {
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #FF0000;
}

.error-content.style-three p {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.error-content.style-three .default-btn {
  margin-top: 30px;
}

.error-area.style-three .default-btn {
  background-color: #2154F2;
}

.error-area.style-three .default-btn::before {
  background-color: var(--blackColor); 
} 

.error-area.style-three .default-btn::after {
  background-color: var(--blackColor); 
}

.ltr-rtl-button.style-three .default-btn {
  background-color: #2154F2;
}

.ltr-rtl-button.style-three .default-btn::before {
  background-color: var(--blackColor); 
} 

.ltr-rtl-button.style-three .default-btn::after {
  background-color: var(--blackColor); 
}

.ltr-rtl-button.style-three .default-btn.active {
  background-color: var(--blackColor);
}

.ltr-rtl-button.style-three .default-btn.active::before {
  background-color: #2154F2;
}

.ltr-rtl-button.style-three .default-btn.active::after {
  background-color: #2154F2;
}

.error-content.style-three .default-btn.style-two {
  border-radius: 15px 0 15px 0;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  border: none;
}

.error-content.style-three .default-btn.style-two:before {
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
}

.error-content.style-three .default-btn.style-two:after {
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  bottom: 0;
  right: 0;
  top: initial;
}

.error-content.style-three .default-btn.style-two:hover:before,
.error-content.style-three .default-btn.style-two:hover:after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.error-content.style-three .search-form {
  margin-top: 30px;
}

.error-content.style-three input[type="search"] {
  height: 50px;
  color: #271273;
  border: 1px solid #eaedff;
  border-radius: 0;
  font-size: 15px;
  padding: 10px 20px;
}

.error-content.style-three input[type="search"]:focus {
  outline: 0;
  border: 1px solid #2154F2;
}

.error-content.style-three input[type="submit"] {
  background-color: var(--blackColor);
}

.error-content.style-three input[type="submit"]:hover {
  background-color: #2154F2;
}

html[dir="rtl"] .error-content.style-three {
  text-align: right;
}

html[dir="rtl"] .error-content.style-three p {
  margin-left: initial;
  margin-right: initial;
}

@media only screen and (max-width: 767px) {
  .error-area.style-three {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .error-content.style-three h1 {
    font-size: 100px;
  }
  .error-content.style-three h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .error-content.style-three .default-btn {
    margin-top: 15px;
  }
  .error-content.style-three .search-form {
    margin-top: 15px;
  }
  .error-content.style-three input[type="search"] {
    margin-bottom: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-content.style-three h1 {
    font-size: 200px;
  }
  .error-content.style-three h3 {
    font-size: 25px;
  }
}

/*====================================================
Style Four CSS
======================================================*/
.error-area.style-four {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #8BE2E9;
}

.error-content.style-four {
  text-align: center;
}

.error-content.style-four h3 {
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 45px;
  color: #FF0000;
}

.error-content.style-four p {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.error-content.style-four .default-btn {
  margin-top: 30px;
}

.error-area.style-four .default-btn {
  background-color: var(--mainColor);
}

.error-area.style-four .default-btn::before {
  background-color: var(--blackColor); 
} 

.error-area.style-four .default-btn::after {
  background-color: var(--blackColor); 
}

.ltr-rtl-button.style-four .default-btn {
  background-color: var(--mainColor);
}

.ltr-rtl-button.style-four .default-btn::before {
  background-color: var(--blackColor); 
} 

.ltr-rtl-button.style-four .default-btn::after {
  background-color: var(--blackColor); 
}

.ltr-rtl-button.style-four .default-btn.active {
  background-color: var(--blackColor);
}

.ltr-rtl-button.style-four .default-btn.active::before {
  background-color: var(--mainColor);
}

.ltr-rtl-button.style-four .default-btn.active::after {
  background-color: var(--mainColor);
}

.error-content.style-four .default-btn.style-three {
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  border: none;
  border-radius: 4px;
}

.error-content.style-four .default-btn.style-three:before {
  left: initial;
  right: 0;
}

.error-content.style-four .default-btn.style-three:after {
  content: none;
}

.error-content.style-four .default-btn.style-three:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}

.error-content.style-four .search-form {
  margin-top: 30px;
}

.error-content.style-four input[type="search"] {
  height: 50px;
  color: #271273;
  border: 1px solid #eaedff;
  border-radius: 0;
  font-size: 15px;
  padding: 10px 20px;
}

.error-content.style-four input[type="search"]:focus {
  outline: 0;
  border: 1px solid var(--mainColor);
}

.error-content.style-four input[type="submit"] {
  background-color: var(--blackColor);
}

.error-content.style-four input[type="submit"]:hover {
  background-color: var(--mainColor);
}

.switch-page-mode.style-four {
  display: none;
}

html[dir="rtl"] .error-content.style-four {
  text-align: right;
}

html[dir="rtl"] .error-content.style-four p {
  margin-left: initial;
  margin-right: initial;
}

@media only screen and (max-width: 767px) {
  .error-area.style-four {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .error-content.style-four h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .error-content.style-four .default-btn {
    margin-top: 15px;
  }
  .error-content.style-four .search-form {
    margin-top: 15px;
  }
  .error-content.style-four input[type="search"] {
    margin-bottom: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-content.style-four h3 {
    font-size: 25px;
  }
}

/*====================================================
Style Five CSS
======================================================*/
.error-area.style-five {
  padding-top: 100px;
  padding-bottom: 100px;
}

.error-content.style-five {
  text-align: center;
}

.error-content.style-five h3 {
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 45px;
}

.error-content.style-five p {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.error-content.style-five .default-btn {
  margin-top: 30px;
}

.error-area.style-five .default-btn {
  background-color: #0076AC;
}

.error-area.style-five .default-btn::before {
  background-color: var(--blackColor); 
} 

.error-area.style-five .default-btn::after {
  background-color: var(--blackColor); 
}

.ltr-rtl-button.style-five .default-btn {
  background-color: #0076AC;
}

.ltr-rtl-button.style-five .default-btn::before {
  background-color: var(--blackColor); 
} 

.ltr-rtl-button.style-five .default-btn::after {
  background-color: var(--blackColor); 
}

.ltr-rtl-button.style-five .default-btn.active {
  background-color: var(--blackColor);
}

.ltr-rtl-button.style-five .default-btn.active::before {
  background-color: #0076AC;
}

.ltr-rtl-button.style-five .default-btn.active::after {
  background-color: #0076AC;
}

.error-content.style-five .default-btn.style-three {
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  border: none;
  border-radius: 4px;
}

.error-content.style-five .default-btn.style-three:before {
  left: initial;
  right: 0;
}

.error-content.style-five .default-btn.style-three:after {
  content: none;
}

.error-content.style-five .default-btn.style-three:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}

.error-content.style-five .search-form {
  margin-top: 30px;
}

.error-content.style-five input[type="search"] {
  height: 50px;
  color: #271273;
  border: 1px solid #eaedff;
  border-radius: 0;
  font-size: 15px;
  padding: 10px 20px;
  font-family: sans-serif;
}

.error-content.style-five input[type="search"]:focus {
  outline: 0;
  border: 1px solid #0076AC;
}

.error-content.style-five input[type="submit"] {
  background-color: var(--blackColor);
}

.error-content.style-five input[type="submit"]:hover {
  background-color: #0076AC;
}

html[dir="rtl"] .error-content.style-five {
  text-align: right;
}

html[dir="rtl"] .error-content.style-five p {
  margin-left: initial;
  margin-right: initial;
}

@media only screen and (max-width: 767px) {
  .error-area.style-five {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .error-content.style-five h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .error-content.style-five .default-btn {
    margin-top: 15px;
  }
  .error-content.style-five .search-form {
    margin-top: 15px;
  }
  .error-content.style-five input[type="search"] {
    margin-bottom: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-content.style-five h3 {
    font-size: 25px;
  }
}

/*====================================================
Style Six CSS
======================================================*/
.error-area.style-six {
  padding-top: 50px;
  padding-bottom: 50px;
}

.error-content.style-six {
  text-align: center;
}

.error-content.style-six .default-btn {
  vertical-align: middle;
  position: relative;
  left: 90px;
}

.error-area.style-six .default-btn {
  background-color: #5AE4A8;
}

.error-area.style-six .default-btn::before {
  background-color: #1B2E35; 
} 

.error-area.style-six .default-btn::after {
  background-color: #1B2E35; 
}

.ltr-rtl-button.style-six .default-btn {
  background-color: #5AE4A8;
}

.ltr-rtl-button.style-six .default-btn::before {
  background-color: #1B2E35; 
} 

.ltr-rtl-button.style-six .default-btn::after {
  background-color: #1B2E35; 
}

.ltr-rtl-button.style-six .default-btn.active {
  background-color: #1B2E35;
}

.ltr-rtl-button.style-six .default-btn.active::before {
  background-color: #5AE4A8;
}

.ltr-rtl-button.style-six .default-btn.active::after {
  background-color: #5AE4A8;
}

html[dir="rtl"] .error-content.style-six {
  text-align: right;
}

html[dir="rtl"] .error-content.style-six .default-btn {
  left: 0px;
  right: 90px;
}

@media only screen and (max-width: 767px) {
  .error-content.style-six {
    padding: 0 40px;
  }
  .error-content.style-six .default-btn {
    left: 0px;
    top: 20px;
  }
  html[dir="rtl"] .error-content.style-six .default-btn {
    left: 0px;
    right: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-content.style-six {
    padding: 0 40px;
  }
  .error-content.style-six .default-btn {
    left: 0px;
    top: 30px;
  }
  html[dir="rtl"] .error-content.style-six .default-btn {
    left: 0px;
    right: 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .error-content.style-six {
    padding: 0 30px;
  }
  .error-content.style-six .default-btn {
    left: 0px;
    top: 30px;
  }
  html[dir="rtl"] .error-content.style-six .default-btn {
    left: 0px;
    right: 0px;
  }
}

/*====================================================
Style Seven CSS
======================================================*/
.error-area.style-seven {
  padding-top: 50px;
  padding-bottom: 50px;
}

.error-area.style-seven .content-area {
  padding-top: 70px;
}

.error-content.style-seven {
  text-align: center;
}

.error-content.style-seven h3 {
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 45px;
}

.error-content.style-seven p {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.error-content.style-seven .default-btn {
  margin-top: 30px;
}

.error-area.style-seven .default-btn {
  background-color: #FFC801;
}

.error-area.style-seven .default-btn::before {
  background-color: var(--blackColor); 
} 

.error-area.style-seven .default-btn::after {
  background-color: var(--blackColor); 
}

.ltr-rtl-button.style-seven .default-btn {
  background-color: #FFC801;
}

.ltr-rtl-button.style-seven .default-btn::before {
  background-color: var(--blackColor); 
} 

.ltr-rtl-button.style-seven .default-btn::after {
  background-color: var(--blackColor); 
}

.ltr-rtl-button.style-seven .default-btn.active {
  background-color: var(--blackColor);
}

.ltr-rtl-button.style-seven .default-btn.active::before {
  background-color: #FFC801;
}

.ltr-rtl-button.style-seven .default-btn.active::after {
  background-color: #FFC801;
}

.error-content.style-seven .default-btn.style-three {
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  border: none;
  border-radius: 15px 0 15px 0;
}

.error-content.style-seven .default-btn.style-three:before {
  left: initial;
  right: 0;
}

.error-content.style-seven .default-btn.style-three:after {
  content: none;
}

.error-content.style-seven .default-btn.style-three:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}

.error-content.style-seven .search-form {
  margin-top: 30px;
}

.error-content.style-seven input[type="search"] {
  height: 50px;
  color: #271273;
  border: 1px solid #eaedff;
  border-radius: 0;
  font-size: 15px;
  padding: 10px 20px;
  font-family: sans-serif;
}

.error-content.style-seven input[type="search"]:focus {
  outline: 0;
  border: 1px solid #FFC801;
}

.error-content.style-seven input[type="submit"] {
  background-color: var(--blackColor);
}

.error-content.style-seven input[type="submit"]:hover {
  background-color: #FFC801;
}

html[dir="rtl"] .error-content.style-seven {
  text-align: right;
}

html[dir="rtl"] .error-content.style-seven p {
  margin-left: initial;
  margin-right: initial;
}

@media only screen and (max-width: 767px) {
  .error-area.style-seven {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .error-content.style-seven h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .error-content.style-seven .default-btn {
    margin-top: 15px;
  }
  .error-content.style-seven .search-form {
    margin-top: 15px;
  }
  .error-content.style-seven input[type="search"] {
    margin-bottom: 5px;
  }
  .error-area.style-seven .content-area {
    padding-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-content.style-seven h3 {
    font-size: 25px;
  }
  .error-area.style-seven .content-area {
    padding-top: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .error-content.style-seven img {
    padding: 60px 0 0 60px;
  }
  html[dir="rtl"] .error-content.style-seven .content-area {
    padding: 60px 0 0 60px;
  }
}

/*====================================================
Style Eight CSS
======================================================*/
.error-area.style-eight {
  padding-top: 50px;
  padding-bottom: 50px;
}

.error-area.style-eight .content-area {
  padding-top: 70px;
}

.error-content.style-eight {
  text-align: center;
}

.error-content.style-eight h3 {
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 45px;
}

.error-content.style-eight p {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.error-content.style-eight .default-btn {
  margin-top: 30px;
  border-radius: 15px 0 15px 0;
}

.error-area.style-eight .default-btn {
  background-color: #D268CC;
}

.error-area.style-eight .default-btn::before {
  background-color: #385A64; 
} 

.error-area.style-eight .default-btn::after {
  background-color: #385A64; 
}

.ltr-rtl-button.style-eight .default-btn {
  background-color: #D268CC;
}

.ltr-rtl-button.style-eight .default-btn::before {
  background-color: #385A64; 
} 

.ltr-rtl-button.style-eight .default-btn::after {
  background-color: #385A64; 
}

.ltr-rtl-button.style-eight .default-btn.active {
  background-color: #385A64;
}

.ltr-rtl-button.style-eight .default-btn.active::before {
  background-color: #D268CC;
}

.ltr-rtl-button.style-eight .default-btn.active::after {
  background-color: #D268CC;
}

.error-content.style-eight .default-btn.style-three {
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  border: none;
  border-radius: 15px 0 15px 0;
}

.error-content.style-eight .default-btn.style-three:before {
  left: initial;
  right: 0;
}

.error-content.style-eight .default-btn.style-three:after {
  content: none;
}

.error-content.style-eight .default-btn.style-three:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}

.error-content.style-eight .search-form {
  margin-top: 30px;
}

.error-content.style-eight input[type="search"] {
  height: 50px;
  color: #271273;
  border: 1px solid #eaedff;
  border-radius: 0;
  font-size: 15px;
  padding: 10px 20px;
  font-family: sans-serif;
}

.error-content.style-eight input[type="search"]:focus {
  outline: 0;
  border: 1px solid #D268CC;
}

.error-content.style-eight input[type="submit"] {
  background-color: #385A64;
}

.error-content.style-eight input[type="submit"]:hover {
  background-color: #D268CC;
}

html[dir="rtl"] .error-content.style-eight {
  text-align: right;
}

html[dir="rtl"] .error-content.style-eight p {
  margin-left: initial;
  margin-right: initial;
}

@media only screen and (max-width: 767px) {
  .error-area.style-eight {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .error-content.style-eight h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .error-content.style-eight .default-btn {
    margin-top: 15px;
  }
  .error-content.style-eight .search-form {
    margin-top: 15px;
  }
  .error-content.style-eight input[type="search"] {
    margin-bottom: 5px;
  }
  .error-area.style-eight .content-area {
    padding-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-content.style-eight h3 {
    font-size: 25px;
  }
  .error-area.style-eight .content-area {
    padding-top: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html[dir="rtl"] .error-content.style-eight img {
    padding: 60px 0 0 90px;
  }
  .error-content.style-eight .content-area {
    padding: 60px 0 0 90px;
  }
}
