/*------------------------------
Table-Of-Content 
-------------------------------- 
01. Cursor-Effect
02. Helper-Class
03. Section-title 
04. Button-Styles 
05. Mainmenu-Area 
  5.1 DropDown-Menu 
  5.2 Menu-Right-Content 
  5.3 Toggle-Search-Form 
  5.4 Transparent-Menu 
  5.4 Fixed-Menu 
06. Header-Area
07. Service-Area 
08. Video-area
09. Feature-Area
10. Work-Area
11. Testimonial-Area
12. Clients-Area
13. Contact-Form-Area
14. ScrollUpButton
15. Preloader-CSS 
 --------------------------*/
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900&amp;display=swap');
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  margin: 0px;
  color: #666666;
  background-color: #f9fafc;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  margin: 0 0 15px;
  line-height: 1.4em;
  font-family: 'Poppins', sans-serif;
  color: #272727;
}
 /* -----------------------
02. Helper-Class
 ------------------------ */
.gray-bg {
  background-color: #f9fafc;
}
.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}
.section-padding-top {
  padding-top: 120px;
}
.section-padding-bottom {
  padding-bottom: 120px;
}
.upper {
  text-transform: uppercase;
}
.full-wrapper {
  position: relative;
}
.col-padding-none {
  padding-left: 15px;
  padding-right: 15px;
}
.col-padding-none > div {
  padding: 0px;
}
.mr-bottom-0 {
  margin-bottom: 0px !important;
}
.mr-bottom-15 {
  margin-bottom: 15px !important;
}
.mr-bottom-30 {
  margin-bottom: 30px !important;
}
.mr-bottom-40 {
  margin-bottom: 40px !important;
}
.over-fix {
  overflow: hidden;
}
.primary-bg {
  background-color: #bd8e2d;
  color: #ffffff;
}
/* ---------------------
 03. Section-title 
 ----------------------- */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title .top-title {
  font-size: 18px;
  color: #c16ff5;
  font-weight: 500;
  text-transform: uppercase;
}
.section-title .ex-title {
  font-size: 30px;
  color: #333333;
  font-weight: 900;
}
.section-title .title {
  font-size: 40px;
  color: #333333;
  font-weight: 900;
}
/* ---------------------
 04. Button-Styles 
 ----------------------- */
.button-danger,
 .button-primary {
  padding: 12px 40px;
  border-radius: 100px;
  color: #ffffff;
  background-color: #bd8e2d;
  -webkit-box-shadow: 0px 0px 10px 0 rgba(46,109,158,0.2);
  box-shadow: 0px 0px 10px 0 rgba(46,109,158,0.2);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: none;
  display: inline-block;
}
.button-primary .icon {
  margin-right: 5px;
}
.button-primary:hover {
  -webkit-box-shadow: 0px 5px 30px 0 rgba(46,109,158,0.2);
  box-shadow: 0px 5px 30px 0 rgba(46,109,158,0.2);
  background-color: #bd8e2d;
  color: #ffffff;
}
.button-primary.button-white {
  color: #bd8e2d;
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
.button-primary.button-white:hover {
  background-color: transparent;
  color: #ffffff;
}
.button-danger {
  background-color: #fe688b;
  border: 1px solid #fe688b;
}
.button-danger:hover {
  color: #fe688b;
  background-color: #ffffff;
}
/* ---------------------
 05. Mainmenu-Area 
 ----------------------- */
.mainmenu-area {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-color: #ffffff;
}
.mainmenu-area.affix {
  position: fixed;
}
.mainmenu-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.site-logo .logo-image {
  padding-left: 15px;
  display: block;
}
.site-logo .logo-text a {
  max-height: 120px;
  text-align: center;
  display: block;
  font-size: 30px;
  overflow: hidden;
  position: relative;
  padding: 15px;
  color: #333333;
}
.site-logo .logo-text {
  margin-bottom: 0;
}
.mainmenu-area.affix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
}
.admin-bar .mainmenu-area.affix {
  top: 30px;
}
 .mainmenu-area {
     white-space: nowrap;
}
.primary-menu ul.navbar-nav {
    flex-direction: row;
}

.primary-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu ul li a {
    color: #333333;
}

.primary-menu ul li:hover > a {
    color: #bd8e2d;
}

.primary-menu>ul>li {
    display: inline-block;
    position: relative;
    margin-left: -5px;
    padding: 0;
    float: left;
}

.primary-menu>ul>li:first-child {
    border-left: none;
}

.mainmenu-area #mainmenu ul li>a i.plus {
    float: right;
    width: 12px;
    height: 12px;
    line-height: 12px;
    margin-top: 10px;
    margin-left: 10px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
    position: relative;
}

.mainmenu-area #mainmenu ul li>a i.plus:before,
.mainmenu-area #mainmenu ul li>a i.plus:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 12px;
    height: 2px;
    display: block;
    background-color: #e6efe7;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mainmenu-area #mainmenu ul li>a i.plus:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.mainmenu-area #mainmenu ul li:hover>a i.plus:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}

.primary-menu ul li {
    position: relative;
}

.primary-menu ul.navbar-nav li a {
    padding: 30px 20px;
    position: relative;
    font-weight: 500;
    color: #333333;
    text-transform: capitalize;
    background: none;
    font-size: 15px;
    display: block
}

.primary-menu ul.navbar-nav>li > a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0px;
    border-radius: 0 0 10px 10px;
    width: 4px;
    height: 0px;
    background-color: #bd8e2d;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.primary-menu ul.navbar-nav>li > a:hover:after,
.primary-menu ul.navbar-nav>li > a.active:after {
    height: 15%;
}

.primary-menu ul.navbar-nav>li>a.active,
.primary-menu ul.navbar-nav>li.current-menu-item>a,
.primary-menu ul.navbar-nav li:hover>a,
.primary-menu ul.navbar-nav li:hover>i {
    color: #bd8e2d;
}

.menu-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.menu-buttons>* {
    margin: 0 10px;
}

.menu-buttons:last-child {
    margin-right: 0;
}

.nav-alignmenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
/*-----------------------
 5.1 DropDown-Menu 
-------------------------*/
.primary-menu ul.navbar-nav li {
    position: relative;
}

.primary-menu ul.navbar-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding-top: 15px;
    padding-bottom: 15px;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(25, 31, 160, 0.1);
    box-shadow: 0px 20px 40px 0px rgba(25, 31, 160, 0.1);
    border-radius: 5px;
}

.primary-menu ul.navbar-nav .sub-menu .sub-menu {
    left: auto;
    right: 100%;
    top: 0;
}

.primary-menu ul.navbar-nav .sub-menu li:hover>.sub-menu {
    top: -15px;
}

.primary-menu ul.navbar-nav .sub-menu li {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
}

.primary-menu ul.navbar-nav .sub-menu li a {
    padding: 2px 10px;
    display: block;
    font-size: 14px;
}

.primary-menu ul.navbar-nav .sub-menu li.current-menu-item>a,
.primary-menu ul.navbar-nav .sub-menu li.active>a,
.primary-menu ul.navbar-nav .sub-menu li:hover>a {
    color: #bd8e2d;
}

.primary-menu ul.navbar-nav li:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
}
/*----------------------
5.2 Menu-Right-Content 
-----------------------*/
.mainmenu-area .menu-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mainmenu-area .menu-right .menu-button {
    border: none;
    background: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: block;
    margin: 0px;
    padding: 0px;
}

.mainmenu-area .navi-trigger.menu-button {
    padding: 17px;
}
/*--------------------
5.3 Toggle-Search-Form 
---------------------*/
.toggle-search-form {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #bd8e2d;
    z-index: 999999;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.search-form-active {
    overflow: hidden;
}

.search-form-active .toggle-search-form {
    opacity: 1;
    visibility: visible;
}

.toggle-search-form .toggle-search-input {
    width: 800px;
    height: 100px;
    padding: 15px 60px 15px 40px;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 0px;
    max-width: 90vw;
    background: none;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 100px;
}

.toggle-search-form .toggle-search-close {
    position: absolute;
    right: 30px;
    top: 30px;
    border: none;
    background-color: transparent;
    font-size: 30px;
    color: #ffffff;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.toggle-search-form .toggle-search-close:hover {
    -webkit-transform: scale(1.3, 1.3);
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.toggle-search-form .toggle-search-submit {
    width: 80px;
    height: 80px;
    border: none;
    font-size: 30px;
    color: #ffffff;
    background: none;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    margin-left: -100px;
}

.toggle-search-form .toggle-search-submit:hover {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.toggle-search-form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
}

.toggle-search-form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
}

.toggle-search-form input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
}

.toggle-search-form input:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
}

.navi-trigger {
    width: 24px;
    height: 17px;
    line-height: 40px;
    border: none;
    position: relative;
    margin: 0;
    padding: 0;
    background: none;
    margin-left: 30px;
}

.navi-trigger .bar {
    width: 24px;
    height: 2px;
    background-color: #626262;
    display: block;
    margin-bottom: 5px;
    border-radius: 10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.affix .navi-trigger .bar {
    background-color: #626262;
}

.navi-trigger .bar:nth-child(3) {
    width: 13px;
    margin-bottom: 0px;
}

.navi-trigger.active .bar:nth-child(1) {
    width: 13px;
}

.navi-trigger.active .bar:nth-child(3) {
    width: 24px;
}

.menu-home > a:before {
    content: "\f015";
    font-family: "Font Awesome 5 Pro";
    margin-right: 5px;
}
/* ---------------------
5.4 Transparent-Menu 
----------------------- */
.transparent-menu .mainmenu-area {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.transparent-menu .mainmenu-area.affix {
     background-color: #414141;
    position: fixed;
}

.transparent-menu .site-logo a {
    color: #ffffff;
}

.transparent-menu .primary-menu>ul.navbar-nav>li>a {
    color: rgba(255, 255, 255, 0.9);
}

.transparent-menu .primary-menu>ul.navbar-nav>li:hover>a {
    color: #ffffff;
}

.transparent-menu .mainmenu-area #mainmenu ul.navbar-nav>li>a i.plus:before,
.transparent-menu .mainmenu-area #mainmenu ul.navbar-nav>li>a i.plus:after {
    background-color: rgba(255, 255, 255, 0.5)
}

.transparent-menu .mainmenu-area .menu-right .menu-button {
    color: #ffffff;
}

.transparent-menu .navi-trigger .bar {
    background-color: #ffffff;
}

.transparent-menu .primary-menu ul.navbar-nav>li> a:after {
    background-color: #ffffff;
}
/* ---------------------
05. Fixed-Menu 
----------------------- */
.fixed-menu .mainmenu-area {
    position: fixed;
}
/* ---------------------
06. Header-Area
------------------------ */
.header-area {
  padding-top: 350px;
  padding-bottom: 300px;
  background: url('../images/slider1.png') no-repeat scroll center center / cover;
  position: relative;
  z-index: 1;
}
.header-area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.5;
}
.header-text .title {
  font-size: 80px;
  font-weight: 900;
  color: #ffffff;
  line-height: 70px;
  text-transform: capitalize;
  margin-bottom: 25px;
}
.header-text .sub-title {
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 25px;
}
.header-text .desc {
  margin-bottom: 50px;
  font-size: 20px;
  color: #ffffff;
}
/* ----------------------- 
07. Service-Area 
------------------------- */
.service-boxes {
  margin-bottom: -30px;
}
.service-boxes .service-box-1 {
  margin-bottom: 30px;
}
.service-box-1 {
  text-align: center;
  font-size: 14px;
  padding: 0px 15px;
  background-color: transparent;
  -webkit-box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.2);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  border-radius: 5px;
}
.box-effect {
  padding: 50px 20px;
}
.box-effect.active {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 10px 30px rgba(129,127,195,0.2);
  box-shadow: 0px 10px 30px rgba(129,127,195,0.2);
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.service-box-1 .icon {
  margin-bottom: 30px;
  width: 160px;
  display: inline-block;
}
.service-box-1 .title {
  font-size: 20px;
  color: #333333;
}
/* -----------------------
08. Video-area
------------------------ */
.video-area {
  padding-top: 100px;
  padding-bottom: 130px;
  background-image: url('../images/home-3/video-bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.video-area:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #bd8e2d;
  opacity: 0.9;
}
.play-button {
  width: 80px;
  height: 80px;
  line-height: 80px;
  padding-left: 3px;
  text-align: center;
  border-radius: 100%;
  background-color: transparent;
  color: #bd8e2d;
  background-color: #ffffff;
  display: inline-block;
}
.play-button:hover {
  background-color: #bd8e2d;
  color: #ffffff;
}
.waves-block {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.waves-block .waves {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 320px;
  background-clip: padding-box;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}
.waves-block .wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.waves-block .wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.waves-block .wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
@-webkit-keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
/* ----------------------
09. Feature-Area
------------------------- */
.feature-area {
  margin-top: -100px;
  z-index: 2;
  position: relative;
}

.service-box-3 {
    min-height: 370px !important;
     font-size: 12px;
  background-color: #ffffff;
  padding: 30px 30px;
  box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.service-box-3:hover {
  box-shadow: 5px 5px 30px 0 rgba(0,0,0,0.05);
  transform: translate(-5px, -5px);
}

.service-box-3 .icon {
  margin-bottom: 25px;
  text-align: center;
  
}

.service-box-3 .title {
  font-size: 20px;
  color: #333333;
  font-weight: 600;
  text-transform: uppercase;
}



/* ----------------------
10. Work-Area
----------------------- */
.work-box-2 {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.2);
}

.work-image img {
  width: 100%;
}

.work-box-2 .work-details {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  background-color: #ffffff;
  padding: 20px 30px;
  border-radius: 6px 6px 0 0;
}

.work-box-2 .work-details .cats a {
  font-size: 16px;
  color: #666666;
  font-weight: 400;
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
}

.work-box-2 .work-details .title {
  margin-bottom: 0px;
  font-size: 20px;
  text-transform: capitalize;
}

.work-box-2 .work-details .title a {
  color: #333333;
}

.work-box-2 .work-details a:hover {
  color: #bd8e2d;
}

.work-box-2 .work-hover {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #bd8e2dcc;
  padding-bottom: 100px;
  transition: 0.3s;
  opacity: 0;
}

.work-box-2:hover .work-hover {
  opacity: 1;
}

.work-box-2 .work-hover .icon {
  color: #ffffff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.quote-area {
  background-color: #bd8e2d;
}

.quote-area .section-title {
  margin-bottom: 0px;
}

.quote-area .section-title .title {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 30px;
}

/* -----------------------
11. Testimonial-Area
-------------------------- */
.testimonial-box-3 {
  text-align: center;
  padding: 40px 30px;
  background-color: #ffffff;
  margin-right: 15px;
  margin-left: 15px;
  border-radius: 4px;
}

.testimonial-box-3 .quote {
  margin-bottom: 25px;
}

.testimonial-box-3 .star-rating {
  margin-bottom: 20px;
}

.star-rating span {
  opacity: 0.1;
  margin: 0 3px;
}

.star-rating.star5 span:nth-child(-n+5), .star-rating.star4 span:nth-child(-n+4), .star-rating.star3 span:nth-child(-n+3), .star-rating.star2 span:nth-child(-n+2), .star-rating.star1 span:nth-child(-n+1) {
  color: #fbbd00;
  opacity: 1;
}

.testimonial-box-3 .desc {
  margin-bottom: 30px;
  font-size: 14px;
}

.testimonial-box-3 .photo {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  display: inline-block;
  line-height: 0px;
  margin-bottom: 5px;
}

.testimonial-box-3 .name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.testimonial-box-3 .posi {
  font-size: 14px;
}

/* ----------------------
12. Clients-Area
------------------------ */
.client-area {
  padding: 90px 60px;
  background-color: #ffffff;
}

.clients {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: -30px;
  margin-bottom: -30px;
}

.clients .item {
  padding: 30px;
  width: 25%;
  text-align: center;
}

/* ---------------------------
13. Contact-Form-Area
--------------------------- */
.contact-area {
  background-color: #bd8e2d;
  color: #ffffff;
}

.contact-area .wh-title {
  font-size: 30px;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 40px;
}

.contact-area .info-box {
  margin-bottom: 30px;
}

.contact-area .info-box .title {
  color: #ffffff;
  font-size: 25px;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 10px;
}

.contact-area  .social-link a {
  color: #ffffff;
  width: 20px;
  height: 40px;
  line-height: 40px;
  text-align: left;
  display: inline-block;
  margin-right: 20px;
}

.contact-form {
  padding: 60px;
  background-color: #ffffff;
  border-radius: 10px;
}

.contact-form .title {
  font-size: 30px;
  color: #333333;
  font-weight: 900;
}

.input-box {
  padding: 15px 30px 15px 0px;
  width: 100%;
  background-color: #ffffff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: none;
  border-bottom: 1px solid #b4b4b4;
  outline: none;
  color: #666666;
}

.input-box:focus {
  border-bottom: 1px solid #333333;
}

.contact-form .input-box {
  margin-bottom: 30px;
  line-height: 26px;
}

.contact-form .form-double:after {
  clear: both;
  display: block;
  content: "";
}

.contact-form .form-double .form-box {
  width: calc(50% - 15px);
  float: left;
  margin-right: 30px;
}

.contact-form .form-double .form-box.left {
  margin-right: 0;
}

.form-box {
  position: relative;
  line-height: 0px;
}

.form-box button {
  line-height: 26px;
}

.form-box .icon {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100px;
  color: #e3e7ea;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.contact-form ::-webkit-input-placeholder {
 /* Chrome/Opera/Safari */
  color: #666666;
}

.contact-form ::-moz-placeholder {
 /* Firefox 19+ */
  color: #666666;
}

.contact-form :-ms-input-placeholder {
 /* IE 10+ */
  color: #666666;
}

.contact-form :-moz-placeholder {
 /* Firefox 18- */
  color: #666666;
}

.footer-bottom {
  background-color: #af802c;
  padding: 30px 0;
  color: #b9d3ff;
  text-align: center;
}
/* ------------------------ 
14. ScrollUpButton
-------------------------- */
#scrollUp {
  position: fixed;
  right: 2%;
  top: 100%;
  width: 28px;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  border: 2px solid #bd8e2d;
  color: #bd8e2d;
  text-align: center;
  background-color: #ffffff;
  border-radius: 100px;
  z-index: 999;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

#scrollUp:hover {
  background-color: #bd8e2d;
  color: #ffffff;
}

#scrollUp.active {
  top: calc(100% - 110px);
}

#scrollUp i {
  -webkit-animation: mymove 1s ease-in 0s infinite alternate;
  animation: mymove 1s ease-in 0s infinite alternate;
  display: inline-block;
  position: relative;
}

@-webkit-keyframes mymove {
  from {
    top: -5px;
  }

  to {
    top: 5px;
  }
}

@keyframes mymove {
  from {
    top: -5px;
  }

  to {
    top: 5px;
  }
}
/*---------------------- 
15. Preloader-CSS 
---------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}

.preloader img {
  width: 300px;
}

.easy-bullets {
    list-style: none;
    padding-left: 0px;
    /* list-style-position: outside; */
}
.easy-bullets li {
    position: relative;
    padding-left: 20px;
}
.easy-bullets li:before {
   
    /* content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    background-image: url('../img/orange-bullet.png');
    background-size: cover;
    left: 0;
    top: 10px;*/
    
    content: "\2022"; 
  color: #bd8e2d; 
  font-weight: bold; 
  display: inline-block; 
  width: 1em; 
  margin-left: -1em; 
}


.carousel-item .img-wrapper {
    max-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}