
:root {
  --primary-color-1: #EE4036;
}

body {
  font-family: "Inter", sans-serif;
  color: #686C73;
  font-size: 16px;
  line-height: 26px;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
}

a {
  outline: medium none;
  color: inherit;
  text-decoration: none;
}

a,
i {
  text-decoration: none;
  color: inherit;
}

a:focus {
  text-decoration: none;
  outline: none;
}

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

.section-padding {
  padding: 120px 0px;
}
/*==========================================================================
Form
========================================================================== */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid #E6E7E8 ;
  border-color: transparent  ;
  border-radius: 0px ;
  background: var(--primary-color-1) ;
  color: #fff ;
  line-height: 55px ;
  padding: 0px 15px ;
  word-break: normal ;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: transparent;
}

input[type="text"],
input[type="search"]
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
  color: #0A0A0B ;
  border: 1px solid ;
  border-radius: 0px ;
  width: 100%;
  height: 60px ;
  border: 1px solid #E6E7E8 ;
  background: #fff ;
  padding-left: 15px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus,
select:hover,
.nice-select:hover, 
.nice-select:focus {
  color: #0A0A0B ;
  outline: none ;
  -webkit-box-shadow: none ;
          box-shadow: none ;
  border-color: var(--primary-color-1) ;
}

select,
.nice-select {
  border: 1px solid #E6E7E8;
}

textarea {
  width: 100%;
  height: 150px;
  padding-top: 15px;
}

button,
button:hover,
button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  outline: none;
}

/*==========================================================================
Hedging CSS
========================================================================== */
h1 {
  font-size: 90px;
  line-height: 70px;
  padding: 0;
  margin: 0;
  color: #0A0A0B;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  text-transform: capitalize;
}

h2 {
  font-size: 50px;
  line-height: 60px;
  padding: 0;
  margin: 0;
  color: #0A0A0B;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  text-transform: capitalize;
}

h3 {
  font-size: 30px;
  line-height: 40px;
  padding: 0;
  margin: 0;
  color: #0A0A0B;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  text-transform: capitalize;
}

h4 {
  font-size: 24px;
  line-height: 34px;
  padding: 0;
  margin: 0;
  color: #0A0A0B;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  text-transform: capitalize;
}

h5 {
  font-size: 18px;
  line-height: 28px;
  padding: 0;
  margin: 0;
  color: #0A0A0B;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  text-transform: capitalize;
}

h6 {
  font-size: 14px;
  line-height: 22px;
  padding: 0;
  margin: 0;
  color: #0A0A0B;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  text-transform: capitalize;
}

p {
  font-size: 16px;
  line-height: 30px;
  padding: 0;
  margin: 0;
  color: #686C73;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
}

.t-left {
  text-align: left;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

@media (max-width: 490px) {
  h2 {
    font-size: 29px;
    line-height: 39px;
  }
}

/*==========================================================================
Section Top
========================================================================== */
.section-top {
  display: inline-block;
  position: relative;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: var(--primary-color-1);
  text-transform: capitalize;
  padding-right: 60px;
  margin-bottom: 8px;
}

.section-top::before {
  position: absolute;
  content: '';
  width: 50px;
  height: 2px;
  right: 0;
  bottom: 12px;
  background: var(--primary-color-1);
}

/*==========================================================================
Theme Btn CSS
========================================================================== */
.theme-banner-btn,
.theme-btn {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  height: 55px;
  line-height: 55px;
  padding: 0 25px;
  font-weight: 700;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: var(--primary-color-1);
  text-transform: uppercase;
  z-index: 3;
}

.theme-banner-btn i::before,
.theme-btn i::before {
  font-size: 22px;
  margin-left: 10px;
  top: 5px;
  position: relative;
}

.theme-banner-btn::before,
.theme-btn::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  margin: 0 auto;
  z-index: -1;
  background-color: #0A0A0B;
  width: 10%;
  opacity: 0;
}

.theme-btn:hover,
.theme-btn:focus {
  color: #fff;
}

.theme-btn:hover::before {
  background: #0A0A0B;
}

.theme-banner-btn:hover {
  color: #0A0A0B;
}

.theme-banner-btn:hover::before {
  background: #fff;
}

.theme-banner-btn:hover::before,
.theme-btn:hover::before {
  width: 100%;
  opacity: 1;
}

.simple-btn {
  display: inline-block;
  color: #0A0A0B;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
  position: relative;
}

.simple-btn::after {
  position: absolute;
  content: '';
  width: 50px;
  height: 2px;
  background: var(--primary-color-1);
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.simple-btn:hover {
  color: var(--primary-color-1);
}

.simple-btn:hover::after {
  width: 100%;
}

.simple-btn:focus {
  color: #0A0A0B;
}

/*==========================================================================
Preloader CSS
========================================================================== */
.spinner {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.theme-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0A0A0B;
  z-index: 9999999999;
}

.theme-loader .spinner {
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
}

/*==========================================================================
Scroll Top CSS
========================================================================== */
.scroll-top {
  background: var(--primary-color-1);
  bottom: 25px;
  color: #fff;
  font-size: 20px;
  height: 50px;
  line-height: 55px;
  position: fixed;
  right: 25px;
  text-align: center;
  width: 50px;
  z-index: 9;
  cursor: pointer;
  display: none;
  border-radius: 50%;
}

/*==========================================================================
Video Animation CSS
========================================================================== */
@-webkit-keyframes animation {
  100% {
    left: 125%;
  }
}
@keyframes animation {
  100% {
    left: 125%;
  }
}

@-webkit-keyframes rotateY {
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes rotateY {
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

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

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

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

/*==========================================================================
Animate 
========================================================================== */
.up-down-animate {
  -webkit-animation-name: up-down;
  animation-name: up-down;
  -moz-animation-name: up-down;
  -ms-animation-name: up-down;
  -o-animation-name: up-down;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -moz-animation-duration: 3s;
  -ms-animation-duration: 3s;
  -o-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
  }
  50% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  100% {
    transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
  }
  50% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  100% {
    transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media (min-width: 1200px) {
  .custom-container {
    max-width: 1800px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .lg-t-center {
    text-align: center;
  }
}

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

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

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

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

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

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

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

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

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

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

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

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

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

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

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

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

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

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

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

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

.ml-15 {
  margin-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

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

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

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

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

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

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

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

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

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

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

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

.ml-25 {
  margin-left: 25px;
}

.mr-25 {
  margin-right: 25px;
}

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

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

.pl-25 {
  padding-left: 25px;
}

.pr-25 {
  padding-right: 25px;
}

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

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

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

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

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

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

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

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

.ml-35 {
  margin-left: 35px;
}

.mr-35 {
  margin-right: 35px;
}

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

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

.pl-35 {
  padding-left: 35px;
}

.pr-35 {
  padding-right: 35px;
}

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

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

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

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

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

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

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

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

.ml-45 {
  margin-left: 45px;
}

.mr-45 {
  margin-right: 45px;
}

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

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

.pl-45 {
  padding-left: 45px;
}

.pr-45 {
  padding-right: 45px;
}

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

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

.ml-50 {
  margin-left: 50px;
}

.mr-50 {
  margin-right: 50px;
}

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

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

.pl-50 {
  padding-left: 50px;
}

.pr-50 {
  padding-right: 50px;
}

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

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

.ml-55 {
  margin-left: 55px;
}

.mr-55 {
  margin-right: 55px;
}

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

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

.pl-55 {
  padding-left: 55px;
}

.pr-55 {
  padding-right: 55px;
}

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

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

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

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

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

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

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

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

.ml-65 {
  margin-left: 65px;
}

.mr-65 {
  margin-right: 65px;
}

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

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

.pl-65 {
  padding-left: 65px;
}

.pr-65 {
  padding-right: 65px;
}

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

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

.ml-70 {
  margin-left: 70px;
}

.mr-70 {
  margin-right: 70px;
}

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

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

.pl-70 {
  padding-left: 70px;
}

.pr-70 {
  padding-right: 70px;
}

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

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

.ml-75 {
  margin-left: 75px;
}

.mr-75 {
  margin-right: 75px;
}

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

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

.pl-75 {
  padding-left: 75px;
}

.pr-75 {
  padding-right: 75px;
}

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

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

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

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

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

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

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

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

.ml-85 {
  margin-left: 85px;
}

.mr-85 {
  margin-right: 85px;
}

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

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

.pl-85 {
  padding-left: 85px;
}

.pr-85 {
  padding-right: 85px;
}

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

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

.ml-90 {
  margin-left: 90px;
}

.mr-90 {
  margin-right: 90px;
}

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

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

.pl-90 {
  padding-left: 90px;
}

.pr-90 {
  padding-right: 90px;
}

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

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

.ml-95 {
  margin-left: 95px;
}

.mr-95 {
  margin-right: 95px;
}

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

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

.pl-95 {
  padding-left: 95px;
}

.pr-95 {
  padding-right: 95px;
}

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

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

.ml-100 {
  margin-left: 100px;
}

.mr-100 {
  margin-right: 100px;
}

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

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

.pl-100 {
  padding-left: 100px;
}

.pr-100 {
  padding-right: 100px;
}

@media (max-width: 1199px) {
  .xl-mb-0 {
    margin-bottom: 0px;
  }
  .xl-mb-5 {
    margin-bottom: 5px;
  }
  .xl-mb-10 {
    margin-bottom: 10px;
  }
  .xl-mb-15 {
    margin-bottom: 15px;
  }
  .xl-mb-20 {
    margin-bottom: 20px;
  }
  .xl-mb-25 {
    margin-bottom: 25px;
  }
  .xl-mb-30 {
    margin-bottom: 30px;
  }
  .xl-mb-35 {
    margin-bottom: 35px;
  }
  .xl-mb-40 {
    margin-bottom: 40px;
  }
  .xl-mb-45 {
    margin-bottom: 45px;
  }
  .xl-mb-50 {
    margin-bottom: 50px;
  }
  .xl-mb-55 {
    margin-bottom: 55px;
  }
  .xl-mb-60 {
    margin-bottom: 60px;
  }
  .xl-mb-65 {
    margin-bottom: 65px;
  }
  .xl-mb-70 {
    margin-bottom: 70px;
  }
}

@media (max-width: 991px) {
  .lg-mb-0 {
    margin-bottom: 0px;
  }
  .lg-mt-0 {
    margin-top: 0px;
  }
  .lg-ml-0 {
    margin-left: 0px;
  }
  .lg-pt-0 {
    padding-top: 0px;
  }
  .lg-pb-0 {
    padding-bottom: 0px;
  }
  .lg-pl-0 {
    padding-left: 0px;
  }
  .lg-pr-0 {
    padding-right: 0px;
  }
  .lg-mb-5 {
    margin-bottom: 5px;
  }
  .lg-mt-5 {
    margin-top: 5px;
  }
  .lg-ml-5 {
    margin-left: 5px;
  }
  .lg-pt-5 {
    padding-top: 5px;
  }
  .lg-pb-5 {
    padding-bottom: 5px;
  }
  .lg-pl-5 {
    padding-left: 5px;
  }
  .lg-pr-5 {
    padding-right: 5px;
  }
  .lg-mb-10 {
    margin-bottom: 10px;
  }
  .lg-mt-10 {
    margin-top: 10px;
  }
  .lg-ml-10 {
    margin-left: 10px;
  }
  .lg-pt-10 {
    padding-top: 10px;
  }
  .lg-pb-10 {
    padding-bottom: 10px;
  }
  .lg-pl-10 {
    padding-left: 10px;
  }
  .lg-pr-10 {
    padding-right: 10px;
  }
  .lg-mb-15 {
    margin-bottom: 15px;
  }
  .lg-mt-15 {
    margin-top: 15px;
  }
  .lg-ml-15 {
    margin-left: 15px;
  }
  .lg-pt-15 {
    padding-top: 15px;
  }
  .lg-pb-15 {
    padding-bottom: 15px;
  }
  .lg-pl-15 {
    padding-left: 15px;
  }
  .lg-pr-15 {
    padding-right: 15px;
  }
  .lg-mb-20 {
    margin-bottom: 20px;
  }
  .lg-mt-20 {
    margin-top: 20px;
  }
  .lg-ml-20 {
    margin-left: 20px;
  }
  .lg-pt-20 {
    padding-top: 20px;
  }
  .lg-pb-20 {
    padding-bottom: 20px;
  }
  .lg-pl-20 {
    padding-left: 20px;
  }
  .lg-pr-20 {
    padding-right: 20px;
  }
  .lg-mb-25 {
    margin-bottom: 25px;
  }
  .lg-mt-25 {
    margin-top: 25px;
  }
  .lg-ml-25 {
    margin-left: 25px;
  }
  .lg-pt-25 {
    padding-top: 25px;
  }
  .lg-pb-25 {
    padding-bottom: 25px;
  }
  .lg-pl-25 {
    padding-left: 25px;
  }
  .lg-pr-25 {
    padding-right: 25px;
  }
  .lg-mb-30 {
    margin-bottom: 30px;
  }
  .lg-mt-30 {
    margin-top: 30px;
  }
  .lg-ml-30 {
    margin-left: 30px;
  }
  .lg-pt-30 {
    padding-top: 30px;
  }
  .lg-pb-30 {
    padding-bottom: 30px;
  }
  .lg-pl-30 {
    padding-left: 30px;
  }
  .lg-pr-30 {
    padding-right: 30px;
  }
  .lg-mb-35 {
    margin-bottom: 35px;
  }
  .lg-mt-35 {
    margin-top: 35px;
  }
  .lg-ml-35 {
    margin-left: 35px;
  }
  .lg-pt-35 {
    padding-top: 35px;
  }
  .lg-pb-35 {
    padding-bottom: 35px;
  }
  .lg-pl-35 {
    padding-left: 35px;
  }
  .lg-pr-35 {
    padding-right: 35px;
  }
  .lg-mb-40 {
    margin-bottom: 40px;
  }
  .lg-mt-40 {
    margin-top: 40px;
  }
  .lg-ml-40 {
    margin-left: 40px;
  }
  .lg-pt-40 {
    padding-top: 40px;
  }
  .lg-pb-40 {
    padding-bottom: 40px;
  }
  .lg-pl-40 {
    padding-left: 40px;
  }
  .lg-pr-40 {
    padding-right: 40px;
  }
  .lg-mb-45 {
    margin-bottom: 45px;
  }
  .lg-mt-45 {
    margin-top: 45px;
  }
  .lg-ml-45 {
    margin-left: 45px;
  }
  .lg-pt-45 {
    padding-top: 45px;
  }
  .lg-pb-45 {
    padding-bottom: 45px;
  }
  .lg-pl-45 {
    padding-left: 45px;
  }
  .lg-pr-45 {
    padding-right: 45px;
  }
  .lg-mb-50 {
    margin-bottom: 50px;
  }
  .lg-mt-50 {
    margin-top: 50px;
  }
  .lg-ml-50 {
    margin-left: 50px;
  }
  .lg-pt-50 {
    padding-top: 50px;
  }
  .lg-pb-50 {
    padding-bottom: 50px;
  }
  .lg-pl-50 {
    padding-left: 50px;
  }
  .lg-pr-50 {
    padding-right: 50px;
  }
  .lg-mb-55 {
    margin-bottom: 55px;
  }
  .lg-mt-55 {
    margin-top: 55px;
  }
  .lg-ml-55 {
    margin-left: 55px;
  }
  .lg-pt-55 {
    padding-top: 55px;
  }
  .lg-pb-55 {
    padding-bottom: 55px;
  }
  .lg-pl-55 {
    padding-left: 55px;
  }
  .lg-pr-55 {
    padding-right: 55px;
  }
  .lg-mb-60 {
    margin-bottom: 60px;
  }
  .lg-mt-60 {
    margin-top: 60px;
  }
  .lg-ml-60 {
    margin-left: 60px;
  }
  .lg-pt-60 {
    padding-top: 60px;
  }
  .lg-pb-60 {
    padding-bottom: 60px;
  }
  .lg-pl-60 {
    padding-left: 60px;
  }
  .lg-pr-60 {
    padding-right: 60px;
  }
  .lg-mb-65 {
    margin-bottom: 65px;
  }
  .lg-mt-65 {
    margin-top: 65px;
  }
  .lg-ml-65 {
    margin-left: 65px;
  }
  .lg-pt-65 {
    padding-top: 65px;
  }
  .lg-pb-65 {
    padding-bottom: 65px;
  }
  .lg-pl-65 {
    padding-left: 65px;
  }
  .lg-pr-65 {
    padding-right: 65px;
  }
  .lg-mb-70 {
    margin-bottom: 70px;
  }
  .lg-mt-70 {
    margin-top: 70px;
  }
  .lg-ml-70 {
    margin-left: 70px;
  }
  .lg-pt-70 {
    padding-top: 70px;
  }
  .lg-pb-70 {
    padding-bottom: 70px;
  }
  .lg-pl-70 {
    padding-left: 70px;
  }
  .lg-pr-70 {
    padding-right: 70px;
  }
}

@media (max-width: 767px) {
  .md-mb-0 {
    margin-bottom: 0px;
  }
  .md-pt-0 {
    padding-top: 0px;
  }
  .md-pb-0 {
    padding-bottom: 0px;
  }
  .md-pl-0 {
    padding-left: 0px;
  }
  .md-pr-0 {
    padding-right: 0px;
  }
  .md-mb-5 {
    margin-bottom: 5px;
  }
  .md-pt-5 {
    padding-top: 5px;
  }
  .md-pb-5 {
    padding-bottom: 5px;
  }
  .md-pl-5 {
    padding-left: 5px;
  }
  .md-pr-5 {
    padding-right: 5px;
  }
  .md-mb-10 {
    margin-bottom: 10px;
  }
  .md-pt-10 {
    padding-top: 10px;
  }
  .md-pb-10 {
    padding-bottom: 10px;
  }
  .md-pl-10 {
    padding-left: 10px;
  }
  .md-pr-10 {
    padding-right: 10px;
  }
  .md-mb-15 {
    margin-bottom: 15px;
  }
  .md-pt-15 {
    padding-top: 15px;
  }
  .md-pb-15 {
    padding-bottom: 15px;
  }
  .md-pl-15 {
    padding-left: 15px;
  }
  .md-pr-15 {
    padding-right: 15px;
  }
  .md-mb-20 {
    margin-bottom: 20px;
  }
  .md-pt-20 {
    padding-top: 20px;
  }
  .md-pb-20 {
    padding-bottom: 20px;
  }
  .md-pl-20 {
    padding-left: 20px;
  }
  .md-pr-20 {
    padding-right: 20px;
  }
  .md-mb-25 {
    margin-bottom: 25px;
  }
  .md-pt-25 {
    padding-top: 25px;
  }
  .md-pb-25 {
    padding-bottom: 25px;
  }
  .md-pl-25 {
    padding-left: 25px;
  }
  .md-pr-25 {
    padding-right: 25px;
  }
  .md-mb-30 {
    margin-bottom: 30px;
  }
  .md-pt-30 {
    padding-top: 30px;
  }
  .md-pb-30 {
    padding-bottom: 30px;
  }
  .md-pl-30 {
    padding-left: 30px;
  }
  .md-pr-30 {
    padding-right: 30px;
  }
  .md-mb-35 {
    margin-bottom: 35px;
  }
  .md-pt-35 {
    padding-top: 35px;
  }
  .md-pb-35 {
    padding-bottom: 35px;
  }
  .md-pl-35 {
    padding-left: 35px;
  }
  .md-pr-35 {
    padding-right: 35px;
  }
  .md-mb-40 {
    margin-bottom: 40px;
  }
  .md-pt-40 {
    padding-top: 40px;
  }
  .md-pb-40 {
    padding-bottom: 40px;
  }
  .md-pl-40 {
    padding-left: 40px;
  }
  .md-pr-40 {
    padding-right: 40px;
  }
  .md-mb-45 {
    margin-bottom: 45px;
  }
  .md-pt-45 {
    padding-top: 45px;
  }
  .md-pb-45 {
    padding-bottom: 45px;
  }
  .md-pl-45 {
    padding-left: 45px;
  }
  .md-pr-45 {
    padding-right: 45px;
  }
  .md-t-left {
    text-align: left;
  }
  .md-t-center {
    text-align: center;
  }
  .md-t-right {
    text-align: right;
  }
}

@media (max-width: 575px) {
  .sm-mb-0 {
    margin-bottom: 0px;
  }
  .sm-mt-0 {
    margin-top: 0px;
  }
  .sm-pt-0 {
    padding-top: 0px;
  }
  .sm-pb-0 {
    padding-bottom: 0px;
  }
  .sm-pl-0 {
    padding-left: 0px;
  }
  .sm-pr-0 {
    padding-right: 0px;
  }
  .sm-mb-5 {
    margin-bottom: 5px;
  }
  .sm-mt-5 {
    margin-top: 5px;
  }
  .sm-pt-5 {
    padding-top: 5px;
  }
  .sm-pb-5 {
    padding-bottom: 5px;
  }
  .sm-pl-5 {
    padding-left: 5px;
  }
  .sm-pr-5 {
    padding-right: 5px;
  }
  .sm-mb-10 {
    margin-bottom: 10px;
  }
  .sm-mt-10 {
    margin-top: 10px;
  }
  .sm-pt-10 {
    padding-top: 10px;
  }
  .sm-pb-10 {
    padding-bottom: 10px;
  }
  .sm-pl-10 {
    padding-left: 10px;
  }
  .sm-pr-10 {
    padding-right: 10px;
  }
  .sm-mb-15 {
    margin-bottom: 15px;
  }
  .sm-mt-15 {
    margin-top: 15px;
  }
  .sm-pt-15 {
    padding-top: 15px;
  }
  .sm-pb-15 {
    padding-bottom: 15px;
  }
  .sm-pl-15 {
    padding-left: 15px;
  }
  .sm-pr-15 {
    padding-right: 15px;
  }
  .sm-mb-20 {
    margin-bottom: 20px;
  }
  .sm-mt-20 {
    margin-top: 20px;
  }
  .sm-pt-20 {
    padding-top: 20px;
  }
  .sm-pb-20 {
    padding-bottom: 20px;
  }
  .sm-pl-20 {
    padding-left: 20px;
  }
  .sm-pr-20 {
    padding-right: 20px;
  }
  .sm-mb-25 {
    margin-bottom: 25px;
  }
  .sm-mt-25 {
    margin-top: 25px;
  }
  .sm-pt-25 {
    padding-top: 25px;
  }
  .sm-pb-25 {
    padding-bottom: 25px;
  }
  .sm-pl-25 {
    padding-left: 25px;
  }
  .sm-pr-25 {
    padding-right: 25px;
  }
  .sm-mb-30 {
    margin-bottom: 30px;
  }
  .sm-mt-30 {
    margin-top: 30px;
  }
  .sm-pt-30 {
    padding-top: 30px;
  }
  .sm-pb-30 {
    padding-bottom: 30px;
  }
  .sm-pl-30 {
    padding-left: 30px;
  }
  .sm-pr-30 {
    padding-right: 30px;
  }
  .sm-mb-35 {
    margin-bottom: 35px;
  }
  .sm-mt-35 {
    margin-top: 35px;
  }
  .sm-pt-35 {
    padding-top: 35px;
  }
  .sm-pb-35 {
    padding-bottom: 35px;
  }
  .sm-pl-35 {
    padding-left: 35px;
  }
  .sm-pr-35 {
    padding-right: 35px;
  }
  .sm-mb-40 {
    margin-bottom: 40px;
  }
  .sm-mt-40 {
    margin-top: 40px;
  }
  .sm-pt-40 {
    padding-top: 40px;
  }
  .sm-pb-40 {
    padding-bottom: 40px;
  }
  .sm-pl-40 {
    padding-left: 40px;
  }
  .sm-pr-40 {
    padding-right: 40px;
  }
  .sm-mb-45 {
    margin-bottom: 45px;
  }
  .sm-mt-45 {
    margin-top: 45px;
  }
  .sm-pt-45 {
    padding-top: 45px;
  }
  .sm-pb-45 {
    padding-bottom: 45px;
  }
  .sm-pl-45 {
    padding-left: 45px;
  }
  .sm-pr-45 {
    padding-right: 45px;
  }
}

/*==========================================================================
Header Menu
========================================================================== */
.header__area-sticky-menu {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
  -webkit-animation: header_sticky 1.1s;
          animation: header_sticky 1.1s;
  background: #fff;
  display: block;
}

@-webkit-keyframes header_sticky {
  0% {
    top: -250px;
  }
  100% {
    top: 0;
  }
}

@keyframes header_sticky {
  0% {
    top: -250px;
  }
  100% {
    top: 0;
  }
}

.header__area-logo {
  max-width: 15%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15%;
          flex: 0 0 15%;
  padding-right: 15px;
  padding-left: 15px;
}

.header__area-logo a {
  display: inline-block;
}

.header__area-logo a img {
  max-width: 160px;
  z-index: 999;
  position: relative;
}

.header__area-center {
  max-width: 45%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.header__area-main-menu ul li {
  display: inline-block;
  position: relative;
}

.header__area-main-menu ul li:hover > a {
  color: var(--primary-color-1);
}

.header__area-main-menu ul li:hover > .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.header__area-main-menu ul li .sub-menu {
  position: absolute;
  background: #fff;
  min-width: 240px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 120%;
  opacity: 0;
  visibility: hidden;
  border-top: 2px solid var(--primary-color-1);
  z-index: 99;
  -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.header__area-main-menu ul li .sub-menu li {
  display: block;
  margin: 0;
  border-bottom: 1px solid #CDCED0;
}

.header__area-main-menu ul li .sub-menu li a {
  color: #0A0A0B;
  padding: 10px 20px;
  font-size: 16px;
  text-transform: capitalize;
}

.header__area-main-menu ul li .sub-menu li .sub-menu {
  left: 100%;
}

.header__area-main-menu ul li .sub-menu li:hover > a {
  color: var(--primary-color-1);
  padding-left: 30px;
}

.header__area-main-menu ul li .sub-menu li:last-child {
  border: none;
}

.header__area-main-menu ul li ul .sub-menu li .sub-menu {
  color: #0A0A0B;
  cursor: pointer;
}
.header__area-main-menu ul li .children.menu-last li .children.menu-last ,
.header__area-main-menu ul li .sub-menu.menu-last li .sub-menu.menu-last {
  left: auto;
  right: 100%;
}
.header__area-main-menu ul li .children.menu-last,
.header__area-main-menu ul li .sub-menu.menu-last {
  left: auto;
  right: 0;
}
.header__area-main-menu ul li .sub-menu.menu-last li .sub-menu.menu-last {
  top: 25px;
  transition: all 0.3s ease-out 0s;
}

.header__area-main-menu ul li .sub-menu.menu-last li:hover .sub-menu.menu-last {
  top: -2px;
}
.header__area-main-menu ul li a {
  color: #0A0A0B;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  padding: 40px 20px;
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header__area-main-menu-icon > a::before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  width: 2px;
  height: 8px;
  background-color: #0A0A0B;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header__area-main-menu-icon > a::after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 7px;
  width: 8px;
  height: 2px;
  background-color: #0A0A0B;
}

.header__area-main-menu-icon:hover > a::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}

.header__area .responsive-menu {
  display: none;
  -webkit-transition: all 0s ease-out 0s;
  transition: all 0s ease-out 0s;
}

@media (max-width: 991px) {
  .header__area-main-menu-icon > a::before {
    display: none;
  }
  .header__area-main-menu-icon > a::after {
    display: none;
  }
}

/*==========================================================================
Box Header Menu
========================================================================== */
.box__header-logo a {
  display: inline-block;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

.box__header-logo a img {
  max-width: 160px;
  z-index: 999;
  position: relative;
}

.box__header .header__area-main-menu ul li:last-child a {
  padding-right: 0;
}

@media (max-width: 991px) {
  .box__header {
    padding: 15px 0;
  }
  .box__header-logo a img {
    max-width: 140px;
  }
}

/*==========================================================================
Banner 
========================================================================== */
.banner__area {
  position: relative;
}

.banner__area-content {
  padding: 220px 0px;
  max-width: 700px;
}

.banner__area-content h1 {
  font-size: 100px;
  line-height: 110px;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 400;
}

.banner__area-content p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
  max-width: 450px;
  color: #E6E7E8;
}

.banner__area-left {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 50%;
  left: 0;
  bottom: 0;
  top: 50px;
}

.banner__area-right {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  height: 100%;
  width: 40%;
  right: 0;
  top: 0;
  bottom: 0;
}

@media (max-width: 1199px) {
  .banner__area-right {
    display: none;
  }
}

@media (max-width: 767px) {
  .banner__area-content {
    padding: 200px 0px;
  }
  .banner__area-content h1 {
    font-size: 80px;
    line-height: 90px;
  }
}

@media (max-width: 575px) {
  .banner__area-content {
    padding: 120px 0px;
  }
  .banner__area-content h1 {
    font-size: 58px;
    line-height: 68px;
  }
}

@media (max-width: 360px) {
  .banner__area-content h1 {
    font-size: 48px;
    line-height: 58px;
  }
}

/*==========================================================================
About
========================================================================== */
.about__area-left {
  max-width: 500px;
}

.about__area-right {
  position: relative;
}

.about__area-right-content {
  background: var(--primary-color-1);
  padding: 20px 40px;
  padding-bottom: 35px;
  text-align: center;
  display: inline-block;
  position: absolute;
  bottom: -40px;
  left: 0;
}

.about__area-right-content b {
  color: #fff;
  font-size: 80px;
  line-height: 90px;
  font-family: "DM Serif Display", serif;
}

.about__area-right-content p {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.about__area-right-image img {
  max-width: 85% !important;
}

@media (max-width: 991px) {
  .about__area-right {
    margin-bottom: 41px;
  }
}

@media (max-width: 540px) {
  .about__area-right {
    margin-bottom: 41px;
  }
  .about__area-right-content {
    background: var(--primary-color-1);
    padding: 15px 30px;
    padding-bottom: 25px;
    text-align: center;
    display: inline-block;
    position: absolute;
    bottom: -40px;
    left: 0;
  }
  .about__area-right-content b {
    font-size: 40px;
    line-height: 55px;
  }
  .about__area-right-content p {
    font-size: 16px;
    line-height: 26px;
  }
  .about__area-right-image img {
    max-width: 90%;
  }
}

/*==========================================================================
Blog
========================================================================== */
.blog__area-item-image {
  position: relative;
  overflow: hidden;
}

.blog__area-item-image::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 20%;
  height: 100%;
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  background: rgba(255, 255, 255, 0.246);
}

.blog__area-item-image img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.blog__area-item-image-date {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 1;
  background: var(--primary-color-1);
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
}

.blog__area-item-image-date i::before {
  font-size: 14px;
  margin-right: 5px;
}

.blog__area-item-image-date span a {
  color: #fff;
}

.blog__area-item:hover .blog__area-item-image::before {
  -webkit-animation: animation 0.95s;
          animation: animation 0.95s;
}

.blog__area-item:hover .blog__area-item-image img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blog__area-item-content {
  background: #fff;
  padding: 30px;
  padding-bottom: 25px;
  -webkit-box-shadow: 0 30px 50px rgba(0, 0, 0, 0.08);
          box-shadow: 0 30px 50px rgba(0, 0, 0, 0.08);
}

.blog__area-item-content-meta {
  padding-bottom: 25px;
  margin-bottom: 20px;
  border-bottom: 1px solid #CDCED0;
}

.blog__area-item-content-meta ul li:last-child {
  margin: 0;
}

.blog__area-item-content-meta ul li {
  display: inline-block;
  margin-right: 20px;
}

.blog__area-item-content-meta ul li i::before {
  color: var(--primary-color-1);
  margin-right: 10px;
  font-size: 18px;
}

.blog__area-item-content-meta ul li a {
  color: #686C73;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.blog__area-item-content-meta ul li a:hover {
  color: var(--primary-color-1);
}

.blog__area-item-content-btn a {
  display: inline-block;
  color: #0A0A0B;
  font-size: 16px;
  line-height: 26px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
  position: relative;
}

.blog__area-item-content-btn a::after {
  position: absolute;
  content: '';
  width: 0;
  height: 2px;
  background: var(--primary-color-1);
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog__area-item-content-btn a i::before {
  position: relative;
  top: 4px;
  left: 5px;
}

.blog__area-item-content-btn a:hover {
  color: var(--primary-color-1);
}

.blog__area-item-content-btn a:hover::after {
  width: 90px;
}

.blog__area-item-content h3 a {
  color: #0A0A0B;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog__area-item-content h3 a:hover {
  color: var(--primary-color-1);
}

/*==========================================================================
Blog Details
========================================================================== */
.blog__details-left-content-meta {
  padding: 25px 0;
  border-bottom: 1px solid #E6E7E8;
}

.blog__details-left-content-meta ul li {
  display: inline-block;
  margin-right: 20px;
}

.blog__details-left-content-meta ul li i::before {
  color: var(--primary-color-1);
  margin-right: 10px;
}
.blog__details-left-content-meta li > span {
  color: #686C73;
  font-weight: 500;
}
.blog__details-left-content-meta ul li a {
  color: #686C73;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 500;
}

.blog__details-left-content-meta ul li a:hover {
  color: var(--primary-color-1);
}

.blog__details-left-content-meta ul li:last-child {
  margin: 0;
}

.blog__details-left-content-box {
  background: #F5F5F5;
  padding: 30px 40px;
}

.blog__details-left-content-box h6 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  font-style: italic;
  font-family: "Inter", sans-serif;
}

.blog__details-left-content-box span {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  display: inline-block;
  text-transform: capitalize;
  padding-left: 40px;
  position: relative;
}

.blog__details-left-content-box span::before {
  position: absolute;
  content: '';
  width: 30px;
  height: 3px;
  left: 0;
  top: 10px;
  background: var(--primary-color-1);
}

.blog__details-left-related {
  border-bottom: 1px solid #E6E7E8;
  padding-bottom: 30px;
}

.blog__details-left-related-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog__details-left-related-tag p {
  font-family: "DM Serif Display", serif;
  color: #0A0A0B;
  margin-right: 10px;
}

.blog__details-left-related-tag a {
  display: inline-block;
  background: #F5F5F5;
  color: #0A0A0B;
  font-size: 14px;
  font-weight: 500;
  height: 45px;
  line-height: 45px;
  padding: 0 18px;
  text-transform: capitalize;
  margin-right: 10px;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog__details-left-related-tag a:hover {
  background-color: var(--primary-color-1);
  color: #fff;
}

.blog__details-left-related-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog__details-left-related-share p {
  font-family: "DM Serif Display", serif;
  color: #0A0A0B;
  margin-right: 15px;
  font-weight: 500;
}

.blog__details-left-related-share ul li {
  display: inline-block;
  margin-right: 5px;
}

.blog__details-left-related-share ul li:last-child {
  margin: 0;
}

.blog__details-left-related-share ul li i::before {
  font-size: 15px;
  background: #F5F5F5;
  width: 35px;
  height: 35px;
  display: inline-block;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.blog__details-left-related-share ul li a:hover i::before {
  background: var(--primary-color-1);
  color: #fff;
}

.blog__details-left-comment-area-item {
  background: #F5F5F5;
  padding: 30px;
  margin-left: 40px;
}

.blog__details-left-comment-area-item-user {
  float: left;
  margin-left: -70px;
}

.blog__details-left-comment-area-item-user img {
  width: 100%;
  border-radius: 50%;
}

.blog__details-left-comment-area-item-details {
  overflow: hidden;
  padding-left: 30px;
}

.blog__details-left-comment-area-item-details-name {
  position: relative;
  overflow: hidden;
}

.blog__details-left-comment-area-item-details-name p {
  font-size: 14px;
  color: var(--primary-color-1);
  padding: 5px 0;
  font-weight: 500;
}

.blog__details-left-comment-area-item-details-name a {
  position: absolute;
  top: 0;
  background: var(--primary-color-1);
  font-weight: 600;
  right: 0;
  padding: 5px 18px;
  color: #fff;
  border-radius: 3px;
  display: inline-block;
}

@media (max-width: 575px) {
  .blog__details-left-content h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .blog__details-left-content-box {
    padding: 20px;
  }
  .blog__details-left-content-box h6 {
    font-size: 14px;
    line-height: 24px;
  }
  .blog__details-left-related {
    border-bottom: 1px solid #CDCED0;
    padding-bottom: 30px;
  }
  .blog__details-left-related h6 {
    font-size: 15px;
    line-height: 25px;
  }
  .blog__details-left-related-tag a {
    font-size: 12px;
    font-weight: 600;
    padding: 0 14px;
    margin-right: 5px;
  }
  .blog__details-left-related-share ul li {
    display: inline-block;
    margin-right: 10px;
  }
  .blog__details-left-related-share ul li:last-child {
    margin: 0;
  }
  .blog__details-left-related-share ul li i::before {
    font-size: 15px;
  }
  .blog__details-left-comment-area-item {
    margin-left: 0;
    text-align: center;
  }
  .blog__details-left-comment-area-item-user {
    float: none;
    margin-left: 0;
  }
  .blog__details-left-comment-area-item-user img {
    max-width: 80px;
    height: auto;
    margin-bottom: 10px;
  }
  .blog__details-left-comment-area-item-details {
    padding: 0;
  }
  .blog__details-left-comment-area-item-details-name a {
    position: inherit;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media (max-width: 370px) {
  .blog__area-item-content {
    padding: 30px 25px;
  }
  .blog__area-item-content-meta ul li {
    font-size: 13px;
    margin-right: 5px;
  }
  .blog__area-item-content-meta ul li i::before {
    color: var(--primary-color-1);
    margin-right: 4px;
    font-size: 16px;
  }
  .blog__area-item-content h3 a {
    font-size: 25px;
    line-height: 35px;
  }
}

/*==========================================================================
Blog Standard
========================================================================== */
.blog__standard-left-item-content {
  padding: 40px 30px;
  background: #F5F5F5;
}

.blog__standard-left-item-content-meta {
  margin-bottom: 25px;
  padding-bottom: 30px;
  border-bottom: 1px solid #E6E7E8;
}

.blog__standard-left-item-content-meta ul li {
  display: inline-block;
  margin-right: 30px;
}
.blog__standard-left-item-content-meta ul li > span {
  color: #686C73;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.blog__standard-left-item-content-meta ul li:last-child {
  margin: 0;
}

.blog__standard-left-item-content-meta ul li a {
  color: #686C73;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog__standard-left-item-content-meta ul li i::before {
  color: var(--primary-color-1);
  margin-right: 10px;
}

.blog__standard-left-item-content-meta ul li a:hover {
  color: var(--primary-color-1);
}

.blog__standard-left-item-content h3 a {
  color: #0A0A0B;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  margin-bottom: 25px;
}

.blog__standard-left-item-content h3 a:hover {
  color: var(--primary-color-1);
}

@media (max-width: 510px) {
  .blog__standard-left-item-content-meta ul li {
    margin-right: 20px;
    font-size: 14px;
  }
}

@media (max-width: 450px) {
  .blog__standard-left-item-content-meta ul li {
    margin-right: 8px;
  }
  .blog__standard-left-item-content-meta ul li a i::before {
    margin-right: 5px;
  }
  .blog__standard-left-item-content h3 a {
    font-size: 25px;
    line-height: 37px;
  }
}

@media (max-width: 390px) {
  .blog__standard-left-item-content {
    padding: 35px 25px;
  }
  .blog__standard-left-item-content h2 a {
    font-size: 20px;
    line-height: 32px;
  }
}

/*==========================================================================
Business
========================================================================== */
.business__area-right {
  position: relative;
}

.business__area-right-image > img {
  max-width: 450px !important;
}

.business__area-right-image-2 {
  position: absolute;
  bottom: 30px;
  left: 50px;
  max-width: 280px;
  border: 10px solid #fff;
}

.business__area-right-shape {
  position: absolute;
  left: 15px;
  top: 30px;
  max-width: 250px;
  z-index: -1;
}

@media (max-width: 1199px) {
  .business__area-right-image > img {
    max-width: 350px !important;
  }
  .business__area-right-shape {
    max-width: 200px;
  }
}

@media (max-width: 991px) {
  .business__area-left {
    padding-right: 0;
  }
  .business__area-right-image > img {
    max-width: 450px !important;
  }
  .business__area-right-image-2 {
    max-width: 350px;
  }
}

@media (max-width: 767px) {
  .business__area-right-image > img {
    max-width: 340px !important;
  }
  .business__area-right-image-2 {
    max-width: 280px;
  }
  .business__area-right-shape {
    max-width: 190px;
  }
}

@media (max-width: 575px) {
  .business__area-right-image > img {
    max-width: 340px !important;
  }
  .business__area-right-image-2 {
    max-width: 280px;
  }
  .business__area-right-shape {
    max-width: 190px;
  }
}

@media (max-width: 490px) {
  .business__area-right-image > img {
    max-width: 290px !important;
  }
  .business__area-right-image-2 {
    max-width: 230px;
    left: 30px;
  }
  .business__area-right-shape {
    max-width: 130px;
  }
}

@media (max-width: 390px) {
  .business__area-right-image > img {
    max-width: 250px !important;
  }
  .business__area-right-image-2 {
    max-width: 170px;
    left: 30px;
  }
  .business__area-right-shape {
    max-width: 130px;
  }
}

.progress-content h4 {
  display: inline-block;
  padding-left: 10px;
}

svg.circle-progress {
  height: auto;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 100%;
}

svg.circle-progress circle {
  fill: rgba(0, 0, 0, 0);
  stroke-dashoffset: 219.9114857513;
  stroke-width: 5px;
}

svg.circle-progress circle.incomplete {
  stroke: #F5F5F5;
}

svg.circle-progress circle.complete {
  stroke-dasharray: 219.9114857513;
  stroke: var(--primary-color-1);
}

svg.circle-progress text {
  fill: #0A0A0B;
  text-anchor: middle;
}

.beorx-progress {
  position: relative;
  min-width: 120px;
  width: 120px;
}

.beorx-progress .counter {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #0A0A0B;
  font-size: 30px;
  font-weight: 400;
  font-family: "DM Serif Display", serif;
}

/*==========================================================================
Contact
========================================================================== */
.contact__list-item {
  padding: 60px 40px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0 0 90px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 90px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact__list-item:hover {
  background: var(--primary-color-1);
}

.contact__list-item:hover p {
  color: #fff;
}

.contact__list-item:hover p a {
  color: #fff;
}

.contact__list-item-icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  display: inline-block;
  border-radius: 50%;
  background: #F5F5F5;
  text-align: center;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.contact__list-item-icon img {
  max-width: 45px !important;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}

.contact__list-item p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.contact__list-item p a {
  color: #686C73;
}

.contact__form-form {
  background: #fff;
  padding: 60px 40px;
  -webkit-box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
}

.contact__form-form-title {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.contact__form-form-group {
  position: relative;
}

.contact__form-form-group input {
  width: 100%;
  height: 60px;
  border: 1px solid #E6E7E8;
  padding-left: 55px;
}

.contact__form-form-group input:focus {
  border-color: var(--primary-color-1);
}

.contact__form-form-group textarea {
  width: 100%;
  border: 1px solid #E6E7E8;
  padding-left: 55px;
  padding-top: 15px;
}

.contact__form-form-group textarea:focus {
  border-color: var(--primary-color-1);
}

.contact__form-form-group.icon i {
  position: absolute;
  font-size: 16px;
  color: var(--primary-color-1);
  left: 25px;
  top: 20px;
}

.contact__form-form-group button i::before {
  font-size: 16px;
  top: 3px;
  margin-left: 7px;
}

.contact__form-left iframe {
  width: 100%;
  height: 600px;
}

.contact__map iframe {
  width: 100%;
  height: 650px;
  margin-top: -200px;
  margin-bottom: -10px;
}

@media (max-width: 400px) {
  .contact__form-form {
    padding: 40px 30px;
  }
}

/*==========================================================================
Counter
========================================================================== */
.solution__area {
  position: relative;
}

.solution__area-left {
  position: absolute;
  background-position: center left;
  background-size: cover;
  background-repeat: repeat;
  left: 0;
  top: 0;
  bottom: 0;
  width: 47%;
  height: 100%;
}

@media (max-width: 991px) {
  .solution__area-left {
    display: none;
  }
}

/*==========================================================================
Faq CSS
==========================================================================*/
.faq__area-left {
  position: relative;
}

.faq__area-left-image img {
  max-width: 430px !important;
}

.faq__area-left-image-2 {
  margin-bottom: 107px;
}

.faq__area-left-image-2 img {
  position: absolute;
  top: 100px;
  right: 50px;
  max-width: 270px !important;
}

.faq__area-left-video {
  position: absolute;
  left: 29%;
  bottom: -65px;
}

.faq__area-left-video-icon::before {
  position: absolute;
  content: '';
  width: 80px;
  height: 80px;
  display: block;
  top: 50%;
  left: 50%;
  z-index: 0;
  border: 1px solid var(--primary-color-1);
  border-radius: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}

.faq__area-left-video-icon::after {
  position: absolute;
  content: '';
  background: var(--primary-color-1);
  top: 50%;
  left: 50%;
  display: block;
  z-index: 1;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.faq__area-left-video-icon span {
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  display: block;
}

.faq__area-collapse-item {
  border-bottom: 1px solid #E6E7E8;
}

.faq__area-collapse-item-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  cursor: pointer;
  padding: 15px 0;
}

.faq__area-collapse-item-card-header h6 {
  font-size: 18px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.faq__area-collapse-item-card-header i {
  color: #0A0A0B;
}

.faq__area-collapse-item-card-header-content {
  padding: 0px 0 20px 0;
}

.faq__area-collapse-item-card-header-content p {
  max-width: 560px;
}

.faq__area-collapse-faq {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.faq__area-content-p p {
  max-width: none;
}

@media (max-width: 1199px) {
  .faq__area-left-image img {
    max-width: 350px !important;
  }
  .faq__area-left-image-2 img {
    max-width: 222px !important;
  }
  .faq__area-left-video {
    left: 17%;
  }
}

@media (max-width: 991px) {
  .faq__area-left-image img {
    max-width: 470px !important;
  }
  .faq__area-left-image-2 {
    margin-bottom: 158px;
  }
  .faq__area-left-image-2 img {
    max-width: 320px !important;
    right: 0;
  }
  .faq__area-left-video {
    left: 20%;
  }
}

@media (max-width: 767px) {
  .faq__area-left-image img {
    max-width: 400px !important;
  }
  .faq__area-left-image-2 img {
    max-width: 280px !important;
  }
  .faq__area-left-video {
    left: 20%;
  }
}

@media (max-width: 490px) {
  .faq__area-left-image img {
    max-width: 340px !important;
  }
  .faq__area-left-image-2 img {
    max-width: 230px !important;
  }
}

@media (max-width: 440px) {
  .faq__area-collapse-item-card-header h6 {
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
  }
  .faq__area-collapse-item-card-header i {
    font-size: 14px;
  }
  .faq__area-content-p p {
    max-width: none;
  }
}

@media (max-width: 390px) {
  .faq__area-left-image img {
    max-width: 270px !important;
  }
  .faq__area-left-image-2 img {
    max-width: 200px !important;
  }
  .faq__area-left-video {
    left: 10%;
  }
}

/*==========================================================================
Footer
========================================================================== */
.footer__area-widget-about-logo {
  margin-bottom: 30px;
}

.footer__area-widget-about-logo a {
  display: inline-block;
}

.footer__area-widget-about-logo a img {
  max-width: 160px;
}

.footer__area-widget-about-social ul li {
  display: inline-block;
  margin-right: 18px;
}

.footer__area-widget-about-social ul li a {
  color: #686C73;
}

.footer__area-widget-about-social ul li a i {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__area-widget-about-social ul li a:hover i {
  color: var(--primary-color-1);
}

.footer__area-widget-about-social ul li:last-child {
  margin: 0;
}

.footer__area-widget-title {
  margin-bottom: 25px;
}

.footer__area-widget-title h4 {
  color: #fff;
}

.footer__area-widget-contact-info-item-icon i::before {
  color: var(--primary-color-1);
}

.footer__area-widget-contact-info-title {
  max-width: 250px;
}

.footer__area-widget-contact-info-title a {
  color: #686C73;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.footer__area-widget-contact-info-title a:hover {
  color: var(--primary-color-1);
}

.footer__area-widget-subscribe form {
  position: relative;
  top: 6px;
}

.footer__area-widget-subscribe form input {
  height: 60px;
  width: 100%;
  padding-left: 20px;
  padding-right: 80px;
  font-size: 14px;
  background: #fff;
}

.footer__area-widget-subscribe form button {
  display: block;
  height: 60px;
  width: 60px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  background: var(--primary-color-1);
  border: none;
  color: #fff;
  font-size: 20px;
  line-height: 60px;
}

.footer__area-widget-subscribe label input {
  margin-right: 10px;
}

.copyright__area {
  position: relative;
  padding: 35px 0;
}

.copyright__area::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  top: 0;
  height: 1px;
  width: 100%;
  background: #fff;
  opacity: 0.1;
}

.copyright__area-left p a {
  color: var(--primary-color-1);
}

.copyright__area-right ul li {
  display: inline-block;
}

.copyright__area-right ul li:last-child a {
  padding: 0;
  margin: 0;
  border: 0;
}

.copyright__area-right ul li a {
  color: #fff;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #fff;
  opacity: 70%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.copyright__area-right ul li a:hover {
  color: var(--primary-color-1);
  opacity: 1;
}

@media (max-width: 991px) {
  .footer__area {
    padding: 90px 0;
  }
  .footer__area-widget-about-logo a img {
    max-width: 140px;
  }
  .copyright__area-right ul li a {
    margin-right: 8px;
    padding-right: 8px;
  }
  .right-sidebar.widget-area {
    margin-top: 50px;
  }
}

/*==========================================================================
Marketing
========================================================================== */
.marketing__area-left {
  position: relative;
}

.marketing__area-left-image > img {
  max-width: 420px !important;
}

.marketing__area-left-image-2 {
  position: absolute;
  top: 140px;
  right: 0;
  max-width: 350px; 
}

.marketing__area-left-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  max-width: 35%;
}

.marketing__area-left-shape-2 {
  position: absolute;
  top: 200px;
  left: 30px;
  z-index: -1;
  max-width: 50%;
}

.marketing__area-right {
  padding-left: 60px;
}

.marketing__area-right-item-icon {
  display: inline-block;
}

.marketing__area-right-item-icon img {
  max-width: 40px !important;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}

.marketing__area-right-item:hover img {
  -webkit-animation: rotateY 1s ease 0s;
          animation: rotateY 1s ease 0s;
}

@media (max-width: 1199px) {
  .marketing__area {
    padding-bottom: 32px;
  }
  .marketing__area-left {
    margin-bottom: 41px;
  }
  .marketing__area-left-image > img {
    max-width: 370px !important;
  }
  .marketing__area-left-image-2 {
    max-width: 320px;
  }
  .marketing__area-left-shape-1 {
    top: 50px;
  }
  .marketing__area-right {
    padding-left: 30px;
  }
  .marketing__area-right-item h4 {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 991px) {
  .marketing__area {
    padding-bottom: 0;
  }
  .marketing__area-left {
    margin-bottom: 195px;
  }
  .marketing__area-left-image > img {
    max-width: 500px !important;
  }
  .marketing__area-left-image-2 {
    max-width: 420px;
  }
  .marketing__area-left-shape-1 {
    top: 0;
  }
  .marketing__area-right {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .marketing__area-left {
    margin-bottom: 250px;
  }
  .marketing__area-left-image > img {
    max-width: 360px !important;
  }
  .marketing__area-left-image-2 {
    max-width: 420px;
  }
}

@media (max-width: 575px) {
  .marketing__area-left {
    margin-bottom: 250px;
  }
  .marketing__area-left-image > img {
    max-width: 360px !important;
  }
  .marketing__area-left-image-2 {
    max-width: 420px;
  }
  .marketing__area-right-item {
    max-width: 270px;
  }
  .marketing__area-right-item h4 {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 490px) {
  .marketing__area-left {
    margin-bottom: 165px;
  }
  .marketing__area-left-image > img {
    max-width: 310px !important;
  }
  .marketing__area-left-image-2 {
    max-width: 280px;
    top: 100px;
  }
  .marketing__area-left-shape-2 {
    top: 130px;
  }
  .marketing__area-right-item {
    max-width: 270px;
  }
  .marketing__area-right-item h4 {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 390px) {
  .marketing__area-left {
    margin-bottom: 130px;
  }
  .marketing__area-left-image > img {
    max-width: 250px !important;
  }
  .marketing__area-left-image-2 {
    top: 90px;
    max-width: 205px;
  }
}

/*==========================================================================
Services
========================================================================== */
.service__area-item {
  background: #fff;
  overflow: hidden;
  position: relative;
  padding: 50px 40px;
}

.service__area-item-icon {
  width: 90px;
  height: 90px;
  display: inline-block;
  border-radius: 50%;
  background: #F5F5F5;
  text-align: center;
  line-height: 90px;
}

.service__area-item-icon img {
  max-width: 40px !important;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}

.service__area-item-content-list ul li {
  margin-bottom: 10px;
}

.service__area-item-content-list ul li i::before {
  color: var(--primary-color-1);
  margin-right: 10px;
}

.service__area-item-content-list ul li:last-child {
  margin: 0;
}

.service__area-item.shape {
  position: relative;
  overflow: hidden;
}

.service__area-item.shape::after {
  position: absolute;
  content: '';
  right: -160px;
  top: -110px;
  border: 10px solid;
  border-color: var(--primary-color-1);
  width: 265px;
  height: 265px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 50%;
  opacity: 0.1;
}

.service__area-item span {
  position: absolute;
  content: '';
  right: -50px;
  top: 30px;
  background: var(--primary-color-1);
  color: #fff;
  padding: 0 50px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.service__area-item:hover img {
  -webkit-animation: rotateY 1s ease 0s;
          animation: rotateY 1s ease 0s;
}

.service__area-item:hover.shape::after {
  opacity: 1;
}

.services__details-right-content-benefits img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.services__details-right-content-benefits ul li:last-child {
  margin: 0;
}

.services__details-right-content-benefits ul li {
  margin-bottom: 10px;
}

.services__details-right-content-benefits ul li i::before {
  color: var(--primary-color-1);
  font-size: 14px;
  margin-right: 10px;
}

.all__sidebar-item {
  background: #fff;
  padding: 40px 30px;
  -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 60px rgba(0, 0, 0, 0.08);
}

.all__sidebar-item h3 {
  position: relative;
  display: inline-block;
  padding-left: 15px;
}

.all__sidebar-item h3::after {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 35px;
  background: var(--primary-color-1);
}

.all__sidebar-item-search form {
  position: relative;
}

.all__sidebar-item-search form input {
  border: 1px solid #E6E7E8;
  width: 100%;
  height: 59px;
  padding: 0 15px;
}

.all__sidebar-item-search form button {
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--primary-color-1);
  display: inline-block;
}

.all__sidebar-item-category ul li a {
  display: block;
  padding: 15px 0;
  text-transform: capitalize;
  color: #0A0A0B;
  border-bottom: 1px solid #E6E7E8;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  position: relative;
}

.all__sidebar-item-category ul li a::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: auto;
  right: 0;
  background: var(--primary-color-1);
  height: 1px;
  -webkit-transition: all 0.7s ease-out 0s;
  transition: all 0.7s ease-out 0s;
  width: 0;
  opacity: 50%;
}

.all__sidebar-item-category ul li a:hover {
  color: var(--primary-color-1);
  margin-left: 7px;
}

.all__sidebar-item-category ul li a:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}

.all__sidebar-item-help-icon {
  color: var(--primary-color-1);
  font-size: 40px;
  margin-right: 15px;
}

.all__sidebar-item-help-content span {
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.all__sidebar-item-help-content a p {
  color: #0A0A0B;
  font-weight: 600;
}

.all__sidebar-item-hours {
  padding: 40px 30px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.all__sidebar-item-hours::after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #0A0A0B;
  opacity: 0.9;
}

.all__sidebar-item-hours h3 {
  color: #fff;
  position: relative;
  z-index: 2;
}

.all__sidebar-item-hours ul {
  position: relative;
  z-index: 2;
}

.all__sidebar-item-hours ul li {
  color: #fff;
  padding: 5px;
}

.all__sidebar-item-hours ul li p {
  float: right;
  color: #fff;
}

.all__sidebar-item-post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.all__sidebar-item-post-item-thumb {
  max-width: 30%;
}

.all__sidebar-item-post-item-thumb img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.all__sidebar-item-post-item-content {
  max-width: 70%;
}

.all__sidebar-item-post-item-content h6 a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #0A0A0B;
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
  margin-bottom: 5px;
}

.all__sidebar-item-post-item-content h6 a:hover {
  color: var(--primary-color-1);
}

.all__sidebar-item-post-item-content span i::before {
  color: var(--primary-color-1);
  margin-right: 10px;
}

.all__sidebar-item-post-item-content span a {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #686C73;
}

.all__sidebar-item-post-item-content span a:hover {
  color: var(--primary-color-1);
}

.all__sidebar-item-tag a:last-child {
  margin: 0;
}

.all__sidebar-item-tag a {
  display: inline-block;
  background: #F5F5F5;
  color: #0A0A0B;
  font-size: 14px;
  font-weight: 500;
  height: 45px;
  line-height: 45px;
  padding: 0 18px;
  text-transform: capitalize;
  margin-right: 9px;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.all__sidebar-item-tag a:hover {
  background-color: var(--primary-color-1);
  color: #fff;
}

.all__sidebar-item-gallery-item {
  overflow: hidden;
}

.all__sidebar-item-gallery-item img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  border-radius: 5px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.all__sidebar-item-gallery-item:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (max-width: 1199px) {
  .service__area-left {
    margin-bottom: 30px;
  }
  .service__area-left-title {
    max-width: 465px;
  }
}

@media (max-width: 355px) {
  .all__sidebar-item {
    padding: 35px 25px;
  }
}

/*==========================================================================
Error 
========================================================================== */
.error__area-title {
  max-width: 700px;
  margin: 0 auto;
}

.error__area-title h1 {
  font-size: 300px;
  line-height: 1;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: var(--primary-color-1);
}

@media (max-width: 767px) {
  .error__area-title h1 {
    font-size: 200px;
  }
}

@media (max-width: 480px) {
  .error__area-title h1 {
    font-size: 130px;
  }
}

/*==========================================================================
Team
========================================================================== */
.team__area-left {
  position: relative;
}

.team__area-left-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: -40px;
  top: -90px;
  bottom: -140px;
  width: 140%;
  z-index: -1;
}

.team__area-left.swiper-pagination {
  position: static;
  text-align: left;
}

.team__area-right {
  position: relative;
}

.team__area-right-slide-item-image img {
  max-width: 380px !important;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.team__area-right-slide-item-content {
  background: #fff;
  padding: 30px 40px;
  position: absolute;
  display: inline-block;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.6s ease-out 0s;
  transition: all 0.6s ease-out 0s;
  z-index: 3;
}

.team__area-right-shape-1 {
  max-width: 250px;
  position: absolute;
  left: 80px;
  top: 80px;
}

.team__area-right-shape-2 {
  max-width: 600px;
  position: absolute;
  right: 0;
  bottom: -15px;
}

.team__area-right-shape-3 {
  max-width: 470px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.team__area-item-image {
  position: relative;
  overflow: hidden;
}

.team__area-item-image::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 40%;
  height: 100%;
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  background: rgba(255, 255, 255, 0.246);
}

.team__area-item-image img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.team__area-item-image-social {
  position: absolute;
  right: 35px;
  bottom: 40px;
  z-index: 9;
}

.team__area-item-image-social-share i {
  background: var(--primary-color-1);
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.team__area-item-image-social-share i::before {
  top: 0;
}

.team__area-item-image-social-icon {
  position: absolute;
  bottom: 55px;
  top: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  right: 0;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}

.team__area-item-image-social-icon ul li {
  margin-bottom: 10px;
}

.team__area-item-image-social-icon ul li a i::before {
  background: #fff;
  color: var(--primary-color-1);
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
}

.team__area-item-image-social-icon ul li a i:hover::before {
  background: var(--primary-color-1);
  color: #fff;
}

.team__area-item-image-social-icon ul li:last-child {
  margin: 0;
}

.team__area-item-image-social:hover .team__area-item-image-social-icon {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(3%);
          transform: translateY(3%);
}

.team__area-item-content {
  background: #fff;
  padding: 30px;
  margin: 0 20px;
  margin-top: -65px;
  position: relative;
  -webkit-box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
          box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.team__area-item:hover .team__area-item-image::before {
  -webkit-animation: animation 0.95s;
          animation: animation 0.95s;
}

.team__area-item:hover .team__area-item-image img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.team__area-right-slide-item.swiper-slide.swiper-slide-active .team__area-right-slide-item-content {
  bottom: 70px;
}

.swiper-pagination-bullet {
  background: #0A0A0B;
  opacity: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color-1);
}

@media (max-width: 1199px) {
  .team__area-right-shape-3 {
    max-width: 400px;
  }
  .team__area-right-slide-item.swiper-slide.swiper-slide-active .team__area-right-slide-item-content {
    bottom: 100px;
  }
}

@media (max-width: 991px) {
  .team__area-left {
    text-align: center;
  }
  .team__area-left-bg {
    width: 100%;
  }
  .team__area-left.swiper-pagination {
    text-align: center;
  }
  .team__area-right-shape-3 {
    max-width: 500px;
  }
  .team__area-right-slide-item.swiper-slide.swiper-slide-active .team__area-right-slide-item-content {
    bottom: 90px;
  }
}

@media (max-width: 575px) {
  .team__area-left-bg {
    width: 100%;
  }
  .team__area-right {
    position: relative;
  }
  .team__area-right-slide-item-image img {
    max-width: 380px !important;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
  }
  .team__area-right-slide-item-content {
    background: #fff;
    padding: 30px 40px;
    position: absolute;
    display: inline-block;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
    z-index: 3;
  }
  .team__area-right-shape-1 {
    max-width: 250px;
    position: absolute;
    left: 80px;
    top: 80px;
  }
  .team__area-right-shape-2 {
    max-width: 600px;
    position: absolute;
    right: 0;
    bottom: -15px;
  }
  .team__area-right-shape-3 {
    max-width: 470px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
  }
  .team__area-right-slide-item.swiper-slide.swiper-slide-active .team__area-right-slide-item-content {
    bottom: 90px;
  }
}

@media (max-width: 490px) {
  .team__area-right {
    position: relative;
  }
  .team__area-right-slide-item-image img {
    max-width: 240px !;
  }
  .team__area-right-slide-item-content {
    padding: 20px 15px;
    width: 190px;
  }
  .team__area-right-slide-item-content h4 {
    font-size: 18px;
    line-height: 28px;
  }
  .team__area-right-shape-1 {
    max-width: 170px;
    left: 40px;
  }
  .team__area-right-shape-2 {
    max-width: 360px;
    right: 40px;
    z-index: -1;
  }
  .team__area-right-shape-3 {
    max-width: 315px;
  }
  .team__area-right-slide-item.swiper-slide.swiper-slide-active .team__area-right-slide-item-content {
    bottom: 60px;
  }
}

@media (max-width: 390px) {
  .team__area-right {
    position: relative;
  }
  .team__area-right-slide-item-image img {
    max-width: 240px !important;
  }
  .team__area-right-slide-item-content {
    padding: 20px 15px;
    width: 190px;
  }
  .team__area-right-slide-item-content h4 {
    font-size: 18px;
    line-height: 28px;
  }
  .team__area-right-shape-1 {
    max-width: 170px;
    left: 40px;
  }
  .team__area-right-shape-2 {
    max-width: 360px;
    right: 40px;
    z-index: -1;
  }
  .team__area-right-shape-3 {
    max-width: 315px;
  }
  .team__area-right-slide-item.swiper-slide.swiper-slide-active .team__area-right-slide-item-content {
    bottom: 60px;
  }
}

/*==========================================================================
Search Box CSS
==========================================================================*/
.header__area {
  padding: 0 100px;
}

.header__area-search i {
  cursor: pointer;
  position: relative;
  z-index: 9;
}

.header__area-search i::before {
  display: block;
  margin-top: 3px;
}

.header__area-search-box {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  left: 0;
  right: 0;
  height: 0;
  background: #0A0A0B;
  z-index: 999;
  -webkit-transition: .5s;
  transition: .5s;
  overflow: hidden;
}

.header__area-search-box-icon {
  position: absolute;
  right: 50px;
  top: 50px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.header__area-search-box-icon:hover {
  -webkit-animation: rotate 0.9s ease 0s;
          animation: rotate 0.9s ease 0s;
}

.header__area-search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 55%;
}

.header__area-search-box input {
  background-color: transparent;
  width: 100%;
  padding: 10px 0;
  color: #fff;
  border: 0;
  border-bottom: 1px solid #fff;
}

.header__area-search-box input:focus {
  border-bottom: 1px solid var(--primary-color-1);
  color: #fff !important;
}

.header__area-search-box button {
	position: absolute;
	right: 15px;
	top: 8px;
	width: 40px;
	height: 40px;
	background-color: transparent;
	text-align: center;
	font-size: 22px;
	color: var(--primary-color-1);
	border: 0;
	outline: none;
}

.header__area-search-box.active {
  height: 100%;
  top: 0;
}

.header__area-right {
  max-width: 40%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  padding-right: 15px;
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.header__area-right-contact-icon i::before {
  font-size: 25px;
  color: var(--primary-color-1);
  margin-right: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--primary-color-1);
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  z-index: 2;
}

.header__area-right-contact-content span {
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.header__area-right-contact-content a p {
  font-family: "Inter", sans-serif;
  color: #0A0A0B;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header__area-right-contact-content a p:hover {
  color: var(--primary-color-1);
}

/*==========================================================================
Responsive Menu Css
========================================================================== */
.responsive-menu {
  position: absolute;
  top: 0;
  right: 2px;
  width: 100%;
}

.mean-container a.meanmenu-reveal {
  color: #0A0A0B;
  width: 25px;
  height: 31px;
  top: -7px;
  -webkit-transition: all 0s ease-out 0s;
  transition: all 0s ease-out 0s;
}

.mean-container a.meanmenu-reveal span {
  background: #0A0A0B;
  margin-top: 6px;
}

.mean-container .mean-bar {
  background: transparent;
  padding: 0;
  z-index: 99;
}

.mean-container .mean-bar a i {
  font-size: 22px;
  padding-top: 4px;
  display: block;
}

.mean-container .mean-nav {
  background: #fff;
  margin-top: 59px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.mean-container .mean-nav li:first-child > a {
  border: none;
}

.mean-container .mean-nav ul li a.mean-expand {
  background: var(--primary-color-1);
  height: 34px;
  color: #fff;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--primary-color-1);
}

.mean-container .mean-nav ul li a,
.mean-container .mean-nav ul li li a,
.mean-container .mean-nav li li:first-child > a {
  color: #0A0A0B;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
  border-top: 1px solid #CDCED0;
  opacity: 1;
}

@media (max-width: 1400px) {
  .header__area {
    padding: 0 50px;
  }
}

@media (max-width: 1320px) {
  .header__area-logo {
    max-width: 20%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }
  .header__area-center {
    max-width: 55%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
  }
  .header__area-right {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .header__area-right-btn {
    display: none;
  }
}

@media (max-width: 1100px) {
  .header__area-logo {
    max-width: 30%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
  .header__area-center {
    max-width: 70%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
  }
  .header__area-right {
    display: none;
  }
}

@media (max-width: 991px) {
  .header__area {
    padding: 15px 40px;
  }
  .header__area-logo {
    position: relative;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .header__area-logo a img {
    max-width: 140px;
    z-index: 999;
    position: relative;
  }
  .header__area-search {
    display: none;
  }
  .header__area .responsive-menu {
    display: block;
  }
}

@media (max-width: 574px) {
  .header__area {
    padding: 15px 0;
  }
}

/*==========================================================================
Page
========================================================================== */
.page__banner {
  background-color: #0A0A0B;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 120px;
}

.page__banner::after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #0A0A0B;
  opacity: 0.8;
}

.page__banner-content h2 {
  color: #fff;
}

.page__banner-content ul li {
  display: inline-block;
  color: var(--primary-color-1);
  text-transform: capitalize;
  font-weight: 600;
  position: relative;
}

.page__banner-content ul li:first-child {
  color: #fff;
}

.page__banner-content ul li a {
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.page__banner-content ul li a:hover {
  color: var(--primary-color-1);
}

.page__banner-content ul li i::before {
  position: relative;
  margin-left: 13px;
  margin-right: 9px;
  font-size: 14px;
}

/*==========================================================================
Pagination
========================================================================== */
.pagination__area ul li {
  display: inline-block;
  margin-right: 15px;
}

.pagination__area .page-numbers.current {
  background: var(--primary-color-1);
  color: #fff;
  display: block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  font-weight: 600;
}

.pagination__area ul li a {
  color: #0A0A0B;
  background: #F5F5F5;
  display: block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pagination__area ul li a:hover {
  background: var(--primary-color-1);
  color: #fff;
}

.pagination__area ul li:last-child {
  margin: 0;
}

@media (max-width: 359px) {
  .pagination__area ul li {
    margin-right: 5px;
  }
}

/*==========================================================================
Background
========================================================================== */
.thin-bg {
  background: #F5F5F5;
}

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

.secondary-bg {
  background: #0A0A0B;
}

.white {
  color: #fff;
}

.primary-color {
  color: var(--primary-color-1);
}

.body-color {
  color: #686C73;
}

.a-border {
  border-bottom: 1px solid #CDCED0;
  padding-bottom: 120px;
}

.t-border {
  border-top: 1px solid #CDCED0;
  padding-top: 120px;
}

/* wp style */


.copyright__area .col-lg-12 .footer__area-copyright-left  {
  text-align: center;
}

.blog__standard-left >div {
  margin-bottom: 50px;
}
.blog__standard-left >div:last-child {
  margin: 0;
}

.box__header .header__area-main-menu ul li a {
	font-size: 17px;
	padding: 40px 15px;
}

.header__area-main-menu ul li ul {
  padding: 0;
  margin: 0;
}

.pagination__area .navigation{
  margin-top: 50px;
}

.box__header-logo a:hover {
  color: var(--primary-color-1);
}

.contact__form-form-group input[type="text"] {
	padding-left: 55px !important;
} 