/*** 

====================================================================
  Reset
====================================================================

 ***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}


/*** 

====================================================================
  Global Settings
====================================================================

 ***/


body {
  font-size: 18px;
  color: #757072;
  line-height: 26px;
  font-weight: 400;
  background: #d7ebf5;
  font-family: 'DM Sans', sans-serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
}

@media (min-width:1200px) {
  .container {
    max-width: 1170px;
    padding: 0px 15px;
  }
}

.large-container {
  max-width: 1450px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid {
  padding: 0px;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.small-container {
  max-width: 680px;
  margin: 0 auto;
}

.boxed_wrapper {
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
}


a {
  text-decoration: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

a:hover {
  text-decoration: none;
  outline: none;
}

input,
button,
select,
textarea {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

input {
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

p {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  color: #757072;
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: #115971;
  margin: 0px;
  transition: all 500ms ease;
}

/* Preloader */

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader-close {
  position: fixed;
  z-index: 99999999;
  font-size: 18px;
  background: #fff;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
  right: 15px;
  top: 15px;
  border-radius: 50%;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top: 0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
  border: 3px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.5);
}

/* AnimaciÃ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}

@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }

  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 30px;
    letter-spacing: 10px;
  }
}


.centred {
  text-align: center;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}


figure {
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

/** button **/

.theme-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;

  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  background: #4b4e50;
  text-align: center;
  padding: 16px 35px;
  border-radius: 15px;
  text-transform: capitalize;
  z-index: 1;
  transition: all 500ms ease;
}

.theme-btn span {
  position: relative;
  padding-left: 30px;
}

.theme-btn span:before {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  left: 10px;
  top: -1px;
  font-size: 20px;
  font-weight: 700;
  transition: all 500ms ease;
}

.theme-btn span:after {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  left: 0px;
  top: -1px;
  font-size: 20px;
  font-weight: 700;
  opacity: 0.5;
  transition: all 500ms ease;
}

.theme-btn:before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  transition: all 500ms ease;
}

.theme-btn:hover:before {
  width: 100%;
}

.theme-btn.btn-one:before {
  background: #1e2c36;
}

.theme-btn.btn-one:hover {
  color: #fff;
}

.theme-btn.btn-two {
  border: 1px solid #e6e2e3;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
  padding: 16px 35px;
}

.theme-btn.btn-two:hover {
  color: #fff;
}

.theme-btn.btn-two:hover span:before,
.theme-btn.btn-two:hover span:after {
  color: #fff;
  opacity: 1;
}

.theme-btn.btn-three {
  color: #fff;
  box-shadow: none;
  border: none;
}

.theme-btn.btn-three:before {
  background: #1e2c36;
}

.theme-btn.btn-three span:before,
.theme-btn.btn-three span:after {
  color: #fff;
  font-size: 20px;
}

.theme-btn.btn-three:hover span:before,
.theme-btn.btn-three:hover span:after {
  opacity: 1;
}


.pagination {
  position: relative;
  display: block;
}

.pagination li {
  position: relative;
  display: inline-block;
  margin: 0px 3.5px;
}

.pagination li:last-child {
  margin: 0px !important;
}

.pagination li a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  color: #2c3841;
  z-index: 1;
  border: 1px solid #e6e2e3;
  transition: all 500ms ease;
}

.pagination li a:hover,
.pagination li a.current {
  color: #fff !important;
}

.pagination li a:before {
  position: absolute;
  content: '';
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  border-radius: 50%;
  transform: scale(0, 0);
  z-index: -1;
  transition: all 500ms ease;
}

.pagination li a:hover:before,
.pagination li a.current:before {
  transform: scale(1, 1);
}

.pagination-nav li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.pagination li a i {
  transition: all 500ms ease;
}

.pagination li:first-child a i:last-child {
  opacity: 0.5;
}

.pagination li:last-child a i:first-child {
  opacity: 0.5;
}

.pagination li a:hover i {
  color: #fff;
}

.pagination-nav li:last-child {
  margin: 0px !important;
}

.pagination-nav li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  color: #1e2434;
  background-color: #f4f5f4;
  padding: 15px 40px;
  text-transform: uppercase;
}

.pagination-nav li a i {
  position: relative;
  top: 2px;
}

.pagination-nav li a:hover {
  color: #fff;
}

.sec-pad {
  padding: 110px 0px;
}

.mr-0 {
  margin: 0px !important;
}

.scroll-top {
  width: 60px;
  height: 60px;
  line-height: 60px;
  position: fixed;
  bottom: 105%;
  right: 30px;
  font-size: 24px;
  z-index: 99;
  color: #fff;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  transition: 1s ease;
}

.scroll-top.open {
  bottom: 45px;
}

.scroll-top span {
  color: #fff;
}

.sec-title {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.sec-title h6 {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 36px;
  font-weight: 700;
  border: 1px solid #e6e2e3;
  border-radius: 5px;
  padding: 0px 14px;
  text-transform: uppercase;
  background: #115971;
  margin-bottom: 15px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
}





/*** 

====================================================================
                        Home-Page-One
====================================================================

***/


/** main-header **/

.main-header {
  position: relative;
  left: 0px;
  top: 0px;
  z-index: 999;
  width: 100%;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sticky-header {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.fixed-header .sticky-header {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/** header-top **/

.header-top {
  position: relative;
  padding: 10px 100px;
}

.header-top .social-links li {
  position: relative;
  display: inline-block;
  float: left;
  font-size: 16px;
  color: #fff;
  margin-right: 20px;
}

.header-top .social-links li:last-child {
  margin: 0px !important;
}

.header-top .social-links li a {
  color: #fff;
}

.header-top .social-links li a:hover {
  color: #222;
}

.header-top .social-links,
.header-top .info {
  position: relative;
  float: left;
}

.header-top .social-links {
  margin-right: 40px;
}

.header-top .info li {
  position: relative;
  display: inline-block;
  float: left;
  padding-left: 28px;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
  margin-right: 40px;
}

.header-top .info li:last-child {
  margin: 0px !important;
}

.header-top .info li a {
  color: #fff;
}

.header-top .info li a:hover {
  color: #222;
}

.header-top .info li i {
  position: absolute;
  left: 0px;
  top: 2px;
}

.header-top .info li:before {
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.40);
  width: 1px;
  height: 20px;
  left: -20px;
  top: 3px;
}

.header-top .right-column ul li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 25px;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
}

.header-top .right-column ul li:last-child {
  margin: 0px !important;
}

.header-top .right-column ul li a {
  color: #fff;
}

.header-top .right-column ul li a:hover {
  color: #222;
}

.header-top .right-column ul {
  position: relative;
  float: left;
}

.header-top .right-column ul li i {
  position: relative;
  margin-right: 8px;
  top: 3px;
}

.header-top .right-column .other-links {
  margin-right: 40px;
}

.header-top .right-column .othre-options li {
  margin-right: 18px;
}

.header-top .right-column .other-links:before {
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.40);
  width: 1px;
  height: 20px;
  top: 3px;
  right: -20px;
}

/** header-lower **/

.header-lower {
  position: relative;
  width: 100%;
}

.main-header .outer-box {
  position: relative;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0px 100px;
}

.main-header .outer-box .info-list li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 6px;
  font-size: 18px;
  font-weight: 500;
  color: #1e2c36;
}

.main-header .outer-box .info-list li:last-child {
  margin: 0px;
  margin-left: 4px;
}

.main-header .outer-box .info-list li a {
  color: #1e2c36;
}

.main-header .outer-box .info-list li a:hover {}

.main-header .outer-box .info-list {
  position: relative;
  padding-left: 25px;
}

.main-header .outer-box .info-list:before {
  position: absolute;
  content: '';
  background: #f9f5f6;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  left: 0px;
  top: -12px;
}




/** search box btn **/

.header-top .right-column .info li.search-box-outer {
  padding-left: 0px;
}

.main-header .search-box-btn {
  position: relative;
  font-size: 18px;
  line-height: 50px;
  font-family: 'DM Sans', sans-serif;
  color: #1e2c36;
  font-weight: 500;
  background: transparent;
  transition: all 500ms ease;
}

.main-header .search-box-btn i {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 52px;
  text-align: center;
  border: 1px solid #e6e2e3;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 500ms ease;
}

.main-header .search-box-btn:hover i {
  color: #fff;
}

.main-header .search-box-btn:hover {}

.main-header .search-box-outer .dropdown-menu {
  top: 60px !important;
  padding: 0px;
  width: 330px;
  border: none;
  right: 0;
  left: auto !important;
  transform: translate3d(0px, 0px, 0px) scale3d(0.8, 0.8, 0.8) !important;
  border-color: transparent;
  border-radius: 5px;
  transition: .5s ease;
  display: block;
  opacity: 0;
  visibility: hidden;
}

.main-header .search-box-outer .show .dropdown-menu {
  display: block;
  transform: scale3d(1, 1, 1) !important;
  opacity: 1;
  visibility: visible;
}

.main-header .search-panel .form-container {
  padding: 30px;
}

.main-header .search-panel .form-group {
  position: relative;
  margin: 0px;
}

.main-header .search-panel input[type="text"],
.main-header .search-panel input[type="search"],
.main-header .search-panel input[type="password"],
.main-header .search-panel select {
  display: block;
  width: 100%;
  line-height: 24px;
  padding: 9px 50px 9px 15px;
  height: 50px;
  color: #fff;
  border-radius: 3px;
  background-color: #1e2434;
}

.main-header .search-panel .search-btn {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 50px;
  height: 48px;
  text-align: center;
  color: #fff;
  background: transparent;
  font-size: 14px;
  border-radius: 0px 3px 3px 0px;
  cursor: pointer;
}

.dropdown-toggle::after {
  display: none;
}

.header-lower .menu-area {
  position: relative;
}

.main-header .menu-area .logo-box {
  position: relative;
  padding: 13px 0px;
  margin-right: 60px;
}

.main-header .menu-area .logo-box:before {
  position: absolute;
  content: '';
  background-color: #e1e8e4;
  width: 1px;
  height: 44px;
  top: 23px;
  right: -30px;
}

.main-header .nav-right {
  position: relative;
  padding: 31px 0px;
}

.main-header .nav-right .support-box {
  position: relative;
  float: left;
  margin-right: 20px;
  padding-right: 20px;
}

.main-header .nav-right .support-box:before {
  position: absolute;
  content: '';
  background-color: #e1e8e4;
  width: 1px;
  height: 44px;
  top: -8px;
  right: 0px;
}

.main-header .nav-right .support-box h5 {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 26px;
  color: #1e2434;
  font-weight: 600;
  padding-left: 30px;
  padding-right: 20px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 1;
}

.main-header .nav-right .support-box h5:before {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  top: 1px;
  right: 0px;
  font-size: 16px;
  font-weight: 400;
  transition: all 500ms ease;
}

.main-header .nav-right .support-box:hover h5:before {
  transform: rotate(180deg);
}

.main-header .nav-right .support-box h5 span {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #1e2434;
}

.main-header .nav-right .support-box h5 i {
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 18px;
}

.main-header .nav-right .support-box .info-box {
  position: absolute;
  left: 0px;
  top: 70px;
  width: 310px;
  background-color: #fff;
  padding: 28px 30px 29px 30px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 3px 3px 0px rgb(0 0 0 / 5%);
  transition: all 500ms ease;
}

.main-header .nav-right .support-box:hover .info-box {
  top: 56px;
  opacity: 1;
  visibility: visible;
}

.main-header .nav-right .support-box .info-box li {
  position: relative;
  display: block;
  padding-left: 70px;
  margin-bottom: 18px;
}

.main-header .nav-right .support-box .info-box li:last-child {
  margin-bottom: 0px;
}

.main-header .nav-right .support-box .info-box li i {
  position: absolute;
  left: 0px;
  top: 2px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #e1e8e4;
  font-size: 18px;
}

.main-header .nav-right .support-box .info-box li h6 {
  display: block;
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.main-header .nav-right .support-box .info-box li span {
  display: block;
  font-size: 14px;
  line-height: 26px;
  font-family: 'Lexend', sans-serif;
  color: #707582;
  font-weight: 500;
  text-transform: uppercase;
}

.main-header .nav-right .support-box .info-box li span a {
  display: inline-block;
  color: #707582;
}

.main-header .nav-right .support-box .info-box li span a:hover {}

.main-header .nav-right .support-box .info-box:before {
  position: absolute;
  content: '';
  background: transparent;
  width: 100%;
  height: 50px;
  left: 0px;
  top: -50px;
}

.main-header .nav-right .language {
  position: relative;
  float: left;
  padding-left: 28px;
  padding-right: 18px;
  width: 68px;
  cursor: pointer;
}

.main-header .nav-right .language:before {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  top: 2px;
  right: 0px;
  font-size: 16px;
  font-weight: 400;
  transition: all 500ms ease;
}

.main-header .nav-right .language:hover:before {
  transform: rotate(180deg);
}

.main-header .nav-right .language img {
  position: absolute;
  left: 0px;
  top: 6px;
  border-radius: 50%;
}

.main-header .nav-right .language span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 26px;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  color: #1e2434;
  text-transform: uppercase;
}

.main-header .nav-right .language .language-dropdown {
  position: absolute;
  right: 0px;
  top: 70px;
  width: 150px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.main-header .nav-right .language .language-dropdown:before {
  position: absolute;
  content: '';
  background: transparent;
  width: 100%;
  height: 50px;
  left: 0px;
  top: -50px;
}

.main-header .nav-right .language:hover .language-dropdown {
  top: 56px;
  opacity: 1;
  visibility: visible;
}

.main-header .nav-right .language .language-dropdown li {
  position: relative;
  display: block;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.main-header .nav-right .language .language-dropdown li a {
  display: block;
  font-size: 14px;
  line-height: 26px;
  font-family: 'Lexend', sans-serif;
  color: #707582;
  font-weight: 500;
  text-transform: uppercase;
}

.main-header .nav-right .language .language-dropdown li a:hover {}


/** main-menu **/

.main-menu {
  float: left;
}

.main-menu .navbar-collapse {
  padding: 0px;
  display: block !important;
}

.main-menu .navigation {
  margin: 0px;
}

.main-menu .navigation>li {
  position: relative;
  float: left;
  z-index: 2;
  margin: 15px 22px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
  margin-right: 0px !important;
}

.main-menu .navigation>li:first-child {
  margin-left: 0px !important;
}

.main-menu .navigation>li>a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  padding: 30px 0px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  opacity: 1;
  color: #111111;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .navigation>li.current>a,
.main-menu .navigation>li:hover>a {}

.main-menu .navigation>li>ul {
  position: absolute;
  left: inherit;
  top: 100%;
  width: 250px;
  margin-top: 15px;
  z-index: 100;
  display: none;
  opacity: 0;
  visibility: hidden;
  background-color: #ffffff;
  border-radius: 15px;
  border: 1px solid #e6e2e3;
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 8%);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation>li>ul>li {
  position: relative;
  width: 100%;
  padding: 0px 30px;
}

.main-menu .navigation>li>ul>li:last-child a {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li>a {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 30px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  opacity: 1;
  padding: 13px 0px;
  color: #111111;
  text-align: left;
  border-bottom: 1px solid #e6e2e3;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>a:hover {
  padding-left: 22px;
}

.main-menu .navigation>li>ul>li>a:before {
  position: absolute;
  content: '\f324';
  font-family: 'Font Awesome 5 Pro';
  font-size: 12px;
  left: 0px;
  top: 14px;
  opacity: 0;
  font-weight: 700;
  transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>a:hover:before {
  opacity: 1;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
  font-family: 'DM Sans', sans-serif;
  content: "+";
  position: absolute;
  right: 0px;
  top: 15px;
  display: block;
  line-height: 24px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  z-index: 5;
  transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li.dropdown>a:hover:after {
  content: "-";
}

.main-menu .navigation>li>ul>li>ul {
  position: absolute;
  left: 100%;
  top: 0%;
  width: 250px;
  z-index: 100;
  display: none;
  border-radius: 0px;
  background-color: #ffffff;
  border-radius: 15px;
  border: 1px solid #e6e2e3;
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 8%);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation>li>ul>li>ul>li {
  position: relative;
  width: 100%;
  padding: 0px 30px;
}


.main-menu .navigation>li>ul>li>ul>li>a {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 30px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  padding: 13px 0px;
  opacity: 1;
  color: #111111;
  text-align: left;
  border-bottom: 1px solid #e6e2e3;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:last-child>a {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a:before {
  position: absolute;
  content: '\f324';
  font-family: 'Font Awesome 5 Pro';
  font-size: 12px;
  left: 0px;
  top: 14px;
  opacity: 0;
  font-weight: 700;
  transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li>a:hover:before {
  opacity: 1;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a:hover {
  padding-left: 22px;
}

.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 12px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 900;
  z-index: 5;
}

.main-menu .navigation>li.dropdown:hover>ul {
  visibility: visible;
  opacity: 1;
  margin-top: -4px;
  top: 100%;
}

.main-menu .navigation>li.dropdown>ul:before {
  position: absolute;
  content: '';
  background: transparent;
  width: 10px;
  height: 100%;
  top: 0px;
  right: -10px;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
  visibility: visible;
  opacity: 1;
  top: 0%;
  margin-left: 10px;
}

.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: -32px;
  top: 66px;
  width: 34px;
  height: 30px;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  color: #3b3b3b;
  cursor: pointer;
  display: none;
  z-index: 5;
  transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn {}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
  display: none;
}

.mobile-nav-toggler {
  position: relative;
  display: inline-block;
  cursor: pointer;
  z-index: 1;
}

.mobile-nav-toggler .menu-icon {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 46px;
  cursor: pointer;
  text-align: center;
  border: 1px solid #e7e4e5;
  border-radius: 50%;
  margin-right: 10px;
  z-index: 1;
}

.mobile-nav-toggler span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 46px;
  font-weight: 500;
  color: #1e2c36;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 900ms ease;
}

.mobile-menu .navbar-collapse {
  display: block !important;
}

.mobile-menu .nav-logo {
  position: relative;
  padding: 10px 25px;
  text-align: left;
  padding-bottom: 50px;
}

.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop {
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 0.70;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #ffffff;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 900ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn {
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 16px;
  color: #111111;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgb(83, 67, 67, 0.1);
}

.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>ul>li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #111111;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li ul li>a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.mobile-menu .navigation li>a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  border-left: 5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a:before {
  height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: #111111;
  background: rgba(255, 255, 255, 0.10);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
  color: #ffffff;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul,
.mobile-menu .navigation>li.dropdown>.megamenu {
  display: none;
}

.mobile-menu .social-links {
  position: relative;
  padding: 0px 25px;
}

.mobile-menu .social-links li {
  position: relative;
  display: inline-block;
  margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {}

div#mCSB_1_container {
  top: 0px !important;
}

.mobile-menu .contact-info {
  position: relative;
  padding: 120px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a {
  color: rgba(255, 255, 255, 0.80);
}

.mobile-menu .contact-info ul li a:hover {}

.mobile-menu .contact-info ul li:last-child {
  margin-bottom: 0px;
}

.main-header .outer-box {
  position: relative;
}

.sticky-header .main-menu .navigation>li {
  margin-top: 0px;
  margin-bottom: 0px;
}

.sticky-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}


/** banner-section **/

.banner-section {
  position: relative;
  overflow: hidden;
  padding: 0px 100px;
  background: #d7ebf5;
}

.banner-carousel {
  position: relative;
}

.banner-carousel .slide-item {
  position: relative;
  padding: 100px 0px;
}

.banner-carousel .slide-item:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.00);
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: 1;
}

.banner-carousel .slide-item .image-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 6000ms linear;
  -moz-transition: all 6000ms linear;
  -ms-transition: all 6000ms linear;
  -o-transition: all 6000ms linear;
  transition: all 6000ms linear;
}

.banner-carousel .active .slide-item .image-layer {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

.banner-carousel .content-inner {
  position: relative;
  display: block;
  opacity: 0;
  border-radius: 50%;
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-left: 60px;
  padding-right: 60px;
  z-index: 5;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;

}

.banner-carousel .active .content-inner {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-carousel .content-inner:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  opacity: 0.8;
  border-radius: 50%;
}

.banner-carousel .content-inner h1 {
  display: block;
  font-size: 72px;
  line-height: 80px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.banner-carousel .content-inner h3 {
  display: block;
  font-size: 23px;
  line-height: 40px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.banner-carousel .content-inner p {
  color: #fff;
  margin-bottom: 33px;
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav {
  display: none !important;
}

.banner-carousel .owl-nav {
  position: absolute;
  left: 0px;
  top: 45%;
  width: 100%;
}

.banner-carousel .owl-nav button {
  position: absolute;
  font-size: 100px;
  background: transparent;
  cursor: pointer;
  color: #fff;
  font-weight: 400;
}

.banner-carousel .owl-nav button.owl-prev {
  left: 50px;
}

.banner-carousel .owl-nav button.owl-next {
  right: 50px;
}


/** service-section **/

.service-section {
  position: relative;
}

.service-block-one .inner-box {
  position: relative;
  display: block;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  padding: 50px 40px 50px 40px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
}

.service-block-one .inner-box .image-box {
  position: relative;
  display: block;
}

.service-block-one .inner-box .image-box img {
  width: 100%;
}

.service-block-one .inner-box .image-box .image {
  position: relative;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .image-box .image {
  opacity: 0;
}

.service-block-one .inner-box .image-box .overlay-image {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  opacity: 0;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .image-box .overlay-image {
  opacity: 1;
}

.service-block-one .inner-box .lower-content {
  position: relative;
  display: block;
  padding-top: 43px;
}

.service-block-one .inner-box .lower-content h6 {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.service-block-one .inner-box .lower-content h3 {
  position: relative;
  display: block;
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-block-one .inner-box .lower-content h3 a {
  display: inline-block;
  color: #1e2c36;
}

.service-block-one .inner-box .lower-content h3 a:hover {}

.service-block-one .inner-box .lower-content p {
  display: block;
  margin-bottom: 28px;
}

.service-block-one .inner-box .lower-content .theme-btn {
  width: 100%;
}


/** workspace-section **/

.workspace-section {
  position: relative;
  padding: 0px 100px;
}

.workspace-section .outer-container {
  position: relative;
  display: block;
  background: #f5f1f2;
  border-radius: 10px;
  overflow: hidden;
}

.workspace-section .single-item .inner-box {
  position: relative;
  display: block;
  padding: 34px 10px 30px 170px;
}

.workspace-section .single-item .inner-box:before {
  position: absolute;
  content: '';
  background: #eae3e4;
  width: 1px;
  height: 100%;
  top: 0px;
  right: -25px;
}

.workspace-section .single-column:last-child .single-item .inner-box:before {
  display: none;
}

.workspace-section .single-item .inner-box .icon-box {
  position: absolute;
  left: 40px;
  top: 40px;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e6e2e3;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}

.workspace-section .single-item .inner-box span {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.workspace-section .single-item .inner-box h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #1e2c36;
}

.workspace-section .single-item .inner-box .user {
  position: relative;
  display: inline-block;
  background: #1e2c36;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 38px;
  padding: 0px 8px;
}

.workspace-section .single-item .inner-box .user i {
  margin-right: 5px;
}

.workspace-section .single-item .inner-box .inner {
  position: relative;
  display: block;
  padding-bottom: 8px;
}

.workspace-section .single-item .inner-box .link {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.workspace-section .single-column:last-child .inner-box .link {
  right: 20px;
}

.workspace-section .single-item .inner-box .link a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  z-index: 1;
}

.workspace-section .single-item .inner-box .link a span {
  position: absolute;
  top: 1px;
  right: 0px;
  font-size: 18px;
  font-weight: 500;
  width: 100px;
  text-transform: capitalize;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 500ms ease;
}

.workspace-section .single-item .inner-box .link a:hover {
  padding-right: 110px;
}

.workspace-section .single-item .inner-box .link a:hover span {
  opacity: 1;
  transform: scaleX(1);
}

.workspace-section .single-item .inner-box .link a:before {
  position: absolute;
  left: -10px;
  top: 0px;
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  opacity: 0.6;
  font-weight: 700;
  transition: all 500ms ease;
}

.workspace-section .single-item .inner-box .link a:hover:before {
  opacity: 1;
}


/** about-section **/

.about-section {
  position: relative;
}

.image_block_1 .image-box {
  position: relative;
  display: block;
  padding-right: 170px;
  margin-right: 20px;
  padding-bottom: 195px;
}

.image_block_1 .image-box .image-1 {
  position: relative;
  display: block;
  background: #fff;
  padding: 10px;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.image_block_1 .image-box .image-1:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

.image_block_1 .image-box:hover .image-1:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.image_block_1 .image-box img {
  width: 100%;
}

.image_block_1 .image-box .image-2 {
  position: absolute;
  right: 0px;
  bottom: 0px;
  border-radius: 50%;
}

.image_block_1 .image-box .image-2 img {
  border-radius: 50%;
}

.image_block_1 .image-box .curved-circle {
  position: absolute;
  top: 0px;
  right: 0;
  width: 150px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.image_block_1 .image-box .curve-text {
  position: absolute;
  top: 0px;
  right: 0px;
}

.image_block_1 .image-box .curve-text .icon-box {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: #fff;
  border: 1px solid #e7e3e4;
  border-radius: 50%;
  text-align: center;
  top: 30px;
  right: 25px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, .07);
}

.image_block_1 .image-box .curve-text .icon-box img {
  width: auto;
}

.image_block_1 .image-box .image-shape {
  position: absolute;
  left: 30px;
  bottom: 0px;
  width: 280px;
  height: 215px;
  background-repeat: no-repeat;
}

.rotate-me {
  animation-name: rotateme;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotateme;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotateme;
  -moz-animation-duration: 30s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotateme;
  -ms-animation-duration: 30s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotateme;
  -o-animation-duration: 30s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.content_block_1 .content-box {
  position: relative;
  display: block;
}

.content_block_1 .content-box .text {
  position: relative;
  display: block;
  margin-bottom: 33px;
}

.content_block_1 .content-box .text p {
  margin-bottom: 12px;
  color: #111111;

  text-align: justify;

}

.content_block_1 .content-box .text p:last-child {
  margin-bottom: 0px;
}

.content_block_1 .content-box .inner-box .single-item {
  position: relative;
  display: block;
  background: #f9f5f6;
  border-radius: 10px;
  padding: 15px 20px 15px 20px;
  margin-bottom: 10px;
  border: 1px solid transparent;
  transition: all 500ms ease;
}

.content_block_1 .content-box .inner-box .single-item:hover {
  background: #fff;
  border: 1px solid #e6e2e3;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}

.content_block_1 .content-box .inner-box .single-item:last-child {
  margin-bottom: 0px;
}

.content_block_1 .content-box .inner-box .single-item h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  padding-left: 50px;
}

.content_block_1 .content-box .inner-box .single-item h4 span {
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  border-radius: 50%;
}

.content_block_1 .content-box .inner-box .single-item .link {
  position: absolute;
  right: 20px;
  top: 17px;
}

.content_block_1 .content-box .inner-box .single-item .link a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  z-index: 1;
}

.content_block_1 .content-box .inner-box .single-item .link a span {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 18px;
  font-weight: 500;
  width: 100px;
  text-transform: capitalize;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 500ms ease;
}

.content_block_1 .content-box .inner-box .single-item:hover .link a {
  padding-right: 110px;
}

.content_block_1 .content-box .inner-box .single-item:hover .link a span {
  opacity: 1;
  transform: scaleX(1);
}

.content_block_1 .content-box .inner-box .single-item .link a:before {
  position: absolute;
  left: -10px;
  top: 0px;
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  opacity: 0.6;
  font-weight: 700;
  transition: all 500ms ease;
}

.content_block_1 .content-box .inner-box .single-item:hover .link a:before {
  opacity: 1;
}

.content_block_1 .content-box .sec-title {
  margin-bottom: 31px;
}



/** ourcenters-section **/

.ourcenters-section {
  position: relative;
}

.project-tab .p-tab {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
}

.project-tab .p-tab.active-tab {
  position: relative;
  visibility: visible;
  opacity: 1;
  z-index: 5;
}

.project-tab .p-tabs-content {
  position: relative;
  display: block;
}

.project-tab .p-tab.active-tab .center-block-one {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
}

.project-tab .p-tab .center-block-one {
  position: relative;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transform: scaleX(0);
}

.project-tab .tab-btn-box {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.project-tab .tab-btn-box .p-tab-btn {
  position: relative;
  display: block;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  background: #f9f5f6;
  border-radius: 15px;
  text-align: center;
  padding: 19px 15px;
  transition: all 500ms ease;
}

.project-tab .tab-btn-box .p-tab-btn h5 {
  color: #9b9395;
  transition: all 500ms ease;
}

.project-tab .tab-btn-box .p-tab-btn.active-btn {
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.project-tab .tab-btn-box .p-tab-btn:before {
  position: absolute;
  content: '';
  width: calc(100% - 12px);
  height: 0%;
  left: 6px;
  top: 5px;
  border-radius: 10px;
  z-index: -1;
  transition: all 500ms ease;
}

.project-tab .tab-btn-box .p-tab-btn.active-btn:before {
  height: 100%;
}

.ourcenters-section .outer-container {
  position: relative;
  padding: 0px 100px;
}

.center-block-one .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.center-block-one .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 15px;
  transition: all 500ms ease;
}

.center-block-one .inner-box .image-box:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.0) 50%);
  bottom: 0px;
  right: 0px;
  z-index: 1;
}

.center-block-one .inner-box:hover .image-box {
  background: #1e2c36;
}

.center-block-one .inner-box .image-box img {
  width: 100%;
  border-radius: 15px;
  opacity: 0.9;
  transition: all 500ms ease;
}

.center-block-one .inner-box:hover .image-box img {
  opacity: 0.1;
  transform: scale(1.05);
}

.center-block-one .inner-box .content-box {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 270px;
  border-radius: 0px 15px 0px 15px;
  padding: 10px 10px 8px 10px;
  z-index: 1;
}

.center-block-one .inner-box .text {
  position: absolute;
  left: 0px;
  bottom: 39px;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.center-block-one .inner-box .text h2 {
  font-size: 50px;
  line-height: 70px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 1);
  transition: all 500ms ease;
}

.center-block-one .inner-box .content-box .icon-box {
  position: relative;
  display: block;
  font-size: 60px;
  line-height: 60px;
  color: #fff;
  margin-bottom: 9px;
}

.center-block-one .inner-box .content-box h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1px;
}

.center-block-one .inner-box .content-box span {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.center-block-one .inner-box .content-box a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 500;
  padding-left: 30px;
}

.center-block-one .inner-box .content-box a:hover {
  text-decoration: underline;
}

.center-block-one .inner-box .content-box a i {
  position: absolute;
  left: 10px;
  top: 5px;
}

.center-block-one .inner-box .content-box a:before {
  position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  left: 0px;
  top: 0px;
  opacity: 0.6;
  font-weight: 700;
  transition: all 500ms ease;
}

.center-block-one .inner-box .content-box a:hover:before {
  opacity: 1;
}

.ourcenters-section .owl-nav {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}

.ourcenters-section .owl-nav button {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  background: #fff;
  border: 1px solid #e6e2e3;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  margin: 20px 0px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: all 500ms ease;
}

.ourcenters-section .owl-nav button span:last-child {
  opacity: 0.5;
}


/** workspaces-section **/

.workspaces-section {
  position: relative;
}

.workspaces-section .sec-title .btn-box {
  position: absolute;
  right: 0px;
  bottom: 13px;
}

.workspaces-block-one .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.workspaces-block-one .inner-box .image-box {
  position: relative;
  display: block;
}

.workspaces-block-one .inner-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  background: #1e2c36;
}

.workspaces-block-one .inner-box .image img {
  width: 100%;
  opacity: 0.9;
  border-radius: 15px;
  transition: all 500ms ease;
}

.workspaces-block-one .inner-box:hover .image img {
  opacity: 0.1;
}

.workspaces-block-one .inner-box .image-box span {
  position: absolute;
  left: 35px;
  top: 35px;
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  background: #0b0834;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  padding: 0px 10px;
  text-transform: uppercase;
  z-index: 2;
  transition: all 500ms ease;
}

.workspaces-block-one .inner-box:hover .image-box span {
  color: #fff;
}

.workspaces-block-one .inner-box .image:before {
  position: absolute;
  content: '';
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  left: 15px;
  top: 15px;
  border-radius: 15px;
  z-index: 1;
}

.workspaces-block-one .inner-box .content-box {
  position: absolute;
  left: 15px;
  bottom: 15px;
  width: calc(100% - 30px);
  background: #d7ebf5;
  border-radius: 15px;
  padding: 24px 30px 14px 30px;
  z-index: 2;
}

.workspaces-block-one .inner-box .content-box .text {
  position: relative;
  display: block;
  font-size: 16px;
  color: #757072;
  font-weight: 500;
  padding-left: 22px;
  margin-bottom: 3px;
}

.workspaces-block-one .inner-box .content-box .text i {
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 14px;
}

.workspaces-block-one .inner-box .content-box h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  padding-bottom: 17px;
  border-bottom: 1px solid #e6e2e3;
  margin-bottom: 15px;
}

.workspaces-block-one .inner-box .content-box h3 a {
  display: inline-block;
  color: #090629;
}

.workspaces-block-one .inner-box .content-box h3 a:hover {}

.workspaces-block-one .inner-box .othre-options .pull-left {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.workspaces-block-one .inner-box .othre-options .pull-right li {
  position: relative;
  display: inline-block;
  float: left;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-right: 15px;
  padding-left: 22px;
}

.workspaces-block-one .inner-box .othre-options .pull-right li:last-child {
  margin: 0px !important;
}

.workspaces-block-one .inner-box .othre-options .pull-right li i {
  position: absolute;
  left: 0px;
  top: 1px;
  font-size: 14px;
}

.dots-style-one .owl-dots button {
  background: transparent;
}

.dots-style-one .owl-dots .owl-dot span {
  position: relative;
  display: inline-block;
  background: #9b9395;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

.dots-style-one .owl-dots .owl-dot.active span,
.dots-style-one .owl-dots .owl-dot span:hover {
  width: 38px;
  border-radius: 3px;
}

.workspaces-section .dots-style-one .owl-dots {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 37px;
}


/** amenities-section **/

.amenities-section {
  position: relative;
  padding: 0px 100px;
}

.amenities-section .outer-container {
  position: relative;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, .10);
}

.amenities-section .single-item .inner-box {
  position: relative;
  display: block;
  padding: 59px 15px 58px 15px;
  min-height: 285px;
}

.amenities-section .single-item .inner-box .icon-box {
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.amenities-section .single-item .inner-box h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 12px;

  color: #ffffff;
}

.amenities-section .single-column:nth-child(5) .single-item .inner-box {}

.amenities-section .single-column:nth-child(6) .single-item .inner-box {}

.amenities-section .single-column:nth-child(5) .single-item .inner-box h3,
.amenities-section .single-column:nth-child(5) .single-item .inner-box p,
.amenities-section .single-column:nth-child(6) .single-item .inner-box h3,
.amenities-section .single-column:nth-child(6) .single-item .inner-box p {
  color: #fff;
}

.amenities-section .single-item .text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f9f5f6;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  margin: 0 auto;
}

.amenities-section .single-item .text h2 {
  position: relative;
  display: inline-block;
  font-size: 70px;
  line-height: 70px;
  font-weight: 500;
  padding-right: 26px;
  margin-bottom: 3px;
}

.amenities-section .single-item .text h2 span {
  position: absolute;
  top: -15px;
  right: 0px;
  font-size: 42px;
}

.amenities-section .single-item .text h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}

.amenities-section .single-column:nth-child(7) .single-item {
  padding: 23px;
}

.amenities-section .single-item .link-box .link a {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  border: 1px solid #e7e3e4;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 10px;
}


.amenities-section .single-item .link-box .link a i:first-child {
  opacity: 0.5;
}

.amenities-section .single-item .link-box h5 {
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.amenities-section .single-item .link-box h5 a {
  display: inline-block;
  color: #1e2c36;
}

.amenities-section .single-item .link-box h5 a:hover {}

.amenities-section .single-item .link-box {
  padding: 35px 0px 35px 0px;
}

.amenities-section .line-box .line {
  position: absolute;

  background: #097292;
}

.amenities-section .line-box .line-1 {
  left: 50%;
  top: 0px;
  height: 100%;
  width: 1px;
  transform: translateX(-50%);
}

.amenities-section .line-box .line-2 {
  left: 0px;
  top: 50%;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.amenities-section .single-column {
  /* padding: 0px; */

  background-color: #125165;
}

.amenities-section .single-column:before {
  position: absolute;
  content: '';
  background: #097292;
  width: 1px;
  height: 100%;
  top: 0px;
  right: 0px;
}

.amenities-section .single-column:nth-child(5):before,
.amenities-section .single-column:last-child:before {
  display: none;
}

.amenities-section .inner-content {
  margin: 0px 15px;
}

.amenities-section .pointers-block {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 490px;
  height: 490px;
  z-index: 1;
}

.amenities-section .pointers-block .pointer-image {
  position: relative;
  border-radius: 50%;
}

.amenities-section .pointers-block .pointer-image img {
  width: 100%;
  border-radius: 50%;
}

.amenities-section .pointers-block .single-pointer {
  position: absolute;
}

.amenities-section .pointers-block .single-pointer:first-child {
  left: 225px;
  top: 62px;
}

.amenities-section .pointers-block .single-pointer:nth-child(2) {
  left: 80px;
  top: 175px;
}

.amenities-section .pointers-block .single-pointer:last-child {
  right: 100px;
  bottom: 125px;
}

.amenities-section .pointers-block .single-pointer span {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 30px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 500ms ease;

  display: none;

}

.amenities-section .pointers-block .single-pointer span:before {
  position: absolute;
  content: '';
  width: 60px;
  height: 60px;
  border-radius: 50%;
  left: -5px;
  top: -5px;
  transition: all 500ms ease;
}

.amenities-section .pointers-block .single-pointer:hover span:before {
  opacity: 0;
}

.amenities-section .pointers-block .single-pointer:hover span {
  box-shadow: 0px 0px 0px 5px rgb(47, 136, 167, 0.60);
  transform: rotate(45deg);
}

.amenities-section .pointers-block .single-pointer h5 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -62px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  background: #fff;
  padding: 11px 35px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.amenities-section .pointers-block .single-pointer h5:before {
  position: absolute;
  content: '';
  background: #fff;
  width: 20px;
  height: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  bottom: -8px;
}

.amenities-section .pointers-block .single-pointer:hover h5 {
  top: -72px;
  opacity: 1;
  visibility: visible;
}


/** pricing-section **/

.pricing-section {
  position: relative;
}

.pricing-block-one .pricing-table {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  padding: 40px 40px 40px 40px;
}

.pricing-block-one .pricing-table .table-header h3 {
  position: absolute;
  top: 40px;
  right: 0px;
  font-size: 30px;
  font-weight: 700;
  background: #f9f5f6;
  border: 1px solid #e6e2e3;
  border-radius: 15px 0px 0px 15px;
  padding: 11px 25px;
  border-right: none;
}

.pricing-block-one .pricing-table .table-header .icon-box {
  margin-bottom: 22px;
}

.pricing-block-one .pricing-table .table-header h2 {
  position: relative;
  display: block;
  font-size: 28px;
  line-height: 38px;
  font-weight: 500;
  margin-bottom: 2px;
}

.pricing-block-one .pricing-table .table-header {
  padding-bottom: 33px;
  border-bottom: 1px solid #e6e2e3;
}

.pricing-block-one .pricing-table .feature-box .single-item {
  position: relative;
  display: block;
  padding: 18px 0px;
  border-bottom: 1px solid #e6e2e3;
}

.pricing-block-one .pricing-table .feature-box .single-item:last-child {
  border-bottom: none;
}

.pricing-block-one .pricing-table .feature-box .single-item h6 {
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.pricing-block-one .pricing-table .theme-btn {
  border: 1px solid #e6e2e3;
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 7%);
  width: 100%;
}

.pricing-block-one .pricing-table .table-footer {
  padding-top: 14px;
}

.pricing-block-one .pricing-table .feature-box .single-item p i {
  font-size: 10px;
}

.pricing-block-one.active-block .pricing-table {
  background: #1e2c36;
  border-color: #1e2c36;
}

.pricing-block-one.active-block .pricing-table .table-header h3 {
  background: #24323d;
  border-color: #34434e;
}

.pricing-block-one.active-block .pricing-table .table-header h2 {
  color: #fff;
}

.pricing-block-one.active-block .pricing-table p {
  color: #a5adb3;
}

.pricing-block-one.active-block .pricing-table h6 {
  color: #fff;
}

.pricing-block-one.active-block .pricing-table .table-header {
  border-bottom: 1px solid #34434e;
}

.pricing-block-one.active-block .pricing-table .theme-btn {
  color: #fff;
}

.pricing-block-one.active-block .pricing-table .theme-btn span:before,
.pricing-block-one.active-block .pricing-table .theme-btn span:after {
  color: #fff;
}

.pricing-block-one.active-block .pricing-table .theme-btn span:after {
  opacity: 0.6;
}

.pricing-section .pattern-layer {
  position: absolute;
  left: 100px;
  bottom: 0px;
  width: calc(100% - 200px);
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}


/** project-section **/

.project-section {
  position: relative;
}

.project-section .sec-title .btn-box {
  position: absolute;
  right: 0px;
  bottom: 13px;
}

.project-section .outer-container {
  padding: 0px 100px;
}

.project-section .small-column {
  padding: 0px 10px;
}

.project-section .double-block {
  margin: 0px 5px;
}

.project-section .sortable-masonry {
  margin: 0px 5px;
}

.project-block-one .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.project-block-one .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.project-block-one .inner-box .image-box img {
  width: 100%;
  border-radius: 15px;
}

.project-block-one .inner-box {
  margin-bottom: 20px;
}

.project-block-one .inner-box .content-box {
  position: absolute;
  left: 0px;
  top: 30px;
  right: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0px 15px;
  opacity: 0;
  transition: all 500ms ease;
}

.project-block-one .inner-box:hover .content-box {
  top: 0px;
  opacity: 1;
}

.project-block-one .inner-box .content-box:before {
  position: absolute;
  content: '';
  background: #1e2c36;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.9;
}

.project-block-one .inner-box .content-box .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.project-block-one .inner-box .content-box .text h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  font-weight: 500;
}

.project-block-one .inner-box .content-box .text h3 a {
  display: inline-block;
  color: #fff;
}

.project-block-one .inner-box .content-box .text h3 a:hover {}

.project-block-one .inner-box .content-box .link {
  position: absolute;
  right: 20px;
  bottom: 12px;
}

.project-block-one .inner-box .content-box .link a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #fff;
}

.project-block-one .inner-box .content-box .link a i {
  position: relative;
  top: 1px;
  margin-right: 10px;
  font-size: 20px;
}

.project-block-one .inner-box .content-box .link a:hover {}


/** team-section **/

.team-section {
  position: relative;
  padding-bottom: 110px;
}

.team-block-one .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.team-block-one .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.team-block-one .inner-box .image-box:before {
  position: absolute;
  content: '';
  border: 1px solid rgba(255, 255, 255, 0.40);
  border-radius: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  left: 15px;
  top: 15px;
  z-index: 1;
}

.team-block-one .inner-box .image-box:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(90deg, rgba(30, 44, 54, 0.6) 10%, rgba(30, 44, 54, 0.0) 100%);
  bottom: 0px;
  right: 0px;
  z-index: 1;
}

.team-block-one .inner-box .image-box img {
  width: 100%;
  border-radius: 15px;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box img {
  transform: scale(1.05);
}

.team-block-one .inner-box .content-box {
  position: absolute;
  left: 0px;
  bottom: 0px;
  padding: 15px;
  width: 100%;
  z-index: 2;
}

.team-block-one .inner-box .content-box .text {
  position: relative;
  display: block;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  padding-left: 25px;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .content-box .text {
  padding-bottom: 52px;
}

.team-block-one .inner-box .content-box .text h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
}

.team-block-one .inner-box .content-box .text h2 {
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  color: #fff;
}

.team-block-one .inner-box .content-box .text h2 a {
  display: inline-block;
  color: #fff;
}

.team-block-one .inner-box .content-box .text h2 a:hover {}

.team-block-one .inner-box .content-box .text span {
  position: absolute;
  left: 25px;
  bottom: 11px;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  opacity: 0;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .content-box .text span {
  opacity: 1;
  bottom: 21px;
}

.team-block-one .inner-box .content-box .lower-content {
  padding: 15px 25px 10px 28px;
}

.team-block-one .inner-box .lower-content .list>li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.team-block-one .inner-box .lower-content .list li:last-child {
  margin-right: 0px;
}

.team-block-one .inner-box .lower-content .list>li>a {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  text-align: center;
  z-index: 1;
}

.team-block-one .inner-box .lower-content .list>li>a:hover {
  background: #fff;
  border-color: #fff;
}

.team-block-one .inner-box .lower-content .share-option .share-links {
  position: absolute;
  left: -5px;
  bottom: -5px;
  width: 42px;
  border-radius: 30px;
  padding: 0px 0px 35px 0px;
  text-align: center;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: all 500ms ease;
}

.team-block-one .inner-box .lower-content .share-option:hover .share-links {
  transform: scaleY(1);
}

.team-block-one .inner-box .lower-content .share-option .share-links li {
  position: relative;
  display: block;
  padding: 11px 0px;
  line-height: 20px;
  border-bottom: 1px solid #fe7f9e;
}

.team-block-one .inner-box .lower-content .share-option .share-links li:last-child {
  border-bottom: none;
}

.team-block-one .inner-box .lower-content .share-option .share-links li a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}


/** testimonial-section **/

.testimonial-section {
  position: relative;
  padding: 0px 100px;
}

.testimonial-section .owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-section .owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
}

.testimonial-section .owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
}

.testimonial-section .outer-container {
  background: #f9f5f6;
}

.testimonial-block-one .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #e6e2e3;
  padding: 43px 40px 43px 50px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  transition: all 500ms ease;
}

.testimonial-block-one .inner-box:hover {}

.testimonial-block-one .inner-box .author-info {
  position: relative;
  display: block;
  padding: 0px 0px 0px 70px;
  margin-bottom: 22px;
}

.testimonial-block-one .inner-box .author-info .thumb-box {
  position: absolute;
  left: 0px;
  top: 7px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-block-one .inner-box .author-info .thumb-box img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-block-one .inner-box .author-info h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}

.testimonial-block-one .inner-box .author-info .designation {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
}

.testimonial-block-one .inner-box .text {
  position: relative;
  display: block;
  margin-bottom: 17px;
}

.testimonial-block-one .inner-box .rating li {
  position: relative;
  display: inline-block;
  float: left;
  font-size: 14px;
  margin-right: 4px;
}

.testimonial-block-one .inner-box .rating li:last-child {
  margin: 0px !important;
}

.testimonial-block-one .inner-box .quote {
  position: absolute;
  top: -1px;
  right: -1px;
  transition: all 500ms ease;
}

.testimonial-block-one .inner-box .overlay-quote {
  position: absolute;
  top: -1px;
  right: -1px;
  opacity: 0;
  transition: all 500ms ease;
}

.testimonial-block-one .inner-box:hover .overlay-quote {
  opacity: 1;
}

.testimonial-block-one .inner-box:hover .quote {
  opacity: 0;
}

.testimonial-section .owl-nav {
  position: absolute;
  top: -140px;
  right: 0px;
}

.testimonial-section .owl-nav button {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  background: #fff;
  border: 1px solid #e6e2e3;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  margin: 20px 0px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: all 500ms ease;
}

.testimonial-section .owl-nav button span:last-child {
  opacity: 0.5;
  transition: all 500ms ease;
}

.testimonial-section .owl-nav button.owl-prev {
  margin-right: 10px;
}

.testimonial-section .owl-nav button:hover span:last-child {
  opacity: 1;
}

.testimonial-section .sec-title h6 {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, .07);
}


/** clients-section **/

.clients-section {
  position: relative;
  padding: 0px 100px;
}

.clients-section .outer-container {
  box-shadow: 0px 10px 50px 0px rgb(0 0 0 / 10%);
  background: #fff;
  padding: 20px 0px;
  border-radius: 0px 0px 10px 10px;
}

.clients-section .clients-logo-box {
  position: relative;
  display: block;
  padding: 20px 0px;
  transition: all 500ms ease;
}

.clients-section .clients-logo-box:before {
  position: absolute;
  content: '';
  background: #e6e2e3;
  width: 1px;
  height: calc(100% - 20px);
  top: 10px;
  right: -15px;
}

.clients-section .clients-logo-box img {
  display: block;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  opacity: 0.5;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.clients-section .clients-logo-box:hover img {
  opacity: 1;
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
}


/** news-section **/

.news-section {
  position: relative;
}

.news-block-one .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  background: #fff;
  padding: 15px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
}

.news-block-one .inner-box .image-box {
  position: relative;
  display: block;
}

.news-block-one .inner-box .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #1e2c36;
  border-radius: 15px;
}

.news-block-one .inner-box .image-box .image img {
  width: 100%;
  border-radius: 15px;
  opacity: 0.9;
  transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-box .image img {
  transform: scaleX(1.05);
  opacity: 0.3;
}

.news-block-one .inner-box .image-box .category {
  position: absolute;
  left: 15px;
  top: 15px;
}

.news-block-one .inner-box .image-box .category a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 38px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 0px 15px;
  border-radius: 15px;
  z-index: 1;
}

.news-block-one .inner-box .image-box .category a:hover {
  background: #fff;
}

.news-block-one .inner-box .lower-content .option-box {
  position: relative;
  padding: 0px 15px 0px 15px;
  margin-top: -28px;
  margin-bottom: 20px;
}

.news-block-one .inner-box .lower-content .option-box .admin {
  position: relative;
  display: inline-block;
  background: #fff;
  border: 1px solid #e6e2e3;
  border-radius: 30px;
  padding: 12px 25px 14px 65px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  margin-right: 7px;
}

.news-block-one .inner-box .lower-content .option-box .admin img {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.news-block-one .inner-box .lower-content .option-box .admin a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #757072;
}

.news-block-one .inner-box .lower-content .option-box .admin a:hover {}

.news-block-one .inner-box .lower-content .option-box .share {
  position: relative;
  display: inline-block;
}

.news-block-one .inner-box .lower-content .option-box .share a {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  background: #1e2c36;
}

.news-block-one .inner-box .lower-content .option-box .share a:hover {}

.news-block-one .inner-box .lower-content .text {
  position: relative;
  padding: 0px 15px 20px 15px;
}

.news-block-one .inner-box .lower-content .text:before {
  position: absolute;
  content: '';
  background: #e6e2e3;
  width: calc(100% + 30px);
  height: 1px;
  left: -15px;
  bottom: 0px;
}

.news-block-one .inner-box .lower-content .text h3 {
  display: block;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 10px;
}

.news-block-one .inner-box .lower-content .text h3 a {
  display: inline-block;
  color: #1e2c36;
}

.news-block-one .inner-box .lower-content .text h3 a:hover {}

.news-block-one .inner-box .lower-content .post-date {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #757072;
}

.news-block-one .inner-box .lower-content .lower-box {
  position: relative;
  padding: 18px 15px 2px 15px;
}

.news-block-one .inner-box .lower-box .link a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  z-index: 1;
}

.news-block-one .inner-box .lower-box .link a span {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 18px;
  font-weight: 500;
  width: 100px;
  text-transform: capitalize;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 500ms ease;
}

.news-block-one .inner-box .lower-box .link a:hover {
  padding-right: 110px;
}

.news-block-one .inner-box .lower-box .link a:hover span {
  opacity: 1;
  transform: scaleX(1);
}

.news-block-one .inner-box .lower-box .link a:before {
  position: absolute;
  left: -10px;
  top: 0px;
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  opacity: 0.6;
  font-weight: 700;
  transition: all 500ms ease;
}

.news-block-one .inner-box .lower-box .link a:hover:before {
  opacity: 1;
}

/** booking-section **/

.booking-section {
  position: relative;
  padding: 0px 100px;
}

.booking-section .outer-container {
  position: relative;
  width: 100%;
  padding: 110px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.nice-select:after {
  width: 9px;
  height: 9px;
  border-bottom: 2px solid #0e6583;
  border-right: 2px solid #0e6583;
  right: 20px;
}

.nice-select {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: 1px solid #e6e2e3 !important;
  border-radius: 15px;
  font-size: 18px;
  color: #757072;
  padding: 20px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  padding: 0px 20px;
  padding-right: 40px;
  font-size: 18px;
  font-weight: 400;
  color: #707582;
  background: #dff4ff;
}

.booking-section .inner-box {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 15px;
  padding: 41px 40px 50px 40px;
}

.booking-section .inner-box .text {
  position: relative;
  display: block;
  margin-bottom: 33px;
}

.booking-section .inner-box h2 {
  display: block;
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  margin-bottom: 7px;
}

.default-form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.default-form .form-group .select-box {
  min-height: 60px;
}

.default-form .form-group input[type='text'],
.default-form .form-group input[type='email'],
.default-form .form-group input[type='phone'],
.default-form .form-group input[type='date'],



.default-form .form-group input[type='time'],
.default-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  font-size: 18px;
  color: #757072;
  padding: 20px;
  padding-right: 50px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  transition: all 500ms ease;

  background: #dff4ff;

}

.default-form .form-group textarea {
  height: 110px;
  resize: none;
}

.default-form .form-group input:focus,
.default-form .form-group textarea:focus {}

.default-form .form-group i {
  position: absolute;
  top: 22px;
  right: 20px;
  font-size: 16px;
  z-index: 1;
}

.default-form .form-group .theme-btn {
  border: 1px solid #e6e2e3;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 08%);
  width: 100%;
}

.default-form .form-group.message-btn {
  margin-bottom: 0px;
}


/** funfact-section **/

.funfact-section {
  position: relative;
  padding: 110px 0px;
}

.counter-block-one .inner-box {
  position: relative;
  display: block;
}

.counter-block-one .inner-box .count-outer {
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 44px;
  color: #111111;
  font-weight: 500;
  margin-bottom: 10px;
}

.counter-block-one .inner-box h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 1px;
}

.counter-block-one .inner-box p {
  display: block;
  margin-bottom: 19px;
}

.counter-block-one .inner-box:before {
  position: absolute;
  content: '';
  background: #e6e2e3;
  width: 1px;
  height: 100%;
  top: 0px;
  right: -15px;
}

.funfact-block:first-child .counter-block-one .inner-box:after {
  position: absolute;
  content: '';
  background: #e6e2e3;
  width: 1px;
  height: 100%;
  top: 0px;
  left: -15px;
}


/** cta-section **/

.cta-section {
  position: relative;
  padding: 0px 100px;
}

.cta-section .outer-container {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 90px 0px;
  background-attachment: fixed;
  border-radius: 15px;
  overflow: hidden;
}

.cta-section .outer-container:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
}

.cta-section .inner-box .icon-box {
  position: relative;
  display: block;
  font-size: 60px;
  line-height: 60px;
  color: #fff;
  margin-bottom: 14px;
}

.cta-section .inner-box h6 {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cta-section .inner-box h2 {
  display: block;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 28px;
}

.cta-section .inner-box .phone {
  color: #1e2c36;
  margin-right: 20px;
}

.cta-section .inner-box .phone i {
  position: relative;
  margin-right: 8px;
  font-size: 18px;
  top: 2px;
}

.cta-section .inner-box .theme-btn {
  width: 190px;
  padding: 17px 15px;
  box-shadow: none;
  border: none;
}

.cta-section .inner-box .phone:hover {
  color: #fff;
  background: #141417;
}

.cta-section:before {
  position: absolute;
  content: '';
  background: #1e2c36;
  width: 100%;
  height: 50%;
  left: 0px;
  bottom: 0px;
}


/** main-footer **/

.main-footer {
  position: relative;
  background: #0a5b77;
}

.main-footer .widget-section {
  position: relative;
  padding: 60px 0px 20px 0px;
  border-bottom: 1px solid #7a96ab;
}

.main-footer .logo-widget .footer-logo {
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.main-footer .logo-widget .text {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.main-footer p,
.main-footer a {
  font-size: 18px;
  color: #ffffff !important;



}

.main-footer .logo-widget h6 {
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.main-footer .logo-widget .apps-download li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.main-footer .logo-widget .apps-download li:last-child {
  margin: 0px !important;
}

.main-footer .logo-widget .apps-download li a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 54px;
  font-size: 24px;
  border: 1px solid #34434e;
  background: #24323d;
  border-radius: 50%;
  text-align: center;
}

.main-footer .logo-widget .apps-download li a:hover {
  color: #fff;
}

.main-footer .widget-title {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.main-footer .widget-title h3 {
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  font-weight: 500;
}

.main-footer .links-widget .widget-content li {
  position: relative;
  display: block;
  margin-bottom: 8px;
}

.main-footer .links-widget .widget-content li:last-child {
  margin-bottom: 0px;
}

.main-footer .links-widget .widget-content li a {
  position: relative;
  display: inline-block;
}

.main-footer .links-widget .widget-content li a:before {
  position: absolute;
  content: '';
  width: 0%;
  height: 1px;
  left: 0px;
  bottom: 4px;
  transition: all 500ms ease;
}

.main-footer .links-widget .widget-content li a:hover:before {
  width: 100%;
}

.main-footer .post-widget .post {
  position: relative;
  display: block;
  padding-left: 90px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #34434e;
  min-height: 102px;
}

.main-footer .post-widget .post:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.main-footer .post-widget .post .post-thumb {
  position: absolute;
  left: 0px;
  top: 6px;
  width: 70px;
  height: 70px;
  border-radius: 15px;
}

.main-footer .post-widget .post .post-thumb img {
  width: 100%;
  border-radius: 15px;
}

.main-footer .post-widget .post .post-thumb:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 15px;
  transform: scale(0, 0);
  transition: all 500ms ease;
}

.main-footer .post-widget .post:hover .post-thumb:before {
  transform: scale(1, 1);
}

.main-footer .post-widget .post .post-thumb a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  font-size: 20px;
  color: #fff;
  transition: all 500ms ease;
}

.main-footer .post-widget .post:hover .post-thumb a {
  transform: translate(-50%, -50%) scale(1, 1);
}

.main-footer .post-widget .post .post-date {
  position: relative;
  display: block;
  font-size: 16px;
  color: #a5adb3;
  line-height: 26px;
  margin-bottom: 7px;
}

.main-footer .post-widget .post h5 {
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
}

.main-footer .post-widget .post h5 a {
  color: #fff;
  display: inline-block;
}

.main-footer .post-widget .post h5 a:hover {}

.footer-bottom {
  position: relative;
  width: 100%;
  padding: 24px 0px;
}

.footer-bottom .copyright p a {}

.footer-bottom .copyright p a:hover {
  color: #fff;
}

.footer-bottom .footer-nav li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 25px;
}

.footer-bottom .footer-nav li:last-child {
  margin-bottom: 0px !important;
}

.footer-bottom .footer-nav li a {
  display: inline-block;
}

.footer-bottom .footer-nav li a:hover {}



/*** 

====================================================================
                        Home-Page-Two
====================================================================

***/

/** header-style-two **/

.header-style-two {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
}

.header-style-two .main-menu .navigation>li>a {
  color: #1e2c36;
}


/** banner-style-two **/

.banner-style-two {
  position: relative;
  padding: 185px 0px 110px 0px;
}

.banner-style-two .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 1147px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.banner-style-two .outer-container {
  position: relative;
  padding: 0px 100px;
}

.banner-style-two .content-box {
  position: relative;
  max-width: 670px;
  z-index: 1;
}

.banner-style-two .content-box h5 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 100px;
  font-weight: 700;
  margin-bottom: 12px;
  width: 218px;
  height: 100px;
  text-align: center;
}

.banner-style-two .content-box h5:before {
  position: absolute;
  content: '';
  background: url(../images/shape/shape-3.png);
  width: 218px;
  height: 100px;
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
}

.banner-style-two .content-box h2 {
  position: relative;
  display: block;
  font-size: 90px;
  line-height: 96px;
  font-weight: 800;
  margin-bottom: 15px;
}

.banner-style-two .content-box p {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #757072;
  margin-bottom: 30px;
}

.banner-style-two .workspaces-block-two {
  position: relative;
  width: 100%;
}

.banner-style-two .workspaces-block-two:last-child {
  margin-left: 0px;
}

.banner-style-two .workspaces-block:last-child .workspaces-block-two:first-child {
  margin-top: 100px;
}

.banner-style-two .inner-content {
  position: relative;
  margin-left: 65px;
}

.banner-style-two .inner-content .shape {
  position: absolute;
  right: 530px;
  bottom: -35px;
  width: 450px;
  height: 450px;
  background-repeat: no-repeat;
}

.workspaces-block-two .inner-box {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  padding: 24px 30px 30px 30px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
}

.workspaces-block-two .inner-box .upper-box {
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.workspaces-block-two .inner-box .upper-box h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 1px;
}

.workspaces-block-two .inner-box .upper-box h3 a {
  display: inline-block;
  color: #1e2c36;
}

.workspaces-block-two .inner-box .upper-box h3 a:hover {}

.workspaces-block-two .inner-box .upper-box .text {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  padding-left: 22px;
}

.workspaces-block-two .inner-box .upper-box .text i {
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 14px;
}

.workspaces-block-two .inner-box .image-box {
  position: relative;
  display: block;
  border-radius: 15px;
  margin-bottom: 20px;
}

.workspaces-block-two .inner-box .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.workspaces-block-two .inner-box .image-box .image img {
  width: 100%;
  border-radius: 15px;
}

.workspaces-block-two .inner-box .image-box .image:before {
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.06;
}

.workspaces-block-two .inner-box .image-box .category {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  padding: 0px 10px;
  text-transform: uppercase;
  z-index: 2;
  transition: all 500ms ease;
}

.workspaces-block-two .inner-box .image-box .view-btn {
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.workspaces-block-two .inner-box .image-box .view-btn a {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 39px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.60);
  z-index: 1;
}

.workspaces-block-two .inner-box .image-box .view-btn a:hover {}

.workspaces-block-two .inner-box .feature-list li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 8px 20px 10px 50px;
  border-radius: 15px;
  border: 1px solid #e5e1e2;
  width: 149px;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
}

.workspaces-block-two .inner-box .feature-list li i {
  position: absolute;
  left: 9px;
  top: 14px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border: 1px solid #e6e2e3;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
}

.workspaces-block-two .inner-box .feature-list li:last-child {
  margin-right: 0px;
}

.workspaces-block-two .inner-box .feature-list li h6 {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 0px;
}

.workspaces-block-two .inner-box .feature-list li span {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: #757072;
}

.workspaces-block-two .inner-box .lower-box {
  position: relative;
  display: block;
  border: 1px solid #e5e1e2;
  border-radius: 15px;
  padding: 16px 20px;
  box-shadow: 0px 5px 30px 0px rgb(0 0 0 / 8%);
}

.workspaces-block-two .inner-box .lower-box .text {
  position: relative;
  float: left;
  font-size: 18px;
  font-weight: 700;
  color: #393c43;
}

.workspaces-block-two .inner-box .lower-box .link {
  position: absolute;
  top: 15px;
  right: 20px;
}

.workspaces-block-two .inner-box .lower-box .link a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  z-index: 1;
}

.workspaces-block-two .inner-box .lower-box .link a span {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 18px;
  font-weight: 700;
  width: 100px;
  color: #393c43;
  text-transform: capitalize;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 500ms ease;
}

.workspaces-block-two .inner-box .lower-box .link a:hover {
  padding-right: 110px;
}

.workspaces-block-two .inner-box .lower-box .link a:hover span {
  opacity: 1;
  transform: scaleX(1);
}

.workspaces-block-two .inner-box .lower-box .link a:before {
  position: absolute;
  left: -10px;
  top: 0px;
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  opacity: 0.6;
  font-weight: 700;
  transition: all 500ms ease;
}

.workspaces-block-two .inner-box .lower-box .link a:hover:before {
  opacity: 1;
}

.workspaces-block-two .more-btn {
  position: relative;
  display: block;
  margin-top: 34px;
}

.workspaces-block-two .more-btn a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #1e2c36;
}

.workspaces-block-two .more-btn a:hover {}

.workspaces-block-two .more-btn a span {
  position: relative;
  padding-left: 30px;
}

.workspaces-block-two .more-btn a span:before {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  left: 10px;
  top: -1px;
  font-size: 20px;
  font-weight: 700;
  transition: all 500ms ease;
}

.workspaces-block-two .more-btn a span:after {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  left: 0px;
  top: -1px;
  font-size: 20px;
  font-weight: 700;
  opacity: 0.5;
  transition: all 500ms ease;
}

.amenities-section.alternat-2 .single-column:nth-child(6) .single-item .inner-box {
  background: #8965e5;
}

.amenities-section.alternat-2 .pointers-block .single-pointer:hover span {
  box-shadow: 0px 0px 0px 5px rgb(253 145 103 / 60%);
}


/** service-style-two **/

.service-style-two {
  position: relative;
  padding: 110px 0px;
}

.service-block-two .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  padding-bottom: 40px;
}

.service-block-two .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.service-block-two .inner-box .image-box .image {
  position: relative;
  overflow: hidden;
}

.service-block-two .inner-box .image-box .image img {
  width: 100%;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .image-box .image img {
  transform: scale(1.05);
}

.service-block-two .inner-box .image-box .count-text {
  position: absolute;
  top: 26px;
  right: 35px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.service-block-two .inner-box .lower-content {
  position: absolute;
  left: 0px;
  bottom: 0px;
  border-radius: 15px;
  background: #1e2c36;
  width: 100%;
  padding: 24px 30px 23px 30px;
  overflow: hidden;
}

.service-block-two .inner-box .lower-content h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}

.service-block-two .inner-box .lower-content h3 a {
  color: #fff;
}

.service-block-two .inner-box .lower-content h3 a:hover {}

.service-block-two .inner-box .lower-content p {
  font-size: 18px;
  color: #c4cbd0;
}

.service-block-two .inner-box .lower-content .shape {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 88px;
  height: 113px;
  background-repeat: no-repeat;
}

.service-style-two .owl-dots {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 37px;
}

.service-style-two .pattern-layer {
  position: absolute;
  left: 0px;
  top: -30px;
  width: 546px;
  height: 474px;
  background-repeat: no-repeat;
  z-index: -1;
}


/** video-section **/

.video-section {
  position: relative;
  padding: 0px 100px;
}

.video-section .outer-container {
  position: relative;
  width: 100%;
  padding: 107px 0px 60px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 15px;
}

.video-section .big-text {
  position: relative;
  display: block;
  font-size: 65px;
  line-height: 150px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.20);
  margin-bottom: 113px;



}

.video-section .video-btn a {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 80px;
  font-size: 24px;
  text-align: center;
  border-radius: 15px;
  color: #fff;
}

.video-section .video-carousel {
  max-width: 70px;
  margin: 0 auto;
}

.video-section .owl-nav button {
  position: absolute;
  top: -13px;
  display: block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  font-size: 20px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  margin: 20px 0px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: all 500ms ease;
}

.video-section .owl-nav button.owl-prev span:last-child {
  opacity: 0.5;
}

.video-section .owl-nav button.owl-next span:first-child {
  opacity: 0.5;
}

.video-section .owl-nav button.owl-prev {
  left: -86px;
}

.video-section .owl-nav button.owl-next {
  right: -86px;
}

.video-section .owl-nav button:hover {
  background: #141417;
}


/** ourcenters-style-two **/

.ourcenters-style-two {
  position: relative;
  padding: 50px 0px 100px 0px;
}

.ourcenters-style-two .pattern-layer {
  position: absolute;
  right: 0px;
  bottom: -200px;
  width: 100%;
  height: 1240px;
  background-repeat: no-repeat;
  z-index: -1;
}

.ourcenters-style-two .owl-carousel .owl-stage-outer {
  overflow: visible;
}

.ourcenters-style-two .owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
}

.ourcenters-style-two .owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
}

.center-block-two .inner-box {
  position: relative;
  display: block;
  padding: 0px 30px 0px 30px;
}

.center-block-two .inner-box:before {
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: calc(100% - 125px);
  left: 0px;
  bottom: 0px;
  border-radius: 15px;
  box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.10);
}

.center-block-two .inner-box .image-box {
  position: relative;
  display: block;
}

.center-block-two .inner-box .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #1e2c36;
  border-radius: 15px;
}

.center-block-two .inner-box .image-box .image img {
  border-radius: 15px;
  width: 100%;
  transition: all 500ms ease;
}

.center-block-two .inner-box:hover .image-box .image img {
  transform: scale(1.05);
  opacity: 0.1;
}

.center-block-two .inner-box .image-box .link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.center-block-two .inner-box .image-box .link a {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  font-size: 18px;
  text-align: center;
  border-radius: 50%;
  transform: scale(0, 0);
}

.center-block-two .inner-box:hover .image-box .link a {
  transform: scale(1, 1);
}

.center-block-two .inner-box .image-box .link a:hover {
  color: #fff;
}

.center-block-two .inner-box .image-box .link a i:first-child {
  opacity: 0.5;
}

.center-block-two .inner-box .lower-content {
  position: relative;
  display: block;
  padding: 24px 0px 23px 0px;
}

.center-block-two .inner-box .lower-content h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 5px;
}

.center-block-two .inner-box .lower-content h3 a {
  display: inline-block;
  color: #1e2c36;
}

.center-block-two .inner-box .lower-content h3 a:hover {}

.center-block-two .inner-box .lower-content span {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 500ms ease;



}

.center-block-two .inner-box:hover .lower-content span {}

.ourcenters-style-two .owl-dots {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 37px;
}


.funfact-section.alternat-2 {
  padding: 60px 100px;
}

.funfact-section .outer-container {
  position: relative;
  background: #edf6fa;
  border-radius: 15px;
  padding: 110px 0px;
  overflow: hidden;
}

.funfact-section .shape .shape-1 {
  position: absolute;
  left: 50px;
  top: 60px;
  width: 120px;
  height: 170px;
  background-repeat: no-repeat;
}

.funfact-section .shape .shape-2 {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 190px;
  height: 210px;
  background-repeat: no-repeat;
}

.funfact-section .shape .shape-3 {
  position: absolute;
  right: 100px;
  bottom: 40px;
  width: 209px;
  height: 37px;
  background-repeat: no-repeat;
}


/** weare-section **/

.weare-section {
  position: relative;
  padding: 110px 0px 100px 0px;
}

.weare-section .image-box {
  position: relative;
  display: block;
  margin-right: 20px;
}

.weare-section .image-box img {
  width: 100%;
}

.weare-section .image-box .signature {
  position: absolute;
  right: 0px;
  bottom: 30px;
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.weare-section .image-box .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 450px;
  height: 450px;
  background-repeat: no-repeat;
  z-index: -1;
}

.theme-btn {
  border: 1px solid #e6e2e3;
  box-shadow: 0px 10px 10px 0px rgb(0 0 0 / 10%);
}

.banner-carousel .content-inner .theme-btn {
  border: none;
  box-shadow: none;
}

.weare-section .content-box .text {
  position: relative;
  display: block;
  margin-bottom: 29px;
}

.weare-section .content-box .quote-box {
  position: relative;
  display: block;
  padding-left: 55px;
  margin-bottom: 30px;
}

.weare-section .content-box .quote-box .quote {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 36px;
  height: 44px;
  background-repeat: no-repeat;
}

.weare-section .content-box .quote-box h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

.weare-section .content-box .quote-box h5 {
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.weare-section .content-box .quote-box h5 span {}

.weare-section .content-box .sec-title {
  margin-bottom: 31px;
}


/** chooseus-section **/

.chooseus-section {
  position: relative;
  padding: 0px 100px;
}

.chooseus-section .sec-title {
  margin-bottom: 41px;
}

.chooseus-section .outer-container {
  position: relative;
  overflow: hidden;
  background: #1e2c36;
  padding: 110px 0px 56px 0px;
  border-radius: 15px;
}

.chooseus-section .pattern-layer .pattern-1 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 250px;
  height: 368px;
  background-repeat: no-repeat;
}

.chooseus-section .pattern-layer .pattern-2 {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 711px;
  height: 368px;
  background-repeat: no-repeat;
}

.chooseus-section .sec-title h6 {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.10);
}

.chooseus-section .sec-title h2 {
  color: #fff;
}

.chooseus-block-one .inner-box {
  position: relative;
  display: block;
  padding-left: 100px;
  margin-bottom: 47px;
}

.chooseus-block-one .inner-box .icon-box {
  position: absolute;
  left: 0px;
  top: 6px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
}

.chooseus-block-one .inner-box h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
}

.chooseus-block-one .inner-box p {
  color: #a5adb3;
  margin-bottom: 16px;
}

.chooseus-block-one .inner-box .text a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  padding-left: 10px;
  z-index: 1;
}

.chooseus-block-one .inner-box .text a span {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 18px;
  font-weight: 700;
  width: 100px;
  text-transform: capitalize;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 500ms ease;
}

.chooseus-block-one .inner-box .text a:hover {
  padding-right: 110px;
}

.chooseus-block-one .inner-box .text a:hover span {
  opacity: 1;
  transform: scaleX(1);
}

.chooseus-block-one .inner-box .text a:before {
  position: absolute;
  left: 0px;
  top: 0px;
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  color: #ffb79b;
  font-weight: 700;
  transition: all 500ms ease;
}

.chooseus-block-one .inner-box .text a:hover:before {
  opacity: 1;
}


/** events-section **/

.events-section {
  position: relative;
  padding: 110px 0px;
}

.events-section .upper-box {
  position: relative;
  width: 100%;
  padding-bottom: 24px;
}

.events-section .upper-box .list li {
  position: relative;
  display: inline-block;
  float: left;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  color: #757072;
  text-transform: uppercase;
  margin-right: 45px;
  cursor: pointer;
  transition: all 500ms ease;
}

.events-section .upper-box .list li:last-child {
  margin-right: 0px !important;
}

.events-section .upper-box .list li.active-btn {
  color: #1e2c36;
}

.events-section .upper-box .list li:first-child {
  padding-left: 25px;
}

.events-section .upper-box .list li i {
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 15px;
}

.events-section .upper-box .link {
  position: absolute;
  right: 0px;
  bottom: 23px;
}

.events-section .upper-box .link a {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #1e2c36;
}

.events-section .upper-box .link a span {
  position: relative;
  padding-left: 30px;
}

.events-section .upper-box .link a span:before {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  left: 10px;
  top: -1px;
  font-size: 20px;
  font-weight: 700;
  transition: all 500ms ease;
}

.events-section .upper-box .link a span:after {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  left: 0px;
  top: -1px;
  font-size: 20px;
  font-weight: 700;
  opacity: 0.5;
  transition: all 500ms ease;
}

.events-section .table-outer {
  overflow-x: auto;
  position: relative;
  width: 100%;
}

.events-section .events-table {
  min-width: 1170px;
  width: 100%;
}

.events-section .events-table .table-header {
  position: relative;
  background: #f4f7f7;
}

.events-section .events-table tr {
  border-bottom: 1px solid #e6e2e3;
}

.events-section .events-table tr td {
  padding: 33px 0px 33px 0px;
}

.events-section .events-table .date-box h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}

.events-section .events-table .date-box {
  padding-right: 30px;
}

.events-section .events-table .date-box span {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.events-section .events-table .topic-box h5 {
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #757072;
}

.events-section .events-table .topic-box h4 {
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.events-section .events-table .venue-box span {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}

.events-section .events-table .venue-box h5 {
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}

.events-section .events-table .link a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  text-align: center;
  background: #fff;
  border: 1px solid #e6e2e3;
  border-radius: 50%;
}

.events-section .events-table .link a i:first-child {
  opacity: 0.5;
}

.events-section .events-table .link a:hover {
  border-color: #1e2c36;
  background: #1e2c36;
}

.events-section .events-table .link {
  text-align: right;
}

.events-section .pattern-layer .pattern-1 {
  position: absolute;
  left: 100px;
  top: 110px;
  height: calc(100% - 220px);
  width: 215px;
  background-repeat: no-repeat;
}

.events-section .pattern-layer .pattern-2 {
  position: absolute;
  right: 100px;
  top: 110px;
  height: calc(100% - 220px);
  width: 215px;
  background-repeat: no-repeat;
}


/** pricing-style-two **/

.pricing-style-two {
  position: relative;
  padding: 0px 100px;
}

.pricing-style-two .outer-container {
  position: relative;
}

.pricing-block-two .pricing-table {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.pricing-block-two .pricing-table .bg-layer {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pricing-block-two .pricing-table .content-box {
  position: relative;
  display: block;
  max-width: 400px;
  width: 100%;
  padding: 49px 40px 50px 40px;
}

.pricing-block-two .pricing-table .shape {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
}

.pricing-block-two .pricing-table .price {
  position: absolute;
  top: 60px;
  right: 5px;
}

.pricing-block-two .pricing-table .price h3 {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
  font-size: 24px;
  line-height: 24px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  font-weight: 700;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
  padding: 24px 0px 15px 0px;
  z-index: 1;
}

.pricing-block-two .pricing-table .price h3 span {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
}

.pricing-block-two .pricing-table .price h3:before {
  position: absolute;
  content: '';
  background: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  top: -9px;
  right: -19px;
  z-index: -1;
}

.pricing-block-two .pricing-table .price h3:after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 4px;
  right: -6px;
  z-index: -1;
}

.pricing-block-two .pricing-table .icon-box {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.pricing-block-two .pricing-table h2 {
  display: block;
  font-size: 28px;
  line-height: 38px;
  font-weight: 500;
  margin-bottom: 2px;
}

.pricing-block-two .pricing-table p {
  position: relative;
  display: block;
  padding-bottom: 25px;
  margin-bottom: 34px;
}

.pricing-block-two .pricing-table p:before {
  position: absolute;
  content: '';
  width: 70px;
  height: 2px;
  left: 0px;
  bottom: 0px;
}

.pricing-block-two .pricing-table .feature-list {
  position: relative;
  display: block;
  margin-bottom: 34px;
}

.pricing-block-two .pricing-table .feature-list li {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #1e2c36;
  padding-left: 27px;
  margin-bottom: 8px;
}

.pricing-block-two .pricing-table .feature-list li:last-child {
  margin-bottom: 0px;
}

.pricing-block-two .pricing-table .feature-list li:before {
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-39.png);
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  left: 0px;
  top: 6px;
}

.pricing-block-two .pricing-table .feature-list li i {
  font-size: 10px;
}

.pricing-block-two.active-block .pricing-table h2,
.pricing-block-two.active-block .pricing-table .feature-list li {
  color: #fff;
}

.pricing-block-two.active-block .pricing-table p {
  color: #a5adb3;
}

.project-section.style-two .project-block-one .inner-box .content-box .text h3 a:hover {}

.project-section.style-two .project-block-one .inner-box .content-box .link a i {}

.project-section.style-two .project-block-one .inner-box .content-box .link a:hover {}

.project-section.style-two .more-btn {
  position: relative;
  display: block;
  margin-top: 20px;
}


/** testimonial-style-two **/

.testimonial-style-two {
  position: relative;
  padding: 0px 100px;
}

.testimonial-style-two .outer-container {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 130px 0px 122px 0px;
  border-radius: 15px;
  overflow: hidden;
}

.testimonial-style-two .content-box .quote {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 31px;
}

.testimonial-style-two .content-box .quote img {
  display: inline-block;
}

.testimonial-style-two .content-box {
  position: relative;
  margin-top: 25px;
}

.testimonial-style-two .content-box .quote:before {
  position: absolute;
  content: '';
  background-image: url(../images/shape/shape-17.png);
  width: 138px;
  height: 138px;
  left: -50px;
  top: -25px;
  background-repeat: no-repeat;
  z-index: -1;
  animation-name: rotateme;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotateme;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotateme;
  -moz-animation-duration: 30s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotateme;
  -ms-animation-duration: 30s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotateme;
  -o-animation-duration: 30s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.testimonial-style-two .content-box .text p {
  font-size: 24px;
  line-height: 36px;
  color: #fff;
  margin-bottom: 24px;
}

.testimonial-style-two .content-box .text h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 3px;
}

.testimonial-style-two .content-box .text h3 span {
  font-size: 18px;
  font-weight: 400;
}

.testimonial-style-two .content-box .text .date {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

.testimonial-style-two .dots-style-one .owl-dots {
  position: relative;
  display: block;
  margin-top: 30px;
}

.testimonial-style-two .dots-style-one .owl-dots .owl-dot span {
  background: #fff;
}


/** find-section **/

.find-section {
  position: relative;
  padding: 0px 100px;
}

.find-section .outer-container {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  padding: 110px 0px 110px 0px;
}

.find-section .outer-container:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0;
}

.find-section .outer-container .shape {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 257px;
  height: 257px;
  background-repeat: no-repeat;
}

.find-section .sec-title h2 {
  color: #fff;
}

.find-section .sec-title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.40);
  padding-bottom: 27px;
  margin-bottom: 40px;
}

.find-section .inner-box .list li {
  position: relative;
  display: block;
  float: left;
  width: 25%;
}

.find-section .inner-box .list li .single-item {
  position: relative;
  display: block;
  padding-left: 56px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.find-section .inner-box .list li .single-item .icon-box {
  position: absolute;
  left: 0px;
  top: 8px;
  font-size: 38px;
  line-height: 40px;
  color: #fff;
}

.find-section .inner-box .list li .single-item h6 {
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.find-section .inner-box .list li .single-item h5 {
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 700;
}

.find-section .inner-box .list li .single-item:before {
  position: absolute;
  content: '\f107';
  font-family: 'Font Awesome 5 Pro';
  top: 11px;
  right: 0px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}

.find-section .inner-box .list li .btn-box {
  text-align: right;
}

.find-section .inner-box .list li:nth-child(3) {
  padding-left: 100px;
}

.find-section .inner-box .list li:nth-child(2) {
  padding-left: 60px;
}

.find-section .inner-box .list li .single-item:after {
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.40);
  width: 1px;
  height: 100%;
  top: 0px;
  right: -30px;
}

.find-section .inner-box .list li:nth-child(2) .single-item:after {
  right: -60px;
}

.find-section .inner-box .list li:nth-child(2) .single-item:before {
  right: -30px;
}

.find-section .inner-box .list li:nth-child(3) .single-item:after {
  right: -80px;
}

.find-section .inner-box .list li:nth-child(3) .single-item:before {
  right: -50px;
}

.find-section .inner-box .list li .theme-btn {
  border: none;
  padding: 15px 35px;
}


/** clients-style-two **/

.clients-style-two {
  position: relative;
  padding: 110px 0px;
}

.clients-style-two .logo-list {
  position: relative;
  width: 100%;
}

.clients-style-two .logo-list:before {
  position: absolute;
  content: '';
  background: #e6e2e3;
  width: 100%;
  height: 1px;
  left: 0px;
  top: 50%;
}

.clients-style-two .logo-list li {
  position: relative;
  display: inline-block;
  float: left;
  width: 20%;
  text-align: center;
  border-right: 1px solid #e6e2e3;
  padding: 0px 0px;
  min-height: 130px;
}

.clients-style-two .logo-list li:nth-child(5),
.clients-style-two .logo-list li:last-child {
  border-right: none;
}

.clients-style-two .logo-list li .logo img {
  opacity: 0.5;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.clients-style-two .logo-list li .logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
}

.clients-style-two .logo-list li:nth-child(6),
.clients-style-two .logo-list li:nth-child(7),
.clients-style-two .logo-list li:nth-child(8),
.clients-style-two .logo-list li:nth-child(9),
.clients-style-two .logo-list li:last-child {
  padding-top: 50px;
}


/** footer-style-two **/

.main-footer .logo-widget .single-info h5 {
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 7px;
}

.main-footer .logo-widget .single-info {
  margin-bottom: 17px;
}

.main-footer .social-links {
  padding-top: 6px;
}

.main-footer .social-links li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.main-footer .social-links li:last-child {
  margin: 0px !important;
}

.main-footer .social-links li a {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 16px;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 15px;
  text-align: center;
  z-index: 1;
}

.main-footer .social-links li a:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: scale(0, 0);
  border-radius: 15px;
  z-index: -1;
  transition: all 500ms ease;
}

.main-footer .social-links li a:hover:before {
  transform: scale(1, 1);
}

.main-footer.style-two .logo-widget .footer-logo {
  margin-bottom: 33px;
}

.main-footer.style-two .links-widget .widget-content li {
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.main-footer.style-two .links-widget .widget-content li:last-child {
  margin-bottom: 0px;
}

.main-footer.style-two .widget-title {
  margin-bottom: 25px;
}

.home-2 .main-footer .post-widget .post .post-thumb:before {
  opacity: 0.9;
}

.main-footer .post-widget .link-btn {
  margin-top: 7px;
}

.main-footer .post-widget .link-btn a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #fff;
}

.main-footer .post-widget .link-btn a:hover {}

.main-footer .post-widget .link-btn a span {
  position: relative;
  padding-left: 30px;
}

.main-footer .post-widget .link-btn a span:before {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  left: 10px;
  top: 0px;
  font-size: 20px;
  font-weight: 700;
  transition: all 500ms ease;
}

.main-footer .post-widget .link-btn a span:after {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  left: 0px;
  top: 0px;
  font-size: 20px;
  font-weight: 700;
  color: #ffb79b;
  transition: all 500ms ease;
}

.main-footer .list-widget {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 15px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
}

.main-footer .list-widget .icon-box {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 24px;
}

.main-footer .list-widget h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 6px;
}

.main-footer .list-widget p {
  margin-bottom: 23px;
}

.main-footer .list-widget .theme-btn {
  border: none;
  padding: 15px 30px;
  width: 100%;
  box-shadow: none;
  color: #1e2c36;
}

.main-footer .list-widget .theme-btn:hover {
  color: #fff !important;
}

.main-footer .list-widget .theme-btn:hover span:before,
.main-footer .list-widget .theme-btn:hover span:after {
  color: #fff;
}

.main-footer .list-widget .shape {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 94px;
  height: 177px;
  background-repeat: no-repeat;
}

.main-footer.style-two .widget-section {
  border-bottom: none;
  border-bottom: 109px;
}

.main-footer.style-two .footer-bottom {
  background: #24323d;
}


/*** 

====================================================================
                        About-Page
====================================================================

***/

/** page-title **/

.page-title {
  position: relative;
  padding: 0px 100px;
}

.page-title .outer-container {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  padding: 160px 0px 164px 0px;
}

.page-title .outer-container:before {
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.2;
  border-radius: 15px;
}

.page-title h1 {
  position: relative;
  display: block;
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1px;
}

.page-title .bread-crumb li {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 23px;
  margin-right: 5px;
}

.page-title .bread-crumb li:last-child {
  padding: 0px !important;
  margin-bottom: 0px !important;
}

.page-title .bread-crumb li a {
  color: #fff;
}

.page-title .bread-crumb li a:hover {}

.page-title .bread-crumb li:before {
  position: absolute;
  content: "\f101";
  font-size: 16px;
  font-family: 'Font Awesome 5 Pro';
  top: 0px;
  right: 0px;
  font-weight: 400;
}

.page-title .bread-crumb li:last-child:before {
  display: none;
}


/** about-style-two **/

.about-style-two {
  position: relative;
  padding: 110px 0px 110px 0px;
}

.about-style-two:before {
  position: absolute;
  content: '';
  background: #e6e2e3;
  width: calc(100% - 200px);
  height: 1px;
  left: 100px;
  bottom: 0px;
}

.about-style-two .image-box {
  position: relative;
  display: block;
  padding-left: 20px;
  padding-right: 25px;
}

.about-style-two .image-box .image {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.about-style-two .image-box .image::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .2);
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.about-style-two .image-box:hover .image::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.about-style-two .image-box .image img {
  width: 100%;
  border-radius: 50%;
}

.about-style-two .image-box .text {
  position: absolute;
  width: 270px;
  background: #fff;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  padding: 18px 20px 20px 95px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.about-style-two .image-box .text .icon-box {
  position: absolute;
  left: 20px;
  top: 24px;
}

.about-style-two .image-box .text .count-outer {
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 46px;
  font-weight: 500;
  color: #1e2c36;
  margin-bottom: 0px;
}

.about-style-two .image-box .text h6 {
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-style-two .image-box .text-1 {
  left: 0px;
  top: 20px;
}

.about-style-two .image-box .text-2 {
  right: 0px;
  bottom: 20px;
}

.about-style-two .content-box {
  position: relative;
  display: block;
}

.about-style-two .content-box .text {
  position: relative;
  display: block;
  margin-bottom: 33px;
}

.about-style-two .content-box .text h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 21px;
}

.about-style-two .content-box .text p {
  margin-bottom: 12px;
}

.about-style-two .content-box .text p:last-child {
  margin-bottom: 0px;
}

.about-style-two .content-box .author-box {
  position: relative;
  display: block;
  padding: 7px 0px 7px 115px;
}

.about-style-two .content-box .author-box .thumb-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.about-style-two .content-box .author-box .thumb-box img {
  width: 100%;
  border-radius: 50%;
}

.about-style-two .content-box .author-box .thumb-box .link {
  position: absolute;
  top: 3px;
  right: -24px;
  width: 48px;
  height: 48px;
  background: #3f729b;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 20px;
  line-height: 48px;
  color: #fff;
  text-align: center;
  transition: all 500ms ease;
}

.about-style-two .content-box .author-box .thumb-box .link:hover {
  border-color: #3f729b;
}

.about-style-two .content-box .author-box h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}

.about-style-two .content-box .author-box .designation {
  position: relative;
  display: block;
  font-size: 18px;
}

.about-style-two .content-box .sec-title {
  margin-bottom: 31px;
}


/** statements-section **/

.statements-section {
  position: relative;
  padding: 110px 0px;
}

.statements-section .inner-container {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.statements-section .upper-box {
  position: relative;
  display: block;
}

.statements-section .upper-box .bg-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.statements-section .upper-box .bg-layer:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.10) 100%);
  bottom: 0px;
  right: 0px;
}

.statements-section .upper-box .single-item {
  position: relative;
  display: block;
  float: left;
  width: 33.333%;
  padding: 287px 30px 31px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.30);
}

.statements-section .upper-box .single-item:last-child {
  border-right: none;
}

.statements-section .upper-box .single-item .icon-box {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 17px;

  color: #11087e;

  font-size: 50px;
}

.statements-section .upper-box .single-item h6 {
  display: block;
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.statements-section .upper-box .single-item h3 {
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
}

.statements-section .upper-box .single-item h3 a {
  display: inline-block;
  color: #fff;
}

.statements-section .upper-box .single-item h3 a:hover {}

.statements-section .lower-box {
  position: relative;
  border: 1px solid #e6e2e3;
  border-radius: 0px 0px 15px 15px;
}

.statements-section .lower-box .single-item {
  position: relative;
  display: block;
  float: left;
  width: 33.333%;
  border-right: 1px solid #e6e2e3;
  padding: 23px 30px 22px 40px;
}

.statements-section .lower-box .single-item:last-child {
  border-right: none;
}

.statements-section .lower-box .single-item p {
  display: block;
  font-size: 18px;
  margin-bottom: 17px;

  color: #111111;



  text-align: justify;


}

.statements-section .lower-box .single-item a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #1e2c36;
}

.statements-section .lower-box .single-item a span {
  position: relative;
  padding-left: 30px;
}

.statements-section .lower-box .single-item a span:before {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  left: 10px;
  top: -1px;
  font-size: 20px;
  font-weight: 700;
  transition: all 500ms ease;
}

.statements-section .lower-box .single-item a span:after {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  left: 0px;
  top: -1px;
  font-size: 20px;
  font-weight: 700;
  opacity: 0.5;
  transition: all 500ms ease;
}


/** chooseus-style-two **/

.chooseus-style-two {
  position: relative;
  padding: 0px 100px;
}

.chooseus-style-two .outer-container {
  background: #bde8f5;
  border-radius: 15px;
  padding: 104px 0px 55px 0px;
}

.chooseus-block-two .inner-box {
  position: relative;
  display: block;
  padding-left: 100px;
  margin-bottom: 47px;
}

.chooseus-block-two .inner-box .icon-box {
  position: absolute;
  left: 0px;
  top: 6px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #fff;
  border: 2px solid #e6e2e3;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 50%;
  text-align: center;
  transition: all 500ms ease;
}

.chooseus-block-two .inner-box:hover .icon-box {
  background: transparent;
}

.chooseus-block-two .inner-box h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 16px;
}

.chooseus-block-two .inner-box p {
  margin-bottom: 16px;

  text-align: justify;

}

.chooseus-block-two .inner-box .text a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  padding-left: 10px;
  z-index: 1;
}

.chooseus-block-two .inner-box .text a span {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 18px;
  font-weight: 700;
  width: 100px;
  text-transform: capitalize;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 500ms ease;
}

.chooseus-block-two .inner-box .text a:hover {
  padding-right: 110px;
}

.chooseus-block-two .inner-box .text a:hover span {
  opacity: 1;
  transform: scaleX(1);
}

.chooseus-block-two .inner-box .text a:before {
  position: absolute;
  left: 0px;
  top: 0px;
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  color: #ffb79b;
  font-weight: 700;
  transition: all 500ms ease;
}

.chooseus-block-two .inner-box .text a:hover:before {
  opacity: 1;
}

.team-section.about-page {
  padding: 110px 0px;
}


/*** 

====================================================================
                        Service-Page
====================================================================

***/


/** about-style-three **/

.about-style-three {
  position: relative;
  padding: 110px 0px;
}

.about-style-three .image-box {
  position: relative;
  display: block;
  padding-right: 240px;
  padding-bottom: 190px;
}

.about-style-three .image-box .image {
  position: relative;
  border-radius: 15px;
}

.about-style-three .image-box .image img {
  width: 100%;
  border-radius: 15px;
}

.about-style-three .image-box .image-2 {
  position: absolute;
  right: 0px;
  bottom: 110px;
}

.about-style-three .image-box .image-3 {
  position: absolute;
  left: 160px;
  bottom: 0px;
}

.about-style-three .image-box .pattern-layer {
  position: absolute;
  left: 0px;
  bottom: 24px;
  width: 125px;
  height: 123px;
  background-repeat: no-repeat;
}

.about-style-three .image-box .curved-circle {
  position: absolute;
  top: 0px;
  right: 0;
  width: 150px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.about-style-three .image-box .curve-text {
  position: absolute;
  top: 0px;
  right: 40px;
  z-index: 1;
}

.about-style-three .image-box .curve-text .icon-box {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: #fff;
  border: 1px solid #e7e3e4;
  border-radius: 50%;
  text-align: center;
  top: 30px;
  right: 25px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, .10);
}

.about-style-three .content-box {
  position: relative;
  display: block;
}

.about-style-three .content-box .text {
  position: relative;
  display: block;
  margin-bottom: 27px;
}

.about-style-three .content-box .inner-box .single-item {
  position: relative;
  display: block;
  padding-left: 50px;
  margin-bottom: 22px;
}

.about-style-three .content-box .inner-box .single-item:last-child {
  margin-bottom: 0px;
}

.about-style-three .content-box .inner-box .single-item:before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  left: 0px;
  top: 6px;
  border-radius: 50%;
  box-shadow: 10px 10px 0px 0px #ffd9e2;
}

.about-style-three .content-box .inner-box .single-item h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 12px;
}

.about-style-three .content-box .sec-title {
  margin-bottom: 31px;
}


/** service-level-section **/

.service-level-section {
  position: relative;
  padding: 0px 100px;
}

.service-level-section .outer-container {
  position: relative;
  width: 100%;
  padding: 110px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.service-level-section .progress-box {
  position: relative;
  margin-bottom: 31px;
}

.service-level-section .progress-box:last-child {
  margin-bottom: 0px;
}

.service-level-section .content-box {
  position: relative;
  background: #fff;
  padding: 50px 50px 60px 50px;
  border-radius: 15px;
}

.service-level-section .content-box .sec-title {
  margin-bottom: 16px;
}

.service-level-section .content-box .text {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.progress-box .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background: #e6e2e3;
  border-radius: 3px;
}

.progress-box .bar-inner {
  position: relative;
  display: block;
  border-radius: 0px;
  width: 0px;
  height: 3px;
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.progress-box .bar-inner:before {
  position: absolute;
  content: '';
  border: 3px dashed #fff;
  width: 100%;
  height: 3px;
  left: 0px;
  top: 0px;
}

.progress-box .bar-inner:after {
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  top: -5px;
  right: -4px;
  border-radius: 50%;
  box-shadow: 0px 0px 0px 4px #febece;
}

.service-level-section .progress-box h5 {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 17px;
}

.service-level-section .progress-box .count-text {
  position: absolute;
  top: -45px;
  right: 0px;
  font-size: 18px;
  line-height: 28px;
  color: #1e2c36;
  font-weight: 500;
}



/*** 

====================================================================
                        Events-Page
====================================================================

***/

.events-section.events-page-one .upper-box .list li {
  float: none;
  padding: 0px !important;
  margin: 0px 15px !important;
}

.events-section.events-page-one .events-table .date-box h3 {}

.events-section.events-page-one .events-table .link a:hover {
  color: #fff;
  border-color: #fff;
}

.events-section.events-page-one .events-table .link a:hover i {
  opacity: 1 !important;
}

.tabs-box .tab {
  position: relative;
  display: none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab {
  display: block;
}

.tabs-box .tab {
  transform: scale(0.9, 0.9) translateY(0px);
}

.tabs-box .tab.active-tab {
  transform: scale(1) translateY(0px);
}


/** events-style-two **/

.events-style-two {
  position: relative;
  padding: 110px 0px;
}

.events-block-one .inner-box {
  position: relative;
  display: block;
  padding-right: 400px;
}

.events-block-one {
  margin-bottom: 80px;
}

.events-block-one:last-child {
  margin-bottom: 0px;
}

.events-block-one .inner-box .image-box {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 370px;
  height: 318px;
  border-radius: 15px;
  overflow: hidden;
}

.events-block-one .inner-box .image-box img {
  width: 100%;
  border-radius: 15px;
  transition: all 500ms ease;
}

.events-block-one .inner-box:hover .image-box img {
  transform: scale(1.05);
}

.events-block-one .inner-box .image-box::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .2);
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.events-block-one .inner-box:hover .image-box::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.events-block-one .inner-box .content-box .title-box {
  position: relative;
  display: block;
  background: #f9f5f6;
  padding: 15px 30px 15px 40px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.events-block-one .inner-box .content-box .title-box h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}

.events-block-one .inner-box .content-box .inner {
  position: relative;
  padding-left: 200px;
}

.events-block-one .inner-box .content-box .inner .date {
  position: absolute;
  left: 0px;
  top: 0px;
}

.events-block-one .inner-box .content-box .inner .date h3 {
  display: block;
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
}

.events-block-one .inner-box .content-box .inner .date h6 {
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #757575;
}

.events-block-one .inner-box .content-box .inner .text h4 {
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 9px;
}

.events-block-one .inner-box .content-box .inner .time {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #1e2c36;
  margin-bottom: 22px;
}

.events-block-one .inner-box .content-box .inner .time i {
  margin-right: 8px;
}

.events-block-one .inner-box .content-box .inner p {
  display: block;
  margin-bottom: 33px;
}


/** events-details **/

.events-details {
  position: relative;
  padding: 110px 0px;
}

.events-details .map-inner {
  position: relative;
  display: block;
  background: #fff;
  padding: 20px;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.events-details .map-inner #contact-google-map {
  position: relative;
  width: 100%;
  height: 308px;
  border-radius: 15px;
}

.events-details .title-text {
  position: relative;
  display: block;
  margin-bottom: 39px;
}

.events-details h2 {
  display: block;
  font-size: 36px;
  line-height: 46px;
  font-weight: 500;
}

.events-details .image-box {
  position: relative;
  display: block;
  border-radius: 15px;
  margin-bottom: 43px;
}

.events-details .image-box img {
  width: 100%;
  border-radius: 15px;
}

.events-details .text {
  position: relative;
  display: block;
  margin-bottom: 42px;
}

.events-details .text p {
  margin-bottom: 20px;
  line-height: 28px;
}

.events-details .text p:last-child {
  margin-bottom: 0px;
}

.events-details .two-column .single-item {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.events-details .two-column .single-item h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 500;
  padding: 16px 30px 16px 30px;
}

.events-details .two-column .single-item .info-inner {
  padding: 19px 30px 19px 30px;
  border: 1px solid #e6e2e3;
  border-radius: 0px 0px 5px 5px;
  min-height: 97px;
}

.events-details .two-column .single-item .info li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  padding-left: 30px;
  margin-bottom: 5px;
  color: #757072;
}

.events-details .two-column .single-item .info li:last-child {
  margin-bottom: 0px;
}

.events-details .two-column .single-item .info li i {
  position: absolute;
  left: 0px;
  top: 6px;
}

.events-details .two-column .single-item .info li a {
  color: #757072;
}

.events-details .two-column .single-item .info li a:hover {}

.events-details .two-column .single-item .social-links {
  position: relative;
  display: block;
  padding-left: 30px;
}

.events-details .two-column .single-item .social-links li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 15px;
}

.events-details .two-column .single-item .social-links li:last-child {
  margin: 0px !important;
}


.events-details .two-column .single-item .social-links li a {
  font-size: 14px;
  color: #9b9395;
}

.events-details .two-column .single-item .social-links li a:hover {}

.events-details .two-column {
  position: relative;
  display: block;
  padding-bottom: 46px;
}

.events-details .share-option h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 17px;
}

.events-details .share-option .share-links li {
  position: relative;
  display: inline-block;
  margin: 0px 3.5px;
}

.events-details .share-option .share-links li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  border-radius: 15px;
  width: 140px;
  text-align: center;
  padding: 12px 20px;
}

.events-details .share-option .share-links li a i {
  margin-right: 8px;
}

.events-details .share-option .share-links li:first-child a {
  background: #3b5998;
}

.events-details .share-option .share-links li:nth-child(2) a {
  background: #55acee;
}

.events-details .share-option .share-links li:nth-child(3) a {
  background: #dc4e41;
}

.events-details .share-option .share-links li:last-child a {
  background: #bd081c;
}

.events-details .share-option {
  position: relative;
  display: block;
  margin-bottom: 80px;
}

.events-details .form-inner {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #e6e2e3;
  padding: 70px 60px 80px 60px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.events-details .form-inner .column {
  padding: 0px 10px;
}

.events-details .form-inner .events-form {
  margin: 0px 5px;
}

.events-details .form-inner .form-group textarea {
  height: 130px;
}

.events-details .form-inner .form-group button {
  width: 100%;
}

.events-details .form-inner .form-title {
  margin-bottom: 52px;
}

.events-details .form-inner .form-title h2 {
  margin-bottom: 8px;
}


/*** 

====================================================================
                        Project-Page
====================================================================

***/

/** project-style-two **/

.project-style-two {
  position: relative;
  padding: 110px 0px;
}

.project-block-two .inner-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.project-block-two .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  transition: all 500ms ease;
}

.project-block-two .inner-box:hover .image-box {
  /* background: #1e2c36; */
}

.project-block-two .inner-box .image-box img {
  width: 100%;
  transition: all 500ms ease;
}

.project-block-two .inner-box:hover .image-box img {
  opacity: 0.5;
  transform: scaleX(1.05);
}

.sortable-masonry .filters {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.sortable-masonry .filter-tabs li {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #1e2c36;
  text-transform: uppercase;
  background: #fff;
  border: 1px solid transparent;
  padding: 8px 14px;
  text-align: center;
  border-radius: 15px;
  margin: 0px 10px;
  cursor: pointer;
  transition: all 500ms ease;
}

.sortable-masonry .filter-tabs li.active {
  border-color: #e6e2e3;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.project-style-two .more-btn,
.project-style-four .more-btn,
.project-style-five .more-btn {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 20px;
}


.project-style-three {
  position: relative;
  padding: 110px 0px;
}

.project-style-three .pagination-wrapper {
  position: relative;
  display: block;
  margin-top: 20px;
}

.project-style-three .project-block-one .inner-box {
  margin-bottom: 30px;
}


.project-style-four {
  position: relative;
  padding: 110px 100px;
}

.project-style-five {
  position: relative;
  padding: 110px 100px;
}

.project-style-six {
  position: relative;
  padding: 110px 0px;
}

.project-style-six .more-btn {
  margin-top: 30px;
}


/** project-details **/

.project-details {
  position: relative;
  padding: 0px 0px;
}

.project-details-content .upper-image {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.project-details-content .upper-image .image {
  position: relative;
  display: block;
  border-radius: 15px;
}

.project-details-content .upper-image .image img {
  width: 100%;
  border-radius: 15px;
}


.project-details-content .project-info {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  padding: 27px 30px;
  margin-bottom: 54px;
}

.project-details-content .project-info ul li {
  position: relative;
  display: block;
  float: left;
  width: 33.3%;
  padding-left: 67px;
}

.project-details-content .project-info ul li .icon-box {
  position: absolute;
  left: 0px;
  top: 2px;
}

.project-details-content .project-info ul li h6 {
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.project-details-content .project-info ul li p {
  display: block;
  font-size: 18px;
}

.project-details-content .project-info ul li:before {
  position: absolute;
  content: '';
  background: #e6e2e3;
  width: 1px;
  height: 100%;
  top: 0px;
  right: 30px;
}

.project-details-content .project-info ul li:last-child:before {
  display: none;
}

.project-details-content .text {
  position: relative;
  display: block;
  margin-bottom: 60px;
  /* padding-bottom: 53px; */
  /* border-bottom: 1px solid #e6e2e3; */
}

.project-details-content .text p {
  margin-bottom: 22px;

  color: #111111;


}

.project-details-content .text p:last-child {
  margin-bottom: 0px;









  text-align: justify;

}

.project-details-content .nav-btn .single-btn-box {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  padding: 23px 40px 24px 0px;
}

.project-details-content .nav-btn .single-btn-box.prev-btn {
  padding-left: 120px;
}

.project-details-content .nav-btn .single-btn-box.next-btn {
  padding-right: 120px;
  padding-left: 40px;
}

.project-details-content .nav-btn .single-btn-box .btn-img {
  position: absolute;
  top: 29px;
  width: 70px;
  height: 70px;
  border-radius: 15px;
}

.project-details-content .nav-btn .single-btn-box.prev-btn .btn-img {
  left: 29px;
}

.project-details-content .nav-btn .single-btn-box.next-btn .btn-img {
  right: 29px;
}

.project-details-content .nav-btn .single-btn-box .btn-img img {
  width: 100%;
  border-radius: 15px;
}

.project-details-content .nav-btn .single-btn-box a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #1e2c36;
  margin-bottom: 7px;
}

.project-details-content .nav-btn .single-btn-box.prev-btn a span {
  padding-left: 8px;
}

.project-details-content .nav-btn .single-btn-box.next-btn a span {
  padding-right: 8px;
}

.project-details-content .nav-btn .single-btn-box a i.light-icon {
  opacity: 0.5;
}

.project-details-content .nav-btn .single-btn-box h5 {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.project-details-content .nav-btn {
  position: relative;
  display: block;
  margin-bottom: 71px;
}

.project-details-content .nav-btn .nav-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #e8e4e5;
  border-radius: 50%;
}

.project-details-content .project-block-one .inner-box {
  margin-bottom: 0px;
}

.project-details-content .project-block-one .inner-box .content-box .text {
  padding: 0px;
  margin-bottom: 0px;
  border: none;
}

.project-details-content .related-project .title-text {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.project-details-content .related-project .title-text h2 {
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
}


/** faq-page-section **/

.default-sidebar .sidebar-widget {
  position: relative;
  display: block;
  background: #f7f3f4;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 40px;
}

.default-sidebar .sidebar-widget:last-child {
  margin-bottom: 0px;
}

.default-sidebar .sidebar-widget .widget-content {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 15px;
  padding: 34px 30px 40px 30px;
  border: 1px solid #e6e2e3;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.default-sidebar .sidebar-widget .widget-title {
  position: relative;
  display: block;
  padding-bottom: 12px;
  margin-bottom: 34px;
  border-bottom: 1px solid #e6e2e3;
}

.default-sidebar .sidebar-widget .widget-title:before {
  position: absolute;
  content: '';
  width: 50px;
  height: 1px;
  left: 0px;
  bottom: -1px;
}

.default-sidebar .sidebar-widget .widget-title h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}

.faq-sidebar .sidebar-widget .search-inner {
  position: relative;
  margin-top: 23px;
  margin-bottom: 19px;
}

.default-sidebar .sidebar-widget .search-form .form-group {
  position: relative;
  margin: 0px;
}

.default-sidebar .sidebar-widget .search-form .form-group input[type='search'] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  font-size: 18px;
  color: #817c7e;
  padding: 15px 70px 15px 20px;
  transition: all 500sm ease;
}

.default-sidebar .sidebar-widget .search-form .form-group button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  line-height: 46px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  border-radius: 15px;
  cursor: pointer;
  transition: all 500ms ease;
}

.default-sidebar .sidebar-widget .search-form .form-group input:focus {}

.faq-sidebar .sidebar-widget .text p {
  font-size: 18px;
  display: block;
}

.faq-sidebar .sidebar-widget .text p a {
  display: inline-block;
  text-decoration: underline;
}

.faq-sidebar .sidebar-widget .text p a:hover {
  color: #1e2c36;
}


.accordion-box .block {
  position: relative;
  display: block;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: all 500ms ease;
}

.accordion-box .block:last-child {
  margin-bottom: 0px;
}

.accordion-box .block .acc-btn .icon-outer {
  position: absolute;
  top: 21px;
  right: 29px;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn .icon-outer:before {
  position: absolute;
  content: '\f107';
  font-family: 'Font Awesome 5 Pro';
  font-size: 24px;
  color: #9b9395;
  top: 0px;
  right: 0px;
  font-weight: 700;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active .icon-outer:before {
  content: '\f322';
  font-size: 20px;
  font-weight: 700;
}

.accordion-box .block .acc-btn {
  position: relative;
  display: block;
  cursor: pointer;
  background: #fff;
  border-bottom: 1px solid #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  padding: 17px 70px 20px 14px;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active {
  border-bottom: 1px solid #e6e2e3;
}

.accordion-box .block .acc-btn h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  padding-left: 57px;
}

.accordion-box .block .acc-btn h4 i {
  position: absolute;
  left: 0px;
  top: -4px;
  width: 42px;
  height: 42px;
  line-height: 48px;
  background: #f9f5f6;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding: 29px 40px 27px 30px;
}

.accordion-box .block .acc-content.current {
  display: block;
}

.accordion-box .block .acc-content p {
  display: block;
  font-size: 18px;
}


/** coming-soon **/

.comingsoon-section {
  position: relative;
  width: 100%;
  padding: 100px;
}

.comingsoon-section .outer-container {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 110px;
  border-radius: 15px 15px 0px 0px;
  overflow: hidden;
}

.comingsoon-section .content-box {
  position: relative;
  padding-bottom: 120px;
}

.comingsoon-section .content-box .logo {
  position: relative;
  display: block;
  margin-bottom: 28px;
}

.comingsoon-section .content-box h2 {
  display: block;
  font-size: 100px;
  line-height: 100px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.comingsoon-section .content-box p {
  display: block;
  font-size: 18px;
  color: #fff;
  margin-bottom: 43px;
}

.comingsoon-section .content-box .cs-countdown .count-col {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 180px;
  height: 180px;
  line-height: 180px;
  border-radius: 50%;
  ;
  margin: 0px 17.5px;
  padding-top: 36px;
  padding-bottom: 15px;
}

.comingsoon-section .content-box .cs-countdown .count-col span {
  position: relative;
  display: block;
  font-size: 80px;
  line-height: 80px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0px;
}

.comingsoon-section .content-box .cs-countdown .count-col h6 {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.comingsoon-section .content-box .timer {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.comingsoon-section .subscribe-inner {
  position: relative;
  width: 100%;
  border-radius: 0px 0px 15px 15px;
  padding: 37px 0px 43px 0px;
}

.comingsoon-section .subscribe-inner .text {
  position: relative;
  display: block;
}

.comingsoon-section .subscribe-inner .text h3 {
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 4px;
}

.comingsoon-section .subscribe-inner .text p {
  color: #fff;
}

.comingsoon-section .subscribe-inner .form-inner {
  position: relative;
  margin-top: 9px;
}

.comingsoon-section .subscribe-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 0px;
  padding-right: 210px;
}

.comingsoon-section .subscribe-inner .form-inner .form-group .field-input {
  position: relative;
}

.comingsoon-section .subscribe-inner .form-inner .form-group .field-input i {
  position: absolute;
  top: 22px;
  right: 20px;
  font-size: 16px;
  color: #fff;
  z-index: 1;
}

.comingsoon-section .subscribe-inner .form-inner .form-group input[type="email"] {
  position: relative;
  width: 100%;
  height: 60px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 15px;
  font-size: 18px;
  color: #fff;
  padding: 10px 50px 10px 20px;
}

.comingsoon-section .subscribe-inner .form-inner .form-group button {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 190px;
  box-shadow: none;
}



/** error-section **/

.error-section {
  position: relative;
  padding: 100px;
}

.error-section .outer-container {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
}

.error-section .outer-container .content-box {
  position: relative;
  display: block;
  max-width: 870px;
  padding: 104px 0px 110px 0px;
  width: 100%;
  margin: 0 auto;
}

.error-section .outer-container .content-box .bg-layer {
  position: absolute;
  width: 870px;
  height: 870px;
  border-radius: 50%;
  left: 0px;
  top: -85px;
  opacity: 0.94;
}

.error-section .content-box h2 {
  position: relative;
  display: block;
  font-size: 60px;
  line-height: 60px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 23px;
}

.error-section .content-box h1 {
  display: block;
  font-size: 250px;
  line-height: 200px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.error-section .content-box h3 {
  display: block;
  font-size: 46px;
  line-height: 56px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 9px;
}

.error-section .content-box p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 33px;
}


/*** 

====================================================================
                        Locations-Page
====================================================================

***/


/** about-location **/

.about-location {
  position: relative;
  padding: 110px 0px;
}

.about-location .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  margin-right: 20px;
}

.about-location .image-box img {
  width: 100%;
  border-radius: 15px;
}

.about-location .image-box:before {
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

.about-location .image-box:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.about-location .content-box .text {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.about-location .content-box .text p {
  margin-bottom: 22px;
}

.about-location .content-box .text p:last-child {
  margin-bottom: 0px;
}

.about-location .content-box .inner-box .single-item {
  position: relative;
  display: block;
  padding-left: 30px;
  margin-bottom: 15px;
}

.about-location .content-box .inner-box .single-item:last-child {
  margin-bottom: 0px;
}

.about-location .content-box .inner-box .single-item .icon-box {
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 13px;
}

.about-location .content-box .inner-box .single-item h6 {
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.about-location .content-box .inner-box .single-item h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}

.about-location .content-box .sec-title {
  margin-bottom: 31px;
}

.funfact-section.locations-page-1 {
  padding: 0px 100px;
}

.ourcenters-section.locations-page-1 {
  padding: 110px 0px 80px 0px;
}

.ourcenters-section.locations-page-1 .center-block-one .inner-box {
  margin-bottom: 30px;
}

.ourcenters-style-two.locations-page-2 {
  padding: 110px 0px 80px 0px;
}

.ourcenters-style-two.locations-page-2 .center-block-two .inner-box {
  margin-bottom: 30px;
}



/*** 

====================================================================
                        Workspaces-Page
====================================================================

***/


/** workspaces-page-section **/

.workspaces-page-section {
  position: relative;
  padding: 104px 0px 80px 0px;
}

.workspaces-page-section .short-box {
  position: relative;
  display: block;
  padding-bottom: 23px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e6e2e3;
}

.workspaces-page-section .short-box .nice-select {
  height: auto;
  padding-top: 0px;
  padding-bottom: 0px;
  box-shadow: none;
  line-height: 26px;
  padding-left: 5px;
  border: none !important;
  padding-right: 46px;
}

.workspaces-page-section .short-box h5 {
  font-size: 18px;
  line-height: 26px;
}

.workspaces-page-section .short-box .nice-select:after {
  width: 7px;
  height: 7px;
}

.workspaces-page-section .short-box .nice-select.wide .list {
  min-width: 160px;
}

.workspaces-page-section .workspaces-block-one .inner-box {
  margin-bottom: 30px;
}

.workspaces-page-section .workspaces-block-two .inner-box {
  margin-bottom: 30px;
}

.workspaces-sidebar .sidebar-widget .select-box {
  min-height: 60px;
  margin-bottom: 15px;
}

.workspaces-sidebar .search-widget .text {
  margin-bottom: 23px;
}

.workspaces-sidebar .search-widget .default-form .form-group {
  margin-bottom: 15px;
}

.workspaces-sidebar .search-widget .default-form .form-group:last-child {
  margin-bottom: 0px;
}

.workspaces-sidebar .widget-title {
  margin-bottom: 23px !important;
}

/** date-table **/

#ui-datepicker-div.ui-widget-content {
  background: transparent;
  color: #252525;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 0px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: #151515 none repeat scroll 0 0;
  border: 2px solid #252525;
  border-radius: 0;
  color: #fff;
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.ui-datepicker td a {
  color: #000000 !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #333333 !important;
  background: #333333 !important;
  color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  background: #fff;
  transition: all 500ms ease;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  border: none;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
  z-index: 99999999;
  background: #ffffff;
}

.ui-datepicker th {
  border: medium none;
  font-weight: 600;
  padding: 2px 3px;
  text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
  background: #43c3ea;
  color: #fff;
  border-color: #43c3ea;
}


/** check-box **/

.check-box input {
  display: none;
}

.check-box {
  margin-bottom: 9px;
}

.check-box:last-child {
  margin-bottom: 0px;
}

.check-box label {
  position: relative;
  font-size: 14px;
  line-height: 26px;
  color: #757072;
  font-weight: 700;
  padding-left: 31px;
  display: inline-block;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 0px;
  transition: all 500ms ease;
}

.check-box input:checked+label {
  color: #1e2c36;
}

.check-box label a {
  color: #0066cc;
}

.check-box label a:hover {
  text-decoration: underline;
}

.check-box label:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-style: solid;
  border-width: 1px;
  border-color: #d1cacb;
  border-radius: 3px;
  background: transparent;
}

.check-box label:after {
  position: absolute;
  content: '\f00c';
  font-family: 'Font Awesome 5 Pro';
  font-size: 9px;
  left: 0px;
  top: 7px;
  width: 14px;
  height: 14px;
  line-height: 14px;
  color: #fff;
  opacity: 0;
  font-weight: 400;
  text-align: center;
}

.check-box input:checked+label:after {
  opacity: 1;
}

.check-box input:checked+label:before {
  background: #fd295d;
  border-color: #fd295d;
}

.workspaces-sidebar .category-widget .more-list {
  position: relative;
  display: block;
  margin-top: 21px;
}

.workspaces-sidebar .category-widget .more-list h5 {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  padding-left: 35px;
}

.workspaces-sidebar .category-widget .more-list h5 span {
  position: absolute;
  left: 0px;
  top: 3px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
}

.workspaces-sidebar .category-widget .more-list h5 a {
  color: #1e2c36;
}

.workspaces-sidebar .category-widget .more-list h5 a:hover {}


.range-slider {
  position: relative;
}

.range-slider .title {
  position: relative;
  display: inline-block;
}

.range-slider p {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #606060;
  margin-right: 10px !important;
}

.range-slider .title:before {
  position: absolute;
  content: '$';
  left: -5px;
  top: -19px;
  color: #111;
  font-size: 14px;
  font-weight: 500;
}

.range-slider .input {
  color: #111;
  font-size: 14px;
  font-weight: 500;
  max-width: 75px;
  margin-top: 5px;
  position: relative;
  display: inline-block;
}

.range-slider .input input {
  background: none;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

.range-slider .ui-widget.ui-widget-content {
  height: 4px;
  border: none;
  background: #e6e2e3;
  border-radius: 3px;
  margin-bottom: 30px;
}

.range-slider .ui-slider .ui-slider-range {
  top: 0px;
  height: 4px;
}

.range-slider .ui-state-default,
.range-slider .ui-widget-content .ui-state-default {
  top: -5px;
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 0px;
}

.range-slider .ui-state-default:before,
.range-slider .ui-widget-content .ui-state-default:before {
  position: absolute;
  content: '';
  background: #ffffff;
  width: 10px;
  height: 10px;
  left: 2px;
  top: 2px;
  border-radius: 50%;
}

.workspaces-sidebar .price-filter .price-range li {
  position: relative;
  display: inline-block;
  float: left;
  width: 129px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #1e2c36;
  text-align: center;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #e6e2e3;
  border-radius: 10px;
  margin-right: 10px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.workspaces-sidebar .price-filter .price-range li:last-child {
  margin: 0px !important;
}

.workspaces-sidebar .price-filter .widget-title {
  margin-bottom: 35px !important;
}


/** workspaces-details **/

.workspaces-details {
  position: relative;
  padding-bottom: 0px;
}

.workspaces-details .carousel-outer {
  position: relative;
  padding: 0px 100px;
}

.workspaces-details .carousel-outer .single-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.workspaces-details .carousel-outer .single-item .image-box {
  position: relative;
  border-radius: 10px;
}

.workspaces-details .carousel-outer .single-item .image-box img {
  width: 100%;
  border-radius: 10px;
}

.workspaces-details .carousel-outer .single-item .image-box:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(90deg, rgba(30, 44, 54, 0.7) 10%, rgba(30, 44, 54, 0.20) 100%);
  bottom: 0px;
  right: 0px;
  z-index: 1;
}

.workspaces-details .carousel-outer .single-item .info-list {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
}

.workspaces-details .carousel-outer .single-item .info-list>li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.team-block-one .inner-box .lower-content .list li:last-child {
  margin-right: 0px;
}

.workspaces-details .carousel-outer .single-item .info-list>li>a {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 15px;
  color: #9b9395;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  z-index: 1;
}

.workspaces-details .carousel-outer .single-item .info-list>li>a:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: scale(0, 0);
  border-radius: 10px;
  z-index: -1;
  transition: all 500ms ease;
}

.workspaces-details .carousel-outer .single-item .info-list>li>a:hover:before {
  transform: scale(1, 1);
}

.workspaces-details .carousel-outer .single-item .info-list>li>a:hover {
  color: #fff;
}

.workspaces-details .carousel-outer .single-item .info-list li.share-option .share-links {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  background: #fff;
  border-radius: 15px;
  padding: 13px 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.workspaces-details .carousel-outer .single-item .info-list li.share-option:hover .share-links {
  top: -63px;
  visibility: visible;
  opacity: 1;
}

.workspaces-details .carousel-outer .single-item .info-list li.share-option .share-links:before {
  position: absolute;
  content: '';
  background: #fff;
  width: 16px;
  height: 16px;
  left: 58px;
  bottom: -6px;
  transform: rotate(45deg);
}

.workspaces-details .carousel-outer .single-item .info-list li.share-option .share-links li {
  position: relative;
  display: inline-block;
  width: 33.333%;
  line-height: 16px;
  float: left;
  text-align: center;
  border-right: 1px solid #e6e2e3;
}

.workspaces-details .carousel-outer .single-item .info-list li.share-option .share-links li:last-child {
  border-right: none;
}

.workspaces-details .carousel-outer .single-item .info-list li.share-option .share-links li a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  color: #9b9395;
}

.workspaces-details .carousel-outer .single-item .info-list li.share-option .share-links li a:hover {}

.workspaces-details .carousel-outer .owl-nav {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.workspaces-details .carousel-outer .owl-nav button {
  position: absolute;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 24px;
  background: #fff;
  color: #1e2c36;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 500ms ease;
}

.workspaces-details .carousel-outer .owl-nav button:hover {
  color: #fff;
}

.workspaces-details .carousel-outer .owl-nav button.owl-prev {
  left: 40px;
}

.workspaces-details .carousel-outer .owl-nav button.owl-next {
  right: 40px;
}

.workspaces-details-content {
  position: relative;
  padding: 50px 0px 100px 0px;
}

.workspaces-details-content .details-content-box .content-one .text {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  padding-left: 22px;
  margin-bottom: 6px;
}

.workspaces-details-content .details-content-box .content-one .text i {
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 14px;
}

.workspaces-details-content .details-content-box h2 {
  display: block;
  font-size: 36px;
  line-height: 46px;
  font-weight: 500;
  margin-bottom: 6px;
}

.workspaces-details-content .details-content-box .price {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 28px;
}

.workspaces-details-content .details-content-box .content-one {
  position: relative;
  display: block;
  margin-bottom: 42px;
}

.workspaces-details-content .details-content-box h3 {
  display: block;
  font-size: 30px;
  line-height: 44px;
  font-weight: 500;
  margin-bottom: 22px;
}

.workspaces-details-content .details-content-box .content-two p {
  display: block;
  margin-bottom: 33px;

  text-align: justify;

}

.workspaces-details-content .details-content-box .content-two .feature-list {
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.workspaces-details-content .details-content-box .content-two .feature-list li {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  padding: 24px 20px 24px 100px;
  border-bottom: 1px solid #e6e2e3;
  border-right: 1px solid #e6e2e3;
}

.workspaces-details-content .details-content-box .content-two .feature-list li:nth-child(5),
.workspaces-details-content .details-content-box .content-two .feature-list li:last-child {
  border-bottom: none;
}

.workspaces-details-content .details-content-box .content-two .feature-list li:nth-child(2),
.workspaces-details-content .details-content-box .content-two .feature-list li:nth-child(4),
.workspaces-details-content .details-content-box .content-two .feature-list li:last-child {
  border-right: none;
}

.workspaces-details-content .details-content-box .content-two .feature-list li .icon {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 50px;
  height: 50px;
  line-height: 56px;
  text-align: center;
  font-size: 28px;
  border-radius: 15px;
  border: 1px solid #e6e2e3;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.workspaces-details-content .details-content-box .content-two .feature-list li h3 {
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 30px;
}

.workspaces-details-content .details-content-box .content-two .feature-list li p {
  margin-bottom: 0px;
}

.workspaces-details-content .details-content-box .content-two {
  position: relative;
  display: block;
  margin-bottom: 48px;
}

.workspaces-details-content .details-content-box .content-three .feature-list {
  position: relative;
  display: block;
  border-left: 1px solid #e6e2e3;
}

.workspaces-details-content .details-content-box .content-three .feature-list li {
  position: relative;
  display: inline-block;
  float: left;
  width: 25%;
  text-align: center;
  border-right: 1px solid #e6e2e3;
}

.workspaces-details-content .details-content-box .content-three p {
  margin-bottom: 33px;
}

.workspaces-details-content .details-content-box .content-three .feature-list li .icon {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 13px;
  border: 1px solid #e6e2e3;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 14px;
}

.workspaces-details-content .details-content-box .content-three .feature-list li h5 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}

.workspaces-details-content .details-content-box .content-three .feature-list li:first-child,
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(2),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(3),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(4),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(5),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(6),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(7),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(8),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(9),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(10),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(11),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(12) {
  padding-bottom: 23px;
  border-bottom: 1px solid #e6e2e3;
}

.workspaces-details-content .details-content-box .content-three .feature-list li:last-child,
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(5),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(6),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(7),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(8),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(9),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(10),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(11),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(12),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(13),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(14),
.workspaces-details-content .details-content-box .content-three .feature-list li:nth-child(15) {
  padding-top: 30px;
}

.workspaces-details-content .details-content-box .content-three {
  margin-bottom: 46px;
}

.workspaces-details-content .tabs-box .tab-btns {
  position: relative;
  display: inline-block;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: -38px;
  z-index: 1;
  margin-left: 40px;
}

.workspaces-details-content .tabs-box .tab-btns li {
  position: relative;
  display: inline-block;
  float: left;
  font-size: 14px;
  color: #1e2c36;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  padding: 17px 39px;
  border-right: 1px solid #e6e2e3;
  cursor: pointer;
  transition: all 500ms ease;
}

.workspaces-details-content .tabs-box .tab-btns li:last-child {
  border-right: none;
}

.workspaces-details-content .tabs-box .tab-btns li.active-btn {}

.workspaces-details-content .tabs-box .inner-box {
  position: relative;
  display: block;
  padding: 64px 30px 34px 40px;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.workspaces-details-content .tabs-box .inner-box p {
  margin-bottom: 17px;
}

.workspaces-details-content .tabs-box .inner-box .lower-box {
  position: relative;
}

.workspaces-details-content .tabs-box .inner-box .lower-box h5 {
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  float: left;
}

.workspaces-details-content .tabs-box .inner-box .lower-box a {
  position: relative;
  display: inline-block;
  float: right;
  font-size: 18px;
  line-height: 26px;
  color: #1e2c36;
  font-weight: 500;
  padding-left: 30px;
}

.workspaces-details-content .tabs-box .inner-box .lower-box a:hover {}

.workspaces-details-content .tabs-box .inner-box .lower-box a i {
  position: absolute;
  left: 10px;
  top: 3px;
  font-size: 20px;
}

.workspaces-details-content .tabs-box .inner-box .lower-box a:before {
  position: absolute;
  content: "\f105";
  left: 0px;
  top: 0px;
  font-family: 'Font Awesome 5 Pro';
  font-size: 20px;
  opacity: 0.5;
  font-weight: 700;
}

.workspaces-details-content .details-content-box .content-four h3 {
  margin-bottom: 28px;
}

.workspaces-details-content .details-content-box .content-four {
  margin-bottom: 60px;
}

.workspaces-details-content .map-inner {
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  padding: 20px;
}

.workspaces-details-content .map-inner #contact-google-map {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 15px;
}

.workspaces-details .similar-workspaces .title {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.workspaces-details .similar-workspaces .title h3 {
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
}



/*** 

====================================================================
                        Blog-Page
====================================================================

***/

.blog-grid .news-block-one .inner-box {
  margin-bottom: 30px;
}

.blog-grid .pagination-wrapper {
  position: relative;
  margin-top: 20px;
}


/** sidebar-page-container **/

.sidebar-page-container {
  position: relative;
}

.blog-classic-content .news-block-one .inner-box .lower-content .text h3 {
  font-size: 28px;
  line-height: 38px;
}

.news-block-one .inner-box .lower-content .lower-box .info li {
  position: relative;
  display: inline-block;
  float: left;
  font-size: 18px;
  color: #757072;
  margin-right: 36px;
}

.news-block-one .inner-box .lower-content .lower-box .info li:last-child {
  margin: 0px !important;
}

.news-block-one .inner-box .lower-content .lower-box .info li a {
  color: #757072;
}

.news-block-one .inner-box .lower-content .lower-box .info li a:hover {}

.news-block-one .inner-box .lower-content .lower-box .info li:before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  top: 9px;
  right: -20px;
  border-radius: 50%;
}

.news-block-one .inner-box .lower-content .lower-box .info li:last-child:before {
  display: none;
}

.blog-classic-content .news-block-one .inner-box {
  margin-bottom: 50px;
}

.blog-sidebar .category-widget .category-list li {
  position: relative;
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1e2c36;
}

.blog-sidebar .category-widget .category-list li:last-child {
  margin-bottom: 0px;
}

.blog-sidebar .category-widget .category-list li a {
  position: relative;
  display: inline-block;
  color: #1e2c36;
  padding-right: 46px;
}

.blog-sidebar .category-widget .category-list li a:hover {}

.blog-sidebar .category-widget .category-list li a i {
  position: absolute;
  top: 4px;
  right: 28px;
  font-size: 16px;
  opacity: 0.5;
  transition: all 500ms ease;
}

.blog-sidebar .category-widget .category-list li a:hover i {
  opacity: 1;
  right: 22px;
}

.blog-sidebar .category-widget .category-list li a span {
  position: absolute;
  top: 0px;
  right: 0px;
  color: #757072;
  transition: all 500ms ease;
}

.blog-sidebar .category-widget .category-list li a:hover span {}

.blog-sidebar .category-widget .category-list li a:before {
  position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  right: 30px;
  top: 0px;
  opacity: 0;
  transition: all 500ms ease;
}

.blog-sidebar .category-widget .category-list li a:hover:before {
  opacity: 1;
}

.blog-sidebar .sidebar-widget .widget-title {
  margin-bottom: 23px;
}

.blog-sidebar .category-widget .widget-content {
  padding-bottom: 32px;
}

.blog-sidebar .post-widget .post {
  position: relative;
  display: block;
  padding: 0px 0px 20px 88px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e6e2e3;
  min-height: 101px;
}

.blog-sidebar .post-widget .post:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.blog-sidebar .post-widget .post .post-thumb {
  position: absolute;
  left: 0px;
  top: 5px;
  width: 70px;
  height: 70px;
  border-radius: 13px;
}

.blog-sidebar .post-widget .post .post-thumb img {
  width: 100%;
  border-radius: 13px;
}

.blog-sidebar .post-widget .post .post-thumb:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: scale(0, 0);
  border-radius: 13px;
  opacity: 0.9;
  transition: all 500ms ease;
}

.blog-sidebar .post-widget .post:hover .post-thumb:before {
  transform: scale(1, 1);
}

.blog-sidebar .post-widget .post .post-thumb a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #fff;
  z-index: 2;
  opacity: 0;
}

.blog-sidebar .post-widget .post:hover .post-thumb a {
  opacity: 1;
}

.blog-sidebar .post-widget .post .post-date {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #757072;
  margin-bottom: 8px;
}

.blog-sidebar .post-widget .post h5 {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.blog-sidebar .post-widget .post h5 a {
  display: inline-block;
  color: #1e2c36;
}

.blog-sidebar .post-widget .post h5 a:hover {}

.blog-sidebar .post-widget .widget-title {
  margin-bottom: 25px;
}

.blog-sidebar .post-widget .widget-content {
  padding-bottom: 14px;
}

.blog-sidebar .tags-widget .tags-list li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
}

.blog-sidebar .tags-widget .tags-list li a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  color: #1e2c36;
  padding: 7px 15px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #e6e2e3;
  z-index: 1;
}

.blog-sidebar .tags-widget .tags-list li a:hover {
  color: #fff;
}

.blog-sidebar .tags-widget .tags-list li a:before {
  position: absolute;
  content: '';
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  border-radius: 15px;
  transform: scale(0, 0);
  z-index: -1;
  transition: all 500ms ease;
}

.blog-sidebar .tags-widget .tags-list li a:hover:before {
  transform: scale(1, 1);
}

.blog-sidebar .instagram-widget .image-list li {
  position: relative;
  display: inline-block;
  float: left;
  margin: 0px 7px;
  margin-bottom: 14px;
}

.blog-sidebar .instagram-widget .image-list li .image {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 15px;
}

.blog-sidebar .instagram-widget .image-list li .image:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: scale(0, 0);
  border-radius: 13px;
  opacity: 0.9;
  transition: all 500ms ease;
}

.blog-sidebar .instagram-widget .image-list li .image:hover:before {
  transform: scale(1, 1);
}

.blog-sidebar .instagram-widget .image-list li .image a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #fff;
  z-index: 2;
  opacity: 0;
}

.blog-sidebar .instagram-widget .image-list li .image:hover a {
  opacity: 1;
}

.blog-sidebar .instagram-widget .image-list {
  position: relative;
  margin: 0px -7.5px;
}

.blog-sidebar .instagram-widget .widget-title {
  margin-bottom: 28px;
}

.blog-sidebar .instagram-widget .widget-content {
  padding-bottom: 25px;
}

.blog-sidebar .subscribe-widget .text {
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.blog-sidebar .subscribe-widget .default-form .form-group {
  margin-bottom: 15px;
}

.blog-sidebar .subscribe-widget .default-form .form-group:last-child {
  margin-bottom: 0px;
}


/** blog-list-view **/

.news-block-two .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  background: #fff;
  padding-left: 370px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
  margin-bottom: 40px;
}

.news-block-two .inner-box .image-box {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 340px;
  height: 340px;
}

.news-block-two .inner-box .content-box {
  position: relative;
  display: block;
  padding: 34px 30px 11px 30px;
  border-left: 1px solid #e6e2e3;
}

.news-block-two .inner-box .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #1e2c36;
  border-radius: 15px;
}

.news-block-two .inner-box .image-box .image img {
  width: 100%;
  border-radius: 15px;
  transition: all 500ms ease;
}

.news-block-two .inner-box:hover .image-box .image img {
  transform: scale(1.05);
  opacity: 0.5;
}

.news-block-two .inner-box .category a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 38px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 0px 15px;
  border-radius: 15px;
  margin-bottom: 23px;
}

.news-block-two .inner-box .category a:hover {
  background: #1e2c36;
}

.news-block-two .inner-box h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 21px;
  padding-bottom: 19px;
}

.news-block-two .inner-box h3:before {
  position: absolute;
  content: '';
  width: 60px;
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.news-block-two .inner-box h3 a {
  display: inline-block;
  color: #1e2c36;
}

.news-block-two .inner-box h3 a:hover {}

.news-block-two .inner-box .option-box {
  position: absolute;
  padding-left: 15px;
  padding-right: 15px;
  bottom: 15px;
  width: 100%;
}

.news-block-two .inner-box .option-box .admin {
  position: relative;
  display: inline-block;
  background: #fff;
  border: 1px solid #e6e2e3;
  border-radius: 30px;
  padding: 12px 25px 14px 65px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  margin-right: 7px;
}

.news-block-two .inner-box .option-box .admin img {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.news-block-two .inner-box .option-box .admin a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #757072;
}

.news-block-two .inner-box .option-box .admin a:hover {}

.news-block-two .inner-box .option-box .share {
  position: relative;
  display: inline-block;
}

.news-block-two .inner-box .option-box .share a {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  background: #1e2c36;
}

.news-block-two .inner-box .option-box .share a:hover {}

.news-block-two .inner-box .content-box .text {
  position: relative;
  padding-bottom: 29px;
}

.news-block-two .inner-box .content-box .text:before {
  position: absolute;
  content: '';
  background: #e6e2e3;
  width: calc(100% + 60px);
  height: 1px;
  left: -30px;
  bottom: 0px;
}

.news-block-two .inner-box .post-date {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #757072;
}

.news-block-two .inner-box .lower-box {
  position: relative;
  padding: 18px 0px 7px 0px;
}

.news-block-two .inner-box .lower-box .link a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  z-index: 1;
}

.news-block-two .inner-box .lower-box .link a span {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 18px;
  font-weight: 500;
  width: 100px;
  text-transform: capitalize;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 500ms ease;
}

.news-block-two .inner-box .lower-box .link a:hover {
  padding-right: 110px;
}

.news-block-two .inner-box .lower-box .link a:hover span {
  opacity: 1;
  transform: scaleX(1);
}

.news-block-two .inner-box .lower-box .link a:before {
  position: absolute;
  left: -10px;
  top: 0px;
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  opacity: 0.6;
  font-weight: 700;
  transition: all 500ms ease;
}

.news-block-two .inner-box .lower-box .link a:hover:before {
  opacity: 1;
}

.blog-list-content .pagination-wrapper {
  padding-top: 10px;
}


/** blog-details **/

.blog-details .single-post-inner .post-content .category {
  position: relative;
  display: block;
  margin-bottom: 19px;
}

.blog-details .single-post-inner .post-content .category a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 38px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 0px 15px;
  border-radius: 15px;
  z-index: 1;
}

.blog-details .single-post-inner .post-content .category a:hover {
  color: #fff;
  background: #1e2c36;
}

.blog-details .single-post-inner .post-content h2 {
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  margin-bottom: 13px;
}

.blog-details .single-post-inner .post-content .info li {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #757072;
  margin: 0px 15px;
}

.blog-details .single-post-inner .post-content .info li a {
  color: #757072;
}

.blog-details .single-post-inner .post-content .info li a:hover {}

.blog-details .single-post-inner .post-content .info li:before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  top: 10px;
  right: -20px;
  border-radius: 50%;
}

.blog-details .single-post-inner .post-content .info li:last-child:before {
  display: none;
}

.blog-details .single-post-inner {
  position: relative;
  padding-bottom: 53px;
}

.blog-details .post-banner {
  position: relative;
  padding: 0px 100px;
  padding-bottom: 110px;
}

.blog-details .post-banner .outer-box {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
  padding: 505px 0px 40px 0px;
}

.blog-details .post-banner .outer-box .inner-box {
  position: relative;
  display: block;
  width: 100%;
  text-align: right;
}

.blog-details .post-banner .outer-box .inner-box .option-box .admin {
  position: relative;
  display: inline-block;
  background: #fff;
  border: 1px solid #e6e2e3;
  border-radius: 30px;
  padding: 12px 25px 14px 65px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  margin-right: 7px;
}

.blog-details .post-banner .outer-box .inner-box .option-box .admin img {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.blog-details .post-banner .outer-box .inner-box .option-box .admin a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #757072;
}

.blog-details .post-banner .outer-box .inner-box .option-box .admin a:hover {}

.blog-details .post-banner .outer-box .inner-box .option-box .share {
  position: relative;
  display: inline-block;
}

.blog-details .post-banner .outer-box .inner-box .option-box .share a {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  background: #1e2c36;
}

.blog-details .post-banner .outer-box .inner-box .option-box .share a:hover {}


.blog-details-content h3 {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  margin-bottom: 24px;
}

.blog-details-content p {
  margin-bottom: 22px;
}

.blog-details-content p:last-child {
  margin-bottom: 0px;
}

.blog-details-content .content-one .text-one p {
  margin-bottom: 0px;
}

.blog-details-content .content-one .text-one p:first-child {
  padding-left: 43px;
}

.blog-details-content .content-one .text-one p span {
  position: absolute;
  left: 0px;
  top: 12px;
  font-size: 48px;
}

.blog-details-content .content-one .text-one {
  margin-bottom: 22px;
}

.blog-details-content .content-one {
  position: relative;
  display: block;
  margin-bottom: 53px;
}

.blog-details-content .content-two {
  position: relative;
  display: block;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid #e6e2e3;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 50px;
}

.blog-details-content .content-two .image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.blog-details-content .content-two .image:before {
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 15px;
  opacity: 0.1;
  z-index: 1;
}

.blog-details-content .content-two .image img {
  width: 100%;
  border-radius: 15px;
}

.blog-details-content .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
}

.blog-details-content .owl-nav button {
  position: absolute;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  margin: 20px 0px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: all 500ms ease;
}

.blog-details-content .owl-nav button.owl-prev {
  left: 20px;
}

.blog-details-content .owl-nav button.owl-next {
  right: 20px;
}

.blog-details-content .owl-nav button span:last-child {
  opacity: 0.5;
}

.blog-details-content .owl-nav button:hover {
  color: #fff;
}

.blog-details-content .content-three {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.blog-details-content .content-three .text {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.blog-details-content .content-three .single-item {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.blog-details-content .content-three .single-item h4 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 10px;
  padding-left: 30px;
  margin-bottom: 12px;
}

.blog-details-content .content-three .single-item h4 i {
  position: absolute;
  left: 0px;
  top: 7px;
  font-size: 16px;
}

.blog-details-content blockquote {
  position: relative;
  display: block;
  background: #1e2c36;
  border-radius: 15px;
  overflow: hidden;
  padding: 33px 150px 33px 40px;
  margin-bottom: 0px;
  margin-top: 55px;
}

.blog-details-content blockquote h4 {
  display: block;
  font-size: 22px;
  line-height: 32px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 14px;
}

.blog-details-content blockquote h6 {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #a5adb3;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-details-content blockquote h6 i {
  position: relative;
  top: 2px;
  font-size: 16px;
}

.blog-details-content blockquote h6 span {
  padding-left: 10px;
}

.blog-details-content blockquote .quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
}

.blog-details-content blockquote .shape {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
}

.blog-details-content .list {
  position: relative;
  display: block;
  margin-bottom: 47px;
}

.blog-details-content .list li {
  position: relative;
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  padding-left: 30px;
}

.blog-details-content .list li:before {
  position: absolute;
  content: '';
  width: 16px;
  height: 10px;
  left: 0px;
  top: 8px;
  border-radius: 5px;
}

.blog-details-content .list li:after {
  position: absolute;
  content: '';
  background: #fff;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 9px;
  left: 7px;
}

.blog-details-content .category-list li {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #757072;
}

.blog-details-content .category-list li h6 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-details-content .category-list li a {
  position: relative;
  display: inline-block;
  color: #757072;
}

.blog-details-content .category-list li a:hover {}

.blog-details-content .content-four {
  position: relative;
  display: block;
  margin-bottom: 53px;
}

.blog-details-content .nav-btn .single-btn-box {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  padding: 23px 40px 24px 0px;
}

.blog-details-content .nav-btn .single-btn-box.prev-btn {
  padding-left: 120px;
}

.blog-details-content .nav-btn .single-btn-box.next-btn {
  padding-right: 120px;
  padding-left: 20px;
}

.blog-details-content .nav-btn .single-btn-box .btn-img {
  position: absolute;
  top: 29px;
  width: 70px;
  height: 70px;
  border-radius: 15px;
}

.blog-details-content .nav-btn .single-btn-box.prev-btn .btn-img {
  left: 29px;
}

.blog-details-content .nav-btn .single-btn-box.next-btn .btn-img {
  right: 29px;
}

.blog-details-content .nav-btn .single-btn-box .btn-img img {
  width: 100%;
  border-radius: 15px;
}

.blog-details-content .nav-btn .single-btn-box a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #1e2c36;
  margin-bottom: 7px;
}

.blog-details-content .nav-btn .single-btn-box.prev-btn a span {
  padding-left: 8px;
}

.blog-details-content .nav-btn .single-btn-box.next-btn a span {
  padding-right: 8px;
}

.blog-details-content .nav-btn .single-btn-box a i.light-icon {
  opacity: 0.5;
}

.blog-details-content .nav-btn .single-btn-box h5 {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.blog-details-content .nav-btn {
  position: relative;
  display: block;
  margin-bottom: 71px;
}

.blog-details-content .author-box h3 {
  margin-bottom: 29px;
}

.blog-details-content .author-box .more-btn {
  position: absolute;
  right: 38px;
  bottom: 31px;
}

.blog-details-content .author-box .more-btn a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #1e2c36;
}

.blog-details-content .author-box .more-btn a:hover {}

.blog-details-content .author-box .more-btn a span {
  position: relative;
  padding-left: 30px;
}

.blog-details-content .author-box .more-btn a span:before {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  left: 10px;
  top: -1px;
  font-size: 20px;
  font-weight: 700;
  transition: all 500ms ease;
}

.blog-details-content .author-box .more-btn a span:after {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  left: 0px;
  top: -1px;
  font-size: 20px;
  font-weight: 700;
  opacity: 0.5;
  transition: all 500ms ease;
}

.blog-details-content .author-box .author-content {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  padding: 34px 30px 39px 280px;
  overflow: hidden;
}

.blog-details-content .author-box .author-content .author-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 240px;
  height: 240px;
}

.blog-details-content .author-box .author-content h4 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

.blog-details-content .author-box .author-content p {
  margin-bottom: 23px;
}

.blog-details-content .author-box .author-content .social-links li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.blog-details-content .author-box .author-content .social-links li:last-child {
  margin: 0px !important;
}

.blog-details-content .author-box .author-content .social-links li a {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border: 1px solid #e6e2e3;
  border-radius: 50%;
  font-size: 16px;
  color: #9b9395;
  text-align: center;
  z-index: 1;
}

.blog-details-content .author-box .author-content .social-links li a:hover {
  color: #fff;
}

.blog-details-content .author-box .author-content .social-links li a:before {
  position: absolute;
  content: '';
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  transform: scale(0, 0);
  border-radius: 50%;
  z-index: -1;
  transition: all 500ms ease;
}

.blog-details-content .author-box .author-content .social-links li a:hover:before {
  transform: scale(1, 1);
}

.blog-details-content .author-box {
  position: relative;
  display: block;
  margin-bottom: 70px;
}

.blog-details-content .comment-box .comment .reply-btn {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #1e2c36;
}

.blog-details-content .comment-box .comment .reply-btn:hover {}

.blog-details-content .comment-box .comment .reply-btn span {
  position: relative;
  padding-left: 30px;
}

.blog-details-content .comment-box .comment .reply-btn span:before {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  left: 10px;
  top: -1px;
  font-size: 20px;
  font-weight: 700;
  transition: all 500ms ease;
}

.blog-details-content .comment-box .comment .reply-btn span:after {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  left: 0px;
  top: -1px;
  font-size: 20px;
  font-weight: 700;
  opacity: 0.5;
  transition: all 500ms ease;
}

.blog-details-content .comment-box .comment {
  position: relative;
  display: block;
  padding-left: 110px;
  padding-bottom: 32px;
  margin-bottom: 34px;
  border-bottom: 1px solid #e1e8e4;
}

.blog-details-content .comment-box .comment.replay-comment,
.blog-details-content .comment-box .comment:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}

.blog-details-content .comment-box .comment.replay-comment {
  margin-left: 40px;
}

.blog-details-content .comment-box .comment .thumb-box {
  position: absolute;
  left: 0px;
  top: 7px;
  width: 80px;
  height: 80px;
  border-radius: 15px;
}

.blog-details-content .comment-box .comment .thumb-box img {
  width: 100%;
  border-radius: 15px;
}

.blog-details-content .comment-box .comment .comment-info {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.blog-details-content .comment-box .comment .comment-info h4 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}

.blog-details-content .comment-box .comment .comment-info .post-date {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #a39c9d;
  text-transform: uppercase;
}

.blog-details-content .comment-box .comment .comment-inner p {
  display: block;
  margin-bottom: 16px;
}

.blog-details-content .comment-box {
  position: relative;
  display: block;
  margin-bottom: 53px;
}

.blog-details-content .comments-form-area {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border: 1px solid #e6e2e3;
  border-radius: 15px;
  padding: 50px 60px 60px 60px;
}

.blog-details-content .comments-form-area .group-title h3 {
  margin-bottom: 3px;
}

.blog-details-content .comments-form-area .group-title p span {}

.blog-details-content .comments-form-area .group-title {
  margin-bottom: 26px;
}

.blog-details-content .comments-form-area .form-group {
  margin-bottom: 24px;
}

.blog-details-content .comments-form-area .form-group:last-child {
  margin-bottom: 0px;
}

.blog-details-content .comments-form-area .form-group label {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #757072;
  margin-bottom: 8px;
}

.blog-details-content .comments-form-area .form-group textarea {
  height: 120px !important;
}

.blog-details-content .comments-form-area .form-group .check-box label {
  font-weight: 400;
  text-transform: capitalize;
  padding-left: 23px;
  margin-bottom: 0px;
}

.blog-details-content .comments-form-area .form-group button {
  width: auto;
  padding: 16px 28px;
}


/*** 

====================================================================
                        Contact-Page
====================================================================

***/

/** contact-section **/

.contact-section {
  position: relative;
  padding: 50px 0px;
}

.contact-section .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-section .inner-box {
  position: relative;
  display: block;
  padding-left: 760px;
  border-radius: 10px;
  margin-bottom: 60px;
}

.contact-section .inner-box .image-box {
  position: absolute;
  left: 0px;
  top: 0px;
}

.contact-section .inner-box .image-box .image img {
  width: 100%;
}

.contact-section .form-inner {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border: 1px solid #e6e2e3;
  border-radius: 0px 10px 10px 0px;
  padding: 50px 40px;
}

.contact-section .form-inner .message-btn button {
  width: 100%;
  box-shadow: none;
}

.contact-section .sec-title h3 {
  display: block;
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
}

.contact-section .sec-title {
  margin-bottom: 28px;
}

.contact-section .inner-box .image-box .text {
  position: absolute;
  left: 30px;
  bottom: 30px;
  border-radius: 15px;
  width: 340px;
  padding: 34px 40px 33px 40px;
}

.contact-section .inner-box .image-box .text .icon-box {
  position: absolute;
  top: -35px;
  right: 0px;
  width: 88px;
  height: 88px;
  line-height: 74px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
}

.contact-section .inner-box .image-box .text h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 11px;
}

.contact-section .inner-box .image-box .text p {
  color: #fff;
  margin-bottom: 22px;
}

.contact-section .inner-box .image-box .text a {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.contact-section .inner-box .image-box .text a i {
  position: relative;
  top: 2px;
  font-size: 20px;
}

.contact-section .inner-box .image-box .text a span {
  padding-left: 10px;
}

.contact-section .inner-box .image-box .text a:hover span {
  text-decoration: underline;
}

.contact-section .info-inner .single-item .icon-box {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 52px;
  line-height: 60px;
  font-size: 24px;
  text-align: center;
  border-radius: 15px;
  border: 1px solid #e6e2e3;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 24px;
  z-index: 1;
  transition: all 500ms ease;
}

.contact-section .info-inner .single-item:hover .icon-box {
  color: #fff;
}

.contact-section .info-inner .single-item .icon-box:before {
  position: absolute;
  content: '';
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  transform: scale(0, 0);
  border-radius: 15px;
  z-index: -1;
  transition: all 500ms ease;
}

.contact-section .info-inner .single-item:hover .icon-box:before {
  transform: scale(1, 1);
}

.contact-section .info-inner .single-item h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-section .info-inner .single-item p a {
  color: #111111;
}

.contact-section .info-inner .single-item p a:hover {}

.contact-section .info-inner .single-item {
  position: relative;
}

.contact-section .info-inner .single-item:before {
  position: absolute;
  content: '';
  background: #e6e2e3;
  width: 1px;
  height: calc(100% - 4px);
  top: 0px;
  right: -15px;
}

.contact-section .info-inner .single-column:last-child .single-item:before {
  display: none;
}


/** location-section **/

.location-section {
  position: relative;
  padding: 110px 0px 102px 0px;
}

.location-section .owl-carousel .owl-stage-outer {
  overflow: visible;
}

.location-section .owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
}

.location-section .owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
}

.location-section .single-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.location-section .single-item .image-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.location-section .single-item .image-box img {
  width: 100%;
}

.location-section .single-item .lower-content {
  position: relative;
  display: block;
  padding: 33px 40px;
  border: 1px solid #e6e2e3;
  border-radius: 0px 0px 15px 15px;
}

.location-section .single-item .lower-content h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px solid #e6e2e3;
  margin-bottom: 24px;
}

.location-section .single-item .lower-content h3:before {
  position: absolute;
  content: '';
  width: 50px;
  height: 1px;
  left: 0px;
  bottom: -1px;
}

.location-section .single-item .lower-content .info li {
  position: relative;
  display: block;
  margin-bottom: 11px;
  font-size: 18px;
  line-height: 26px;
  color: #757072;
  padding-left: 65px;
}

.location-section .single-item .lower-content .info li:last-child {
  margin-bottom: 0px;
}

.location-section .single-item .lower-content .info li a {
  display: inline-block;
  color: #757072;
}

.location-section .single-item .lower-content .info li a:hover {}

.location-section .single-item .lower-content .info li span {
  position: absolute;
  left: 0px;
  top: -1px;
  display: inline-block;
  color: #1e2c36;
  font-size: 16px;
  font-weight: 500;
}

.location-section .single-item .lower-content .info {
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.location-section .single-item .lower-content .google-map a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #1e2c36;
}

.location-section .single-item .lower-content .google-map a:hover {}

.location-section .single-item .lower-content .google-map a span {
  position: relative;
  padding-left: 8px;
}

.location-section .single-item .lower-content .google-map a i {
  position: relative;
  display: inline-block;
  top: 1px;
  font-size: 20px;
}

.location-section .single-item .lower-content .google-map a i.light-icon {
  opacity: 0.5;
}

.location-section .owl-dots {
  position: relative;
  display: block;
  margin-top: 37px;
  text-align: center;
}



@media (min-width:1201px) {







  .mobile-nav-toggler {

    display: none;


  }



}



.ft-txpara {


  text-align: right;


}

@media screen and (max-width:3300px) {
  .fixed-callout .hidden-xs {
    display: none !important;
  }

  .fixed-callout .visible-xs {
    display: block !important;
  }

  .fixed-callout .mbtn-callout a {
    display: inline-block;
    font-size: 0 !important;
    margin: 0 6px !important;
    padding: 0 !important;
  }

  .fixed-callout {
    padding: 5px 3px !important;
    width: 110px;
  }

  .fixed-callout .what-col img {
    width: 35px !important;
    padding: 2px 0 5px !important;
  }
}

.fixed-callout {
  right: 15px;
  bottom: 57px;
  padding: 13px 18px;
}

.fixed-callout img {
  width: 30px;
}

.fixed-callout h4 {
  font-size: 18px;
}

.fixed-callout {
  padding: 15px 20px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgb(0 0 0 / 30%);
  position: fixed;
  bottom: 110px;
  text-align: center;
  animation: move 6s infinite forwards;
  z-index: 9999;
}

.hidden-xs {
  display: block;
}

.mbtn-callout {
  display: none;
}

.fixed-callout .hidden-xs a {
  margin: 8px 0px;
}

.fixed-callout a {
  display: block;
  padding: 2px 0;
  font-size: 16px;
  color: #323232 !important;
  text-decoration: none;
}

@media (max-width: 767px) {
  .fixed-callout {
    display: none;
  }

  .small-screen-call-to-action {
    background: #5f87ab;
    padding: 10px;
    position: fixed;
    bottom: 0;
    display: inline !important;
    z-index: 999;
    width: 100%;
  }

  .small-screen-call-to-action ul {
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-bottom: 0;
  }

  .small-screen-call-to-action ul li {
    background: #fff;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 5px;
    width: -webkit-fill-available;
    justify-content: center;
    display: flex;
    font-size: 14px;
    align-items: center;
  }

  .small-screen-call-to-action ul li a i {
    color: var(--main-color);
    font-size: 20px;
    margin-right: 5px;
  }

  .small-screen-call-to-action ul li:last-child {
    margin-right: 0;
  }

  .small-screen-call-to-action ul li a {
    color: #000;
  }

}

@media screen and (max-width:3300px) {
  .fixed-callout .hidden-xs {
    display: none !important;
  }

  .fixed-callout .visible-xs {
    display: block !important;
  }

  .fixed-callout .mbtn-callout a {
    display: inline-block;
    font-size: 0 !important;
    margin: 0 6px !important;
    padding: 0 !important;
  }

  .fixed-callout {
    padding: 5px 3px !important;
    width: 110px;
  }

  .fixed-callout .what-col img {
    width: 35px !important;
    padding: 2px 0 5px !important;
  }
}

.fixed-callout {
  right: 15px;
  bottom: 57px;
  padding: 13px 18px;
}

.fixed-callout img {
  width: 37px;
}

.fixed-callout h4 {
  font-size: 18px;
}

.fixed-callout {
  padding: 15px 20px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgb(0 0 0 / 30%);
  position: fixed;
  bottom: 110px;
  text-align: center;
  animation: move 6s infinite forwards;
  z-index: 9999;
}

.hidden-xs {
  display: block;
}

.mbtn-callout {
  display: none;
}

.fixed-callout .hidden-xs a {
  margin: 8px 0px;
}

.fixed-callout a {
  display: block;
  padding: 2px 0;
  font-size: 16px;
  color: #323232 !important;
  text-decoration: none;
}

.small-screen-call-to-action {
  display: none;
}


.inner-box p {


  color: #111111;

}

.project-section {

  padding-top: 0px !important;


}

.ft-txpara p {

  color: #ffffff;

}



@media (max-width:768px) {

  .logo img {

    height: 60px;

  }

  .header-top .info li {
    position: relative;
    display: inline-block;
    float: left;
    padding-left: 22px;
    font-size: 12px;




  }

  .main-header .theme-btn {

    font-size: 13px;


    padding: 6px 29px;

    margin-top: 12px;


  }

  .banner-carousel .content-inner p {


    font-size: 12px;



    line-height: 26px;


  }

  .slide-item .theme-btn {

    padding: 6px 12px;

    font-size: 12px;

  }

  .main-footer p,
  .main-footer a {
    font-size: 15px;
    color: #ffffff !important;
  }

  .footer-bottom {

    position: relative;

    bottom: 26px;

    text-align: center;


  }

  .ft-txpara {

    text-align: center;

  }

  .scroll-top.open {
    bottom: 70px;
  }

  .re-bt {

    float: right;
    width: 100%;
    justify-content: end;
    display: flex;

  }

}


.amenities-section i {


  font-size: 35px;

  color: #ffffff;


}

.iclr i {



  color: #ffffff !important;


}

.contact-section .single-column {


  margin-bottom: 50px;

}

.category-list li {

  color: #111111;

  border-bottom: 1px solid #d0e5eb;

  padding: 10px;


}

.category-list a {

  color: #111111;

}

.content-one p {

  color: #111111;

  padding-bottom: 20px;



  text-align: justify;



}

.content-three p {

  color: #111111;

  padding-bottom: 45px;


}

.feature-list li i {

  color: #2014b2;
  font-size: 20px;

}

.content-two p {



  color: #111111;




}

.workspaces-details img {

  margin-bottom: 50px;

  width: 100%;


}

.reqst-bk {


  padding-top: 50px;

  padding-bottom: 60px;


}

.reqst-bk p {

  color: #111111;

}

.content-four p {


  color: #111111;

  padding-bottom: 50px;

  text-align: justify;

}

.project-info p {

  padding-bottom: 0px;

}


.single-item p {

  color: #ffffff;

}

.default-form .form-group input[type='date'] {

  padding-right: 12px;



}

.info {
  color: red;
}

#mail-status {
  color: green;
}

.project-info i {


  color: #120e53;

  font-size: 36px;


}

.default-form .form-group input[type='time'] {

  padding-right: 12px;



}

.sdbr {
  z-index: 1;
  top: 100px;



  position: sticky;

}

.bxe-wpr {

  overflow: visible !important;

}


.sidebar-side {


  position: relative;

}

.directr-tx p {



  color: #111111;

  text-align: justify;


}

.contact-section .single-item p {

  color: #111111;

}

.sec-title p {


  color: #111111;

}

.vd-se {

  padding-top: 50px;

  padding-bottom: 60px;

}

.vid-sec {

  margin-bottom: 10px;

}

.footer-widget p {

  text-align: justify;

}