/*==============================================
GENERAL
================================================*/

a {
  text-decoration: none !important;
}

p {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 24px;
}

ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  color: #666;
  text-rendering: optimizeLegibility;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  border: 0;
  max-width: 100%;
}

html {
  -ms-overflow-style: scrollbar;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.preloader {
  background: #fdad54;
  /* FF3.6-15 */
  background: #fdad54;
  /* Chrome10-25,Safari5.1-6 */
  background: #fdad54;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: #fdad54;
  /* IE6-9 */
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999999;
  text-align: center;
}

.preloader-bounce {
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}

.preloader-bounce>span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0.3em;
  display: inline-block;
  vertical-align: middle;
  -webkit-animation: bounce 0.6s infinite alternate;
  animation: bounce 0.6s infinite alternate;
  background: #fff;
}

.preloader-bounce>span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  background: #fff;
}

.preloader-bounce>span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  background: #fff;
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-1.2em);
    transform: translateY(-1.2em);
  }
}

@keyframes bounce {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-1.2em);
    transform: translateY(-1.2em);
  }
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading span {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1e1e1e;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
}

.section-heading h2 {
  font-size: 32px;
  line-height: 46px;
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: 600;
}

.home-section-heading {
  text-align: left;
}

.home-section-heading span {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1e1e1e;
  letter-spacing: 1px;
  margin-bottom: 30px;
  display: inline-block;
}

.home-section-heading h2 {
  font-size: 32px;
  line-height: 44px;
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: 600;
}

.home-section-heading h2 em {
  font-style: normal;
  color: #fdad54;
}

.home-section-heading p {
  margin: 30px 0px;
  color: #1e1e1e;
}

a.main-button {
  background-color: #fdad54;
  color: #1e1e1e;
  display: inline-block;
}

.button {
  --text: #1e1e1e;
  --background: #fdad54;
  --font-size: 14px;
  --duration: .32s;
  --move-hover: -4px;
  --font-shadow: var(--font-size);
  padding: 15px 30px;
  text-transform: uppercase;
  font-weight: 800;
  color: #1e1e1e;
  line-height: var(--font-size);
  display: block;
  outline: none;
  text-decoration: none;
  font-size: var(--font-size);
  letter-spacing: 1px;
  background: var(--background);
  color: var(--text);
  box-shadow: var(--shadow);
  -webkit-transform: translateY(var(--y));
  transform: translateY(var(--y));
  transition: box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
  transition: transform var(--duration) ease, box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
}

.button span {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 var(--text);
}

.button span i {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-style: normal;
  transition: -webkit-transform var(--duration) ease;
  transition: transform var(--duration) ease;
  transition: transform var(--duration) ease, -webkit-transform var(--duration) ease;
  -webkit-transform: translateY(var(--m));
  transform: translateY(var(--m));
}

.button span i:nth-child(1) {
  transition-delay: 0.05s;
}

.button span i:nth-child(2) {
  transition-delay: 0.1s;
}

.button span i:nth-child(3) {
  transition-delay: 0.15s;
}

.button span i:nth-child(4) {
  transition-delay: 0.2s;
}

.button span i:nth-child(5) {
  transition-delay: 0.25s;
  margin-right: 5px;
}

.button span i:nth-child(6) {
  transition-delay: 0.3s;
}

.button span i:nth-child(7) {
  transition-delay: 0.35s;
}

.button span i:nth-child(8) {
  transition-delay: 0.4s;
}

.button span i:nth-child(9) {
  transition-delay: 0.45s;
}

.button span i:nth-child(10) {
  transition-delay: 0.5s;
}

.button span i:nth-child(11) {
  transition-delay: 0.55s;
}

.button span i:nth-child(12) {
  transition-delay: 0.60s;
}

.button:hover i {
  --m: calc(var(--font-size) * -1);
}

.button.reverse {
  --font-shadow: calc(var(--font-size) * -1);
}

.button.reverse:hover i {
  --m: calc(var(--font-size));
}



/*==============================================
HEADER
================================================*/

.background-header {
  background-color: #fff;
  height: 80px !important;
  position: fixed !important;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #1e1e1e !important;
}

.background-header .main-nav .nav li:hover a {
  color: #fdad54 !important;
}

.background-header .nav li a.active {
  color: #fdad54 !important;
}

.header-area {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 100px;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}


.header-area .main-nav .nav {
  float: right;
  margin-top: 27px;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 20px;
  padding-right: 20px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: #1e1e1e;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #fdad54 !important;
  opacity: 0.5;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #fdad54 !important;
  opacity: 1;
}

.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 35px;
}

.header-area .main-nav .nav li.submenu:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #1e1e1e;
  position: absolute;
  right: 18px;
  top: 12px;
  transition: all 0.3s;
}

.header-area .main-nav .nav li.submenu:hover::after {
  color: #fdad54;
}

.background-header .main-nav .nav li.submenu:after {
  color: #7a7a7a;
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 40px;
  opacity: 0;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.submenu ul li a {
  opacity: 1;
  display: block;
  background: #fff;
  color: #7a7a7a !important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  border-bottom: 1px solid #f5f5f5;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
  background: #fff;
  color: #fdad54 !important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area.header-sticky .nav {
  margin-top: 20px !important;
}

.header-area.header-sticky .nav li a.active {
  color: #fdad54;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-area .main-nav .logo {
    color: #1e1e1e;
  }

  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #fdad54 !important;
    opacity: 1;
  }

  .header-area {
    background-color: #fff;
    padding: 0px 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }

  .header-area .container {
    padding: 0px;
  }

  .header-area .logo {
    margin-left: 30px;
  }

  .header-area .menu-trigger {
    display: block !important;
  }

  .header-area .main-nav {
    overflow: hidden;
  }

  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }

  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }

  .header-area.header-sticky .nav {
    margin-top: 80px !important;
  }

  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #fff !important;
    color: #191a20 !important;
  }

  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #fdad54 !important;
  }

  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }

  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }

  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }

  .header-area .main-nav .nav li.submenu ul.active {
    height: auto !important;
  }

  .header-area .main-nav .nav li.submenu:after {
    color: #3B566E;
    right: 25px;
    font-size: 14px;
    top: 15px;
  }

  .header-area .main-nav .nav li.submenu:hover ul,
  .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 767px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}



/*==============================================
PAGE HEADING
================================================*/

.page-heading {
  background-color: #f7f7f7;
  text-align: center;
  margin-bottom: 30px;
}

.page-heading {
  position: relative;
  padding: 180px 0px 0px 0px;
}

.page-heading span {
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 50px;
}

.page-heading span a {
  color: #1e1e1e;
  margin-right: 5px;
}

.page-heading span em {
  font-style: normal;
  color: #fdad54;
  margin-left: 5px;
}

.page-heading h1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1e1e1e;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  background-color: #f4a261;
  display: inline-block;
  padding: 20px 40px;
  text-transform: uppercase;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%);
}



/*==============================================
MAIN BANNER
================================================*/

.main-banner {
  padding: 300px 0px 300px 0px;
  text-align: center;
  position: relative;
  background-color: #f7f7f7;
}

.main-banner .decoration {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}

.main-banner .decoration img {
  max-width: 100%;
  overflow: hidden;
}

.welcome-box {
  position: relative;
  z-index: 10;
}

.welcome-box p {
  max-width: 620px;
  width: 100%;
  margin: 0 auto 30px;
  color: #1e1e1e;
  font-size: 20px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.welcome-box p em {
  font-style: normal;
  background: #fdad54;
  padding: 0px 5px;
}

.welcome-box h1 {
  height: 130px;
  line-height: 130px;
  display: inline-block;
  font-weight: 700;
  font-size: 92px;
  color: #1e1e1e;
  background: #fdad54;
  display: inline-block;
  text-transform: capitalize;
  margin-bottom: 30px;
  letter-spacing: 4px;
  padding: 5px 15px;
}

.welcome-title span {
  font-size: 36px;
  display: block;
  font-weight: 400;
  line-height: 1.2;
}

.welcome-box .btn {
  margin-top: 10px;
}

.next-section {
  bottom: -80px;
  cursor: pointer;
}



/*==============================================
GET TO KNOW US
================================================*/

.get-to-know {
  padding: 120px 0px;
  position: relative;
}

.get-to-know .decoration-square img {
  position: absolute;
  right: 20%;
  top: 25%;
  opacity: 0.5;
}

.get-to-know .home-section-heading span {
  color: #fdad54;
}

.get-to-know .left-button {
  margin-top: 45px;
}

.get-to-know .right-content {
  margin-left: 30px;
  position: relative;
}

.get-to-know .right-content h2 {
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 25px;
  z-index: 2;
}

.get-to-know .right-content img {
  max-width: 100%;
  overflow: hidden;
}



/*==============================================
GET TO KNOW WHAT WE DO
================================================*/

.get-to-know-what-we-do {
  padding: 120px 0px 90px 0px;
  position: relative;
  background-color: #f7f7f7;
}

.get-to-know-what-we-do .home-section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.get-to-know-what-we-do .home-section-heading span {
  color: #fdad54;
}

.get-to-know-what-we-do .service-item {
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-left: 5px solid #fdad54;
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.get-to-know-what-we-do .service-item h4 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1e1e1e;
  letter-spacing: 0.5px;
}

.get-to-know-what-we-do .service-item .dev {
  width: 80px;
  height: 3px;
  background-color: #fdad54;
  margin: 40px auto;
}

.get-to-know-what-we-do .service-item i {
  color: #1e1e1e;
  font-size: 64px;
}

.get-to-know-what-we-do .service-item .hover-effect {
  position: absolute;
  background-color: #fdad54;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.get-to-know-what-we-do .service-item:hover .hover-effect {
  opacity: 1;
  visibility: visible;
}

.get-to-know-what-we-do .service-item .hover-effect p {
  color: #1e1e1e;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 40px;
}



/*==============================================
PURCHASE ROSALEDA
================================================*/

.purchase-rosaleda {
  padding: 120px 0px;
  position: relative;
}

.purchase-rosaleda .home-section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.purchase-rosaleda .home-section-heading span {
  color: #fdad54;
}

.purchase-rosaleda img {
  max-width: 100%;
  overflow: hidden;
}

.purchase-rosaleda .center-button {
  text-align: center;
  margin-top: 60px;
}

.purchase-rosaleda ul li {
  display: block;
  font-size: 19px;
  color: #1e1e1e;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.purchase-rosaleda ul li span {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #fdad54;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  margin-right: 15px;
  font-size: 17px;
  font-weight: 600;
}



/*==============================================
OUR PORTFOLIO
================================================*/

.our-portfolio {
  padding: 120px 0px;
  position: relative;
  background-color: #f7f7f7;
}

.our-portfolio .home-section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.our-portfolio .home-section-heading span {
  color: #fdad54;
}

.our-portfolio .col-md-12 {
  padding: 0px;
}

.project-item {
  text-align: center;
  opacity: 1 !important;
}

.project-item img {
  width: 100%;
  overflow: hidden;
  z-index: 9;
}

.project-item .thumb {
  position: relative;
}

.project-item .hover-effect {
  opacity: 0;
  visibility: hidden;
  background-color: rgba(253, 173, 84, 0.90);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.5s;
  cursor: pointer;
}

.project-item:hover .hover-effect {
  opacity: 1;
  visibility: visible;
}

.project-item:hover .hover-effect .hover-content {
  -webkit-transform: translateY(35%);
  -ms-transform: translateY(35%);
  transform: translateY(35%);
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.project-item .hover-effect .hover-content {
  position: absolute;
  text-align: center;
  height: 100%;
  width: 100%;
}

.project-item .hover-effect h4 {
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  color: #1e1e1e;
}

.project-item .hover-effect span {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-size: 16px;
  color: #1e1e1e;
  display: inline-block;
}

.project-item .hover-effect i {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #1e1e1e;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #fdad54;
  margin: 20px auto 0px auto;
  transition: all 0.5s;
}

.project-item .hover-effect i:hover {
  background-color: #fff;
}



/*==============================================
HOME FACTS
================================================*/

.home-facts {
  background-color: #1e1e1e !important;
}

.home-facts .counter-box {
  background-color: rgba(250, 250, 250, 0.05);
  border-radius: 15px;
  padding: 15px 30px 30px 30px;
}

.home-facts .counter-box span {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.home-facts .counter-box em {
  font-style: normal;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.home-facts .counter-box span:after {
  width: 100%;
  height: 3px;
  background-color: #fdad54;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
}

.count-number,
.counted {
  display: block;
}

.fact-item {
  text-align: center;
}


/*==============================================
FREQUENTLY ASKED
================================================*/

.frequently-asked {
  padding: 120px 0px;
  position: relative;
}

.frequently-asked .decoration-square img {
  position: absolute;
  left: 35%;
  top: 35%;
  opacity: 0.5;
}

.frequently-asked .home-section-heading span {
  color: #fdad54;
}

.frequently-asked .accordion {
  margin-left: 45px;
}

.frequently-asked .accordion li {
  border: 1px solid #eee;
  margin-bottom: 15px;
  padding: 5px 20px;
  position: relative;
}

.frequently-asked .accordion li .content {
  display: none;
  color: #4a4a4a;
}

.frequently-asked .accordion li .content img {
  max-width: 100%;
  overflow: hidden;
  display: inline-block;
  float: left;
  margin: 0px 30px 0px 0px;
}

.frequently-asked .accordion li .content p {
  display: inline-block;
}

.frequently-asked .accordion a {
  width: 100%;
  display: block;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1e1e1e;
  user-select: none;
  text-transform: uppercase;
  padding: 15px 0px;
  transition: all 0.3s;
}

.frequently-asked .accordion a:after {
  width: 8px;
  height: 8px;
  border-right: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  position: absolute;
  right: 20px;
  content: " ";
  top: 28px;
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.frequently-asked .accordion .content {
  padding: 0px 0px 30px 0px;
}

.frequently-asked a.active,
.frequently-asked .accordion a:hover,
.frequently-asked a:hover::after {
  color: #fdad54 !important;
}

.frequently-asked a.active:after {
  border-right: 1px solid #fdad54 !important;
  border-bottom: 1px solid #fdad54 !important;
  transform: rotate(45deg) !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}



/*==============================================
WHY CHOOSE US
================================================*/

.why-choose-us {
  margin: 120px 0px;
}

.why-choose-us .section-heading {
  text-align: center;
}

.why-choose-us .section-heading span {
  color: #fdad54;
}

.why-choose-us .feature-item {
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-left: 5px solid #fdad54;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.why-choose-us .feature-item h4 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1e1e1e;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.why-choose-us .feature-item span {
  position: absolute;
  font-size: 60px;
  color: #fdad54;
  opacity: 0.25;
  right: 35px;
  top: 0;
  font-weight: 500;
  transition: all 0.3s;
}

.why-choose-us .feature-item:hover {
  background-color: #fdad54;
}

.why-choose-us .feature-item:hover span {
  color: #fff;
}

.why-choose-us .feature-item:hover p {
  color: #1e1e1e;
}

/*==============================================
WHO WE ARE
================================================*/

.who-we-are {
  background-color: #f7f7f7;
  padding: 120px 0px;
  position: relative;
}

.who-we-are .decoration-square img {
  position: absolute;
  right: 20%;
  top: 25%;
  opacity: 0.5;
}

.who-we-are .section-heading {
  text-align: center;
}

.who-we-are .section-heading span {
  color: #fdad54;
}

.who-we-are .left-image {
  margin-right: 30px;
}

.who-we-are .left-image img {
  max-width: 100%;
  overflow: hidden;
}

.who-we-are .right-content {
  margin-left: 30px;
  position: relative;
}

.who-we-are .right-content h2 {
  color: #1e1e1e;
  font-size: 24px;
  text-transform: uppercase;
  ;
  empty-cells: 0.5px;
  font-weight: 700;
  margin-bottom: 25px;
  z-index: 2;
}

.who-we-are .right-content p {
  margin-bottom: 40px;
}

.who-we-are .right-content ul li {
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 500;
  color: #1e1e1e;
}

.who-we-are .right-content ul li i {
  width: 20px;
  height: 20px;
  background-color: #fdad54;
  color: #1e1e1e;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 20px;
  margin-right: 10px;
}

.who-we-are .right-content .main-button {
  margin-top: 35px;
}



/*==============================================
OUR HISTORY
================================================*/

.our-history {
  padding: 120px 0px;
}

.our-history .section-heading {
  text-align: center;
}

.our-history .section-heading span {
  color: #fdad54;
}

.timeline ul {
  padding: 50px 0;
}

.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 1px;
  margin: 0 auto;
  padding-bottom: 60px;
  background: #eee;
}

.timeline ul li:last-child {
  padding-bottom: 0px;
}

.timeline ul li::after {
  content: '\f0eb';
  font-family: 'FontAwesome';
  text-align: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  font-size: 22px;
  line-height: 50px;
  color: #fff;
  border-radius: 50%;
  background-color: #fdad54 !important;
}

.timeline ul li .content {
  position: relative;
  bottom: 0;
  width: 520px;
  padding: 30px;
  background: #fdad54;
}

.timeline ul li .content::before {
  content: '';
  position: absolute;
  top: 15px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline ul li .content .image img {
  margin-top: 30px;
  max-width: 100%;
  overflow: hidden;
}

.timeline ul li:nth-child(odd) .content {
  left: 50px;
}

.timeline ul li:nth-child(odd) .content::before {
  left: -15px;
  border-width: 12px 16px 12px 0;
  border-color: transparent #fdad54 transparent transparent;
}

.timeline ul li:nth-child(even) .content {
  left: -590px;
}

.timeline ul li:nth-child(even) .content::before {
  right: -15px;
  border-width: 12px 0 12px 16px;
  border-color: transparent transparent transparent #fdad54;
}

.time {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.timeline ul li::after {
  transition: background .5s ease-in-out;
}

.timeline ul li.in-view::after {
  background: #F45B69;
}

.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all .5s ease-in-out;
}

.timeline ul li:nth-child(odd) div {
  transform: translate3d(200px, 0, 0);
}

.timeline ul li:nth-child(even) div {
  transform: translate3d(-200px, 0, 0);
}

.timeline ul li.in-view div {
  color: #1e1e1e;
  transform: none;
  visibility: visible;
  opacity: 1;
}


@media screen and (max-width: 900px) {
  .timeline ul li div {
    width: 250px;
  }

  .timeline ul li:nth-child(even) div {
    left: -289px;
    /*250+45-6*/
  }
}

@media screen and (max-width: 600px) {
  .timeline ul li {
    margin-left: 20px;
  }

  .timeline ul li div {
    width: calc(100vw - 91px);
  }

  .timeline ul li:nth-child(even) div {
    left: 45px;
  }

  .timeline ul li:nth-child(even) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #F45B69 transparent transparent;
  }
}



/*==============================================
ABOUT TESTIMONIALS
================================================*/

.about-page-testimonials {
  padding: 120px 0px;
  background-color: #f7f7f7;
}

.about-page-testimonials .section-heading {
  text-align: center;
}

.about-page-testimonials .section-heading span {
  color: #fdad54;
}

.about-item {
  text-align: center;
  background-color: #fff;
  padding: 60px 30px 30px 30px;
  position: relative;
  margin-top: 42px;
}

.about-page-testimonials .author-member img {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 84px;
  border-radius: 50%;
  margin: 0px auto 40px auto;
}

.about-page-testimonials .background-image img {
  position: absolute;
  max-width: 100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.75;
}

.about-page-testimonials h4 {
  margin-top: 20px;
  font-size: 24px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #1e1e1e;
}

.about-page-testimonials span {
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fdad54;
}

.about-list .owl-nav {
  display: none;
}



/*==============================================
HAPPY CLIENTS
================================================*/

.happy-clients {
  padding: 120px 0px;
}

.happy-clients .section-heading {
  text-align: center;
}

.happy-clients .section-heading span {
  color: #fdad54;
}

.happy-clients .client-item img {
  max-width: 60%;
  overflow: hidden;
  opacity: 1;
  cursor: pointer;
  transition: all 0.5s;
}

.happy-clients .client-item img:hover {
  opacity: 0.5;
}

.happy-clients .client-item {
  text-align: center;
  width: 100%;
  height: 170px;
  line-height: 170px;
  display: inline-block;
}

.happy-clients .right {
  border-right: 1px solid #eee;
  padding-right: 30px;
}

.happy-clients .bottom {
  border-bottom: 1px solid #eee;
}



/*==============================================
SUBSCRIBE FORM
================================================*/

.subscribe-content {
  background-color: #fdad54;
  border-radius: 10px;
  padding: 60px;
  margin-bottom: -85px;
}

.subscribe-content h2 {
  margin-top: 12px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1e1e1e;
}

.subscribe-content form {
  position: relative;
}

.subscribe-content form input {
  width: 100%;
  height: 50px;
  outline: none;
  border: none;
  padding: 0px 15px;
  line-height: 50px;
}

.subscribe-content form .btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #1e1e1e;
  color: #fff;
  display: inline-block;
  width: 50px;
  height: 50px;
  padding: 0px;
  text-align: center;
  line-height: 36px;
}



/*==============================================
WHAT WE OFFER
================================================*/

.what-we-offer {
  margin: 120px 0px 90px 0px;
}

.what-we-offer .section-heading {
  text-align: center;
}

.what-we-offer .section-heading span {
  color: #fdad54;
}

.what-we-offer .service-item {
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-left: 5px solid #fdad54;
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.what-we-offer .service-item h4 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1e1e1e;
  letter-spacing: 0.5px;
}

.what-we-offer .service-item .dev {
  width: 80px;
  height: 3px;
  background-color: #fdad54;
  margin: 40px auto;
}

.what-we-offer .service-item i {
  color: #1e1e1e;
  font-size: 64px;
}

.what-we-offer .service-item .hover-effect {
  position: absolute;
  background-color: #fdad54;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.what-we-offer .service-item:hover .hover-effect {
  opacity: 1;
  visibility: visible;
}

.what-we-offer .service-item .hover-effect p {
  color: #1e1e1e;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 40px;
}




/*==============================================
FUN FACTS
================================================*/

.fun-facts {
  padding: 120px 0px;
  background-color: #f7f7f7;
}

.counter-box span {
  font-size: 48px;
  color: #1e1e1e;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.counter-box em {
  font-style: normal;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: 600;
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.counter-box span:after {
  width: 100%;
  height: 3px;
  background-color: #fdad54;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
}

.count-number,
.counted {
  display: block;
}

.fact-item {
  text-align: center;
}



/*==============================================
PRICING TABLES
================================================*/

.pricing-tables {
  margin: 120px 0px 90px 0px;
}

.pricing-tables .section-heading {
  text-align: center;
}

.pricing-tables .section-heading span {
  color: #fdad54;
}

.pricing-item {
  margin-bottom: 30px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.5s;
}

.pricing-item:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
}

.pricing-item:hover h4 {
  padding: 30px 0px;
}

.pricing-item h4 {
  font-size: 16px;
  color: #1e1e1e;
  letter-spacing: 0.5px;
  padding: 20px 0px;
  transition: all 0.5s;
}

.pricing-item .price {
  background-color: #fdad54;
  padding: 30px 20px;
}

.pricing-item .price span {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  display: block;
  margin-bottom: 15px;
}

.pricing-item .price h6 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}

.pricing-item .price em {
  font-style: normal;
  font-size: 18px;
  font-weight: 500;
}

.pricing-item ul li {
  display: block;
  padding: 15px 0px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: #1e1e1e;
  font-weight: 500;
}

.pricing-item ul li.dissabled {
  color: #aaa;
  text-decoration: line-through;
}

.pricing-item .main-button {
  margin: 30px 0px;
}



/*==============================================
OUR TEAM
================================================*/

.our-team {
  margin: 120px 0px 90px 0px;
}

.our-team .section-heading {
  text-align: center;
}

.our-team .section-heading span {
  color: #fdad54;
}

.team-member {
  margin-bottom: 30px;
}

.team-member img {
  width: 100%;
  overflow: hidden;
  z-index: 9;
}

.team-member .thumb {
  position: relative;
}

.team-member .hover-effect {
  text-align: center;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(250, 250, 250, 0.95);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.5s;
  cursor: pointer;
}

.team-member:hover .hover-effect {
  opacity: 1;
  visibility: visible;
}

.team-member .hover-effect .hover-content {
  position: absolute;
  width: 100%;
  padding: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team-member .hover-effect .hover-content p {
  margin-bottom: 30px;
}

.team-member .down-content {
  text-align: center;
  background-color: #f7f7f7;
  padding: 30px 0px;
}

.team-member .down-content h4 {
  font-size: 24px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #1e1e1e;
}

.team-member .down-content span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fdad54;
  text-transform: uppercase;
  display: inline-block;
}

.team-member .hover-effect ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.team-member .hover-effect ul li {
  display: inline-block;
  margin: 0px 5px;
}

.team-member .hover-effect ul li a {
  color: #fff;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #1e1e1e;
  border-radius: 50%;
  transition: all 0.3s;
  font-size: 16px;
}

.team-member .hover-effect ul li a:hover {
  color: #fff;
  background-color: #fdad54;
}

.team-member .hover-effect .hover-content .go-single {
  margin-top: 30px;
}

.team-member .hover-effect .hover-content .go-single a {
  font-size: 15px;
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.team-member .hover-effect .hover-content .go-single a:hover {
  color: #fdad54;
  letter-spacing: 1px;
}



/*==============================================
SINGLE MEMBER
================================================*/

.single-member {
  margin: 120px 0px 30px 0px;
}

.single-member img {
  width: 100%;
  overflow: hidden;
}

.single-member h4 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1e1e1e;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.single-member span {
  text-transform: uppercase;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 30px;
}

.single-member span em {
  font-style: normal;
  color: #fdad54;
}

.single-member p {
  margin-bottom: 40px;
}

.single-member ul li {
  display: block;
  margin-bottom: 13px;
  padding-bottom: 13px;
  border-bottom: 1px dotted #ddd;
}

.single-member ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.single-member ul li span {
  display: inline-block;
  margin-bottom: 0px;
  margin-right: 10px;
  font-weight: 600;
  color: #1e1e1e;
  text-transform: capitalize;
  font-size: 16px;
  letter-spacing: 0px;
}

.my-skills {
  margin-top: 115px;
}

.my-skills .skill-item {
  margin-bottom: 90px;
  display: inline-block;
  width: 100%;
  position: relative;
}

.my-skills span {
  display: inline-block;
  width: 50px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background-color: #fdad54;
  color: #1e1e1e;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  right: 0;
  top: -42px;
  position: absolute;
  z-index: 99;
}

.my-skills span:after {
  left: 50%;
  transform: translate(-50%);
  border-width: 6px 6px 0px 6px;
  border-color: #fdad54 transparent transparent transparent;
  content: '';
  position: absolute;
  bottom: -6px;
  width: 0;
  height: 0;
  border-style: solid;
}

.my-skills h6 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1e1e1e;
  text-align: left;
  position: absolute;
  top: -35px;
  left: 70px;
}

.my-skills .skill-item i {
  font-size: 44px;
  top: -33px;
  position: absolute;
}

.skill-bar {
  margin-left: 70px;
  width: 85%;
  height: 6px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.25);
  position: relative;
}

.filled-bar {
  position: absolute;
  z-index: 99;
  height: 6px;
  background-color: #fdad54;
  border-radius: 3px;
}

.filled-bar-1 {
  width: 90%;
}

.filled-bar-2 {
  width: 85%;
}

.filled-bar-3 {
  width: 80%;
}

.filled-bar-4 {
  width: 70%;
}



/*==============================================
CONTACT US
================================================*/

.contact-us {
  margin: 120px 0px;
}

.contact-us .left-info ul li {
  display: block;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
  margin-bottom: 30px;
  padding: 33px;
}

.contact-us .left-info ul li:last-child {
  margin-bottom: 0px;
}

.contact-us .left-info ul li i {
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  background-color: #fdad54;
  color: #1e1e1e;
  border-radius: 50%;
  font-size: 28px;
  margin-right: 20px;
  float: left;
}

.contact-us .left-info ul li h6 {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #1e1e1e;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.contact-us .left-info ul li span {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}


.contact-us #ajax-contact {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
  padding: 40px;
}

::-webkit-input-placeholder {
  color: #1e1e1e !important;
  opacity: 1;
}

::-moz-placeholder {
  color: #1e1e1e !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #1e1e1e !important;
  opacity: 1;
}

:-moz-placeholder {
  color: #1e1e1e !important;
  opacity: 1;
}

.contact-us .input-field {
  margin-bottom: 15px;
}

.contact-us .form-control {
  padding: 0px;
  height: 50px;
  color: #1e1e1e;
  border: none;
  border-bottom: 1px solid #1e1e1e;
  background-color: transparent;
  border-radius: 0px;
  font-size: 14px;
  margin-bottom: 30px;
}

.contact-us .form-control:focus {
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid #fdad54;
  background-color: transparent;
}

.contact-us .index .form-control.form-control-dark {
  background: rgba(250, 250, 250, 0.75);
  color: #fff;
}

.contact-us .index .form-control.form-control-dark:focus {
  background: rgba(54, 40, 158, 0.85);
  color: #fff;
}

.contact-us .index .form-control.form-control-dark::-webkit-input-placeholder {
  color: #fff !important;
}

.contact-us .index .form-control.form-control-dark::-moz-placeholder {
  color: #fff !important;
}

.contact-us .index .form-control.form-control-dark:-ms-input-placeholder {
  color: #fff !important;
}

.contact-us .index .form-control.form-control-dark:-moz-placeholder {
  color: #fff !important;
}

.contact-us .form-control.form-control-dark:focus {
  background: rgba(0, 0, 0, 0.2);
}

.contact-us .form-control.form-control-dark {
  background: rgba(0, 0, 0, 0.1);
  color: #222;
  border: none;
}

.contact-us .form-control.form-control-dark::-webkit-input-placeholder {
  color: #222 !important;
  opacity: 0.7;
}

.contact-us .form-control.form-control-dark::-moz-placeholder {
  color: #222 !important;
  opacity: 0.7;
}

.contact-us .form-control.form-control-dark:-ms-input-placeholder {
  color: #222 !important;
  opacity: 0.7;
}

.contact-us .form-control.form-control-dark:-moz-placeholder {
  color: #222 !important;
  opacity: 0.7;
}

.contact-us textarea.form-control {
  height: 123px;
  padding-top: 15px;
}

button.button {
  border: none;
  outline: none;
  cursor: pointer;
}

.google-map {
  background-color: #f7f7f7;
  padding: 120px 0px 205px 0px;
  margin-bottom: -85px;
}



/*==============================================
FAQs
================================================*/

.faqs-content {
  margin: 120px 0px;
}

.faqs-content .accordion {
  margin-right: 45px;
}

.faqs-content .accordion li {
  border-bottom: 1px dotted #ddd;
  position: relative;
}

.faqs-content .accordion li .content {
  display: none;
  color: #4a4a4a;
}

.faqs-content .accordion li .content img {
  max-width: 100%;
  overflow: hidden;
  display: inline-block;
  float: left;
  margin: 0px 30px 0px 0px;
}

.faqs-content .accordion li .content p {
  display: inline-block;
}

.faqs-content .accordion a {
  width: 100%;
  display: block;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1e1e1e;
  user-select: none;
  text-transform: uppercase;
  padding: 15px 0px;
  transition: all 0.3s;
}

.faqs-content .accordion a:after {
  width: 8px;
  height: 8px;
  border-right: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  position: absolute;
  right: 10px;
  content: " ";
  top: 22px;
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.faqs-content .accordion .content {
  padding: 0px 0px 30px 0px;
}

.faqs-content a.active,
.faqs-content .accordion a:hover,
.faqs-content a:hover::after {
  color: #fdad54 !important;
}

.faqs-content a.active:after {
  border-right: 1px solid #fdad54 !important;
  border-bottom: 1px solid #fdad54 !important;
  transform: rotate(45deg) !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}



/*==============================================
SIDEBAR
================================================*/

.side-bar .side-bar-item {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.side-bar .side-bar-item .side-bar-heading h2 {
  color: #1e1e1e !important;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.side-bar .search-item #suggestion_form {
  position: relative;
}

.side-bar .search-item .searchText {
  width: 100%;
  height: 50px;
  padding: 0px 15px;
  border: 1px solid #eee;
  outline: none;
  color: #4a4a4a;
  font-size: 15px;
}

.side-bar .search-item .search-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: #1e1e1e;
  outline: none;
  border: none;
  cursor: pointer;
}

.side-bar .search-item .search-button i {
  color: #fff;
}

.side-bar .categories ul li {
  display: block;
  margin-bottom: 15px;
}

.side-bar .categories ul li:last-child {
  margin-bottom: 0px;
}

.side-bar .categories ul li a i {
  font-size: 15px;
  margin-right: 5px;
  transition: all 0.3s;
}

.side-bar .categories ul li a {
  font-size: 15px;
  color: #1e1e1e;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.side-bar .categories ul li a:hover {
  color: #fdad54;
}

.side-bar .categories ul li a:hover i {
  margin-right: 10px;
  color: #fdad54;
}

.side-bar .recent-posts ul li {
  display: inline-block;
  margin-bottom: 25px;
}

.side-bar .recent-posts ul li:last-child {
  margin-bottom: 0;
}

.side-bar .recent-posts ul li img {
  float: left;
  max-width: 70px;
}

.side-bar .recent-posts ul li p,
.side-bar .recent-posts ul li span {
  margin-left: 95px;
}

.side-bar .recent-posts ul li p {
  margin-bottom: 0px;
  color: #4a4a4a;
}

.side-bar .recent-posts ul li span {
  display: block;
  margin-top: 7px;
  color: #fdad54;
  font-size: 12px;
}

.side-bar .recent-posts ul li span i {
  margin-right: 7px;
  display: inline-block;
  font-size: 14px;
}

.side-bar .partners ul li {
  display: inline-block;
  width: 40%;
  margin: 10px;
}

.side-bar .partners ul li img {
  max-width: 100%;
  overflow: hidden;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s;
}

.side-bar .partners ul li img:hover {
  opacity: 0.5;
}

.side-bar .tags {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.side-bar .tags ul li {
  display: inline-block;
  margin-bottom: 7px;
  margin-right: 2px;
}

.side-bar .tags ul li a {
  background-color: #f7f7f7;
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
  display: inline-block;
  padding: 7px 8px;
  border-radius: 5px;
  transition: all 0.3s;
}

.side-bar .tags ul li a:hover {
  background-color: #fdad54;
  color: #1e1e1e;
}



/*==============================================
BLOG
================================================*/

.blog-content {
  margin: 120px 0px;
}

.blog-content .blog-posts {
  margin-right: 45px;
}

.blog-content .blog-posts .blog-post {
  margin-bottom: 45px;
}

.blog-content .blog-posts .blog-post .blog-thumb {
  position: relative;
}

.blog-content .blog-posts .blog-post .blog-thumbt img {
  max-width: 100%;
  overflow: hidden;
}

.blog-content .blog-posts .blog-post .blog-thumb span {
  position: absolute;
  background-color: #fdad54;
  text-transform: uppercase;
  color: #1e1e1e;
  z-index: 9;
  left: 50%;
  bottom: -21px;
  transform: translate(-50%);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.blog-content .blog-posts .blog-post h4 {
  margin-top: 50px;
  margin-bottom: 10px;
  line-height: 32px;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #1e1e1e;
}

.blog-content .blog-posts .blog-post ul li {
  display: inline-block;
  margin-right: 10px;
}

.blog-content .blog-posts .blog-post ul li:after {
  content: "/";
  color: #e7e7e7;
  margin-left: 10px;
}

.blog-content .blog-posts .blog-post ul li:last-child::after {
  content: '';
}

.blog-content .blog-posts .blog-post ul {
  padding-bottom: 15px;
  border-bottom: 1px dotted #e7e7e7;
}

.blog-content .blog-posts .blog-post ul li a {
  font-size: 13px;
  color: #7a7a7a;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.blog-content .blog-posts .blog-post ul li a:hover {
  color: #fdad54;
}

.blog-content .blog-posts .blog-post p {
  margin-top: 20px;
}

.blog-content .blog-posts .blog-post a.read-more {
  display: inline-block;
  margin-top: 0px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #1e1e1e;
  border: none;
  outline: none;
  transition: all 0.5s;
}

.blog-content .blog-posts .blog-post a.read-more:hover {
  letter-spacing: 2px;
  color: #fdad54;
}

.blog-content ul.blog-pagination {
  text-align: center;
  margin-top: 45px;
}

.blog-content ul.blog-pagination li {
  display: inline-block;
}

.blog-content ul.blog-pagination li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #f7f7f7;
  border-radius: 50%;
  color: #1e1e1e;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
}

.blog-content ul.blog-pagination li a:hover,
.blog-content ul.blog-pagination li.active a {
  background-color: #fdad54;
}



/*==============================================
SINGLE POST
================================================*/

.blog-content .blog-posts img {
  width: 100%;
  overflow: hidden;
}

.blog-content .blog-posts .blog-post blockquote {
  padding: 30px;
  font-size: 18px;
  color: #1e1e1e;
  line-height: 30px;
  font-weight: 500;
}

.blog-content .blog-posts .blog-post blockquote i {
  color: #e7e7e7;
  font-size: 36px;
  padding: 0px 15px;
}

.blog-content .comments,
.blog-content .write-comment {
  padding-top: 45px;
  border-top: 1px solid #eee;
}

.blog-content .comments .comment-heading h2,
.blog-content .write-comment .write-comment-heading h2 {
  color: #1e1e1e;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.blog-content .comments .comment-heading h2 em {
  font-style: normal;
  font-weight: 400;
}

.blog-content .comments ul.comment-list li {
  display: inline-block;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px dotted #e7e7e7;
}

.blog-content .comments ul.comment-list li.replied {
  margin-left: 95px;
}

.blog-content .comments ul.comment-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.blog-content .comments ul.comment-list li img {
  float: left;
  margin-right: 20px;
  max-width: 105px;
}

.blog-content .comments ul.comment-list li {
  position: relative;
}

.blog-content .comments ul.comment-list li a {
  position: absolute;
  background-color: #fdad54;
  color: #1e1e1e;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 25px;
  border-radius: 5px;
  right: 0;
  top: 0;
}

.blog-content .comments ul.comment-list li h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1e1e1e;
}

.blog-content .comments ul.comment-list li p {
  margin-top: 15px;
}

.blog-content .comments ul.comment-list li p,
.blog-content .comments ul.comment-list li span {
  margin-left: 125px;
}

.blog-content .comments ul.comment-list li span {
  display: block;
  margin-top: 7px;
  color: #fdad54;
  font-size: 12px;
}

.blog-content .comments ul.comment-list li span i {
  margin-right: 7px;
  display: inline-block;
  font-size: 14px;
}

.blog-content .write-comment {
  margin-top: 60px;
}

::-webkit-input-placeholder {
  color: #1e1e1e !important;
  opacity: 1;
}

::-moz-placeholder {
  color: #1e1e1e !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #1e1e1e !important;
  opacity: 1;
}

:-moz-placeholder {
  color: #1e1e1e !important;
  opacity: 1;
}

.blog-content .input-field {
  margin-bottom: 15px;
}

.blog-content .form-control {
  padding: 0px;
  height: 50px;
  color: #1e1e1e;
  border: none;
  border-bottom: 1px solid #1e1e1e;
  background-color: transparent;
  border-radius: 0px;
  font-size: 14px;
  margin-bottom: 30px;
}

.blog-content .form-control:focus {
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid #fdad54;
  background-color: transparent;
}

.blog-content .index .form-control.form-control-dark {
  background: rgba(250, 250, 250, 0.75);
  color: #fff;
}

.blog-content .index .form-control.form-control-dark:focus {
  background: rgba(54, 40, 158, 0.85);
  color: #fff;
}

.blog-content .index .form-control.form-control-dark::-webkit-input-placeholder {
  color: #fff !important;
}

.blog-content .index .form-control.form-control-dark::-moz-placeholder {
  color: #fff !important;
}

.blog-content .index .form-control.form-control-dark:-ms-input-placeholder {
  color: #fff !important;
}

.blog-content .index .form-control.form-control-dark:-moz-placeholder {
  color: #fff !important;
}

.blog-content .form-control.form-control-dark:focus {
  background: rgba(0, 0, 0, 0.2);
}

.blog-content .form-control.form-control-dark {
  background: rgba(0, 0, 0, 0.1);
  color: #222;
  border: none;
}

.blog-content .form-control.form-control-dark::-webkit-input-placeholder {
  color: #222 !important;
  opacity: 0.7;
}

.blog-content .form-control.form-control-dark::-moz-placeholder {
  color: #222 !important;
  opacity: 0.7;
}

.blog-content .form-control.form-control-dark:-ms-input-placeholder {
  color: #222 !important;
  opacity: 0.7;
}

.blog-content .form-control.form-control-dark:-moz-placeholder {
  color: #222 !important;
  opacity: 0.7;
}

.blog-content textarea.form-control {
  height: 123px;
  padding-top: 15px;
}



/*==============================================
PROJECTS
================================================*/

.projects-content {
  margin: 120px 0px 90px 0px;
}

.projects-content .filters {
  background-color: #f7f7f7;
  border: 1px solid #e7e7e7;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
}

.projects-content .col-md-8 {
  text-align: center;
}

.projects-content .filters ul {
  text-align: center;
}

.projects-content .filters ul li {
  list-style: none;
  margin: 0px -2px;
  display: inline-block;
  padding: 20px 30px;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #1e1e1e;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.projects-content .filters ul li.active {
  color: #1e1e1e !important;
  background-color: #fdad54;
  border-color: #fdad54;
}

.projects-content .filters ul li:hover {
  color: #fdad54;
}

.projects-content .filters-content {
  margin-top: 50px;
}

.projects-content .filters-content .show {
  opacity: 1;
  visibility: visible;
  transition: all 350ms;
}

.projects-content .filters-content .hide {
  opacity: 0;
  visibility: hidden;
  transition: all 350ms;
}

.projects-content .filters-content .all {
  margin-bottom: 30px;
}

.projects-content .filters-content .item {
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.projects-content .filters-content .item:hover {
  opacity: 0.75;
}

.projects-content .filters-content .item .p-inner {
  padding: 20px 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.projects-content .filters-content .item .p-inner h5 {
  font-size: 15px;
}

.projects-content .filters-content .item .p-inner .cat {
  font-size: 13px;
}

.projects-content .filters-content .item img {
  width: 100%;
}




/*==============================================
SINGLE PROJECT
================================================*/

.single-projects-content {
  margin: 120px 0px;
}

.single-projects-content .left-image,
.single-projects-content .right-image {
  margin-bottom: 60px;
}

.single-projects-content .center-image {
  margin-bottom: 30px;
}

.single-projects-content .left-image img,
.single-projects-content .right-image img,
.single-projects-content .center-image img {
  width: 100%;
  overflow: hidden;
}

.single-projects-content h4 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  color: #1e1e1e;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.single-projects-content p {
  margin-bottom: 30px;
}

.single-projects-content ul.project-info li {
  text-align: right;
  display: block;
  margin-bottom: 13px;
  padding-bottom: 13px;
  border-bottom: 1px dotted #ddd;
}

.single-projects-content ul.project-info li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.single-projects-content ul.project-info li span {
  float: left;
  display: inline-block;
  margin-bottom: 0px;
  margin-right: 10px;
  font-weight: 600;
  color: #1e1e1e;
  text-transform: capitalize;
  font-size: 16px;
  letter-spacing: 0px;
}

.single-projects-content ul.social-icons {
  margin-top: 30px;
  background-color: #f7f7f7;
  padding: 15px 20px;
}

.single-projects-content ul.social-icons li {
  display: inline-block;
  margin-right: 15px;
}

.single-projects-content ul.social-icons li:last-child {
  margin-right: 0px;
}

.single-projects-content ul.social-icons li a {
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 36px;
  border: 2px solid #1e1e1e;
  border-radius: 50%;
  color: #1e1e1e;
  transition: all 0.5s;
}

.single-projects-content ul.social-icons li a:hover {
  background-color: #fdad54;
  border-color: #fdad54;
}

ul.projects-pagination {
  margin-top: 30px;
  margin-bottom: 80px;
  padding: 30px 0px;
  border-top: 1px dotted #e7e7e7;
  border-bottom: 1px dotted #e7e7e7;
}

ul.projects-pagination li {
  display: inline-block;
}

ul.projects-pagination li:last-child {
  float: right;
}

ul.projects-pagination li a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: #1e1e1e;
  text-align: center;
  transition: all 0.3s;
}

ul.projects-pagination li a:hover {
  color: #fdad54;
}

ul.projects-pagination li:first-child a:hover i {
  margin-right: 10px;
  color: #fdad54;
}

ul.projects-pagination li:last-child a:hover i {
  margin-left: 10px;
  color: #fdad54;
}

ul.projects-pagination li a i {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.single-projects-content .owl-nav {
  display: none;
}

.single-projects-content .section-heading {
  text-align: center;
}

.single-projects-content .section-heading span {
  color: #fdad54;
}



/*==============================================
FOOTER
================================================*/

footer {
  background-color: #1e1e1e;
  padding: 165px 0px 80px 0px;
}

footer .footer-item .footer-logo img {
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

footer .footer-item h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  margin-bottom: 40px;
  padding-bottom: 15px;
  position: relative;
}

footer .footer-item h4:after {
  position: absolute;
  width: 45px;
  height: 4px;
  background-color: #fdad54;
  content: '';
  left: 0;
  bottom: 0;
}

footer .footer-item p {
  color: #fff;
}

.footer-item .useful-links ul li {
  display: inline-block;
  margin-bottom: 5px;
}

.footer-item .useful-links ul li:last-child {
  margin-bottom: 0px;
}

footer .useful-links ul li a {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  color: #fff;
  padding: 10px 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

footer .useful-links ul li a:hover {
  color: #fdad54;
  padding: 10px;
  background-color: rgba(250, 250, 250, 0.05);
}

footer .blog-entries ul li {
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2e2e2e;
}

footer .blog-entries ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

footer .blog-entries ul li img {
  float: left;
  max-width: 70px;
}

footer .blog-entries ul li p {
  font-size: 13px;
  margin-bottom: 0px;
}

footer .blog-entries ul li p,
footer .blog-entries ul li span {
  margin-left: 95px;
}

footer .blog-entries ul li span {
  display: block;
  margin-top: 7px;
  color: #fdad54;
  font-size: 12px;
}

footer .blog-entries ul li span i {
  margin-right: 7px;
  display: inline-block;
  font-size: 14px;
}

footer .latest-projects ul li {
  display: inline-block;
  margin-right: 0px;
  margin-bottom: 4px;
}

footer .latest-projects ul li img {
  max-width: 100%;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  max-width: 60px;
}

footer .latest-projects ul li img:hover {
  opacity: 0.75;
}

footer .under-footer {
  border-top: 1px solid #2e2e2e;
  margin-top: 80px;
  padding: 40px 0px 0px 0px;
}

footer .under-footer i {
  display: inline-block;
  float: left;
  font-size: 36px;
  color: #fdad54;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
}

footer .under-footer h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-left: 55px;
}

footer .under-footer span {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 5px;
}

.sub-footer {
  background-color: #0e0e0e;
  padding: 40px 0px;
}

.sub-footer p {
  margin-top: 8px;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.5px;
}

.sub-footer p a {
  color: #fdad54;
}

.sub-footer ul {
  float: right;
}

.sub-footer ul li {
  display: inline-block;
  margin-right: 10px;
}

.sub-footer ul li:last-child {
  margin-right: 0px;
}

.sub-footer ul li a {
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 36px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  transition: all 0.5s;
}

.sub-footer ul li a:hover {
  background-color: #fdad54;
  border-color: #fdad54;
}



/*===================================
RESPONSIVE 
===================================*/

@media only screen and (max-width: 1200px) {
  .welcome-box h1 {
    height: 100px;
    line-height: 100px;
    font-weight: 600;
    font-size: 56px;
    color: #1e1e1e;
    padding: 5px 30px;
  }

  .timeline ul li .content {
    width: 420px;
  }

  .timeline ul li:nth-child(even) .content {
    left: -470px;
  }
}

@media only screen and (max-width: 1000px) {
  .timeline ul li .content {
    width: 320px;
  }

  .timeline ul li:nth-child(even) .content {
    left: -370px;
  }
}

@media only screen and (max-width: 880px) {
  .welcome-box h1 {
    height: 80px;
    line-height: 80px;
    font-weight: 600;
    font-size: 36px;
    color: #1e1e1e;
    letter-spacing: 2px;
  }
}

@media only screen and (max-width: 767px) {
  .page-heading h1 {
    width: 80%;
  }

  .main-banner {
    padding: 330px 0px 250px 0px;
  }

  .section-heading {
    margin-bottom: 80px;
  }

  .section-heading span {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 20px;
    font-weight: 500;
  }

  .section-heading h2 {
    font-size: 25px;
    text-transform: capitalize;
    letter-spacing: 0.2px;
    font-weight: 600;
    line-height: 36px;
  }

  .home-section-heading {
    text-align: center;
  }

  .home-section-heading span {
    margin-bottom: 20px;
  }

  .home-section-heading h2 {
    font-size: 28px;
  }

  .home-section-heading p {
    margin-top: 30px;
  }

  .welcome-box h1 {
    height: 60px;
    line-height: 60px;
    font-weight: 600;
    font-size: 28px;
    color: #1e1e1e;
    letter-spacing: 1px;
    padding: 5px 15px;
  }

  .get-to-know .decoration-square img {
    display: none;
  }

  .get-to-know .right-content {
    margin-left: 0px;
    margin-top: 60px;
    position: relative;
  }

  .get-to-know .left-button {
    margin-top: 30px;
    text-align: center;
  }

  .purchase-rosaleda img {
    margin-bottom: 45px;
  }

  .purchase-rosaleda ul {
    text-align: center;
  }

  .purchase-rosaleda .center-button {
    margin-top: 15px;
  }

  .our-portfolio .owl-nav,
  .similar-list .owl-nav {
    display: none;
  }

  .fun-facts .fact-item {
    margin: 15px 0px;
  }

  .frequently-asked img {
    display: none;
  }

  .frequently-asked .accordion {
    margin-left: 0px;
    margin-top: 60px;
  }

  .subscribe-form .subscribe-content {
    padding: 30px;
  }

  .subscribe-form .subscribe-content h2 {
    margin-bottom: 15px;
  }

  footer .footer-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #2e2e2e;
  }

  footer .under-footer {
    margin-top: 0px;
    border-top: none;
    text-align: center;
  }

  footer .under-footer i {
    margin-top: 20px;
    float: none;
    margin-bottom: 10px;
    margin-right: 0px;
  }

  footer .under-footer h6 {
    margin-left: 0px;
  }

  footer .under-footer ul {
    text-align: center;
  }

  footer .under-footer span {
    margin-bottom: 20px;
  }

  .sub-footer {
    text-align: center;
  }

  .sub-footer ul {
    float: none;
    margin-top: 15px;
  }

  .why-choose-us .feature-item {
    margin: 15px 0px;
  }

  .who-we-are .left-image {
    margin-right: 0px;
    margin-bottom: 60px;
  }

  .timeline ul li .content {
    width: 300px;
  }

  .timeline ul li .content img {
    display: none;
  }

  .timeline ul li:nth-child(even) .content {
    left: 50px;
  }

  .timeline ul li:nth-child(even) div::before {
    left: -15px;
    border-width: 12px 16px 12px 0 !important;
    border-color: transparent #fdad54 transparent transparent !important;
  }

  .happy-clients .client-item img {
    max-width: 50%;
  }

  .happy-clients .client-item {
    padding: 15px;
    width: 100%;
    height: 140px;
    line-height: 140px;
  }

  .happy-clients .right {
    border-right: none;
    padding-right: 15px;
  }

  .happy-clients .bottom {
    border-bottom: none;
  }

  .projects-content .filters ul li {
    margin: 8px 5px;
  }

  .fun-facts .fact-item {
    padding: 20px 30px 30px 30px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 15px;
  }

  .blog-content .blog-posts {
    margin-right: 0px;
  }

  .blog-content .comments ul.comment-list li a {
    position: relative;
    margin-bottom: 10px;
    display: inline-block;
  }

  .blog-content .side-bar,
  .faqs-content .side-bar {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid #eee;
  }

  .single-member img {
    margin-bottom: 30px;
  }

  .single-member ul {
    border-top: 1px dotted #ddd;
    padding-top: 13px;
  }

  .single-member ul li:last-child {
    margin-bottom: 13px;
    padding-bottom: 13px;
    border-bottom: 1px dotted #ddd;
  }

  .skill-bar {
    margin-left: 70px;
    width: 75%;
    height: 6px;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.25);
    position: relative;
  }

  .faqs-content .accordion {
    margin-right: 0px;
  }

  .faqs-content .accordion li .content img {
    width: 100%;
    margin-bottom: 20px;
  }

  .contact-us #ajax-contact {
    margin-top: 30px;
  }
}