/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
/* :root {
  --eston-font: 'Space Grotesk', sans-serif;
  --eston-font-two: 'Playfair Display', serif;
  --eston-gray: #777777;
  --eston-gray-rgb: 119, 119, 119;
  --eston-white: #ffffff;
  --eston-white-rgb: 255, 255, 255;
  --eston-base: #C72538;
  --eston-base-rgb: 199, 37, 56;
  --eston-black: #222222;
  --eston-black-rgb: 34, 34, 34;
  --eston-primary: #F5F5F5;
  --eston-primary-rgb: 245, 245, 245;
} */

:root {
  --eston-font: "Space Grotesk", sans-serif;
  --eston-font-two: "Playfair Display", serif;
  --eston-gray: #bfb8a5; /* Ivory shade for text */
  --eston-gray-rgb: 191, 184, 165;
  --eston-white: #fffff0; /* Ivory background */
  --eston-white-rgb: 255, 255, 240;
  --eston-base: #d4af37; /* Gold */
  --eston-base-rgb: 212, 175, 55;
  --eston-black: #181818; /* Deep black */
  --eston-black-rgb: 24, 24, 24;
  --eston-primary: #232323; /* Slightly lighter black for backgrounds */
  --eston-primary-rgb: 35, 35, 35;
  --eston-border: #d4af37; /* Gold for borders */
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--eston-font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--eston-gray);
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--eston-base);
}

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

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--eston-black);
  margin: 0;
  font-family: var(--eston-font);
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

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

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--eston-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

.section-title {
  position: relative;
  display: block;
  margin-top: -8px;
  margin-bottom: 47px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--eston-gray);
  font-family: var(--eston-font-two);
  font-style: italic;
  margin-left: -20px;
}

.section-title__title-box {
  position: relative;
  display: block;
  margin-top: 35px;
}

.section-title__title {
  margin: 0;
  color: var(--eston-black);
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: -0.02em;
}

.section-title__title-box p {
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: rgba(var(--eston-black-rgb), 0.2);
  position: absolute;
  top: -24px;
  left: -21px;
  z-index: -1;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 700;
  font-size: 14px;
  color: var(--eston-black);
  padding: 13px 30px 13px;
  text-transform: uppercase;
  background-color: var(--eston-white);
  border: 2px solid #eaeaea;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}

.thm-btn:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -1px;
  background: var(--eston-black);
  content: "";
  transform: scaleX(0.1) rotateX(90deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.thm-btn:hover:after {
  transform: scaleX(1) rotateX(0deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.thm-btn span {
  margin-right: 7px;
  position: relative;
  font-size: 16px;
  top: 1px;
}

.thm-btn:hover {
  color: var(--eston-white);
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--eston-base);
  color: var(--eston-white);
}

.bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 12px;
  color: #ffffff;
  text-transform: uppercase;
  background: var(--eston-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
  background: var(--eston-base);
  color: var(--eston-white);
  cursor: pointer;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(assets/images/resources/logo-1.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--eston-white);
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 0;
}

.scroll-to-top i {
  color: var(--eston-black);
  font-size: 18px;
  line-height: 60px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.scroll-to-top:hover {
  background-color: var(--eston-base);
}

.scroll-to-top:hover i {
  color: var(--eston-white);
}

/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in 0.8s;
  -o-transition: all 0.4s ease-in 0.8s;
  transition: all 0.4s ease-in 0.8s;
  cursor: url(../images/icon/cross-out.png), pointer;
  z-index: 999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: 0.8;
  visibility: visible;
  -webkit-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--eston-base);
  border-color: var(--eston-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
}
.xs-sidebar-widget::-webkit-scrollbar {
  width: 0;
}
.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--eston-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in 0.3s;
  -o-transition: all 0.3s ease-in 0.3s;
  transition: all 0.3s ease-in 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}
.xs-sidebar-group .content-inner .logo img {
  width: 180px;
  height: 60px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type="text"],
.xs-sidebar-group .content-inner .form-inner .form-group input[type="email"],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  border: none;
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
  border: none;
  outline: none;
  background-color: var(--eston-white);
  color: var(--eston-black);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group
  .content-inner
  .form-inner
  .form-group
  .form-inner__btn:hover {
  color: var(--eston-white);
}

.xs-sidebar-group
  .content-inner
  .form-inner
  .form-group
  .form-inner__btn:after {
  background-color: var(--eston-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 15px;
  right: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  padding: 0px 200px 0px;
  z-index: 1;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}

.main-menu__logo {
 position: relative;
    display: block;
    left: 10px;
    padding: 20px 0px 20px 0px;
    right: 60px;
}
.main-menu__logo img {
  width: 180px;
  height: 60px;
  /* max-height: 48px; */
}
.main-menu__main-menu-box {
  position: relative;
  display: block;
}

.main-menu__right {
  position: relative;
  left: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0px 0px 20px 0px;
  margin-left: 50px;
}

.main-menu__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--eston-white);
  border-radius: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover {
  color: var(--eston-base);
}

.main-menu__btn-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

.main-menu__btn {
  padding: 12px 26px 12px;
  border: none;
}

.stricky-header.main-menu {
  background-color: var(--eston-black);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list > li > ul,
  .main-menu .main-menu__list > li > ul > li > ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list > li > ul,
  .stricky-header .main-menu__list > li > ul > li > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
  padding-top: 20px;
  padding-bottom: 40px;
  position: relative;
  left: 40px;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 55px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--eston-white);
  font-weight: 700;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .main-menu__list > li.dropdown > a {
  padding-right: 16px;
}

.main-menu .main-menu__list > li.dropdown > a:after {
  position: absolute;
  top: 59%;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-size: 11px;
  color: var(--eston-white);
  transform: translateY(-50%);
  font-weight: 700;
  z-index: 1;
}

.main-menu .main-menu__list > li.current > a::after,
.main-menu .main-menu__list > li:hover > a::after,
.stricky-header .main-menu__list > li.current > a::after,
.stricky-header .main-menu__list > li:hover > a::after {
  color: var(--eston-base);
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: var(--eston-base);
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  border: 1px solid #f5f5f5;
  box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  border-radius: 5px;
  padding: 18px 0;
  z-index: 99;
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
  display: none;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list > li > ul > li + li,
.main-menu .main-menu__list > li > ul > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li > ul > li + li {
  border-top: none;
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
  position: relative;
  color: var(--eston-black);
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 20px 5px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
  color: var(--eston-base);
}

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease,
    -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--eston-base);
  cursor: pointer;
}

.mobile-nav__buttons a + a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--eston-base);
}

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--eston-white);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--eston-base);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}
.fa-bars {
  font-size: 30px;
  padding-bottom: 20px;
}
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--eston-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}
.mobile-nav__content::-webkit-scrollbar {
  width: 0;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--eston-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list > li > a > .main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--eston-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content
  .main-menu__list
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a.expanded {
  color: var(--eston-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--eston-base);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
  width: 30px;
  height: 30px;
  background-color: var(--eston-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a
  > button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--eston-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--eston-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--eston-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--eston-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--eston-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--eston-base);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--eston-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
  padding: 0px 100px 0px;
  z-index: 1;
}

.main-menu-two__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}

.main-menu-two__logo {
  position: relative;
  display: block;
  padding: 36px 0;
}

.main-menu-two__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px 0;
}

.main-menu-two__btn-box {
  position: relative;
  display: block;
}

.main-menu-two__btn {
  padding: 12px 26px 12px;
  border: none;
  background-color: var(--eston-base);
  color: var(--eston-white);
}

.stricky-header.main-menu-two {
  background-color: var(--eston-white);
}

.main-menu-two .main-menu__list > li > a,
.stricky-header.main-menu-two .main-menu__list > li > a {
  color: var(--eston-black);
}

.main-menu-two .main-menu__list > li.dropdown > a:after {
  color: var(--eston-black);
}

.main-menu-two .main-menu__list > li.current > a,
.main-menu-two .main-menu__list > li:hover > a,
.stricky-header.main-menu-two .main-menu__list > li.current > a,
.stricky-header.main-menu-two .main-menu__list > li:hover > a {
  color: var(--eston-base);
}

.main-menu-two .main-menu__list > li.current > a::after,
.main-menu-two .main-menu__list > li:hover > a::after,
.stricky-header.main-menu-two .main-menu__list > li.current > a::after,
.stricky-header.main-menu-two .main-menu__list > li:hover > a::after {
  color: var(--eston-base);
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-three__top {
  position: relative;
  display: block;
}

.main-header-three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--eston-base);
  padding: 12.5px 50px 12.5px;
}

.main-header-three__contact-info {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2;
}

.main-header-three__contact-info li {
  position: relative;
  display: block;
}

.main-header-three__contact-info li + li {
  margin-left: 36px;
}

.main-header-three__contact-info li a {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-white);
  position: relative;
  display: flex;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-three__contact-info li a:hover {
  color: var(--eston-black);
}

.main-header-three__top-text {
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-white);
  font-weight: 400;
}

.main-header-three__top-text span {
  font-weight: 700;
}

.main-header-three__social-box {
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
  z-index: 2;
}

.main-header-three__social-title {
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-white);
  position: relative;
  display: inline-block;
}

.main-header-three__social-title:before {
  content: "";
  position: absolute;
  top: 8px;
  right: -37px;
  height: 1px;
  width: 23px;
  background-color: rgba(var(--eston-white-rgb), 0.2);
}

.main-header-three__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 50px;
}

.main-header-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--eston-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-three__social a:hover {
  color: var(--eston-black);
}

.main-header-three__social a + a {
  margin-left: 18px;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
  padding: 0px 50px 0px;
  background-color: var(--eston-black);
  z-index: 1;
}

.main-menu-three__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}

.main-menu-three__logo {
  position: relative;
  display: block;
  padding: 15px 0;
}
.main-menu-three__logo img {
  width: 180px;
  height: 80px;
}
.main-menu-three__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-three__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0px 0px 10px 0px;
}

.main-menu-three__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--eston-white);
  border-radius: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button:hover {
  color: var(--eston-base);
}

.main-menu-three__btn-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

.main-menu-three__btn {
  padding: 12px 26px 12px;
  border: none;
}

.main-menu-three__btn:after {
  background: var(--eston-base);
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease,
    -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--eston-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 0;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--eston-base);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:after {
  background-color: var(--eston-black);
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--eston-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
  color: var(--eston-white);
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  background: #000000;
  z-index: 10;
}

.main-slider .item {
  background: #000000;
  position: relative;
  padding-top: 389px;
  padding-bottom: 295px;
  z-index: 10;
}

.main-slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.main-slider__bg:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.44);
  z-index: -1;
}

.main-slider__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}

.main-slider__social-box {
  position: absolute;
  display: flex;
  text-align: center;
  justify-content: center;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 2;
}

.main-slider__social-title {
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-white);
  position: relative;
  display: inline-block;
}

.main-slider__social-title:before {
  content: "";
  position: absolute;
  top: 8px;
  right: -37px;
  height: 1px;
  width: 23px;
  background-color: rgba(var(--eston-white-rgb), 0.2);
}

.main-slider__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 50px;
}

.main-slider__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--eston-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-slider__social a:hover {
  color: var(--eston-base);
}

.main-slider__social a + a {
  margin-left: 18px;
}

.main-slider__shape-1 {
  position: absolute;
  top: 426px;
  right: 370px;
  z-index: 1;
}

.main-slider__shape-1 img {
  width: auto !important;
}

.main-slider__shape-2 {
  position: absolute;
  top: 426px;
  right: 200px;
  z-index: 1;
}

.main-slider__shape-2 img {
  width: auto !important;
}

.main-slider__shape-3 {
  position: absolute;
  top: 536px;
  right: 285px;
  z-index: 1;
}

.main-slider__shape-3 img {
  width: auto !important;
}

.main-slider__content {
  position: relative;
  display: block;
  text-align: center;
  z-index: 10;
}

.main-slider__sub-title {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: var(--eston-white);
  font-family: var(--eston-font-two);
  font-style: italic;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-slider__title {
  position: relative;
  font-size: 70px;
  color: var(--eston-white);
  font-weight: 700;
  line-height: 80px;
  letter-spacing: -0.02em;
  margin-top: 17px;
  margin-bottom: 60px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-slider__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-slider__btn {
  border: none;
  background-color: var(--eston-white);
  color: var(--eston-black);
}

.main-slider__btn:hover {
  color: var(--eston-white);
}

.main-slider__btn:after {
  background-color: var(--eston-base);
}

.active .main-slider__title,
.active .main-slider__btn-box,
.active .main-slider__sub-title {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider .owl-theme .owl-dots {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  position: absolute;
  top: 48%;
  left: 0;
  right: 0;
  padding: 0 200px;
  height: 0;
  line-height: 0;
  margin: 0;
  transform: translateY(-50%);
}

.main-slider .owl-theme .owl-dots .owl-dot + .owl-dot {
  margin-top: 25px;
}

.main-slider .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}

.main-slider .owl-theme .owl-dots .owl-dot button {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: rgba(var(--eston-white-rgb), 0.2);
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider .owl-theme .owl-dots .owl-dot:hover button,
.main-slider .owl-theme .owl-dots .owl-dot.active button {
  color: rgba(var(--eston-white-rgb), 1);
}

.main-slider .owl-theme .owl-dots .owl-dot:hover button:focus {
  outline: none;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  background: #fff;
  padding-right: 100px;
  z-index: 10;
}

.main-slider-two__social-box {
  position: absolute;
  display: flex;
  text-align: center;
  justify-content: center;
  top: 287px;
  right: -70px;
  transform: rotate(-90deg);
  z-index: 2;
}

.main-slider-two__social-title {
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-gray);
  position: relative;
  display: inline-block;
}

.main-slider-two__social-title:before {
  content: "";
  position: absolute;
  top: 8px;
  right: -37px;
  height: 1px;
  width: 23px;
  background-color: rgba(var(--eston-black-rgb), 0.2);
}

.main-slider-two__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 50px;
}

.main-slider-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--eston-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-slider-two__social a:hover {
  color: var(--eston-base);
}

.main-slider-two__social a + a {
  margin-left: 18px;
}

.main-slider-two__contact-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  bottom: 307px;
  right: -94px;
  transform: rotate(-90deg);
  z-index: 2;
}

.main-slider-two__contact-info li {
  position: relative;
  display: block;
}

.main-slider-two__contact-info li + li {
  margin-left: 36px;
}

.main-slider-two__contact-info li a {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-black);
  position: relative;
  display: flex;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-slider-two__contact-info li a:hover {
  color: var(--eston-base);
}

.main-slider-two .item {
  background: #000000;
  position: relative;
  padding-top: 221px;
  padding-bottom: 51px;
  z-index: 10;
}

.main-slider-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.main-slider-two__bg:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.5;
  z-index: -1;
}

.main-slider-two__content {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider-two__title {
  position: relative;
  font-size: 70px;
  color: var(--eston-white);
  font-weight: 700;
  line-height: 80px;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-slider-two__title span {
  position: relative;
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #ffffff;
  opacity: 0.6;
  top: -18px;
  margin-right: 10px;
}

.main-slider-two__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-slider-two__btn {
  border: none;
  background-color: var(--eston-base);
  color: var(--eston-white);
  padding: 15px 30px 15px;
}

.main-slider-two__btn:hover {
  color: var(--eston-black);
}

.main-slider-two__btn:after {
  background-color: var(--eston-white);
}

.main-slider-two__btn-two {
  background-color: transparent;
  color: var(--eston-white);
  margin-left: 30px;
}

.main-slider-two__btn-two:hover {
  color: var(--eston-black);
}

.main-slider-two__btn-two:after {
  background-color: var(--eston-white);
}

.main-slider-two__shape-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -36px;
  margin-top: 165px;
}

.main-slider-two__shape-1 {
  position: relative;
  display: block;
}

.main-slider-two__shape-1 img {
  width: auto !important;
}

.main-slider-two__shape-2 {
  position: relative;
  display: block;
  margin-left: 28px;
  margin-right: 34px;
}

.main-slider-two__shape-2 img {
  width: auto !important;
}

.main-slider-two__shape-3 {
  position: relative;
  display: block;
}

.main-slider-two__shape-3 img {
  width: auto !important;
}

.active .main-slider-two__title,
.active .main-slider-two__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-two .owl-theme .owl-nav {
  position: absolute;
  bottom: 60px;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  height: 0;
  line-height: 0;
}

.main-slider-two .owl-theme .owl-nav [class*="owl-"] {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--eston-black-rgb), 1);
  background-color: rgba(var(--eston-white-rgb), 1);
  border: none;
  border-radius: 0;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 21px 0px !important;
}

.main-slider-two .owl-theme .owl-nav [class*="owl-"]:hover {
  color: rgba(var(--eston-white-rgb), 1);
  background-color: rgba(var(--eston-base-rgb), 1);
}

.main-slider-two .owl-theme .owl-nav [class*="owl-"] + [class*="owl-"] {
  left: -60px;
}

/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
.banner-one {
  position: relative;
  display: block;
  background-color: var(--eston-black);
  padding: 464px 0 0;
  z-index: 1;
}

.banner-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 610px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.banner-one__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 98.36%);
  opacity: 0.6;
}

.banner-one__inner {
  position: relative;
  display: block;
}

.banner-one__sub-title {
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #ffffff;
  font-family: var(--eston-font-two);
}

.banner-one__title-one {
  font-weight: 700;
  font-size: 100px;
  line-height: 110px;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 54px;
}

.banner-one__title-one span {
  font-family: var(--eston-font-two);
  font-weight: 400;
  font-style: italic;
  position: relative;
  display: inline-block;
  line-height: 98px;
}

.banner-one__btn-box {
  position: relative;
  display: block;
}

.banner-one__btn {
  border: none;
  background-color: var(--eston-base);
  color: var(--eston-white);
  padding: 15px 30px 15px;
}

.banner-one__btn:hover {
  color: var(--eston-black);
}

.banner-one__btn:after {
  background-color: var(--eston-white);
}

.banner-one__curved-circle {
  position: absolute;
  bottom: 185px;
  right: 0;
  height: 140px;
  width: 140px;
}

@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.banner-one__curved-circle .curved-circle {
  position: absolute;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: textRotate 10s linear 0s forwards infinite alternate;
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  padding: 120px 0 200px;
  z-index: 1;
}

.about-one__shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.about-one__shape-2 img {
  width: auto;
}

.about-one__shape-3 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.about-one__shape-3 img {
  width: auto;
}

.about-one__left {
  position: relative;
  display: block;
  margin-right: 230px;
}

.about-one__img-box {
  position: relative;
  display: block;
}

.about-one__img {
  position: relative;
  display: block;
}

.about-one__img > img {
  width: 100%;
}

.about-one__img-2 {
  position: absolute;
  top: 180px;
  left: 200px;
  z-index: 1;
}

.about-one__img-2 > img {
  width: auto;
}

.about-one__img-2::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  background-color: var(--eston-white);
  z-index: -1;
}

.about-one__shape-1 {
  position: absolute;
  bottom: -56px;
  left: -56px;
}

.about-one__shape-1 img {
  width: auto;
}

.about-one__right {
  position: relative;
  display: block;
  margin-left: 100px;
  margin-right: 80px;
  margin-top: 85px;
}

.about-one__right .section-title {
  margin-bottom: 24px;
}

.about-one__btn-box {
  position: relative;
  display: block;
  margin-top: 59px;
}

/*--------------------------------------------------------------
# Awards One
--------------------------------------------------------------*/
.awards-one {
  position: relative;
  display: block;
  background-color: #f5f5f5;
  padding: 120px 0 112px;
  z-index: 1;
}

.awards-one .section-title__title > span {
  color: var(--eston-base);
}

.awards-one .section-title {
  margin-bottom: 77px;
}

.awards-one__bottom {
  position: relative;
  display: block;
  margin-right: -375px;
}

.awards-one__carousel {
  position: relative;
  display: block;
}

.awards-one__single {
  position: relative;
  display: block;
  text-align: center;
}

.awards-one__img {
  position: relative;
  display: flex;
  width: 200px;
  height: 200px;
  background-color: var(--eston-white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.awards-one__img > img {
  width: auto !important;
}

.awards-one__content {
  position: relative;
  display: block;
}

.awards-one__content h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  margin-top: 41px;
}

.awards-one__content h3 > span {
  color: var(--eston-base);
}

.awards-one__carousel.owl-carousel .owl-stage-outer {
  overflow: hidden;
}

.awards-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.awards-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Feature one
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  overflow-x: hidden;
}

.feature-one:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 30%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%,
    rgba(255, 255, 255, 0) 100%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: 1;
}

.feature-one:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    280deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%,
    rgba(255, 255, 255, 0) 100%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: 1;
}

.feature-one__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;
}

.feature-one__wrap:hover .feature-one__title-box {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.feature-one__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 6px;
  -webkit-animation: slide-left 20s linear infinite;
  animation: slide-left 20s linear infinite;
}

.feature-one__wrap .feature-one__title-box {
  padding: 0;
  -webkit-animation: slide-left 40s linear infinite;
  animation: slide-left 40s linear infinite;
}

.feature-one__title-box > * {
  margin: 0 20px;
}

.feature-one__title {
  font-weight: 700;
  font-size: 120px;
  line-height: 140px;
  text-align: center;
  letter-spacing: -0.02em;
}

@keyframes slide-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  padding: 0 0 90px;
  z-index: 1;
}

.services-one__single {
  position: relative;
  display: block;
  text-align: center;
  border: 2px solid #eaeaea;
  padding: 58px 40px 52px;
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover {
  border: 2px solid var(--eston-base);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.1);
}

.services-one__icon {
  position: relative;
  display: block;
}

.services-one__icon img {
  width: auto;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-one__single:hover .services-one__icon img {
  transform: scale(0.9);
}

.services-one__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  margin-top: 50px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.services-one__title::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--eston-black);
  transform: scaleX(0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  transform-origin: left center;
}

.services-one__single:hover .services-one__title::before {
  transform: scaleX(1);
  transform-origin: bottom center;
  transition-delay: 300ms;
}

.services-one__title a {
  color: var(--eston-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__title a:hover {
  color: var(--eston-base);
}

.services-one__title:hover::before {
  background-color: var(--eston-base);
}

.services-one__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 18px;
}

.services-one__read-more {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: #bfbfbf;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__read-more {
  color: var(--eston-base);
}

/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
/* .project-one {
  position: relative;
  display: block;
  background-color: #C72538;
  padding: 120px 0 120px;
  z-index: 1;
} */

.project-one {
  position: relative;
  display: block;
  background-color: var(--eston-black); /* Black background */
  color: var(--eston-base); /* Gold text color */
  padding: 120px 0 120px;
  z-index: 1;
}

.project-one__top {
  position: relative;
  display: block;
  margin-bottom: 47px;
}

.project-one__left {
  position: relative;
  display: block;
}

.project-one__left .section-title {
  margin-bottom: 0px;
}

.project-one__left .section-title__tagline {
  color: var(--eston-white);
}

.project-one__left .section-title__title {
  color: var(--eston-white);
}

.project-one__left .section-title__title-box p {
  color: var(--eston-base);
}

.project-one__right {
  position: relative;
  display: block;
}

.project-one__btn-box {
  position: relative;
  display: block;
  text-align: right;
  margin-top: 27px;
}

.project-one__btn {
  color: var(--eston-white);
  background-color: var(--eston-base);
  /* border: 2px solid #DB495A; */
}

.project-one__bottom {
  position: relative;
  display: block;
}

.project-one__list {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-one__list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--eston-white-rgb), 0.2);
  padding: 48px 0 48px;
}

.project-one__list li:last-child {
  border-bottom: 1px solid rgba(var(--eston-white-rgb), 0.2);
}

.project-one__list-left {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 630px;
  width: 100%;
  -webkit-transition: all 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
  transition: all 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
}

.project-one__list li:hover .project-one__list-left {
  transform: translateX(220px);
  -webkit-transform: translateX(220px);
}

.project-one__list-year {
  position: relative;
  display: block;
}

.project-one__list-year p {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: rgba(var(--eston-white-rgb), 0.5);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__list li:hover .project-one__list-year p {
  color: var(--eston-white);
}

.project-one__list-title {
  position: relative;
  display: block;
  margin-left: 80px;
}

.project-one__list-title h5 {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: var(--eston-white);
}

.project-one__img {
  position: absolute;
  left: -180px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
  transition: all 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
}

.project-one__list li:hover .project-one__img {
  transform: translateX(180px) translateY(-50%);
  -webkit-transform: translateX(180px) translateY(-50%);
}

.project-one__img img {
  width: auto;
}

.project-one__list-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 530px;
  width: 100%;
}

.project-one__director-and-budget {
  position: relative;
  display: flex;
  align-items: center;
}

.project-one__director {
  position: relative;
  display: block;
}

.project-one__director p {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-align: right;
  color: #ffb8c0;
}

.project-one__director p span {
  font-weight: 700;
  color: var(--eston-white);
}

.project-one__budget {
  position: relative;
  display: block;
  margin-left: 42px;
}

.project-one__budget p {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-align: right;
  color: #ffb8c0;
}

.project-one__budget p span {
  font-weight: 700;
  color: var(--eston-white);
}

.project-one__read-more {
  position: relative;
  display: block;
}

.project-one__read-more a {
  color: var(--eston-white);
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__read-more a:hover {
  color: var(--eston-black);
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  padding: 120px 0 56px;
  z-index: 1;
}

.team-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 851px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.team-one__left {
  position: relative;
  display: block;
}

.team-one__btn {
  border: 2px solid transparent;
}

.team-one__right {
  position: relative;
  display: block;
  margin-left: 100px;
}

.team-one__right .row {
  --bs-gutter-x: 50px;
}

.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 55px;
}

.team-one__img-box {
  position: relative;
  display: block;
}

.team-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 3;
}

.team-one__img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--eston-base);
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: perspective(400px) rotateX(-90deg);
  -ms-transform: perspective(400px) rotateX(-90deg);
  transform: perspective(400px) rotateX(-90deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: 2;
}

.team-one__single:hover .team-one__img:before {
  opacity: 0.4;
  -webkit-transform: perspective(400px) rotateX(0deg);
  -ms-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
}

.team-one__img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.7s ease 0s;
}

.team-one__single:hover .team-one__img img {
  transform: scale(1.1);
}

.team-one__content {
  position: relative;
  display: block;
  margin-top: 41px;
}

.team-one__content p {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  font-family: var(--eston-font-two);
}

.team-one__content h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  margin-top: 10px;
}

.team-one__content h3 a {
  color: var(--eston-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__content h3 a:hover {
  color: var(--eston-base);
}

/*--------------------------------------------------------------
# Sliding Text
--------------------------------------------------------------*/
.sliding-text {
  position: relative;
  display: block;
  transform: rotate(-3deg);
  overflow-x: hidden;
  z-index: 3;
  margin-left: -5px;
}

.sliding-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--eston-black);
  z-index: -1;
}

.sliding-text__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 0 18px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;
}

.sliding-text__wrap:hover .sliding-text__list {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.sliding-text__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 6px;
  -webkit-animation: slide-left 20s linear infinite;
  animation: slide-left 20s linear infinite;
}

.sliding-text__list > * {
  margin: 0 72.5px;
}

.sliding-text__list li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sliding-text__list li a {
  color: var(--eston-white);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sliding-text__list li:hover a {
  color: transparent;
  -webkit-text-stroke: 1px var(--eston-base);
}

.sliding-text__list li::before {
  content: "";
  position: absolute;
  top: 10px;
  right: -75px;
  height: 45px;
  width: 5px;
  background-color: #474747;
  transform: rotate(21deg);
}

.sliding-text__list li:last-child {
}

.sliding-text__list li:last-child::before {
  display: block;
}

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video-one {
  position: relative;
  display: block;
  z-index: 2;
}

.video-one__inner {
  position: relative;
  display: block;
  text-align: center;
}

.video-one__img {
  position: relative;
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}

.video-one__img img {
  width: 100%;
}

.video-one__video-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.video-one__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  background-color: var(--eston-white);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.video-one__text:hover {
  background-color: var(--eston-base);
}

.video-one__text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--eston-black);
  font-family: var(--eston-font-two);
  font-style: italic;
}

.video-one__text:hover p {
  color: var(--eston-white);
}

.video-one__video-link .ripple,
.video-one__text .ripple:before,
.video-one__text .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

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

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

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/

.sliding-text-two {
  margin-right: -5px;
}

.sliding-text-two:before {
  background-color: var(--eston-base);
}

.sliding-text-two .sliding-text__list li::before {
  background-color: #d74a5b;
}

.sliding-text-two .sliding-text__list li:hover a {
  color: transparent;
  -webkit-text-stroke: 1px #000000;
}

.cs-reverse_animation {
  animation-direction: reverse !important;
}

/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
  position: relative;
  display: block;
  padding: 162px 0 90px;
}

.news-one__top {
  position: relative;
  display: block;
  margin-bottom: 82px;
}

.news-one__top .section-title {
  margin-bottom: 0px;
}

.news-one__left {
  position: relative;
  display: block;
}

.news-one__right {
  position: relative;
  display: block;
  margin-top: 20px;
}

.news-one__btn-box {
  position: relative;
  display: block;
  text-align: right;
}

.news-one__bottom {
  position: relative;
  display: block;
}

.news-one__bottom .row {
  --bs-gutter-x: 95px;
}

.news-one__single {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.news-one__img-box {
  position: relative;
  display: block;
}

.news-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.news-one__img::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--eston-base);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 1;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 1;
}

.news-one__single:hover .news-one__img::after {
  opacity: 0.8;
  transform: scaleY(1);
}

.news-one__img img {
  width: 100%;
  transform: scale(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
}

.blog-one__single:hover .news-one__img img {
  transform: scale(1.2) rotate(1deg);
}

.news-one__img .overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-transition: 0.9s;
  -o-transition: 0.9s;
  transition: 0.9s;
  transform: perspective(400px) scaleY(0);
  transform-origin: bottom;
}

.news-one__single:hover .news-one__img .overlay-icon {
  transform: perspective(400px) scaleY(1);
}

.news-one__single .news-one__img .overlay-icon a {
  position: relative;
  display: inline-block;
}

.news-one__single .news-one__img .overlay-icon span {
  color: #ffffff;
  font-size: 40px;
  line-height: 40px;
}

.news-one__content {
  position: relative;
  display: block;
  margin-top: 41px;
}

.news-one__sub-titlt-and-date {
  position: relative;
  display: flex;
  align-items: center;
}

.news-one__sub-title {
  position: relative;
  display: block;
}

.news-one__sub-title p {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  font-family: var(--eston-font-two);
}

.news-one__date {
  position: relative;
  display: block;
  margin-left: 30px;
}

.news-one__date p {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--eston-base);
}

.news-one__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-top: 11px;
  margin-bottom: 30px;
}

.news-one__title a {
  color: var(--eston-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__title a:hover {
  color: var(--eston-base);
}

.news-one__read-more {
  position: relative;
  display: inline-block;
}

.news-one__read-more a {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--eston-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__read-more a {
  color: var(--eston-base);
}

.news-one__read-more a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--eston-base);
  transform: scaleX(0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  transform-origin: left center;
}

.news-one__single:hover .news-one__read-more a::before {
  transform: scaleX(1);
  transform-origin: bottom center;
  transition-delay: 300ms;
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.brand-one__inner {
  position: relative;
  top:100px;
  display: block;
}

.brand-one__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.brand-one__list li {
  position: relative;
  flex: 0 0 20%;
  max-width: 20%;
  width: 100%;
  height: 120px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #dcdcdc;
  border-top: 1px solid #dcdcdc;
}

.brand-one__list li:last-child {
  border-right: 0;
}

.brand-one__list-one li:first-child {
  border-left: 1px solid #dcdcdc;
}

.brand-one__list-one li:last-child {
  border-top: 0;
}

.brand-one__img {
  position: relative;
  display: block;
}

.brand-one__img img {
  width: 100px;
}

.brand-one__list--two {
  border-bottom: 0;
}

.brand-one__list--two li {
  border-bottom: 1px solid #dcdcdc;
}

.brand-one__list--two li:first-child {
  border-bottom: 0;
}

.brand-one__list--two li:last-child {
  border-right: 1px solid #dcdcdc;
}

.brand-one__btn {
  position: relative;
  display: block;
}

.brand-one__btn h5 {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}

.brand-one__btn h5 a {
  position: relative;
  display: inline-block;
  color: var(--eston-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.brand-one__btn h5 a:hover {
  color: var(--eston-base);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--eston-black);
  z-index: 1;
  padding: 109px 0 35px;
}

.site-footer__top {
  position: relative;
  display: block;
  padding-bottom: 127px;
}

.footer-widget__title-box {
  position: relative;
  display: block;
  margin-bottom: 38px;
}

.footer-widget__title {
  font-size: 18px;
  color: var(--eston-white);
  line-height: 28px;
  font-weight: 700;
}

.footer-widget__title span {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #a9a9a9;
  font-family: var(--eston-font-two);
  margin-left: 10px;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-right: 38px;
  margin-top: 9px;
}

.footer-widget__logo {
  position: relative;
  display: block;
}
.footer-widget__logo img {
  width: 180px;
  height: 60px;
}

.footer-widget__about-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #c4c4c4;
  margin-top: 55px;
  margin-bottom: 20px;
}

.footer-widget__contact {
  position: relative;
  display: block;
}

.footer-widget__contact p {
  font-weight: 700;
  font-size: 14px;
  line-height: 26px;
}

.footer-widget__contact p a {
  color: var(--eston-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact p a:hover {
  color: var(--eston-base);
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}

.site-footer__social a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #999999;
  font-size: 15px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--eston-base);
}

.site-footer__social a + a {
  margin-left: 17px;
}

.footer-widget__services {
  position: relative;
  display: block;
  margin-left: 100px;
}

.footer-widget__services-list {
  position: relative;
  display: block;
}

.footer-widget__services-list li + li {
  margin-top: 14px;
}

.footer-widget__services-list li a {
  position: relative;
  color: #c4c4c4;
  font-size: 14px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__services-list li a:hover {
  color: var(--eston-white);
}

.footer-widget__pages {
  position: relative;
  display: block;
  margin-left: 150px;
}

.footer-widget__pages-list {
  position: relative;
  display: block;
}

.footer-widget__pages-list li {
  position: relative;
  display: block;
}

.footer-widget__pages-list li + li {
  margin-top: 14px;
}

.footer-widget__pages-list li a {
  position: relative;
  color: #c4c4c4;
  font-size: 14px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__pages-list li a:hover {
  color: var(--eston-white);
}

.footer-widget__gallery {
  position: relative;
  display: block;
  margin-left: 22px;
  margin-right: 116px;
}

.footer-widget__gallery .footer-widget__title-box {
  margin-bottom: 45px;
}

.footer-widget__gallery-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-left: -8px;
}

.footer-widget__gallery-list li {
  position: relative;
  display: inline-block;
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 16px;
}

.footer-widget__gallery-img {
  position: relative;
  display: block;
  overflow: hidden;
  width: 70px;
  z-index: 1;
}

.footer-widget__gallery-img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--eston-black-rgb), 0.6);
  transition: all 700ms ease;
  transform: translateY(-100%);
  z-index: 1;
}

.footer-widget__gallery-list li:hover .footer-widget__gallery-img:before {
  transform: translateY(0%);
}

.footer-widget__gallery-img img {
  width: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.footer-widget__gallery-list li:hover .footer-widget__gallery-img img {
  transform: scale(1.1) rotate(2deg);
}

.footer-widget__gallery-img a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--eston-white);
  transform: translateY(100px);
  opacity: 0;
  transition: all 700ms ease;
  z-index: 2;
}

.footer-widget__gallery-list li:hover .footer-widget__gallery-img a {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}

.footer-widget__gallery-list li .footer-widget__gallery-img a:hover {
  color: var(--eston-base);
}

.site-footer__bottom {
  position: relative;
  display: block;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
}

.site-footer__bottom-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #c3c3c3;
}

.site-footer__bottom-text a {
  font-weight: 700;
  color: var(--eston-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--eston-base);
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  padding: 167px 0 90px;
  z-index: 1;
}

.counter-one__inner {
  position: relative;
  display: block;
  text-align: center;
}

.counter-one__icon {
  position: relative;
  display: inline-block;
}

.counter-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--eston-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-one__shape-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.counter-one__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  letter-spacing: -0.02em;
  margin-top: 100px;
  margin-bottom: 120px;
}

.counter-one__title span {
  color: var(--eston-base);
}

.counter-one__count-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.counter-one__count-list li {
  position: relative;
  text-align: center;
  flex: 0 0 20%;
  max-width: 20%;
  width: 100%;
  margin-bottom: 22px;
}

.counter-one__count-list li .icon {
  position: relative;
  display: inline-block;
}

.counter-one__count-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: var(--eston-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter-one__count-list li:hover .icon span {
  transform: scale(0.9);
}

.counter-one__count-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  margin-bottom: 20px;
}

.counter-one__count-box h3 {
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
  text-align: center;
  letter-spacing: -0.02em;
}

.counter-one__count-plus {
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
  color: var(--eston-black);
}

.counter-one__count-shape {
  position: relative;
  display: block;
  width: 1px;
  height: 50px;
  background-color: #eaeaea;
  margin: 0 auto;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-one__count-list li:hover .counter-one__count-shape {
  background-color: var(--eston-base);
}

.counter-one__count-text {
  margin-top: 26px;
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
  position: relative;
  display: block;
  padding: 120px 0 190px;
  background-color: #f5f5f5;
  z-index: 1;
}

.services-two__top {
  position: relative;
  display: block;
  margin-bottom: 80px;
}

.services-two__top .section-title {
  margin-bottom: 0px;
}

.services-two__top-left {
  position: relative;
  display: block;
}

.services-two__top-right {
  position: relative;
  display: block;
  text-align: right;
  margin-top: 27px;
}

.services-two__btn-box {
  position: relative;
  display: block;
}

.services-two__btn {
  border: 2px solid var(--eston-white);
}

.services-two__bottom {
  position: relative;
  display: block;
}

.services-two__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.services-two__list li + li {
  margin-left: -23px;
}

.services-two__list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 330px;
  height: 330px;
  background-color: var(--eston-white);
  border-radius: 50%;
  text-align: center;
  padding: 40px 40px 40px;
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.services-two__list li:hover {
  z-index: 3;
}

.services-two__list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: var(--eston-base);
  transform: scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.services-two__list li:hover::before {
  transform: scale(1);
}

.services-two__single {
  position: relative;
  display: block;
}

.services-two__list li:nth-child(3) {
  box-shadow: 20px 16px 32px rgba(0, 0, 0, 0.06);
}

.services-two__icon {
  position: relative;
  display: inline-block;
}

.services-two__icon img {
  width: auto;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
}

.services-two__list li:hover .services-two__icon img {
  opacity: 0;
}

.services-two__hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.services-two__hover-icon img {
  width: auto;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
}

.services-two__list li:hover .services-two__hover-icon img {
  opacity: 1;
}

.services-two__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.services-two__title a {
  color: var(--eston-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__list li:hover .services-two__title a {
  color: var(--eston-white);
}

.services-two__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__list li:hover .services-two__text {
  color: var(--eston-white);
}

/*--------------------------------------------------------------
# Sliding Text Three
--------------------------------------------------------------*/
.sliding-text-three {
  margin-right: -5px;
}

.sliding-text-three:before {
  background-color: var(--eston-base);
}

.sliding-text-three .sliding-text__list li::before {
  background-color: #d74a5b;
}

.sliding-text-three .sliding-text__list li a {
  color: #ffffff;
}

.sliding-text-three .sliding-text__list li:hover a {
  color: transparent;
  -webkit-text-stroke: 1px #000000;
}

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-two {
  position: relative;
  display: block;
  padding: 190px 0 120px;
}

.project-two .container {
  overflow: hidden;
}

.project-two .section-title {
  margin-bottom: 77px;
}

.project-two .section-title__title-box p {
  left: 50%;
  transform: translateX(-50%);
}

.project-two__carousel-box {
  position: relative;
  display: block;
}

.project-two__carousel {
  position: relative;
  display: block;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
}

.project-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.project-two__single {
  position: relative;
  display: block;
}

.project-two__img-box {
  position: relative;
  display: block;
}

.project-two__img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: var(--eston-white);
  background-position: top left;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  z-index: 1;
}

.project-two__single:hover .project-two__img-box::before {
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

.project-two__carousel.owl-carousel
  .owl-stage-outer
  .owl-item.active
  .project-two__img-box::before {
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

.project-two__img-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: var(--eston-white);
  background-position: bottom left;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  z-index: 1;
}

.project-two__single:hover .project-two__img-box::after {
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

.project-two__carousel.owl-carousel
  .owl-stage-outer
  .owl-item.active
  .project-two__img-box::after {
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

.project-two__img {
  position: relative;
  display: block;
}

.project-two__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  opacity: 0.8;
  background-position: bottom left;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.project-two__single:hover .project-two__img::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.project-two__carousel.owl-carousel
  .owl-stage-outer
  .owl-item.active
  .project-two__img::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.project-two__img img {
  width: 100%;
}

.project-two__play {
  position: absolute;
  top: 140px;
  left: 50%;
  width: 100px;
  height: 100px;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  font-family: var(--eston-font-two);
  color: var(--eston-black);
  transform: translateX(-50%) scale(0);
  background-color: var(--eston-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.project-two__single:hover .project-two__play {
  transform: translateX(-50%) scale(1);
  transition-delay: 200ms;
}

.project-two__carousel.owl-carousel
  .owl-stage-outer
  .owl-item.active
  .project-two__play {
  transform: translateX(-50%) scale(1);
  transition-delay: 200ms;
}

.project-two__play:hover {
  color: var(--eston-white);
  background-color: var(--eston-base);
}

.project-two__play:active {
  color: var(--eston-white);
  background-color: var(--eston-base);
}

.project-two__title {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  background-position: bottom left;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.project-two__single:hover .project-two__title {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.project-two__carousel.owl-carousel
  .owl-stage-outer
  .owl-item.active
  .project-two__title {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.project-two__title a {
  color: var(--eston-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-two__title a:hover {
  color: var(--eston-base);
}

.project-two__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

.project-two__bottom-title {
  font-weight: 700;
  font-size: 200px;
  line-height: 200px;
  letter-spacing: -0.04em;
  color: var(--eston-base);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.project-two__bottom-title:hover {
  color: transparent;
  -webkit-text-stroke: 3px var(--eston-base);
}

.project-two__bottom-img {
  position: relative;
  display: block;
  margin-left: 80px;
}

.project-two__bottom-img img {
  width: auto;
}

/*--------------------------------------------------------------
# Video Two
--------------------------------------------------------------*/
.video-two {
  position: relative;
  display: block;
  padding: 275px 0 275px;
  z-index: 1;
}

.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.video-two__video-link {
  position: relative;
  display: block;
}

.video-two__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--eston-white);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  text-align: center;
  margin: 0 auto;
}

.video-two__text:hover {
  background-color: var(--eston-base);
}

.video-two__text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--eston-black);
  font-family: var(--eston-font-two);
  font-style: italic;
}

.video-two__text:hover p {
  color: var(--eston-white);
}

.video-two__video-link .ripple,
.video-two__text .ripple:before,
.video-two__text .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

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

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

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
  position: relative;
  display: block;
  padding: 82px 0 82px;
  background-color: var(--eston-white); 
  z-index: 1;
}

.brand-two .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
      width: 300px;
    margin-right: 100px;
}

.brand-two .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  width: 100%;
}


.brand-two .swiper-slide img:hover {
  opacity: 0.7;
}

.brand-two__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.brand-two__bg-text p {
  font-weight: 700;
  font-size: 160px;
  line-height: 200px;
  text-align: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--eston-white-rgb), 0.06);
}

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.team-two .section-title {
  margin-bottom: 77px;
}

.team-two__bottom {
  position: relative;
  display: block;
  margin-bottom: 65px;
}

.team-two__carousel {
  position: relative;
  display: block;
}

.team-two__single {
  position: relative;
  display: block;
}

.team-two__img-box {
  position: relative;
  display: block;
}

.team-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 3;
}

.team-two__img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--eston-base);
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: perspective(400px) rotateX(-90deg);
  -ms-transform: perspective(400px) rotateX(-90deg);
  transform: perspective(400px) rotateX(-90deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: 2;
}

.team-two__single:hover .team-two__img:before {
  opacity: 0.4;
  -webkit-transform: perspective(400px) rotateX(0deg);
  -ms-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
}

.team-two__img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.7s ease 0s;
}

.team-two__single:hover .team-two__img img {
  transform: scale(1.1);
}

.team-two__content {
  position: relative;
  display: block;
  margin-top: 41px;
}

.team-two__content p {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  font-family: var(--eston-font-two);
}

.team-two__content h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  margin-top: 10px;
}

.team-two__content h3 a {
  color: var(--eston-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-two__content h3 a:hover {
  color: var(--eston-base);
}

.team-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.team-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.team-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.team-two__carousel.owl-theme .owl-nav {
  position: absolute;
  top: -166px;
  right: 0;
  margin: 0;
}

.team-two__carousel.owl-theme .owl-nav .owl-next {
  height: 54px;
  width: 54px;
  line-height: 54px;
  border-radius: 0;
  color: var(--eston-black);
  background-color: var(--eston-white);
  border: 2px solid #eaeaea;
  font-size: 16px;
  margin: 0;
  margin-left: 20px;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
}

.team-two__carousel.owl-theme .owl-nav .owl-prev {
  height: 54px;
  width: 54px;
  line-height: 54px;
  border-radius: 0;
  color: var(--eston-black);
  background-color: var(--eston-white);
  border: 2px solid #eaeaea;
  font-size: 16px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
}

.team-two__carousel.owl-theme .owl-nav .owl-next span,
.team-two__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-two__carousel.owl-theme .owl-nav .owl-next:hover,
.team-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--eston-base);
  border: 2px solid var(--eston-base);
  color: var(--eston-white);
}

.team-two__btn {
  color: var(--eston-white);
  background-color: var(--eston-black);
  border: 2px var(--eston-black);
}

.team-two__btn:hover {
  border: 2px var(--eston-base);
}

.team-two__btn::after {
  background-color: var(--eston-base);
}

/*--------------------------------------------------------------
# News Two
--------------------------------------------------------------*/
.news-two {
  position: relative;
  display: block;
  background-color: #f5f5f5;
  padding: 120px 0 90px;
  overflow: hidden;
}

.news-two .section-title {
  margin-bottom: 77px;
}

.news-two .section-title__title-box p {
  left: 50%;
  transform: translateX(-50%);
}

.news-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.news-two__img-box {
  position: relative;
  display: block;
}

.news-two__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.news-two__img::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--eston-base);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 1;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 1;
}

.news-two__single:hover .news-two__img::after {
  opacity: 0.8;
  transform: scaleY(1);
}

.news-two__img img {
  width: 100%;
  transform: scale(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
}

.blog-one__single:hover .news-two__img img {
  transform: scale(1.2) rotate(1deg);
}

.news-two__img .overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-transition: 0.9s;
  -o-transition: 0.9s;
  transition: 0.9s;
  transform: perspective(400px) scaleY(0);
  transform-origin: bottom;
}

.news-two__single:hover .news-two__img .overlay-icon {
  transform: perspective(400px) scaleY(1);
}

.news-two__single .news-two__img .overlay-icon a {
  position: relative;
  display: inline-block;
}

.news-two__single .news-two__img .overlay-icon span {
  color: #ffffff;
  font-size: 40px;
  line-height: 40px;
}

.news-two__date {
  position: absolute;
  right: 40px;
  bottom: -13px;
  z-index: 3;
}

.news-two__date p {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--eston-white);
  background-color: var(--eston-base);
  padding: 6px 10px 6px;
}

.news-two__content {
  position: relative;
  display: block;
  padding: 41px 38px 34px;
  background-color: var(--eston-white);
}

.news-two__sub-title {
  position: relative;
  display: block;
}

.news-two__sub-title p {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  font-family: var(--eston-font-two);
}

.news-two__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-top: 11px;
  margin-bottom: 30px;
}

.news-two__title a {
  color: var(--eston-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-two__title a:hover {
  color: var(--eston-base);
}

.news-two__read-more {
  position: relative;
  display: inline-block;
}

.news-two__read-more a {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--eston-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-two__read-more a:hover {
  color: var(--eston-base);
}

/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/
.site-footer-two {
  position: relative;
  display: block;
  background-color: var(--eston-black);
  padding: 120px 0 0;
  z-index: 1;
}

.site-footer-two__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
  color: var(--eston-white);
}

.site-footer-two__top {
  position: relative;
  display: block;
  padding-top: 75px;
  padding-bottom: 127px;
  border-bottom: 1px solid rgba(var(--eston-white-rgb), 0.1);
}

.footer-widget-two__title-box {
  position: relative;
  display: block;
  margin-bottom: 38px;
}

.footer-widget-two__title {
  font-size: 18px;
  color: var(--eston-white);
  line-height: 28px;
  font-weight: 700;
}

.footer-widget-two__services {
  position: relative;
  display: block;
}

.footer-widget-two__services-list {
  position: relative;
  display: block;
}

.footer-widget-two__services-list li + li {
  margin-top: 14px;
}

.footer-widget-two__services-list li a {
  position: relative;
  color: #c4c4c4;
  font-size: 14px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-two__services-list li a:hover {
  color: var(--eston-white);
}

.footer-widget-two__pages {
  position: relative;
  display: block;
  margin-left: 22px;
}

.footer-widget-two__pages-box {
  position: relative;
  display: flex;
}

.footer-widget-two__pages-list {
  position: relative;
  display: block;
}

.footer-widget-two__pages-list-2 {
  position: relative;
  display: block;
  margin-left: 52px;
}

.footer-widget-two__pages-list li {
  position: relative;
  display: block;
}

.footer-widget-two__pages-list li + li {
  margin-top: 14px;
}

.footer-widget-two__pages-list li a {
  position: relative;
  color: #c4c4c4;
  font-size: 14px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-two__pages-list li a:hover {
  color: var(--eston-white);
}

.footer-widget-two__get-in-touch {
  position: relative;
  display: block;
  margin-left: 70px;
}

.footer-widget-two__get-in-touch .footer-widget-two__title-box {
  margin-bottom: 31px;
}

.footer-widget-two__get-in-touch-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #c4c4c4;
  margin-bottom: 20px;
}

.footer-widget-two__contact {
  position: relative;
  display: block;
}

.footer-widget-two__contact p {
  font-weight: 700;
  font-size: 14px;
  line-height: 26px;
}

.footer-widget-two__contact p a {
  color: var(--eston-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-two__contact p a:hover {
  color: var(--eston-base);
}

.site-footer-two__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}

.site-footer-two__social a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #999999;
  font-size: 15px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer-two__social a:hover {
  color: var(--eston-base);
}

.site-footer-two__social a + a {
  margin-left: 17px;
}

.footer-widget-two__newsletter {
  position: relative;
  display: block;
}

.footer-widget-two__newsletter .footer-widget-two__title-box {
  margin-bottom: 26px;
}

.footer-widget-two__email-box {
  position: relative;
  display: block;
}

.footer-widget-two__email-input-box {
  position: relative;
  display: block;
}

.footer-widget-two__email-input-box input[type="email"] {
  width: 100%;
  height: 53px;
  border: none;
  border-bottom: 1px solid var(--eston-white);
  outline: none;
  background-color: transparent;
  font-size: 14px;
  color: rgba(var(--eston-white-rgb), 0.3);
  padding-right: 95px;
}

.footer-widget-two__btn {
  position: absolute;
  right: -6px;
  bottom: 14px;
  border: none;
  background-color: transparent;
  font-size: 15px;
  font-weight: 700;
  color: var(--eston-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-two__btn:hover {
  color: var(--eston-white);
}

.footer-widget-two__newsletter-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: rgba(var(--eston-white-rgb), 0.4);
  margin-top: 20px;
}

.site-footer-two__bottom {
  position: relative;
  display: block;
  padding: 30px 0 30px;
}

.site-footer-two__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-footer-two__bottom-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #c3c3c3;
}

.site-footer-two__bottom-text a {
  font-weight: 700;
  color: var(--eston-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-two__bottom-text a:hover {
  color: var(--eston-base);
}

.site-footer-two__bottom-list {
  position: relative;
  display: block;
}

.site-footer-two__bottom-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer-two__bottom-list li a + a {
  margin-left: 45px;
}

.site-footer-two__bottom-list li a {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-two__bottom-list li a:hover {
  color: var(--eston-base);
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.about-two__shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.about-two__shape-2 img {
  width: auto;
}

.about-two__shape-3 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.about-two__shape-3 img {
  width: auto;
}

.about-two__left {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-right: 60px;
}

.about-two__img {
  position: relative;
  display: block;
}

.about-two__img img {
  width: 100%;
}

.about-two__icon {
  position: absolute;
  top: 50%;
  right: -85px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-50%);
}

.about-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--eston-base);
}

.about-two__shape-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.about-two__shape-1 img {
  width: auto;
}

.about-two__right {
  position: relative;
  display: block;
  margin-left: 100px;
  margin-right: 80px;
  margin-top: 57px;
}

.about-two__right .section-title {
  margin-bottom: 24px;
}

.about-two__img-list {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: -23px;
  margin-top: 49px;
}

.about-two__img-list li {
  position: relative;
  display: block;
}

.about-two__img-list li img {
  width: auto;
}

/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
.services-three {
  position: relative;
  display: block;
  background-color: #f5f5f5;
  padding: 120px 0 90px;
  z-index: 1;
}

.services-three__top {
  position: relative;
  display: block;
  margin-bottom: 77px;
}

.services-three__top .section-title {
  margin-bottom: 0px;
}

.services-three__left {
  position: relative;
  display: block;
}

.services-three__right {
  position: relative;
  display: block;
  text-align: right;
  margin-top: 27px;
}

.services-three__btn-box {
  position: relative;
  display: block;
}

.services-three__btn {
  border: 2px solid var(--eston-white);
}

.services-three__bottom {
  position: relative;
  display: block;
}

.services-three__bottom .row {
  --bs-gutter-x: 50px;
}

.services-three__single {
  position: relative;
  display: block;
  background-color: var(--eston-white);
  margin-bottom: 30px;
}

.services-three__img-box {
  position: relative;
  display: block;
}

.services-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.services-three__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #ffffff 100%);
  opacity: 0.9;
  z-index: 1;
}

.services-three__img img {
  width: 100%;
  transition: all 500ms ease;
  transform: scale(1);
}

.services-three__single:hover .services-three__img img {
  transform: scale(1.05);
}

.services-three__title {
  position: absolute;
  bottom: -16px;
  left: 50px;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -0.02em;
  z-index: 3;
}

.services-three__title a {
  color: var(--eston-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-three__title a:hover {
  color: var(--eston-base);
}

.services-three__content {
  position: relative;
  display: block;
  padding: 35px 50px 44px;
}

.services-three__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 34px;
}

.services-three__read-more {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  text-transform: uppercase;
  color: #bfbfbf;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-three__read-more:hover {
  color: var(--eston-base);
}

/*--------------------------------------------------------------
# Project Three
--------------------------------------------------------------*/
.project-three {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.project-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.project-three .row {
  --bs-gutter-x: 90px;
}

.project-three .section-title {
  margin-bottom: 77px;
}

.project-three .section-title__tagline {
  color: var(--eston-white);
}

.project-three .section-title__title {
  color: var(--eston-white);
}

.project-three .section-title__title-box p {
  left: 50%;
  transform: translateX(-50%);
  color: rgba(121, 121, 121, 0.2);
}

.project-three__single {
  position: relative;
  display: block;
  margin-bottom: 70px;
}

.project-three__img-box {
  position: relative;
  display: block;
}

.project-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.project-three__img img {
  width: 100%;
}

.project-three__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eston-black);
  background-color: var(--eston-white);
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: var(--eston-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.project-three__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--eston-base-rgb), 0.8);
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.project-three__single:hover .project-three__img:before {
  transform: scale(1);
  opacity: 1;
}

.project-three__play:hover {
  color: var(--eston-white);
  background-color: var(--eston-black);
}

.project-three__content {
  position: relative;
  display: block;
  margin-top: 40px;
}

.project-three__sub-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: rgba(var(--eston-white-rgb), 0.6);
}

.project-three__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  margin-top: 18px;
}

.project-three__title a {
  color: var(--eston-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-three__title a:hover {
  color: var(--eston-base);
}

.project-three__btn-box {
  position: relative;
  display: block;
  text-align: center;
}

.project-three__btn {
  color: var(--eston-white);
  border: 2px solid var(--eston-base);
  background-color: var(--eston-base);
}

/*--------------------------------------------------------------
# Rewards One
--------------------------------------------------------------*/
.rewards-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.hover-reveal {
  position: fixed;
  width: 600px;
  height: 400px;
  top: 50%;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%);
  z-index: 99;
}
.hover-reveal__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.hover-reveal__img {
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 99;
}

.rewards-one__top {
  position: relative;
  display: block;
  margin-bottom: 77px;
}

.rewards-one__top .section-title {
  margin-bottom: 0px;
}

.rewards-one__left {
  position: relative;
  display: block;
}

.rewards-one__right {
  position: relative;
  display: block;
  margin-top: 27px;
}

.rewards-one__btn-box {
  position: relative;
  display: block;
  text-align: right;
}

.rewards-one__bottom {
  position: relative;
  display: block;
}

.rewards-one__img {
  position: absolute;
  top: -18px;
  right: 187px;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.rewards-one__list li:hover .rewards-one__img {
  opacity: 1;
  z-index: 1;
}

.rewards-one__img img {
  width: auto;
}

.rewards-one__list {
  position: relative;
  display: block;
}

.rewards-one__list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0 48px;
  border-bottom: 1px solid rgba(var(--eston-black-rgb), 0.06);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.rewards-one__list li:hover {
  border-bottom: 1px solid var(--eston-black);
}

.rewards-one__list li:first-child {
  border-top: 1px solid rgba(var(--eston-black-rgb), 0.06);
}

.rewards-one__list-left {
  position: relative;
  display: flex;
  align-items: center;
}

.rewards-one__year {
  position: relative;
  display: block;
}

.rewards-one__year p {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-base);
}

.rewards-one__title {
  position: relative;
  display: block;
  margin-left: 42px;
}

.rewards-one__title h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
}

.rewards-one__title h3 a {
  color: var(--eston-black);
}

.rewards-one__list-right {
  position: relative;
  display: flex;
  align-items: center;
}

.rewards-one__list-right h4 {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
}

.rewards-one__list-right p {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  margin-left: 11px;
}

.rewards-one__list-right p span {
  position: relative;
  margin-right: 11px;
}

/*--------------------------------------------------------------
# FAQ One
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  display: block;
  background-color: #f5f5f5;
  padding: 120px 0 160px;
  z-index: 1;
}

.faq-one__left {
  position: relative;
  display: block;
  margin-right: 230px;
}

.faq-one__img-box {
  position: relative;
  display: block;
}

.faq-one__img {
  position: relative;
  display: block;
}

.faq-one__img img {
  width: 100%;
}

.faq-one__img-2 {
  position: absolute;
  top: 180px;
  left: 200px;
  z-index: 1;
}

.faq-one__img-2 img {
  width: auto;
}

.faq-one__img-2::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: 0;
  bottom: 0;
  background-color: var(--eston-white);
  z-index: -1;
}

.faq-one__right {
  position: relative;
  display: block;
  margin-left: 80px;
  margin-right: 48px;
  margin-top: 44px;
}

.faq-one__right .section-title {
  margin-bottom: 60px;
}

.faq-one__faq-box {
  position: relative;
  display: block;
}

.faq-one__faq-box .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__faq-box .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-one__faq-box .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: var(--eston-black);
  position: relative;
  background-color: var(--eston-white);
  padding: 23px 30px 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__faq-box .faq-one-accrodion .accrodion + .accrodion {
  margin-top: 16px;
}

.faq-one__faq-box .faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--eston-white);
  background-color: var(--eston-base);
}

.faq-one__faq-box .faq-one-accrodion .accrodion-title h4::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 14px;
  color: #cecece;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__faq-box
  .faq-one-accrodion
  .accrodion.active
  .accrodion-title
  h4::before {
  content: "\f068";
  color: var(--eston-white);
}

.faq-one__faq-box .faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 26px 30px 13px;
}

.faq-one__faq-box .faq-one-accrodion .accrodion-content p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

.faq-one__faq-box .faq-one-accrodion .accrodion:last-child {
  border-bottom: 1px solid transparent;
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.testimonial-two__left {
  position: relative;
  display: block;
}

.testimonial-two__right {
  position: relative;
  display: block;
  margin-left: 35px;
  margin-right: -315px;
}

.testimonial-two__carousel {
  position: relative;
  display: block;
}

.testimonial-two__single {
  position: relative;
  display: block;
  border: 2px solid #eaeaea;
  padding: 48px 48px 48px;
  z-index: 1;
}

.testimonial-two__retting {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-two__retting i {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--eston-base);
}

.testimonial-two__retting i + i {
  margin-left: 7px;
}

.testimonial-two__text {
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  color: var(--eston-black);
  margin-top: 26px;
  margin-bottom: 40px;
}

.testimonial-two__client-img-and-info {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-two__client-img {
  position: relative;
  display: block;
  border-radius: 50%;
}

.testimonial-two__client-img img {
  width: auto;
  border-radius: 50%;
}

.testimonial-two__client-info {
  position: relative;
  display: block;
  margin-left: 20px;
}

.testimonial-two__client-info h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  color: var(--eston-black);
}

.testimonial-two__client-info p {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  margin-top: 10px;
}

.testimonial-two__quote {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: -1;
}

.testimonial-two__quote img {
  width: auto;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-two__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: 71px;
  left: -584px;
  margin: 0;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
  height: 56px;
  width: 56px;
  line-height: 55px;
  border-radius: 0;
  color: var(--eston-black);
  border: 2px solid #f2f2f2;
  font-size: 15px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  transform: rotate(90deg);
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
  height: 56px;
  width: 56px;
  line-height: 55px;
  color: var(--eston-black);
  border-radius: 0;
  border: 2px solid #f2f2f2;
  font-size: 15px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
  transform: rotate(-90deg);
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 9px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 9px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--eston-base);
  border: 2px solid var(--eston-base);
  color: var(--eston-white);
}

/*--------------------------------------------------------------
# Brand Three
--------------------------------------------------------------*/
.brand-three {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.brand-three__top {
  position: relative;
  display: block;
  text-align: center;
}

.brand-three__shape-2 {
  position: relative;
  display: block;
  width: 1px;
  height: 150px;
  background-color: var(--eston-base);
  margin: 0 auto 165px;
}

.brand-three__icon {
  position: relative;
  display: inline-block;
}

.brand-three__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--eston-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.brand-three__shape-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.brand-three__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  letter-spacing: -0.02em;
  margin-top: 100px;
  margin-bottom: 80px;
}

.brand-three__title span {
  color: var(--eston-base);
}

/*--------------------------------------------------------------
# Site Footer Three
--------------------------------------------------------------*/
.site-footer-three {
  background-color: var(--eston-white);
}

.site-footer-three .footer-widget__title {
  color: var(--eston-black);
}

.site-footer-three .footer-widget__about-text {
  color: var(--eston-gray);
}

.site-footer-three .footer-widget__contact p a {
  color: var(--eston-black);
}

.site-footer-three .footer-widget__contact p a:hover {
  color: var(--eston-base);
}

.site-footer-three .footer-widget__services-list li a {
  color: var(--eston-gray);
}

.site-footer-three .footer-widget__services-list li a:hover {
  color: var(--eston-base);
}

.site-footer-three .footer-widget__pages-list li a {
  color: var(--eston-gray);
}

.site-footer-three .footer-widget__pages-list li a:hover {
  color: var(--eston-base);
}

.site-footer-three .footer-widget__title span {
  color: var(--eston-gray);
}

.site-footer-three .site-footer__bottom-text {
  color: var(--eston-gray);
}

.site-footer-three .site-footer__bottom-text a {
  color: var(--eston-black);
}

.site-footer-three .site-footer__bottom-text a:hover {
  color: var(--eston-base);
}

/*--------------------------------------------------------------
# Feature Two
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  display: block;
  background-color: var(--eston-black);
  padding: 203px 0 119px;
  overflow-x: hidden;
  z-index: 1;
}

.feature-two:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 30%;
  background: rgb(34, 34, 34);
  background: linear-gradient(
    90deg,
    rgba(34, 34, 34, 1) 0%,
    rgba(34, 34, 34, 0) 100%,
    rgba(34, 34, 34, 0) 100%,
    rgba(34, 34, 34, 1) 100%
  );
  z-index: 1;
}

.feature-two:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;

  background: rgb(34, 34, 34);
  background: linear-gradient(
    280deg,
    rgba(34, 34, 34, 1) 0%,
    rgba(34, 34, 34, 0.3981967787114846) 50%,
    rgba(34, 34, 34, 0) 100%
  );
  z-index: 1;
}

.feature-two__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;
}

.feature-two__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0 6px;
}

.feature-two__list:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.marquee_mode {
  position: relative;
}

.marquee_mode .js-marquee {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.feature-two__list > * {
  margin: 0 0px;
}

.feature-two__list li {
  position: relative;
  display: block;
  margin: 0 70px 0;
}

.feature-two__list li a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  font-size: 60px;
  line-height: 60px;
  text-align: center;
  letter-spacing: -0.02em;
}

.feature-two__list li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 3px;
  right: 0;
  height: 3px;
  background: #ffffff;
  transform: scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__list li:hover a:before {
  transform: scale(1);
}

.feature-two__img {
  position: absolute;
  top: -166px;
  right: -40px;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translateX(50px) scale(0.5);
  transform: translateX(50px) scale(0.5);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__img img {
  width: 100%;
  border-radius: 50%;
}

.feature-two__list li:hover .feature-two__img {
  -webkit-transform: translateX(0px) scale(1);
  transform: translateX(0px) scale(1);
  opacity: 1;
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  padding: 110px 0 120px;
  z-index: 1;
}

.testimonial-one__slider {
  position: relative;
  display: block;
}

.testimonial-one__main-content {
  position: relative;
  display: block;
  text-align: center;
}

.testimonial-one__carousel {
  position: relative;
  display: block;
}

.testimonial-one__quote {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.testimonial-one__quote span {
  position: relative;
  display: inline-block;
  font-size: 78px;
  color: var(--eston-base);
}

.testimonial-one__text {
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--eston-black);
}

.testimonial-one__thumb-outer-box {
  position: relative;
  display: block;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  border-top: 2px solid #eaeaea;
  padding-top: 30px;
  margin-top: 47px;
}

.testimonial-one__shape-1 {
  position: absolute;
  top: -28px;
  left: 315px;
}

.testimonial-one__shape-1 img {
  width: auto;
}

.testimonial-one__thumb-carousel {
  position: relative;
  display: block;
}

.testimonial-one__thumb-item {
  position: relative;
  display: block;
}

.testimonial-one__img-holder-box {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.testimonial-one__img-holder {
  position: relative;
  display: block;
  width: 60px;
  border-radius: 50%;
}

.testimonial-one__img-holder img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-one__client-info {
  margin-left: 20px;
}

.testimonial-one__client-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 10px;
}

.testimonial-one__client-sub-title {
  font-size: 14px;
  line-height: 14px;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  background-color: var(--eston-black);
  overflow: hidden;
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.page-header__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.6;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 98.36%);
  z-index: -1;
}

.page-header__inner {
  position: relative;
  display: block;
  padding: 300px 0 100px;
  z-index: 15;
}

.page-header__inner p {
  color: var(--eston-white);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  font-family: var(--eston-font-two);
}

.page-header__inner h2 {
  font-weight: 700;
  font-size: 80px;
  line-height: 80px;
  letter-spacing: -0.02em;
  color: var(--eston-white);
  margin-top: 26px;
}

.thm-breadcrumb__inner {
  position: absolute;
  bottom: 103px;
  right: 0;
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: var(--eston-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li + li {
  margin-left: 12px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: var(--eston-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--eston-base);
  opacity: 1;
}

.thm-breadcrumb li span {
  font-size: 14px;
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
  position: relative;
  display: block;
  padding: 180px 0 210px;
  z-index: 1;
}

.about-three__left {
  position: relative;
  display: block;
  margin-left: 60px;
  margin-right: 60px;
}

.about-three__img-box {
  position: relative;
  display: block;
}

.about-three__img {
  position: relative;
  display: block;
  z-index: 1;
}

.about-three__img img {
  width: 100%;
}

.about-three__img-2 {
  position: absolute;
  top: -60px;
  left: -60px;
}

.about-three__img-2 img {
  width: auto;
}

.about-three__img-3 {
  position: absolute;
  bottom: -60px;
  right: -60px;
  z-index: 1;
}

.about-three__img-3 img {
  width: auto;
}

.about-three__curved-circle {
  position: absolute;
  top: 0;
  right: -74px;
  height: 140px;
  width: 140px;
  z-index: 2;
}

.about-three__curved-circle .curved-circle-2 {
  position: absolute;
  font-size: 15px;
  font-weight: 400;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: textRotate 10s linear 0s forwards infinite alternate;
}

.about-three__right {
  position: relative;
  display: block;
  margin-left: 90px;
  margin-right: 220px;
}

.about-three__right .section-title {
  margin-bottom: 33px;
}

.about-three__tab-box {
  position: relative;
  display: block;
}

.tabs-one__inner .tab-buttons {
  position: relative;
  display: block;
}

.tabs-one__inner .tab-buttons .tab-btn {
  position: relative;
  display: inline-block;
}

.tabs-one__inner .tab-buttons .tab-btn + .tab-btn {
  margin-left: 10px;
}

.tabs-one__inner .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: var(--eston-black);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.tabs-one__inner .tab-buttons .tab-btn span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--eston-base);
  visibility: hidden;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transform: scalex(0) translateZ(100px);
  transform: scalex(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease,
    -webkit-transform 700ms ease;
}

.tabs-one__inner .tab-buttons .tab-btn.active-btn span::before {
  visibility: visible;
  -webkit-transform: scalex(1) translateZ(1px);
  transform: scalex(1) translateZ(1px);
}

.tabs-one__inner .tab-buttons .tab-btn.active-btn span {
  color: var(--eston-base);
}

.tabs-one__inner .tabs-content {
  position: relative;
  display: block;
}

.tabs-one__inner .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.tabs-one__inner .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.tabs-one__tab-content-inner {
  position: relative;
  display: block;
  margin-top: 21px;
  margin-bottom: 49px;
}

.about-three__btn-box {
  position: relative;
  display: block;
}

.services-four {
  padding: 120px 0 397px;
}

/*--------------------------------------------------------------
# Video Three
--------------------------------------------------------------*/
.video-three {
  position: relative;
  display: block;
  margin-top: -360px;
  z-index: 2;
}

.video-three .container {
  max-width: 1230px;
}

.video-three__inner {
  position: relative;
  display: block;
  padding: 240px 0 240px;
  z-index: 1;
}

.video-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.video-three__video-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-three__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  background-color: var(--eston-white);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.video-three__text:hover {
  background-color: var(--eston-base);
}

.video-three__text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--eston-black);
  font-family: var(--eston-font-two);
  font-style: italic;
}

.video-three__text:hover p {
  color: var(--eston-white);
}

.video-three__video-link .ripple,
.video-three__text .ripple:before,
.video-three__text .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

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

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

/*--------------------------------------------------------------
# News Three
--------------------------------------------------------------*/
.news-three .news-two__content {
  border: 1px solid #c8c8c8;
  border-top: 0;
}

/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/
.team-three {
  position: relative;
  display: block;
  padding: 300px 0 170px;
  z-index: 1;
}

.team-three .row {
  --bs-gutter-x: 120px;
}

.team-three__single {
  position: relative;
  display: block;
  margin-bottom: 195px;
}

.team-three__single-2 {
  margin-top: -180px;
}

.team-three__single-5 {
  margin-top: -180px;
}

.team-three__img-box {
  position: relative;
  display: block;
}

.team-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 3;
}

.team-three__img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--eston-base);
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: perspective(400px) rotateX(-90deg);
  -ms-transform: perspective(400px) rotateX(-90deg);
  transform: perspective(400px) rotateX(-90deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: 2;
}

.team-three__single:hover .team-three__img:before {
  opacity: 0.4;
  -webkit-transform: perspective(400px) rotateX(0deg);
  -ms-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
}

.team-three__img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.7s ease 0s;
}

.team-three__single:hover .team-three__img img {
  transform: scale(1.1);
}

.team-three__content {
  position: relative;
  display: block;
  margin-top: 41px;
}

.team-three__content p {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  font-family: var(--eston-font-two);
}

.team-three__content h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  margin-top: 10px;
}

.team-three__content h3 a {
  color: var(--eston-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-three__content h3 a:hover {
  color: var(--eston-base);
}

.team-three__btn-box {
  position: relative;
  display: block;
  text-align: center;
  margin-top: -120px;
}

/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.contact-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1257px;
  background-color: #f5f5f5;
}

.contact-one__left {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-right: 50px;
}

.contact-one__form-box {
  position: relative;
  display: block;
}

.contact-one__form {
  position: relative;
  display: block;
}

.contact-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: none;
  background-color: var(--eston-white);
  padding-left: 30px;
  padding-right: 75px;
  outline: none;
  font-size: 14px;
  color: var(--eston-gray);
  display: block;
  font-weight: 400;
}

.contact-one__input-box textarea {
  font-size: 14px;
  color: var(--eston-gray);
  height: 140px;
  width: 100%;
  background-color: var(--eston-white);
  padding: 15px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 400;
}

.contact-one__input-box.text-message-box {
  height: 138px;
  margin-bottom: 30px;
}

.contact-one__btn {
  border: 2px solid var(--eston-black);
  color: var(--eston-white);
  background-color: var(--eston-black);
}

.contact-one__btn::after {
  background-color: var(--eston-base);
}

.contact-one__btn:hover {
  border: 2px solid var(--eston-base);
}

.contact-one__icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.contact-one__icon::before {
  content: "";
  position: absolute;
  top: -9px;
  left: -22px;
  bottom: -6px;
  width: 1px;
  background-color: #d9d9d9;
}

.contact-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--eston-base);
}

.contact-one__icon-2 {
  top: 23%;
}

.contact-one__right {
  position: relative;
  display: block;
  margin-top: 18px;
  margin-left: 40px;
}

.contact-one__google-map {
  position: relative;
  display: block;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 500px;
  width: 100%;
}

.contact-one__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

.contact-one__logo a {
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  color: #ffffff;
  background-color: var(--eston-base);
  padding: 5px 21px 5px;
}

/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/
.news-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.news-page__left {
  position: relative;
  display: block;
  margin-right: 20px;
}

.news-page__single-items {
  position: relative;
  display: block;
}

.news-page__single {
  position: relative;
  display: block;
}

.news-page__single + .news-page__single {
  margin-top: 60px;
}

.news-page__img {
  position: relative;
  display: block;
}

.news-page__img img {
  width: 100%;
}

.news-page__tag {
  position: absolute;
  top: 40px;
  right: 40px;
  background-color: var(--eston-base);
  padding: 12px 20px;
  z-index: 2;
}

.news-page__tag p {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: var(--eston-white);
}

.news-page__content-box {
  position: relative;
  display: block;
  border: 1px solid #eaeaea;
  border-top: 0;
}

.news-page__content {
  position: relative;
  display: block;
  padding: 40px 40px 40px;
  border-bottom: 1px solid #eaeaea;
}

.news-page__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.news-page__title a {
  color: var(--eston-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-page__title a:hover {
  color: var(--eston-base);
}

.news-page__meta-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px 20px;
  border-top: 1px solid #ededed;
}

.news-page__user {
  position: relative;
  display: flex;
  align-items: center;
}

.news-page__user-img {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.news-page__user-img img {
  width: 100%;
  border-radius: 50%;
}

.news-page__name {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  margin-left: 12px;
}

.news-page__name span {
  color: #ababab;
  font-weight: 400;
}

.news-page__meta-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.news-page__date-box-and-dislike {
  position: relative;
  display: flex;
  align-items: center;
}

.news-page__date-box {
  position: relative;
  display: flex;
  align-items: center;
}

.news-page__date-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid #e4e4e4;
  font-size: 15px;
  color: var(--eston-black);
}

.news-page__date-text {
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-black);
  margin-left: 10px;
}

.news-page__dislike {
  position: relative;
  display: block;
  margin-left: 30px;
}

.news-page__dislike a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid #e4e4e4;
  font-size: 15px;
  color: var(--eston-black);
}

.news-page__like-and-share {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 6px;
}

.news-page__like-and-share-single {
  position: relative;
  display: block;
}

.news-page__like-and-share-single a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-black);
}

.news-page__like-and-share-single + .news-page__like-and-share-single {
  margin-left: 30px;
}

.news-page__like-and-share-single a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid #e4e4e4;
  font-size: 15px;
  color: var(--eston-black);
  margin-right: 10px;
}

.news-page__video-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.news-page__video-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--eston-white);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.news-page__video-text:hover {
  background-color: var(--eston-base);
}

.news-page__video-text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--eston-black);
  font-family: var(--eston-font-two);
  font-style: italic;
}

.news-page__video-text:hover p {
  color: var(--eston-white);
}

.news-page__video-link .ripple,
.news-page__video-text .ripple:before,
.news-page__video-text .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.news-page__video-text .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.news-page__video-text .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.news-page__carousel.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  line-height: 0;
  height: 0;
}

.news-page__carousel.owl-theme .owl-nav .owl-next {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: var(--eston-black);
  background-color: rgb(255, 255, 255);
  font-size: 16px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-page__carousel.owl-theme .owl-nav .owl-prev {
  height: 60px;
  width: 60px;
  line-height: 60px;
  color: var(--eston-black);
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  font-size: 16px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
}

.news-page__carousel.owl-theme .owl-nav .owl-next span,
.news-page__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-page__carousel.owl-theme .owl-nav .owl-next:hover,
.news-page__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--eston-base);
  color: var(--eston-white);
}

.news-page__content-box-border {
  border-top: 1px solid #eaeaea;
}

.news-page__sound-cloud {
  position: relative;
  display: flex;
  border: 1px solid #eaeaea;
  border-bottom: 0;
  padding: 10px;
}

.news-page__sound-cloud-img-one {
  position: relative;
  display: block;
  width: 154px;
}

.news-page__sound-cloud-img-one img {
  width: 100%;
}

.news-page__sound-cloud-content {
  position: relative;
  display: block;
  max-width: 745px;
  width: 100%;
  margin-left: 10px;
}

.news-page__sound-cloud-content-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news-page__sound-cloud-btn-box {
  position: relative;
  display: flex;
  align-items: center;
}

.news-page__sound-cloud-btn-icon {
  position: relative;
  display: block;
}

.news-page__sound-cloud-btn-icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  background-color: #ff5500;
  color: var(--eston-white);
  font-size: 11px;
  border-radius: 50%;
}

.news-page__sound-cloud-btn-content {
  margin-left: 10px;
}

.news-page__sound-cloud-btn-content p {
  line-height: 16px;
}

.news-page__sound-cloud-btn-content h5 {
  font-size: 18px;
  line-height: 18px;
  margin-top: 4px;
}

.news-page__sound-cloud-content-top-right {
  position: relative;
  display: block;
}

.news-page__sound-cloud-content-top-right p {
  font-size: 14px;
  line-height: 14px;
}

.news-page__sound-cloud-content-top-right h5 {
  position: relative;
  display: inline-block;
  font-size: 14px;
  background-color: #999999;
  color: var(--eston-white);
  line-height: 14px;
  padding: 2px 7px;
  border-radius: 9px;
}

.news-page__sound-cloud-img-two {
  position: relative;
  display: block;
  margin-top: 16px;
  margin-bottom: 16px;
}

.news-page__sound-cloud-img-two img {
  width: 100%;
}

.news-page__sound-cloud-meta-and-lenth {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news-page__sound-cloud-meta {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.news-page__sound-cloud-meta li {
  position: relative;
  display: block;
}

.news-page__sound-cloud-meta li + li {
  margin-left: 5px;
}

.news-page__sound-cloud-meta li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-black);
  border: 1px solid #eaeaea;
  padding: 4px 8px;
}

.news-page__sound-cloud-meta li a i {
  position: relative;
  display: inline-block;
  font-size: 12px;
  padding-right: 5px;
}

.news-page__sound-cloud-lenth {
  position: relative;
  display: block;
}

.news-page__sound-cloud-lenth a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--eston-gray);
}

.news-page__sound-cloud-lenth a i {
  font-size: 12px;
  padding-right: 5px;
}

.news-page__pagination {
  position: relative;
  display: block;
  padding: 60px 0 0px;
  text-align: center;
}

.news-page__pagination .pg-pagination li {
  display: inline-block;
  margin-right: 7px;
}

.news-page__pagination .pg-pagination li:last-child {
  margin-right: 0;
}

.news-page__pagination .pg-pagination li a {
  height: 44px;
  width: 44px;
  text-align: center;
  line-height: 44px;
  display: inline-block;
  color: var(--eston-black);
  background-color: transparent;
  border: 1px solid #eaeaea;
  font-weight: 700;
  font-size: 14px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-page__pagination .pg-pagination li a:hover {
  background-color: var(--eston-base);
  color: var(--eston-white);
  border: 1px solid var(--eston-base);
}

.news-page__sidebar {
  position: relative;
  display: block;
  margin-top: -5px;
}

.news-page__sidebar-search {
  position: relative;
  display: block;
}

.news-page__sidebar-title {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.news-page__sidebar-search-form {
  position: relative;
}

.news-page__sidebar-search-form input[type="search"] {
  display: block;
  border: 0;
  outline: none;
  background-color: #f5f5f5;
  color: #999999;
  font-size: 14px;
  padding-left: 30px;
  height: 54px;
  width: 100%;
  padding-right: 65px;
}

.news-page__sidebar-search-form button[type="submit"] {
  background-color: var(--eston-base);
  color: var(--eston-white);
  font-size: 20px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-page__sidebar-search-form button[type="submit"]:hover {
  background-color: var(--eston-black);
}

.sidebar__post {
  position: relative;
  display: block;
  margin-top: 50px;
  margin-bottom: 50px;
  z-index: 1;
}

.sidebar__post-list {
  margin: 0;
}

.sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-bottom: 25px;
}

.sidebar__post-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.sidebar__post-image {
  margin-right: 20px;
}

.sidebar__post-image > img {
  width: 85px;
}

.sidebar__post-content {
  position: relative;
  top: -1px;
}

.sidebar__post-content h3 {
  font-size: 14px;
  margin: 0;
  line-height: 20px;
  font-weight: 700;
}

.sidebar__post-content h3 a {
  color: var(--eston-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-content h3 a:hover {
  color: var(--eston-base);
}

.sidebar__post-content-meta {
  position: relative;
  display: block;
  font-size: 13px;
  line-height: 23px;
  color: var(--eston-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding-bottom: 5px;
}

.sidebar__post-content-meta i {
  color: var(--eston-black);
  font-size: 14px;
  padding-right: 4px;
}

.news-page__sidebar-popular-keywords {
  position: relative;
  display: block;
}

.news-page__sidebar-popular-keywords-list {
  position: relative;
  display: block;
}

.news-page__sidebar-popular-keywords-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news-page__sidebar-popular-keywords-list li + li {
  margin-top: 14px;
}

.news-page__sidebar-popular-keywords-list li a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--eston-black);
  padding-left: 36px;
}

.news-page__sidebar-popular-keywords-list li a:before {
  position: absolute;
  content: "";
  background-color: #efefef;
  height: 16px;
  width: 16px;
  top: 6px;
  left: 0;
  border: 4px solid transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-page__sidebar-popular-keywords-list li:hover a:before {
  background-color: var(--eston-white);
  border: 4px solid var(--eston-base);
}

.news-page__sidebar-popular-keywords-list li span {
  font-size: 14px;
  color: var(--eston-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-page__sidebar-popular-keywords-list li:hover span {
  color: var(--eston-black);
}

.news-page__sidebar-banner {
  position: relative;
  display: block;
  margin-top: 47px;
}

.news-page__sidebar-banner-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.news-page__sidebar-banner-img img {
  width: 100%;
}

.news-page__sidebar-banner-shpae {
  position: absolute;
  width: 255px;
  height: 255px;
  left: -30px;
  bottom: -60px;
  background: #c72538;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 72px;
}

.news-page__sidebar-banner-shpae p {
  font-size: 16px;
  line-height: 16px;
  color: var(--eston-white);
}

.news-page__sidebar-banner-shpae h4 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: var(--eston-white);
  margin-top: 10px;
}

/*--------------------------------------------------------------
# News Details
--------------------------------------------------------------*/
.news-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.news-details__left {
  position: relative;
  display: block;
  margin-right: 20px;
}

.news-details__content-one {
  position: relative;
  display: block;
  margin-bottom: 63px;
}

.news-details__img-one {
  position: relative;
  display: block;
}

.news-details__img-one img {
  width: 100%;
}

.news-details__meta-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px 20px;
  border: 1px solid #ededed;
  border-top: 0;
}

.news-details__user {
  position: relative;
  display: flex;
  align-items: center;
}

.news-details__user-img {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.news-details__user-img img {
  width: 100%;
  border-radius: 50%;
}

.news-details__name {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  margin-left: 12px;
}

.news-details__name span {
  color: #ababab;
  font-weight: 400;
}

.news-details__meta-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.news-details__date-box-and-dislike {
  position: relative;
  display: flex;
  align-items: center;
}

.news-details__date-box {
  position: relative;
  display: flex;
  align-items: center;
}

.news-details__date-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid #e4e4e4;
  font-size: 15px;
  color: var(--eston-black);
}

.news-details__date-text {
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-black);
  margin-left: 10px;
}

.news-details__dislike {
  position: relative;
  display: block;
  margin-left: 30px;
}

.news-details__dislike a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid #e4e4e4;
  font-size: 15px;
  color: var(--eston-black);
}

.news-details__like-and-share {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 6px;
}

.news-details__like-and-share-single {
  position: relative;
  display: block;
}

.news-details__like-and-share-single a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-black);
}

.news-details__like-and-share-single + .news-details__like-and-share-single {
  margin-left: 30px;
}

.news-details__like-and-share-single a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid #e4e4e4;
  font-size: 15px;
  color: var(--eston-black);
  margin-right: 10px;
}

.news-details__text-1 {
  font-size: 18px;
  line-height: 28px;
}

.news-details__text-2 {
  font-size: 18px;
  line-height: 28px;
  color: var(--eston-black);
  font-weight: 700;
  margin-top: 55px;
  margin-bottom: 30px;
}

.news-details__text-3 {
  font-size: 18px;
  line-height: 28px;
}

.news-details__text-4 {
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 55px;
}

.news-details__text-5 {
  font-size: 18px;
  line-height: 28px;
}

.news-details__content-two {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 52px;
  margin-bottom: 52px;
}

.news-details__img-two {
  position: relative;
  display: block;
  width: 450px;
}

.news-details__img-two img {
  width: 100%;
}

.news-details__content-two-box {
  position: relative;
  display: block;
  max-width: 450px;
  width: 100%;
  margin-left: 60px;
}

.news-details__content-two-box h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 33px;
}

.news-details__content-two-box p {
  font-size: 18px;
  line-height: 28px;
}

.news-details__text-6 {
  font-size: 18px;
  line-height: 28px;
}

.news-details__pagination-box {
  position: relative;
  display: block;
  text-align: center;
  border-top: 1px solid rgba(var(--eston-black-rgb), 0.2);
  border-bottom: 1px solid rgba(var(--eston-black-rgb), 0.2);
  padding: 20px 0 20px;
  margin-top: 75px;
}

.news-details__pagination li {
  display: inline-block;
}

.news-details__pagination li.next {
  float: left;
  position: relative;
}

.news-details__pagination li a {
  font-size: 14px;
  color: var(--eston-black);
  font-weight: 700;
  display: flex;
  align-items: center;
  transition: all 500ms ease;
}

.news-details__pagination li a:hover {
  color: var(--eston-base);
}

.news-details__pagination li.next i {
  position: relative;
  height: 30px;
  width: 30px;
  border: 1px solid #e4e4e4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eston-black);
  font-size: 14px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-right: 20px;
  z-index: 1;
}

.news-details__pagination li.previous {
  position: relative;
  float: right;
}

.news-details__pagination li.previous i {
  position: relative;
  height: 30px;
  width: 30px;
  border: 1px solid #e4e4e4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eston-black);
  font-size: 14px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-left: 20px;
  z-index: 1;
}

.news-details__pagination li a:hover i {
  color: var(--eston-white);
  border: 1px solid var(--eston-base);
  background-color: var(--eston-base);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.blog-details__comment {
  position: relative;
  display: block;
  margin-top: 80px;
}

.comment-one__title {
  position: relative;
  color: var(--eston-black);
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 20px;
}

.comment-one__title span {
  color: var(--eston-base);
}

.comment-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #ededed;
  padding-top: 40px;
  margin-bottom: 50px;
}

.comment-one__single--two {
  margin-left: 110px;
}

.comment-one__content {
  position: relative;
  margin-left: 30px;
  max-width: 830px;
  width: 100%;
  top: -4px;
}

.comment-one__content h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}

.comment-one__content h3 span {
  position: relative;
  display: inline-block;
  color: var(--eston-gray);
  font-weight: 400;
  padding-left: 6px;
}

.comment-one__content p {
  font-size: 14px;
  line-height: 24px;
  margin-top: 18px;
  margin-bottom: 23px;
}

.comment-one__btn {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-black);
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.comment-one__btn span {
  font-size: 14px;
  color: var(--eston-black);
  height: 30px;
  width: 30px;
  border: 1px solid #e4e4e4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.comment-one__btn:hover {
  color: var(--eston-base);
}

.comment-one__image {
  position: relative;
  display: block;
  width: 80px;
}

.comment-one__image img {
  width: 100%;
}

.comment-form {
  position: relative;
  display: block;
}

.comment-form__title-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #ededed;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.comment-form__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}

.comment-form__review {
  position: relative;
  display: flex;
  align-items: center;
}

.comment-form__review span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 17px;
  color: var(--eston-base);
}

.comment-form__review span + span {
  margin-left: 4px;
}

.comment-one__form .row {
  --bs-gutter-x: 20px;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 54px;
  width: 100%;
  border: 1px solid #a8a8a8;
  background-color: var(--eston-white);
  padding-left: 25px;
  padding-right: 25px;
  outline: none;
  font-size: 14px;
  color: #a8a8a8;
  display: block;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.comment-form__input-box input[type="text"]:focus,
.comment-form__input-box input[type="email"]:focus {
  border: 1px solid var(--eston-black);
}

.comment-form__input-box textarea {
  font-size: 14px;
  color: #a8a8a8;
  height: 180px;
  width: 100%;
  border: 1px solid #a8a8a8;
  background-color: var(--eston-white);
  padding: 25px 30px 30px;
  outline: none;
  margin-bottom: 0px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.comment-form__input-box textarea:focus {
  border: 1px solid var(--eston-black);
}

.comment-form__btn {
  border: none;
  background-color: var(--eston-base);
  color: var(--eston-white);
}

.comment-form__input-box.text-message-box {
  height: 180px;
}

/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.team-details__left {
  position: relative;
  display: block;
  margin-right: 80px;
}

.team-details__img {
  position: relative;
  display: block;
}

.team-details__img img {
  width: 100%;
}

.team-details__right {
  position: relative;
  display: block;
  margin-top: -3px;
}

.team-details__title-box {
  position: relative;
  display: block;
}

.team-details__sub-title {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 10px;
}

.team-details__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: -0.02em;
}

.team-details__text {
  font-size: 18px;
  line-height: 28px;
  margin-top: 50px;
  margin-bottom: 59px;
}

.team-details__my-skill {
  position: relative;
  display: block;
}

.team-details__my-skill h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 14px;
}

.team-details__my-skill p {
  font-size: 18px;
  line-height: 28px;
}

.team-details__progress {
  position: relative;
  display: block;
  margin-top: 37px;
}

.team-details__progress-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.team-details__progress-single {
  display: block;
  position: relative;
  text-align: center;
}

.team-details__progress-single + .team-details__progress-single {
  margin-left: 55px;
}

.team-details__progress-box {
  position: relative;
  display: inline-block;
}

.team-details__progress-box canvas {
  transform: rotate(90deg);
}

.team-details__progress-box span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translateY(-50%) translateX(-50%);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--eston-black);
}

.team-details__progress h3 {
  margin: 0;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: var(--eston-black);
  margin-top: 15px;
}

.team-details__progress-single-last {
  border: 0;
  padding: 0;
  margin: 0;
}

.team-details__creative {
  position: relative;
  display: block;
  border-top: 1px solid #dbdbdb;
  margin-top: 55px;
  padding-top: 55px;
}

.team-details__creative-title-one {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 19px;
}

.team-details__creative-text {
  font-size: 18px;
  line-height: 28px;
}

.team-details__creative-content-box {
  position: relative;
  display: block;
  margin-top: 52px;
}

.team-details__creative-content-box .row {
  --bs-gutter-x: 20px;
}

.team-details__creative-single {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.team-details__creative-img {
  position: relative;
  display: block;
}

.team-details__creative-img img {
  width: 100%;
}

.team-details__video-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.team-details__video-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--eston-white);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.team-details__video-text:hover {
  background-color: var(--eston-base);
}

.team-details__video-text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--eston-black);
  font-family: var(--eston-font-two);
  font-style: italic;
}

.team-details__video-text:hover p {
  color: var(--eston-white);
}

.team-details__video-link .ripple,
.team-details__video-text .ripple:before,
.team-details__video-text .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--eston-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.team-details__video-text .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.team-details__video-text .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.team-details__creative-content {
  position: relative;
  display: block;
  margin-top: 38px;
}

.team-details__creative-sub-title {
  font-size: 14px;
  line-height: 14px;
}

.team-details__creative-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  margin-top: 20px;
}

.team-details__creative-title a {
  color: var(--eston-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-details__creative-title a:hover {
  color: var(--eston-base);
}

/*--------------------------------------------------------------
# Services Five
--------------------------------------------------------------*/
.services-five {
  position: relative;
  display: block;
  padding: 120px 0 0;
}

/*--------------------------------------------------------------
# Feature Three
--------------------------------------------------------------*/
.feature-three {
  position: relative;
  display: block;
  padding: 90px 0 120px;
}

/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial-three {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.testimonial-three__carousel.owl-theme .owl-nav {
  position: absolute;
  top: -166px;
  right: 0;
  margin: 0;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next {
  height: 56px;
  width: 56px;
  line-height: 55px;
  border-radius: 0;
  color: var(--eston-black);
  border: 2px solid #f2f2f2;
  font-size: 15px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  transform: rotate(90deg);
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-prev {
  height: 56px;
  width: 56px;
  line-height: 55px;
  color: var(--eston-black);
  border-radius: 0;
  border: 2px solid #f2f2f2;
  font-size: 15px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
  transform: rotate(-90deg);
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 9px;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 9px;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-three__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-three__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--eston-base);
  border: 2px solid var(--eston-base);
  color: var(--eston-white);
}

/*--------------------------------------------------------------
# Project Page
--------------------------------------------------------------*/
.project-page {
  position: relative;
  display: block;
  padding: 113px 0 120px;
  z-index: 1;
}

.project-page__filter-box {
  position: relative;
  display: block;
  margin-bottom: 64px;
}

.project-page__filter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.project-page__filter.style1 li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.project-page__filter.style1 li + li {
  margin-left: 40px;
}

.project-page__filter.style1 li .filter-text {
  position: relative;
  display: inline-block;
  color: var(--eston-black);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.4s ease;
  z-index: 1;
}

.project-page__filter.style1 li .filter-text:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--eston-base);
  opacity: 0;
  transition: all 0.4s ease;
}

.project-page__filter.style1 li:hover .filter-text,
.project-page__filter.style1 li.active .filter-text {
  color: var(--eston-base);
}

.project-page__filter.style1 li:hover .filter-text:before {
  opacity: 1;
}

.project-page__filter.style1 li.active .filter-text:before {
  opacity: 1;
}

.project-page .project-three__sub-title {
  color: var(--eston-gray);
}

.project-page .project-three__title a {
  color: var(--eston-black);
}

.project-page .project-three__title a:hover {
  color: var(--eston-base);
}

.project-page__btn-box {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
  position: relative;
  display: block;
  padding: 120px 0 162px;
}

.project-details__top {
  position: relative;
  display: block;
}

.project-details__carousel {
  position: relative;
  display: block;
}

.project-details__single {
  position: relative;
  display: block;
}

.project-details__img {
  position: relative;
  display: block;
}

.project-details__img img {
  width: 100%;
}

.project-details__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.project-details__play a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: var(--eston-black);
  font-family: var(--eston-font-two);
  background-color: var(--eston-white);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-details__play a:hover {
  color: var(--eston-white);
  background-color: var(--eston-base);
}

.project-details__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: 0;
  right: 0;
}

.project-details__carousel.owl-theme .owl-nav .owl-next {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 0;
  color: var(--eston-black);
  background-color: var(--eston-white);
  transform: rotate(90deg);
  font-size: 16px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
}

.project-details__carousel.owl-theme .owl-nav .owl-prev {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 0;
  color: var(--eston-black);
  background-color: var(--eston-white);
  transform: rotate(-90deg);
  font-size: 16px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
}

.project-details__carousel.owl-theme .owl-nav .owl-next span,
.project-details__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-details__carousel.owl-theme .owl-nav .owl-next:hover,
.project-details__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--eston-base);
  color: var(--eston-white);
}

.project-details__bottom {
  position: relative;
  display: block;
  margin-top: 100px;
}

.project-details__left {
  position: relative;
  display: block;
}

.project-details__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
}

.project-details__text-1 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-top: 37px;
  margin-bottom: 30px;
}

.project-details__text-2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.project-details__title-2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  margin-top: 60px;
  margin-bottom: 35px;
}

.project-details__text-3 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.project-details__text-4 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-top: 32px;
}

.project-details__right {
  position: relative;
  display: block;
  margin-left: 158px;
}

.project-details__short-details {
  position: relative;
  display: block;
}

.project-details__short-details h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
}

.project-details__short-details-list {
  position: relative;
  display: block;
  margin-top: 36px;
}

.project-details__short-details-list li {
  position: relative;
  display: block;
}

.project-details__short-details-list li + li {
  margin-top: 26px;
}

.project-details__short-details-list li p {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
}

.project-details__short-details-list li p span {
  color: var(--eston-black);
}

.project-details__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.project-details__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 12px;
  color: var(--eston-black);
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-details__social a:hover {
  color: var(--eston-white);
  border: 1px solid var(--eston-base);
  background-color: var(--eston-base);
}

.project-details__social a + a {
  margin-left: 10px;
}

.project-details__cast {
  position: relative;
  display: block;
}

.project-details__cast-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 40px;
}

.project-details__cast-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-left: -8px;
}

.project-details__cast-list li {
  position: relative;
  display: inline-block;
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 16px;
}

.project-details__cast-img {
  position: relative;
  display: block;
  overflow: hidden;
  width: 70px;
  z-index: 1;
}

.project-details__cast-img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--eston-black-rgb), 0.6);
  transition: all 700ms ease;
  transform: translateY(-100%);
  z-index: 1;
}

.project-details__cast-list li:hover .project-details__cast-img:before {
  transform: translateY(0%);
}

.project-details__cast-img img {
  width: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.project-details__cast-list li:hover .project-details__cast-img img {
  transform: scale(1.1) rotate(2deg);
}

.project-details__cast-img a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--eston-white);
  transform: translateY(100px);
  opacity: 0;
  transition: all 700ms ease;
  z-index: 2;
}

.project-details__cast-list li:hover .project-details__cast-img a {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}

.project-details__cast-list li .project-details__cast-img a:hover {
  color: var(--eston-base);
}

.project-details__right-shape-1 {
  position: absolute;
  top: 0;
  left: -102px;
  width: 1px;
  height: 700px;
  background-color: var(--eston-black);
}

/*--------------------------------------------------------------
# Project Four
--------------------------------------------------------------*/
.project-four {
  position: relative;
  display: block;
  padding: 180px 0 116px;
}

.project-four .section-title {
  margin-bottom: 77px;
}

.project-four__bottom {
  position: relative;
  display: block;
}

.project-four__carousel {
  position: relative;
  display: block;
}

.project-four .project-three__sub-title {
  color: var(--eston-gray);
}

.project-four .project-three__title a {
  color: var(--eston-black);
}

.project-four .project-three__title a:hover {
  color: var(--eston-base);
}

.project-four .project-three__single {
  margin-bottom: 0;
}

.project-four__carousel.owl-theme .owl-nav {
  position: absolute;
  top: -165px;
  right: 0;
  margin: 0;
}

.project-four__carousel.owl-theme .owl-nav .owl-next {
  height: 56px;
  width: 56px;
  line-height: 55px;
  border-radius: 0;
  color: var(--eston-black);
  border: 2px solid #f2f2f2;
  font-size: 15px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  transform: rotate(90deg);
}

.project-four__carousel.owl-theme .owl-nav .owl-prev {
  height: 56px;
  width: 56px;
  line-height: 55px;
  color: var(--eston-black);
  border-radius: 0;
  border: 2px solid #f2f2f2;
  font-size: 15px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
  transform: rotate(-90deg);
}

.project-four__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 9px;
}

.project-four__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 9px;
}

.project-four__carousel.owl-theme .owl-nav .owl-next span,
.project-four__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-four__carousel.owl-theme .owl-nav .owl-next:hover,
.project-four__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--eston-base);
  border: 2px solid var(--eston-base);
  color: var(--eston-white);
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 120px 0 98px;
  counter-reset: count;
}

.contact-page .row {
  --bs-gutter-x: 45px;
}

.contact-page__single {
  position: relative;
  display: block;
  border-top: 1px solid var(--eston-base);
  padding: 50px 0 0;
  margin-bottom: 22px;
}

.contact-page__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
}

.contact-page__title a {
  color: var(--eston-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__title a:hover {
  color: var(--eston-base);
}

.contact-page__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-top: 24px;
  margin-bottom: 75px;
}

.contact-page__icon {
  position: relative;
  display: inline-block;
}

.contact-page__icon span {
  position: relative;
  display: inline-block;
  font-size: 80px;
  color: var(--eston-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.contact-page__single:hover .contact-page__icon span {
  transform: scale(0.9);
}

.contact-page__single-1 .contact-page__icon span {
  font-size: 90px;
}

.contact-page__single-3 .contact-page__icon span {
  font-size: 87px;
}

.contact-page__count {
  position: absolute;
  bottom: 0px;
  right: 33px;
}

.contact-page__count:before {
  position: relative;
  font-weight: 700;
  font-size: 200px;
  line-height: 200px;
  counter-increment: count;
  content: "0" counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background: linear-gradient(
    303.2deg,
    #d9d9d9 9.69%,
    rgba(217, 217, 217, 0) 90.91%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  opacity: 0.5;
  font-family: var(--eston-font);
}

/*--------------------------------------------------------------
# Services Details
--------------------------------------------------------------*/
.services-details {
  position: relative;
  display: block;
  padding: 120px 0 112px;
  z-index: 1;
}

.services-details__left {
  position: relative;
  display: block;
}

.services-details__img-1 {
  position: relative;
  display: block;
}

.services-details__img-1 img {
  width: 100%;
}

.services-details__title-1 {
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 35px;
  margin-top: 100px;
}

.services-details__text-1 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.services-details__text-2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.services-details__text-2 span {
  font-weight: 700;
  color: var(--eston-black);
}

.services-details__feature {
  position: relative;
  display: flex;
  align-items: center;
}

.services-details__feature-img {
  position: relative;
  display: block;
}

.services-details__feature-img img {
  width: auto;
}

.services-details__feature-box {
  position: relative;
  display: block;
  margin-left: 60px;
}

.services-details__feature-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
}

.services-details__feature-points {
  position: relative;
  display: block;
  margin-top: 40px;
}

.services-details__feature-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.services-details__feature-points li .icon {
  position: relative;
  display: inline-block;
  top: 2px;
}

.services-details__feature-points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--eston-base);
}

.services-details__feature-points li .text {
  margin-left: 20px;
}

.services-details__feature-points li .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  color: var(--eston-black);
}

.services-details__title-2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  color: var(--eston-black);
  margin-top: 80px;
  margin-bottom: 50px;
}

.services-details__text-3 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.services-details__text-3 span {
  font-weight: 700;
  color: var(--eston-black);
}

.services-details__text-4 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.services-details__text-4 span {
  font-weight: 700;
  color: var(--eston-black);
}

.services-details__text-5 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.services-details__text-5 span {
  font-weight: 700;
  color: var(--eston-black);
}

.services-details__pagination-box {
  position: relative;
  display: block;
  text-align: center;
  border-top: 1px solid var(--eston-black);
  margin-top: 100px;
  padding-top: 34px;
}

.services-details__pagination li {
  display: inline-block;
}

.services-details__pagination li.next {
  float: left;
  position: relative;
}

.services-details__pagination li a {
  font-size: 14px;
  color: var(--eston-black);
  font-weight: 700;
  display: flex;
  align-items: center;
  transition: all 500ms ease;
  text-transform: uppercase;
}

.services-details__pagination li a:hover {
  color: var(--eston-base);
}

.services-details__pagination li.next i {
  position: relative;
  display: inline-block;
  transform: rotate(-90deg);
  margin-right: 10px;
  font-weight: 700;
}

.services-details__pagination li.previous {
  position: relative;
  float: right;
}

.services-details__pagination li.previous i {
  position: relative;
  display: inline-block;
  transform: rotate(90deg);
  margin-left: 10px;
  font-weight: 700;
}

.services-details__pagination li a:hover i {
  color: var(--eston-base);
}

.services-details__right {
  position: relative;
  display: block;
  margin-left: 30px;
}

.services-details__services-box {
  position: relative;
  display: block;
  border: 1px solid #c8c8c8;
  padding: 49px 49px 49px;
}

.services-details__services-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
}

.services-details__services-list {
  position: relative;
  display: block;
  margin-top: 40px;
}

.services-details__services-list li {
  position: relative;
  display: block;
}

.services-details__services-list li + li {
  margin-top: 12px;
}

.services-details__services-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #c8c8c8;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-black);
  padding: 17px 18px 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-details__services-list li:hover a {
  color: var(--eston-white);
  background-color: var(--eston-base);
  border: 1px solid var(--eston-base);
}

.services-details__services-list li a span {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: var(--eston-black);
  transform: rotate(90deg);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-details__services-list li:hover a > span {
  color: var(--eston-white);
}

.services-details__services-list li.active a {
  color: var(--eston-white);
  background-color: var(--eston-base);
  border: 1px solid var(--eston-base);
}

.services-details__services-list li.active a > span {
  color: var(--eston-white);
}

.services-details__get-quote {
  position: relative;
  display: block;
  border: 1px solid #c8c8c8;
  padding: 49px 49px 49px;
  margin-top: 40px;
}

.services-details__get-quote-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 36px;
}

.services-details__get-quote .contact-one__input-box {
  margin-bottom: 14px;
}

.services-details__get-quote .contact-one__input-box input[type="text"],
.services-details__get-quote .contact-one__input-box input[type="email"] {
  height: 50px;
  border: 1px solid #c8c8c8;
}

.services-details__get-quote .contact-one__input-box textarea {
  border: 1px solid #c8c8c8;
}

.services-details__get-quote .contact-one__icon::before {
  top: -2px;
  bottom: 0px;
}

.services-details__get-quote .contact-one__btn {
  width: 100%;
}

/*--------------------------------------------------------------
# History One
--------------------------------------------------------------*/
.history-one {
  position: relative;
  display: block;
  padding: 120px 0 80px;
}

.history-one__top {
  position: relative;
  display: block;
}

.history-one__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 77px;
}

.history-one__top-inner .section-title {
  margin-bottom: 0px;
}

.history-one__bottom {
  position: relative;
  display: block;
}

.history-one__bottom-inner {
  position: relative;
  display: block;
}

.history-one__thumb-box {
  position: relative;
  display: block;
  margin-bottom: 80px;
  z-index: 1;
}

.history-one__thumb-box:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #c8c8c8;
  z-index: -1;
}

.history-one__thumb-year {
  position: relative;
  display: block;
  width: 54px;
  text-align: center;
  margin: 0 auto;
  border: 1px solid var(--eston-black);
  padding: 5px 10px;
  background-color: var(--eston-white);
}

.history-one__thumb-year p {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: var(--eston-black);
}

#history-one__thumb .swiper-slide-thumb-active .history-one__thumb-year {
  background-color: var(--eston-base);
  border: 1px solid var(--eston-base);
}

#history-one__thumb .swiper-slide-thumb-active .history-one__thumb-year p {
  color: var(--eston-white);
}

.history-one__content-box {
  position: relative;
  display: block;
}

.history-one__main-content-box {
  position: relative;
  display: block;
  padding-bottom: 40px;
}

.history-one__main-content-box-year {
  font-weight: 700;
  font-size: 200px;
  line-height: 200px;
  letter-spacing: -0.02em;
  color: #222222;
  opacity: 0.04;
  position: absolute;
  bottom: -30px;
  left: 250px;
}

.history-one__main-content-left {
  position: relative;
  display: block;
  margin-top: 68px;
}

.history-one__main-content-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.02em;
}

.history-one__main-content-text {
  margin-top: 30px;
  margin-bottom: 52px;
}

.history-one__btn-box {
  position: relative;
  display: block;
}

.history-one__btn:hover {
  border: 2px solid var(--eston-black);
}

.history-one__main-content-right {
  position: relative;
  display: block;
  margin-left: 110px;
}

.history-one__main-content-img {
  position: relative;
  display: block;
}

.history-one__main-content-img img {
  width: 100%;
}

.history-one__nav {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 100;
}

.history-one__nav .swiper-button-next,
.history-one__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--eston-black);
  background-color: var(--eston-white);
  border: 2px solid #eaeaea;
  border-radius: 0;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}

.history-one__nav .swiper-button-next:hover,
.history-one__nav .swiper-button-prev:hover {
  color: var(--eston-white);
  background-color: var(--eston-base);
  border: 2px solid var(--eston-base);
}

.history-one__nav .swiper-button-next {
  margin-left: 20px;
}

.history-one__nav .swiper-button-next i,
.history-one__nav .swiper-button-prev i {
  position: relative;
  display: flex;
  align-items: center;
}

.history-one__nav .swiper-button-next::after,
.history-one__nav .swiper-button-prev::after {
  display: none;
}

/*--------------------------------------------------------------
# Boxed Version
--------------------------------------------------------------*/
