:root {
  --primary-color: #cd8d2b;
  --primary-color-transparent: #cd8d2b80;
  --primary-color-transparent20: #cd8d2b20;
  --secondary-color: #ea0f42;
  --dark-color: #363636;
  --light-color: #fff;
  --bg-color: #f7f7f7;
  --border-color: #ebebeb;
  --border-color-1: #000;
  --background-color: #f1d9a7;
}

body {
  font-family: lato, sans-serif;
  font-size: 14px;
  color: #0f0f0f;
  background-color: var(--light-color);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-nav li a:hover,
.navbar-nav li a:focus {
  outline: none;
  outline-offset: 0;
  text-decoration: none;
  background: 0 0;
}

a {
  color: #eb444a;
  text-decoration: none;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

a:focus,
a:hover {
  text-decoration: none;
  outline: none;
  color: #eb444a;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: raleway, sans-serif;
  font-weight: 400;
  text-transform: capitalize;
}

.padding {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 60px;
  padding-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  position: relative;
}

.section-title:before,
.section-title:after {
  position: absolute;
  content: "";
  left: 50%;
  background-color: var(--secondary-color);
}

.section-title:before {
  top: -100px;
  margin-left: -0.5px;
  height: 50px;
  width: 1px;
}

.section-title:after {
  top: -50px;
  margin-left: -7px;
  height: 14px;
  width: 14px;
  border-radius: 50%;
}

.section-title h1 {
  font-size: 18px;
  font-weight: 900;
  color: var(--dark-color);
  margin-bottom: 0;
  text-transform: uppercase;
  margin-top: 20px;
}

.section-title h2 {
  font-size: 36px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 900;
  margin-top: 0;
  line-height: 46px;
}

.btn-primary.btn-animated {
  border: 1px solid rgba(87, 7, 31, 0.57);
  color: var(--light-color);
  background-color: rgba(87, 7, 31, 0.57);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 35px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
  webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  z-index: 1;
}

.btn-primary.btn-animated:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  z-index: -1;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transform: scale(0) rotate(-360deg);
  -webkit-transform: scale(0) rotate(-360deg);
  -o-transform: scale(0) rotate(-360deg);
  -ms-transform: scale(0) rotate(-360deg);
  transform: scale(0) rotate(-360deg);
}

.btn-primary.btn-animated:hover:after {
  background-color: rgba(87, 7, 31, 0.7);
  -moz-transform: scale(1) rotate(0deg);
  -webkit-transform: scale(1) rotate(0deg);
  -o-transform: scale(1) rotate(0deg);
  -ms-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}

.btn-primary.btn-animated:hover,
.btn-primary.btn-animated:focus {
  background-color: transparent;
  outline: none;
  border: 1px solid rgba(87, 7, 31, 0.57);
}

.parallax-section {
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  min-height: 437px;
  color: var(--light-color);
  position: relative;
}

.overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.form-control {
  height: 50px;
  padding: 6px 20px;
  color: var(--border-color-1);
  border: 1px solid #a8a8a8;
  border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  outline: none;
  text-transform: capitalize;
  background-color: var(--light-color);
  font-weight: 500;
}

.form-control:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid var(--secondary-color);
  background-color: var(--light-color);
}

textarea.form-control {
  padding: 15px 20px;
}

.form-group {
  margin-bottom: 30px;
}

.navbar-toggle {
  border: 1px solid var(--light-color);
  margin-top: 18px;
}

.navbar-toggle .icon-bar {
  background-color: var(--light-color);
}

#page .navbar-toggle,
.fixed-top .navbar-toggle {
  border: 1px solid #a81c47;
}

#page .navbar-toggle .icon-bar,
.fixed-top .navbar-toggle .icon-bar {
  background-color: #a81c47;
}

.image-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--secondary-color);
}

.top-bar {
  position: absolute;
  right: 15px;
  top: 20px;
}

.top-bar .social-icons li a {
  color: var(--light-color);
  padding: 4px;
}

.top-bar .social-icons li a:hover,
.top-bar .login-section a:hover {
  color: #f42d6d;
}

.top-bar .social-icons {
  display: inline-block;
  margin-right: 20px;
}

.top-bar .login-section a {
  color: var(--light-color);
  text-transform: uppercase;
  font-size: 12px;
}

.top-bar .login-section i {
  margin-right: 10px;
}

.fixed-top .top-bar,
#page .top-bar {
  top: 25px;
}

.fixed-top .top-bar .social-icons,
#page .top-bar .social-icons {
  display: none;
}

.fixed-top .top-bar .login-section a,
#page .top-bar .login-section a {
  color: var(--light-color);
  background-color: var(--secondary-color);
  padding: 10px 15px;
  border-radius: 4px;
}

#navigation {
  position: absolute;
  width: 100%;
  z-index: 1000;
}

.fixed-top,
#page .navbar {
  background-color: var(--light-color);
  box-shadow: 0 0 5px 2px #e8e8e8;
  webkit-box-shadow: 0 0 5px 2px #e8e8e8;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#page .navbar {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  border-radius: 0;
  border: 0;
}

#navigation .fixed-top .navbar-brand,
#page #navigation .navbar .navbar-brand {
  height: 70px;
  padding-top: 20px;
}

#navigation .fixed-top .navbar-right,
#page #navigation .navbar .navbar-right {
  margin-top: 0;
  margin-right: 0px;
}

#navigation .fixed-top .navbar-right li a,
#page #navigation .navbar .navbar-right li a {
  color: var(--border-color-1);
  line-height: 50px;
}

#navigation .fixed-top .navbar-right .dropdown-menu li.active > a,
#page #navigation .navbar .navbar-right .dropdown-menu li a:hover,
#page #navigation .navbar .navbar-right .dropdown-menu li.active > a {
  color: var(--light-color);
}

#navigation .fixed-top .navbar-right li.active > a {
  color: var(--border-color-1);
}

#navigation .container {
  position: relative;
}

.navbar-brand {
  display: block;
  height: 100px;
  overflow: hidden;
  padding-top: 0;
  color: var(--light-color);
}

.navbar-brand .logo-two,
.fixed-top .main-logo,
#page .main-logo {
  display: none;
}

.fixed-top .logo-two,
#page .logo-two {
  display: block;
}

#navigation .navbar-right {
  margin-top: 0px;
  margin-right: 5px;
}

#navigation .navbar-right li a {
  color: var(--light-color);
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 17px;
  font-weight: 400;
  background-color: transparent;
  display: block;
}

#navigation .navbar .navbar-right .dropdown-menu li a:hover,
#navigation .navbar-right li.active > a {
  font-weight: 700;
}

#navigation .fixed-top .navbar-right .dropdown-menu li a,
#page #navigation .navbar .navbar-right .dropdown-menu li a {
  line-height: 18px;
}

.dropdown-menu {
  background-color: var(--light-color);
}

#navigation .navbar-collapse {
  position: relative;
}

#navigation .navbar-right .dropdown-menu {
  right: inherit;
}

@media (max-width: 999px) {
  .navbar-nav .open .dropdown-menu {
    border: 0;
    float: none;
    width: auto;
    margin-top: 0;
    position: static;
    box-shadow: none;
    background-color: var(--light-color);
  }

  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }

  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 18px;
  }

  #navigation .fixed-top .open .dropdown-menu > li > a {
    line-height: 18px;
    color: var(--light-color);
  }

  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }

  #navigation .navbar-nav .open .dropdown-menu > li > a {
    color: #333;
    background-color: transparent;
  }

  #navigation .navbar-nav .open .dropdown-menu > .active > a,
  #navigation .navbar-nav .open .dropdown-menu > .active > a:hover,
  #navigation .navbar-nav .open .dropdown-menu > .active > a:focus {
    background-color: #a81c47;
  }

  #navigation .navbar-nav .open .dropdown-menu > .disabled > a,
  #navigation .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  #navigation .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }

  #navigation .navbar-header {
    float: none;
  }

  #navigation .navbar-toggle {
    display: block;
  }

  #navigation .navbar-collapse,
  #navigation .navbar-collapse .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #navigation .navbar-nav > li > a:focus {
    background: 0 0;
  }

  #navigation .navbar-nav > li > a:hover {
    color: #a81c47;
  }

  #navigation .navbar-nav .open .dropdown-menu > li > a:hover,
  #navigation .navbar-nav .open .dropdown-menu > li > a:focus,
  #page #navigation .navbar .navbar-right .dropdown-menu li a:hover,
  #navigation .fixed-top .navbar-right .dropdown-menu li.active > a,
  #page #navigation .navbar .navbar-right .dropdown-menu li.active > a {
    color: var(--light-color);
    background-color: #a81c47;
  }

  #navigation .dropdown-submenu li a {
    font-size: 12px;
  }

  #navigation .navbar-right .dropdown-menu > li > a {
    padding: 10px 20px;
  }

  #navigation .navbar-right .dropdown-submenu > .dropdown-menu a {
    padding: 10px 30px;
  }
}

@media (min-width: 1000px) {
  #navigation .navbar-collapse {
    padding: 0;
  }

  #navigation .navbar-nav {
    top: 2px;
    position: relative;
    align-items: center;
  }

  #navigation .navbar-nav > li > a,
  #navigation .navbar-nav > li > a:hover,
  #navigation .navbar-nav > li > a:focus,
  #navigation .navbar-nav > .active > a,
  #navigation .navbar-nav > .active > a:hover,
  #navigation .navbar-nav > .active > a:focus {
    background: 0 0;
  }

  #navigation .navbar-nav > .open > a,
  #navigation .navbar-nav > .open > a:hover,
  #navigation .navbar-nav > .open > a:focus {
    color: var(--light-color);
  }

  #navigation .dropdown-menu {
    padding: 0;
    border: none;
    min-width: 200px;
    border-radius: 0;
    z-index: 9999 !important;
    margin-top: -2px !important;
  }

  #navigation .dropdown-menu li a {
    color: #a81c47;
    font-size: 13px;
    padding: 12px 17px;
    border-bottom: solid 1px #f1f1f1;
    background-color: transparent;
  }

  #navigation .dropdown-menu .active > a,
  #navigation .dropdown-menu li > a:hover {
    color: var(--light-color);
    filter: none !important;
    background-color: #a81c47 !important;
    border-bottom: solid 1px #a81c47;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }

  #navigation .dropdown-menu li > a:focus {
    background: 0 0;
    filter: none !important;
  }

  #navigation .navbar-nav > li.dropdown:hover > .dropdown-menu {
    display: block;
  }

  #navigation .open > .dropdown-menu,
  #navigation-v1 .open > .dropdown-menu {
    display: none;
  }
}

.dropdown-submenu {
  position: relative;
}

.dropdown > a:after,
.dropdown-submenu > a:after {
  top: 13px;
  right: 10px;
  font-size: 12px;
  content: "\f105";
  position: absolute;
  font-weight: 400;
  display: inline-block;
  font-family: FontAwesome;
  border: none;
}

@media (max-width: 1000px) {
  .dropdown-submenu > a:after {
    content: " ";
  }
}

.dropdown > a:after {
  top: 9px;
  right: 5px;
  content: "\f107";
}

#navigation .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -5px;
  margin-left: 0;
}

.dropdown-submenu > .dropdown-menu.submenu-left {
  left: -100%;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

@media (max-width: 1000px) {
  .dropdown-submenu > .dropdown-menu {
    display: block;
    margin-left: 15px;
  }
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
}

.dropdown-menu li [class^="fa-"],
.dropdown-menu li [class*=" fa-"] {
  left: -3px;
  width: 1.25em;
  margin-right: 1px;
  position: relative;
  text-align: center;
  display: inline-block;
}

.dropdown-menu li [class^="fa-"].fa-lg,
.dropdown-menu li [class*=" fa-"].fa-lg {
  width: 1.5625em;
}

.dropdown-show {
  position: relative;
  display: inline-block;
}

#navigation .search-icon {
  position: absolute;
  right: 0;
  top: 63px;
}

#navigation .fixed-top .search-icon,
#page #navigation .navbar .search-icon {
  top: 25px;
  right: 170px;
}

#navigation .search-icon span {
  margin: 0 9px;
}

#navigation .search-icon span i {
  color: var(--light-color);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#navigation .fixed-top .search-icon span i,
#page #navigation .navbar .search-icon span i {
  color: var(--border-color-1);
}

#navigation .search-icon span i:hover,
#navigation .fixed-top .search-icon span i:hover,
#page #navigation .navbar .search-icon span i:hover {
  color: var(--secondary-color);
}

.search.search-toggle {
  display: block;
}

.search {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 75px;
}

.search .search-close {
  position: absolute;
  top: 50%;
  right: 35px;
  margin-top: -15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.search .search-close:hover {
  color: var(--secondary-color);
}

.search-form {
  padding-left: 35px;
  height: 85px;
  font-size: 16px;
  color: var(--light-color);
  text-align: center;
  outline: none;
  border: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

#home-section {
  height: 650px;
  background-color: #cd3057;
  background-image: url(../images/home/banner.html);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.home-content {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -70px;
  width: 100%;
  height: 100%;
}

.home-content h1 {
  font-size: 35px;
  text-transform: uppercase;
  background-color: var(--light-color);
  color: #a81c47;
  margin-bottom: 0;
  font-weight: 900;
  display: inline-block;
  padding: 6px 45px;
  font-family: roboto, sans-serif;
}

.home-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 40px;
  color: var(--light-color);
  text-transform: uppercase;
}

.home-content .scroll-arrow {
  display: block;
}

.home-content .scroll-arrow a {
  display: inline-block;
  margin-top: 35px;
  color: #ab3357;
  font-size: 15px;
  height: 25px;
  width: 25px;
  border-radius: 100%;
  background-color: var(--light-color);
  line-height: 25px;
  position: relative;
  z-index: 2;
}

.arrow-icon {
  position: relative;
}

.home-content .arrow-icon:after {
  position: absolute;
  content: "";
  left: 50%;
  margin-left: -1px;
  top: 1px;
  height: 45px;
  width: 1px;
  background-color: var(--light-color);
}

#home-section-slider {
  overflow: hidden;
}

#home-section-slider .item {
  height: 650px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#home-section-slider .btn-primary {
  background-color: var(--secondary-color);
  border: 0;
}

.item-one .home-content h1 {
  color: #366ca6;
  opacity: 0.8;
}

#home-section-slider .item-two .contanier {
  position: relative;
}

.item-two .home-content {
  left: inherit;
}

.item-two .home-content h1,
.item-three .home-content h1,
.item-four .home-content h1 {
  font-size: 58px;
  text-transform: capitalize;
  background-color: transparent;
  color: var(--light-color);
  padding: 0;
  font-weight: 300;
  font-family: lato, sans-serif;
}

.item-two .home-content h2,
.item-three .home-content h2,
.item-four .home-content h2 {
  font-size: 100px;
  font-weight: 400;
  font-family: lato, sans-serif;
  text-transform: capitalize;
  line-height: 75px;
  margin-top: 0;
  margin-bottom: 50px;
}

.item-three .home-content {
  margin-top: -150px;
}

.item-three .container {
  position: relative;
  height: 650px;
}

.item-three .section-content {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  margin-top: -205px;
}

.item-three .home-content h1,
.item-four .home-content h1 {
  font-size: 80px;
}

.item-three .home-content h2,
.item-four .home-content h2 {
  font-size: 90px;
  font-weight: 800;
}

.item-three .quick-reg {
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--light-color);
}

.quick-reg h2 {
  margin-top: 0;
  margin-bottom: 35px;
}

.quick-reg .form-control {
  height: 38px;
}

.quick-reg .form-group {
  margin-bottom: 20px;
}

.quick-reg textarea.form-control {
  height: auto;
}

.item-four .home-content {
  margin-top: -130px;
}

.item-four .extra-info {
  max-width: 820px;
  display: inline-block;
  color: var(--light-color);
  position: relative;
  margin-top: 20px;
}

.item-four .extra-info:before {
  position: absolute;
  content: "";
  top: 0;
  margin-top: -30px;
  left: 50%;
  margin-left: -70px;
  height: 2px;
  width: 130px;
  background-color: var(--light-color);
}

.carousel-left i,
.carousel-right i {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  line-height: 50px;
  font-size: 32px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--light-color);
  z-index: 999;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  -ms-transition: 300ms;
  transition: 300ms;
}

.carousel-left i {
  left: -100px;
  border-radius: 0 10px 10px 0;
}

.carousel-right i {
  right: -100px;
  border-radius: 10px 0 0 10px;
}

.carousel-left i:hover,
.carousel-right i:hover {
  background-color: rgba(0, 0, 0, 0.25);
}

#home-section-slider:hover .carousel-left i {
  left: 0;
}

#home-section-slider:hover .carousel-right i {
  right: 0;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  to {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@-moz-keyframes bounce {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  to {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@-o-keyframes bounce {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  to {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  to {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

.animated {
  -webkit-animation: bounce 0.5s infinite ease-in-out alternate;
  animation: bounce 1s infinite ease-in-out alternate;
}

.item-five .slider-content {
  padding-top: 250px;
  color: var(--light-color);
}

.item-five .slider-content h1 {
  font-size: 55px;
  margin-bottom: 0;
}

.item-five .slider-content h2 {
  font-size: 120px;
  line-height: 100px;
  margin-top: 0;
}

.item-five .slider-content h1,
.item-five .slider-content h2 {
  font-weight: 800;
  text-transform: uppercase;
}

.item-five .slider-content .quick-list li {
  margin-bottom: 25px;
  position: relative;
  padding-left: 45px;
}

.item-five .slider-content .quick-list li:last-child {
  margin-bottom: 0;
}

.item-five .slider-content .quick-list li span {
  font-size: 30px;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

#home-section-slider .item h1,
#home-section-slider .item h2,
#home-section-slider .item p,
#home-section-slider .item .btn-primary,
#home-section-slider .item .scroll-arrow,
#home-section-slider .item .quick-reg,
#home-section-slider .item .slider-content .quick-list li,
#home-section-slider .item .extra-info:before {
  opacity: 0;
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}

#home-section-slider .item.active h1,
#home-section-slider .item.active h2,
#home-section-slider .item.active p,
#home-section-slider .item.active .btn-primary,
#home-section-slider .item.active .scroll-arrow,
#home-section-slider .item.active .quick-reg,
#home-section-slider .item.active .slider-content .quick-list li,
#home-section-slider .item.active .extra-info:before {
  opacity: 1;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

#home-section-slider .item h1 {
  -webkit-transition: all 0.5s ease-in-out 0.15s;
  -moz-transition: all 0.5s ease-in-out 0.15s;
  -ms-transition: all 0.5s ease-in-out 0.15s;
  -o-transition: all 0.5s ease-in-out 0.15s;
  transition: all 0.5s ease-in-out 0.15s;
}

#home-section-slider .item h2 {
  -webkit-transition: all 0.5s ease-in-out 0.3s;
  -moz-transition: all 0.5s ease-in-out 0.3s;
  -ms-transition: all 0.5s ease-in-out 0.3s;
  -o-transition: all 0.5s ease-in-out 0.3s;
  transition: all 0.5s ease-in-out 0.3s;
}

#home-section-slider .item p,
#home-section-slider .item .extra-info:before {
  -webkit-transition: all 0.5s ease-in-out 0.45s;
  -moz-transition: all 0.5s ease-in-out 0.45s;
  -ms-transition: all 0.5s ease-in-out 0.45s;
  -o-transition: all 0.5s ease-in-out 0.45s;
  transition: all 0.5s ease-in-out 0.45s;
}

#home-section-slider .item .btn-primary,
#home-section-slider .item .quick-reg,
#home-section-slider .item .slider-content .quick-list li:nth-child(1) {
  -webkit-transition: all 0.5s ease-in-out 0.65s;
  -moz-transition: all 0.5s ease-in-out 0.65s;
  -ms-transition: all 0.5s ease-in-out 0.65s;
  -o-transition: all 0.5s ease-in-out 0.65s;
  transition: all 0.5s ease-in-out 0.65s;
}

#home-section-slider .item .scroll-arrow,
#home-section-slider .item .slider-content .quick-list li:nth-child(3) {
  -webkit-transition: all 0.5s ease-in-out 0.85s;
  -moz-transition: all 0.5s ease-in-out 0.85s;
  -ms-transition: all 0.5s ease-in-out 0.85s;
  -o-transition: all 0.5s ease-in-out 0.85s;
  transition: all 0.5s ease-in-out 0.85s;
}

#home-section-slider .item .slider-content .quick-list li:nth-child(2) {
  -webkit-transition: all 0.5s ease-in-out 0.75s;
  -moz-transition: all 0.5s ease-in-out 0.75s;
  -ms-transition: all 0.5s ease-in-out 0.75s;
  -o-transition: all 0.5s ease-in-out 0.75s;
  transition: all 0.5s ease-in-out 0.75s;
}

#home-section-slider .item .slider-content .quick-list li:nth-child(4) {
  -webkit-transition: all 0.5s ease-in-out 0.95s;
  -moz-transition: all 0.5s ease-in-out 0.95s;
  -ms-transition: all 0.5s ease-in-out 0.95s;
  -o-transition: all 0.5s ease-in-out 0.95s;
  transition: all 0.5s ease-in-out 0.95s;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  background-repeat: no-repeat;
  background-size: cover;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}

#welcome-section .section-title:before,
#welcome-section .section-title:after {
  display: none;
}

.welcome-content {
  font-size: 17px;
}

.welcome-content .welcome-image {
  padding: 5px;
  border: 1px solid #f0f0f0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.welcome-content .welcome-image a i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.8);
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.welcome-content .welcome-image:hover a i {
  opacity: 1;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.welcome-content .welcome-info {
  padding-left: 40px;
  padding-top: 20px;
}

.welcome-content .welcome-info a {
  font-size: 16px;
  color: #eb444a;
  display: inline-block;
  margin-top: 10px;
  font-weight: 900;
}

.welcome-content .welcome-info a:hover {
  color: var(--border-color-1);
}

.welcome-three .welcome-image {
  padding-right: 35px;
  border: 0;
}

.welcome-three.welcome-content {
  font-size: 16px;
}

#home-three .item-two .home-content {
  margin-top: -100px;
}

#recent-projects,
#project-list,
#architect {
  background-color: #eaeaea;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Scoped to ONLY this section so it doesn't override your theme */
.recent-projects .services-points-wrap{
  /* keeps alignment inside existing section */
  margin-top: 10px;
}

.recent-projects .services-points{
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

/* Each point looks like a clean "service row" (not a big card) */
.recent-projects .services-point{
  display: flex;
  align-items: flex-start;
  gap: 14px;

  padding: 14px 16px;
  background: rgba(255,255,255,.75);   /* matches your light outer feel */
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
}

/* Icon chip - subtle (no heavy colors) */
.recent-projects .services-point-icon{
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  font-size: 18px;
}

/* Use your existing fonts; don't touch global headings */
.recent-projects .services-point-text h4{
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.recent-projects .services-point-text p{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.45;
  opacity: .85;
}

/* Responsive */
@media (max-width: 991px){
  .recent-projects .services-points{
    grid-template-columns: 1fr;
  }
}

.project-content {
  margin-bottom: 30px;
  overflow: hidden;
}

.project-content .project-title,
.project-content .project-info {
  padding: 20px 18px 15px;
  background-color: var(--light-color);
  border: 1px solid #d7d7d7;
  border-bottom: 0;
  box-shadow: 0 0 3px 1px #d7d7d7;
  -webkit-box-shadow: 0 0 3px 1px #d7d7d7;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.project-content:hover .project-title,
.project-content:hover .project-info {
  box-shadow: none;
  webkit-box-shadow: none;
}

.project-content .project-title h3 {
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.project-content:hover .project-title h3 {
  color: var(--primary-color);
}

.project-content .project-info {
  border-top: 0;
  border-bottom: 1px solid #d7d7d7;
  color: #6d6d6d;
}

.project-content .project-item {
  width: 102%;
  margin-left: -1%;
  position: relative;
  background-color: var(--light-color);
}

.project-content .project-item a:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(240, 32, 100, 0.75);
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.project-content .project-item a:hover:after {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

#amazing-features .section-title:before,
#amazing-features .section-title:after {
  left: 35px;
}

#amazing-features {
  color: #848484;
}

#amazing-features .section-title {
  margin-bottom: 50px;
}

#amazing-features .section-title h2 {
  margin-bottom: 25px;
}

#amazing-features .features {
  margin-bottom: 35px;
}

#amazing-features .features h4 {
  color: var(--dark-color);
  margin-bottom: 15px;
}

#amazing-features .features:hover h4 {
  color: var(--primary-color);
  -moz-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -moz-animation-name: tr-run;
  -webkit-animation-name: tr-run;
  animation-name: tr-run;
  -moz-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -moz-animation-direction: alternate;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

#amazing-features .features i {
  font-size: 24px;
  margin-right: 15px;
}

.twentytwenty-wrapper {
  margin-top: 75px;
}

#fun-facts {
  background-color: #bc1a4b;
  color: var(--light-color);
  background-image: url(../images/bg/fun-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

#fun-facts.fun-facts-two {
  position: relative;
}

#fun-facts.fun-facts-two .overlay-bg {
  background-color: rgba(0, 0, 0, 0.75);
}

.fun-facts {
  padding: 10px 0;
}

.fun-facts i {
  font-size: 48px;
}

.fun-facts h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 5px;
}

.fun-facts h2 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0;
}

.entry-content {
  color: #0f0f0f;
  font-size: 16px;
  font-weight: 300;
}

.entry-content .entry-meta {
  font-weight: 700;
  margin: 15px 0;
}

.entry-content .entry-title {
  font-size: 30px;
  text-transform: capitalize;
  margin-top: 25px;
  margin-bottom: 20px;
}

.entry-content .entry-thumb {
  position: relative;
  display: block;
  overflow: hidden;
}

.entry-thumb:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(240, 32, 100, 0.75);
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.entry-content:hover .entry-thumb:after {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.entry-content a {
  color: var(--border-color-1);
}

.entry-content a:hover,
.entry-content:hover a {
  color: var(--primary-color);
}

.entry-content .read-more i {
  font-size: 24px;
}

#twitter {
  background-image: url(../images/bg/twitter-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 20px;
  font-weight: 300;
  color: var(--light-color);
  background-color: #2db7eb;
  position: relative;
}

#twitter .overlay-bg {
  background-color: rgba(0, 174, 239, 0.9);
}

#twitter-carousel {
  max-width: 800px;
  display: inline-block;
}

.twitter-icon {
  font-size: 60px;
  color: var(--light-color);
  position: relative;
  z-index: 10;
  margin-bottom: 25px;
  line-height: 55px;
}

#twitter-carousel .item a {
  font-size: 16px;
  font-weight: 600;
  color: var(--light-color);
}

#twitter-carousel .carousel-indicators {
  bottom: -55px;
}

#twitter-carousel .carousel-indicators li {
  background-color: var(--light-color);
  border-radius: 100%;
  width: 10px;
  height: 10px;
}

#twitter-carousel .carousel-indicators .active {
  background-color: #0072bc;
  border-color: #0072bc;
  height: 10px;
  width: 10px;
}

.clients ul li {
  width: 24%;
  padding: 15px;
  overflow: hidden;
}

.clients ul li img {
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  -moz-transform: skewX(0deg);
  -webkit-transform: skewX(0deg);
  -o-transform: skewX(0deg);
  -ms-transform: skewX(0deg);
  transform: skewX(0deg);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}

.clients ul li:hover img {
  -moz-transform: skewX(180deg);
  -webkit-transform: skewX(180deg);
  -o-transform: skewX(180deg);
  -ms-transform: skewX(180deg);
  transform: skewX(180deg);
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0);
  filter: grayscale(0);
}

#promotion {
  background-color: #35ac69;
  color: var(--light-color);
  background-image: url(../images/bg/citygate_s.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#promotion.promo-image-bg {
  background-image: url(../images/bg/citygate_s.png);
  height: 250px;
  background-repeat: no-repeat;

  position: relative;
}

#promotion.promo-image-bg .overlay-bg {
  background-color: rgba(0, 0, 0, 0.45);
}

#promotion .overlay-bg {
  background-color: rgba(0, 0, 0, 0.45);
}

#promotion h1 {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

#promotion .btn-primary {
  background-color: transparent;
  border-color: var(--light-color);
  text-transform: uppercase;
}

#promotion .btn-primary:hover:after {
  background-color: rgba(36, 111, 69, 0.75);
}

.footer-widget .logo {
  display: block;
  margin-bottom: 25px;
}

.footer-widget h2 {
  color: #545454;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 20px;
}

.footer-widget li {
  margin-bottom: 15px;
}

.footer-widget li:last-child {
  margin-bottom: 0;
}

.footer-widget li a {
  color: #454545;
}

.footer-widget li a:hover {
  color: var(--primary-color);
}

.footer-widget address {
  position: relative;
}

.footer-widget address span {
  position: absolute;
  left: 0;
}

.footer-widget address li {
  padding-left: 100px;
  margin-bottom: 10px;
}

.footer-widget .social-icons li a {
  margin-right: 10px;
  font-size: 18px;
}

.footer-widget.instagram img {
  width: 75px;
  height: 75px;
}

.footer-widget.instagram li {
  margin-bottom: 10px;
  position: relative;
  width: 33.333333%;
  display: block;
  float: left;
}

.footer-widget.instagram li img {
  width: 100%;
  height: 100%;
}

.footer-widget.instagram h2 {
  margin-left: 5px;
}

.footer-widget.instagram ul.list-inline li:first-child {
  padding-left: 5px;
}

.footer-widget.instagram li a {
  overflow: hidden;
}

.footer-widget.instagram li a:after {
  position: absolute;
  content: "";
  height: 100%;
  left: 5px;
  right: 5px;
  top: 0;
  background-color: green;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
  border-radius: 100%;
}

.footer-widget.instagram li a:hover:after {
  opacity: 1;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  border-radius: 0;
}

#footer-bottom {
  background-color: #f0f0f0;
  color: #333;
  padding: 30px 0 20px;
  border-top: 1px solid var(--border-color);
}

#footer-bottom a {
  font-weight: 800;
  color: var(--border-color-1);
}

#page #footer {
  background-color: var(--bg-color);
  border-top: 1px solid var(--border-color);
}

#page-title {
  background-color: #cd3057;
  color: var(--light-color);
  font-size: 16px;
  margin-top: 72px;
  padding: 55px 0 45px;
  background-image: url(../images/bg/pagetitle.png);
}

#page-title .title-content {
  display: inline-block;
  max-width: 625px;
}

#page-title .title-content h1 {
  font-weight: 700;
  text-transform: uppercase;
}

#about-us {
  padding: 85px 0;
  background-color: white;
}

.about-us-content {
  font-size: 16px;
  padding-left: 35px;
  margin-top: -22px;

  padding: 10px;
}

.about-us-content p {
  margin-bottom: 15px;
}

.about-us-content h2 {
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 20px;
}

.about-us-content-1 h2 {
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 0px;
}

.about-us-content a {
  margin-top: 20px;
  display: inline-block;
  font-weight: 700;
}

.about-us-content ul {
  margin-left: 20px;
}

.about-us-content-1 ul {
  margin-left: 20px;
}

#achievement {
  background-color: #cd3057;
  background-image: url(../images/bg/achivement-bg.jpg);
  color: var(--light-color);
  position: relative;
}

.fun-heading {
  max-width: 400px;
  font-size: 20px;
  text-transform: uppercase;
}

.fun-heading h1 {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  margin-top: 20px;
}

#achievement .fun-facts h1 {
  font-size: 48px;
  font-weight: 700;
}

#achievement .fun-facts {
  padding: 0;
}

#achievement .border-bottom {
  border-bottom: 1px solid var(--light-color);
}

#achievement .fun {
  padding: 25px;
}

#achievement .border-right {
  border-right: 1px solid var(--light-color);
}

#achievement .fun.no-border {
  border-right: 0;
}

#achievement .fun-facts h2 {
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 400;
}

#workstation .section-title {
  margin-bottom: 75px;
}

.workstation-info {
  padding-left: 35px;
  font-size: 16px;
}

.workstation-info h2 {
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 20px;
}

.workstation-image {
  margin-bottom: 20px;
}

#video-promotion {
  color: var(--light-color);
  background-color: #cd3057;
  background-image: url(../images/bg/video-bg.jpg);
  padding: 190px 0 230px;
}

#video-promotion h1 {
  font-size: 48px;
  text-transform: uppercase;
}

#video-promotion h1 a {
  color: var(--light-color);
}

#video-promotion h1 span {
  position: relative;
  overflow: hidden;
}

#video-promotion h1 span:before {
  font-size: 100px;
  font-family: FontAwesome;
  content: "\f01d";
  position: relative;
  padding: 20px;
  top: 15px;
  left: 0;
}

#video-promotion h1 span:before {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

#video-promotion h1 a:hover span:before {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  opacity: 0.6;
}

.team-content,
.architect {
  overflow: hidden;
}

.team-hero,
.architect-image {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.team-hero:before,
.architect-image:before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.team-content:hover .team-hero:before,
.architect:hover .architect-image:before {
  -webkit-animation: tr-flash 0.75s;
  animation: tr-flash 0.75s;
}

.team-content:hover .team-hero img {
  filter: grayscale(50%);
  -webkit-filter: grayscale(50%);
}

.team-hero-info h2 {
  text-transform: uppercase;
  font-size: 30px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-top: 20px;
}

.team-hero-info h3 {
  font-size: 18px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 20px;
}

.team-hero-info .socials {
  margin-top: 20px;
}

.team-hero-info .socials li {
  margin-right: 5px;
}

.team-hero-info .socials li a {
  color: var(--border-color-1);
}

.team-hero-info .socials li a:hover,
.team-content:hover .team-hero-info h2 {
  color: var(--secondary-color);
}

.about-us-content.service {
  padding-left: 0;
  padding-right: 35px;
}

#core-featured {
  background-image: url(../images/bg/featured-bg.jpg);
  color: var(--light-color);
}

.features-menu h1 {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.nav.nav-tabs {
  border-bottom: 0;
}

.features-menu ul li {
  margin-bottom: 10px !important;
  width: 100%;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.features-menu ul li.nav-item:last-child {
  margin-bottom: 0;
}

.features-menu ul li.nav-item a {
  color: var(--light-color);
  font-size: 18px;
  display: block;
  position: relative;
  border: 0;
  padding: 0;
  text-transform: capitalize;
}

.features-menu ul li.nav-item a:hover,
.features-menu ul li.nav-item a.active {
  padding-left: 15px;
  color: var(--light-color);
  background-color: transparent;
}

.features-menu ul li.nav-item a:before {
  position: absolute;
  content: "\f105";
  font-family: FontAwesome;
  font-size: 20px;
  left: 0;
  top: -2px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.features-menu ul li.nav-item a.active:before,
.features-menu ul li.nav-item a:hover:before {
  opacity: 1;
}

.core-features {
  padding-top: 30px;
}

.feature-image {
  overflow: hidden;
}

.feature-image a {
  position: relative;
  display: block;
}

.feature-image a:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  border-radius: 100%;
  background-color: rgba(240, 32, 100, 0.75);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.feature:hover .feature-image a:after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0;
  opacity: 1;
}

.core-features .feature {
  margin-bottom: 30px;
  overflow: hidden;
}

.feature .feature-content {
  color: var(--border-color-1);
  background-color: var(--light-color);
  padding: 25px;
}

.feature .feature-content h3 {
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.feature:hover .feature-content h3 {
  color: var(--primary-color);
}

.tab-pane .feature {
  -moz-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -moz-animation-name: tr-fade;
  -webkit-animation-name: tr-fade;
  animation-name: tr-fade;
  -moz-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -moz-animation-direction: alternate;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.faqs .card-body {
  border-top: 0;
  font-size: 18px;
  padding: 25px 30px 0;
}

.faqs .card-header {
  padding: 0;
  text-align: left;
  border: 0;
}

.faqs .card-header h4 {
  margin: 0;
}

.faqs .card-header button,
.faqs .card-header > h4 > button.collapsed:hover {
  border: 0;
  background-color: var(--primary-color);
  padding: 15px 20px 15px 40px;
  width: 100%;
  text-align: left;
  color: var(--light-color);
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.faqs .card-header button:focus {
  outline: none;
}

.faqs .card-header > h4 > button:before {
  position: absolute;
  content: "\f055";
  left: 15px;
  top: 15px;
  width: 28px;
  height: 28px;
  font-family: fontawesome;
}

.faqs .card-header > h4 > button.collapsed:before {
  content: "\f056";
}

.faqs .card-header > h4 > button.collapsed {
  color: #333;
  background-color: #f1f1f1;
}

.faqs .panel-default > .panel-heading.active,
.faqs .panel-default > .panel-heading:hover {
  background-color: var(--primary-color);
}

.faqs .panel-default > .panel-heading.active a,
.faqs .panel-default > .panel-heading:hover a {
  color: var(--light-color);
}

.faqs .panel-default > .panel-heading span {
  margin-right: 5px;
  font-size: 20px;
}

.faqs .card {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 25px;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
}

#other-features {
  background-color: #efefef;
  padding-bottom: 25px;
}

.other-feature {
  padding: 10px 15px;
  margin-bottom: 45px;
}

.other-feature img {
  display: inline-block;
  margin-bottom: 10px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz1cJ2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCc+PGZpbHRlciDigKYuMzMzMyAwIDAgMC4zMzMzIDAuMzMzMyAwLjMzMzMgMCAwIDAgMCAwIDEgMFwnLz48L2ZpbHRlcj48L3N2Zz4jZ3JheXNjYWxl);
  filter: grayscale(100%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.other-feature:hover img {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-animation: tr-bladder 0.3s;
  -moz-animation: tr-bladder 0.3s;
  -ms-animation: tr-bladder 0.3s;
  -o-animation: tr-bladder 0.3s;
  animation: tr-bladder 0.3s;
}

.other-feature h3 {
  margin-top: 10px;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.other-feature:hover h3 {
  color: var(--secondary-color);
}

#services .other-feature {
  margin-bottom: 0;
}

#project-carousel .project-indicators {
  margin-top: 30px;
  list-style: none;
  padding-left: 0;
  z-index: 15;
}

#project-carousel .project-indicators li {
  float: left;
  width: 29.7%;
  height: auto;
  margin: 0;
  margin-right: 29px;
  cursor: pointer;
}

#project-carousel .project-indicators li:last-child {
  margin-right: 0;
}

#project-details .project-info {
  padding-left: 30px;
  font-size: 18px;
}

#project-details .project-info h2 {
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 20px;
}

#project-details .project-info h4 {
  text-transform: capitalize;
  margin-bottom: 20px;
  margin-top: 25px;
  font-weight: 700;
}

#project-details .project-info ul {
  margin-top: 20px;
}

#project-details .project-info ul li {
  margin-bottom: 5px;
}

#project-details .project-info ul li span {
  margin-right: 30px;
  min-width: 80px;
  display: inline-block;
}

#projects {
  margin-left: -15px;
  margin-right: -15px;
}

#projects .all-projects {
  overflow: hidden;
}

.all-projects .project-content {
  width: 22.3%;
  margin: 15px;
}

#project-list .section-title {
  margin-bottom: 30px;
}

.project-filter {
  margin-bottom: 20px;
}

.project-filter ul li a,
.architect-filter ul li a {
  color: var(--border-color-1);
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px;
  display: block;
}

.project-filter ul li a:hover,
.project-filter ul li a.active,
.architect-filter ul li a:hover,
.architect-filter ul li a.active {
  color: #eb444a;
}

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

#video-section {
  background-color: #2b2c30;
  position: relative;
  background-image: url(../images/bg/video-bg1.jpg);
}

#video-section .overlay-bg {
  background-color: rgba(0, 0, 0, 0.8);
}

#video-section a {
  color: var(--light-color);
  font-size: 110px;
  margin: 120px 0 130px;
  display: inline-block;
  position: relative;
}

#short-descrip {
  padding-top: 90px;
}

.short-descrip {
  padding-left: 30px;
  font-size: 18px;
}

.short-descrip h4 {
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.short-descrip > p {
  margin-bottom: 20px;
}

#architect .section-title {
  margin-bottom: 30px;
}

.architect-filter {
  margin-bottom: 35px;
}

.architect-info {
  background-color: var(--light-color);
  padding: 25px;
  -webkit-box-shadow: 0 1px 2px 1px #d1d1d1;
  box-shadow: 0 1px 2px 1px #d1d1d1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.architect:hover .architect-info {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.architect-info h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.architect-info h4 {
  margin-top: 0;
  font-size: 14px;
}

.architect-info .social-icons a {
  color: #545454;
  display: block;
  margin-right: 5px;
}

.architect-info .social-icons a:hover,
.architect:hover h3 {
  color: #eb444a;
}

#content .post {
  margin-bottom: 65px;
}

#content .post img {
  width: 100%;
}

#content .entry-header {
  margin-bottom: 30px;
}

.post-content .entry-title {
  margin-bottom: 15px;
  text-transform: initial;
}

.post-content .entry-title a {
  color: var(--border-color-1);
}

.post-content .entry-title a:hover,
.post-content .entry-meta li a:hover,
.post-content .entry-summary .read-more:hover,
#blog-carousel i:hover {
  color: var(--secondary-color);
}

.post-content .entry-meta {
  margin-bottom: 20px;
}

.post-content .entry-meta li {
  margin-right: 10px;
}

.post-content .entry-meta li a {
  font-size: 16px;
  color: #4a4a4a;
}

.post-content .entry-meta li i {
  color: var(--secondary-color);
  margin-right: 10px;
}

.entry-summary {
  font-size: 16px;
}

.entry-summary .read-more {
  display: inline-block;
  color: #323232;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.entry-summary .read-more:hover {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#blog-carousel i {
  font-size: 30px;
}

.pagination-section .blog-pagination {
}

.pagination-section .blog-pagination li {
  padding-left: 0;
  padding-right: 0;
}

.pagination-section .blog-pagination li a {
  font-size: 20px;
  font-weight: 700;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--border-color-1);
  display: block;
}

.pagination-section .blog-pagination li:first-child a,
.pagination-section .blog-pagination li:last-child a {
  background-color: #e0e0e0;
}

.pagination-section .blog-pagination li a:hover,
.pagination-section .blog-pagination li.active a {
  background-color: var(--secondary-color);
  color: var(--light-color);
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.pagination-section .blog-pagination li a i {
  font-size: 24px;
}

.pagination-section .blog-pagination li a i.fa-angle-left {
  margin-left: -3px;
}

.pagination-section .blog-pagination li a i.fa-angle-right {
  margin-left: 3px;
}

.widget-area .widget_search .form-control {
  border-radius: 0;
  box-shadow: none;
  outline: none;
  height: 52px;
}

.widget-area .widget_search {
  position: relative;
}

.widget-area .widget_search .form-control:focus {
  border-color: var(--secondary-color);
}

.widget-area .widget_search button.btn,
.blog-search-top button.btn {
  position: absolute;
  top: 0;
  right: 5px;
  height: 100%;
  background-color: transparent;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.widget-area .widget_search button.btn:focus {
  outline: none;
}

.widget-area .widget_search .btn i {
  font-size: 16px;
  color: #999;
}

.widget-area .widget_search button.btn:hover i {
  color: var(--secondary-color);
}

.widget.tab_widget .nav > li {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: 0;
}

.widget.tab_widget ul li a {
  padding: 20px;
  display: inline-block;
}

.widget.tab_widget ul li.active a {
  color: var(--secondary-color);
}

.widget.tab_widget .nav {
  background-color: var(--secondary-color);
}

.widget .nav > li.active > a,
.widget .nav > li:hover > a,
.widget .nav > li a:focus {
  background-color: var(--light-color);
}

.latest-posts,
.recent-comment {
  padding: 30px 15px 25px;
  overflow: hidden;
}

.widget .media .pull-left {
  margin-right: 15px;
}

.widget img {
  opacity: 0.8;
}

.widget img:hover {
  opacity: 1;
}

.widget .entry-title {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 20px;
  text-transform: initial;
}

.entry-meta.small {
  margin-top: 0;
  color: #898989;
}

.entry-meta.small i {
  margin-right: 5px;
}

.widget h3.widget_title {
  padding: 18px 28px;
  font-size: 22px;
  color: var(--light-color);
  background-color: var(--secondary-color);
}

.widget .media {
  border-top: 1px solid #ededed;
  padding-top: 15px;
}

.widget .media:first-child {
  border-top: 0;
  padding-top: 0;
}

.widget ul li a {
  color: var(--border-color-1);
  display: block;
  text-decoration: none;
  padding: 5px 20px 5px 40px;
  -webkit-transition: all 0.05s ease-in;
  -moz-transition: all 0.05s ease-in;
  -ms-transition: all 0.05s ease-in;
  -o-transition: all 0.05s ease-in;
  transition: all 0.05s ease-in;
  position: relative;
}

.widget.widget_categories ul {
  margin: 20px 0 30px;
}

.widget ul li a span {
  float: right;
}

.widget ul li a i {
  position: absolute;
  left: 10px;
  top: 4px;
  font-size: 22px;
  -webkit-transition: all 0.05s ease-in;
  -moz-transition: all 0.05s ease-in;
  -ms-transition: all 0.05s ease-in;
  -o-transition: all 0.05s ease-in;
  transition: all 0.5s ease-in;
  opacity: 0;
}

.widget ul li a:hover i {
  opacity: 1;
  left: 15px;
}

.widget ul li a:hover {
  color: var(--secondary-color);
}

.widget ul li a:hover {
  border-color: var(--secondary-color);
}

.widget.tag-cloud ul {
  padding: 30px 20px;
}

.widget.tag-cloud ul li {
  display: inline-block;
  border-bottom: 0;
}

.widget.tag-cloud ul li a {
  display: inline-block;
  color: #898989;
  padding: 5px 10px;
  margin-right: 5px;
  margin-bottom: 8px;
  background-color: #f5f5f5;
  border-left: 0;
}

.widget.tag-cloud ul li a:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.widget .latest-posts a {
  color: #656565;
}

.widget .latest-posts a:hover,
.widget .latest-posts span a:hover,
.post-content.detail-content .entry-title {
  color: var(--secondary-color);
}

.widget .latest-posts span,
.widget .latest-posts span a {
  color: var(--border-color-1);
  font-size: 14px;
}

.widget .latest-posts span a {
  font-weight: 700;
}

.post-content.detail-content {
  margin-bottom: 60px;
}

.post-content.detail-content blockquote {
  font-size: 16px;
  position: relative;
  background-color: var(--bg-color);
  border-left: 3px solid var(--secondary-color);
  margin: 20px 0 20px 15px;
  padding: 10px 20px;
}

.post .social-share {
  margin-top: 25px;
}

.post .author-section {
  margin-bottom: 45px;
}

.post .author-section h1,
.comments-wrapper h1 {
  font-weight: 100;
  color: #454545;
  margin-bottom: 40px;
}

.post .author-section .author-image {
  margin-right: 55px;
  position: relative;
  height: 102px;
  width: 102px;
}

.author-section .author-image .social-icons {
  position: absolute;
  right: -20px;
  top: 0;
}

.author-section .author-image .social-icons li a {
  display: block;
  background-color: #f2f2f2;
  color: var(--secondary-color);
  font-size: 16px;
  height: 30px;
  width: 30px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 1px;
}

.author-section .author-image .social-icons li a:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.author-section .media-body h3 {
  margin-top: 0;
  font-weight: 400;
  font-size: 21px;
}

.comments-wrapper .media .pull-left {
  width: 82px;
  height: 82px;
  margin-right: 30px;
}

.comments-wrapper .media-list .media {
  margin-top: 35px;
}

.comments-wrapper .media-list .media:first-child {
  margin-top: 0;
}

.comments-wrapper .media-list .media-body h3 {
  font-size: 24px;
  font-weight: 400;
  margin-top: 0;
}

.replay-box {
  margin-top: 50px;
}

.replay-box h1 {
  text-transform: initial;
  font-weight: 100;
  color: #454545;
  margin-bottom: 45px;
}

.replay-box .btn-primary {
  background-color: rgba(234, 15, 66, 0.99);
  border: 0;
  font-size: 18px;
}

#content.blog-details .post {
  margin-bottom: 20px;
}

.contact-info {
  color: #454545;
  font-size: 16px;
}

.contact-info h2 {
  text-transform: capitalize;
  margin-bottom: 15px;
}

.contact-info a {
  color: var(--border-color-1);
}

.contact-info a:hover {
  color: var(--secondary-color);
}

.contact-mail {
  margin-top: 20px;
  margin-bottom: 5px;
}

#gmap {
  height: 450px;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}

#main-contact-form .btn-primary {
  background-color: var(--secondary-color);
  float: right;
}

.mfp-figure {
  background-color: var(--light-color);
}

img.mfp-img {
  padding: 12px;
}

/* chnaged the hover icon */
img.mfp-img:hover,
img.mfp-img:active {
  cursor: grab;
}

.mfp-image-holder .mfp-close {
  top: -35px;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer;
}

.mfp-counter {
  right: 50%;
  color: var(--light-color);
  top: 50px;
  margin-right: -20px;
}

#login-wrapper form {
  padding: 30px;
  background-color: var(--bg-color);
  border: 1px solid #f0f0f0;
}

.user-content {
  width: 350px;
  display: inline-block;
}

#login-wrapper .btn-primary {
  background-color: var(--secondary-color);
  margin-top: 25px;
}

#login-wrapper .form-group {
  margin-bottom: 25px;
}

#login-wrapper .facebook {
  background-color: #365397;
}

#login-wrapper .twitter {
  background-color: #18afe6;
}

#login-wrapper .facebook,
#login-wrapper .twitter {
  color: var(--light-color);
  padding: 12px 18px;
  margin-top: 5px;
}

#login-wrapper .facebook:hover {
  background-color: #2f426f;
}

#login-wrapper .twitter:hover {
  background-color: #1694c1;
}

#login-wrapper .facebook i,
#login-wrapper .twitter i,
#login-wrapper .register i {
  margin-right: 10px;
}

#login-wrapper .btn-primary.register {
  background-color: var(--bg-color);
  border-color: var(--bg-color);
  color: #555;
  text-transform: initial;
}

#login-wrapper .btn-primary.register:after {
  background-color: var(--secondary-color);
}

#login-wrapper .btn-primary.register:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

#login-wrapper h3 {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 500;
}

.shortcode {
  padding-bottom: 50px;
}

.shortcode-heading {
  text-transform: uppercase;
}

.shortcode #blog-carousel img,
.welcome-content img {
  width: 100%;
}

.shortcode .show-grid {
  padding: 0 15px;
}

.shortcode .show-grid [class^="col-"] {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--bg-color);
  background-color: rgba(145, 145, 145, 0.15);
  border: 1px solid #ddd;
  border: 1px solid rgba(145, 145, 145, 0.2);
  margin-bottom: 15px;
}

.shortcode .panel-heading {
  padding: 14px 15px;
}

.fontawesome-icon-list .fa-hover a {
  color: #555;
  display: block;
  margin-bottom: 15px;
}

.fontawesome-icon-list .fa-hover a:hover {
  color: var(--secondary-color);
}

#coming-soon {
  position: relative;
  height: 100%;
  width: 100%;
}

.coming-soon {
  background-image: url(../images/bg/coming-soon-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--light-color);
  background-color: #333;
  padding: 85px 0;
  position: absolute;
  width: 100%;
  font-size: 16px;
}

.coming-soon-content {
  max-width: 530px;
  display: inline-block;
}

.coming-soon-content img {
  display: inline-block;
  margin-bottom: 60px;
}

.coming-soon-content h2 {
  text-transform: uppercase;
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 25px;
}

.coming-soon-content h2 span {
  font-weight: 800;
}

#countdown {
  margin-top: 50px;
  margin-bottom: 60px;
}

#countdown ul li {
  margin-right: 65px;
  font-weight: 600;
  min-width: 55px;
}

#countdown ul li:last-child {
  margin-right: 0;
}

#countdown ul li p {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: -5px;
}

#countdown ul li span {
  font-size: 45px;
  font-weight: 800;
}

.coming-soon a {
  font-weight: 700;
  color: var(--light-color);
}

.coming-soon a:hover {
  color: var(--secondary-color);
}

.coming-soon .socials {
  margin-bottom: 50px;
}

.coming-soon .socials ul li {
  margin: 0 10px;
}

.coming-soon .socials ul li a {
  font-size: 18px;
}

.coming-soon .copyright a {
  padding: 0 5px;
}

.error-page {
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--light-color);
  padding: 120px 0;
}

.error-page-content {
  color: #676666;
  max-width: 480px;
  margin-top: 30px;
  display: inline-block;
}

.error-page-content img {
  display: inline-block;
  margin-bottom: 35px;
}

.error-page-content h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 0;
  color: #ed1c24;
}

.error-page-content h2 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 800;
  margin-top: 0;
}

.error-page-content .btn.btn-primary {
  margin-top: 35px;
  text-transform: uppercase;
  background-color: #ed1c24;
}

ul.list-inline li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

ul.list-inline li:first-child {
  padding-left: 1px;
}

.navbar {
  padding: 0;
}

textarea.form-control {
  resize: none;
}

.contact-form textarea.form-control {
  height: 210px;
}

.checkbox label {
  cursor: pointer;
}

.style-chooser {
  width: 100px;
  left: -100px;
  position: fixed;
  top: 50%;
  margin-top: -90px;
  z-index: 9999;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.style-chooser.opened {
  left: 0;
}

.style-chooser .toggler {
  position: absolute;
  top: 0;
  right: -48px;
  display: inline-block;
  background-color: #ddd;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 24px;
  color: #333;
}

.style-chooser-inner {
  position: relative;
  background-color: #ddd;
  padding: 15px;
}

.style-chooser-inner h4 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 13px;
  color: #333;
}

.style-chooser-inner ul {
  list-style: none;
  padding: 0;
  margin: -5px;
}

.style-chooser-inner ul li {
  display: block;
  width: 40px;
  float: left;
  padding: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.style-chooser-inner ul li a {
  display: block;
  height: 30px;
}

.style-chooser-inner ul li.preset1 a {
  background-color: var(--primary-color);
}

.style-chooser-inner ul li.preset2 a {
  background-color: var(--border-color-1);
}

.style-chooser-inner ul li.preset3 a {
  background-color: #00aeef;
}

.style-chooser-inner ul li.preset4 a {
  background-color: #39b54a;
}

.style-chooser-inner ul li.preset5 a {
  background-color: #c69c6d;
}

.style-chooser-inner ul li.preset6 a {
  background-color: #96004c;
}

.navbar-toggler {
  position: absolute;
  top: 19px;
  right: 15px;
  color: var(--light-color);
  padding: 5px 8px;
  text-align: center;
  border: 1px solid var(--light-color);
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler-icon {
  width: inherit;
  height: inherit;
  line-height: 0;
}

.navbar.fixed-top .navbar-toggler {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.fixed-top .top-bar .login-section a:hover {
  color: var(--light-color);
}

.entry-content .entry-thumb img,
#all-architect .architect img,
.feature-image img,
.team-hero img {
  width: 100%;
}

#clients {
  overflow: hidden;
}

#all-architect .architect {
  margin-top: 15px;
  margin-bottom: 15px;
}

#project-carousel img {
  width: 100%;
}

ul.b {
  list-style-type: square;
}

div.transbox {
  margin: 10px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  opacity: 0.7;
}

div.transbox p {
  margin: 2%;
  font-weight: 700;
  color: black;
}

.other-feature ul {
  list-style-type: square;
  margin-left: 15px;
}

.isoImage {
  aspect-ratio: 1/1;
  width: 60px;
}
