/* ----------------------------------------------------------------------------------------
* Author        : Qrolic
* Template Name : Demo
* File          : Main CSS file
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. General css
02. Home Page css
-------------------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap");
/************************************/
/***** 	   01. General css		 ****/
/************************************/
body {
  font-size: 18px;
  color: #fff;
  margin: 0px;
  padding: 0px;
  font-family: "Montserrat", sans-serif; }

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 0;
font-weight: 600;
}

img {
  max-width: 100%; }

a:hover,
a {
  text-decoration: none;
  color: #313131;
  outline: 0; }

a:focus {
  text-decoration: none;
  outline: 0; }

::-moz-selection {
  background: #05cbfc;
  color: #fff; }

::selection {
  background: #05cbfc;
  color: #fff; }

*, ::after, ::before {
  box-sizing: border-box; }

ul {
  margin: 0px;
  padding: 0px;
  list-style: none; }

button:focus,
input:focus,
img:focus,
.slick-slide:focus,
textarea:focus,
input:focus {
  outline: none; }

.post, .page {
  margin: 0; }

/************************************/
/***** 	   02. Home Page css		 ****/
/************************************/
.header__inner {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  padding: 10px 15px 0px;
  position: relative; }
  @media screen and (max-width: 575px) {
    .header__inner {
      padding: 10px 15px; } }
  @media screen and (max-width: 991px) {
    .header__inner {
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center; } }
  .header__inner::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    bottom: 35px;
    left: 0;
    background: #313131; }
    @media screen and (max-width: 575px) {
      .header__inner::after {
        display: none; } }
.header__logo a {
  display: block; }
  .header__logo a img {
    display: block; }
    @media screen and (max-width: 575px) {
      .header__logo a img {
        width: 100%;
        max-width: 180px; } }
.header__right {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end; }
  @media screen and (max-width: 991px) {
    .header__right {
      display: none; } }
  .header__right ul {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end; }
.header__menu-icon {
  display: none;
  cursor: pointer;
  line-height: 22px; }
  @media screen and (max-width: 991px) {
    .header__menu-icon {
      display: block; } }
  .header__menu-icon i {
    color: #313131;
    font-size: 28px; }
    @media screen and (max-width: 575px) {
      .header__menu-icon i {
        font-size: 22px; } }
.header__menu a,.header__menu a:visited {
  font-size: 19px;
  color: #313131;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  padding: 5px 0px;
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -ms-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms; }
  .header__menu a:hover {
    color: #676f2f; }
.header__menu li {
  margin-left: 20px; }
.header__contact a {
  font-size: 16px;
  color: #676f2f;
  font-weight: 500;
  display: block;
  padding: 5px 0px;
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -ms-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms; }
  .header__contact a:hover {
    color: #313131; }
.header__contact i {
  margin-right: 5px; }
.header__contact li {
  margin-left: 15px; }

.close-sidebar {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  display: none; }

.close-sidebar.active {
  display: block; }

.sidebar.active {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px); }

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  background: #fff;
  z-index: 999;
  display: none;
  -webkit-transform: translateX(-300px);
  -moz-transform: translateX(-300px);
  -ms-transform: translateX(-300px);
  -o-transform: translateX(-300px);
  transform: translateX(-300px);
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -ms-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms; }
  @media screen and (max-width: 991px) {
    .sidebar {
      display: block; } }
  .sidebar__inner {
    padding: 30px 15px; }
  .sidebar__logo img {
    display: block; }
  .sidebar__menu {
    padding: 20px 0px; }
    .sidebar__menu ul a {
      color: #313131;
      text-transform: uppercase;
      font-size: 14px;
      padding: 0px 0px;
      -webkit-transition: all 500ms;
      -moz-transition: all 500ms;
      -ms-transition: all 500ms;
      -o-transition: all 500ms;
      transition: all 500ms; }
      .sidebar__menu ul a:hover {
        color: #676f2f; }
  .sidebar__contact a {
    color: #313131;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -ms-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms; }
    .sidebar__contact a:hover {
      color: #676f2f; }
  .sidebar__contact i {
    margin-right: 5px; }

.banner__image img {
  display: block;
  width: 100%; }
  @media screen and (max-width: 575px) {
    .banner__image img {
      height: 400px;
      object-fit: cover;
      object-position: center; } }

.cta__inner {
  background: #676f2f;
  padding: 30px 80px;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  @media screen and (max-width: 991px) {
    .cta__inner {
      padding: 20px 15px;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column; } }
  .cta__inner h1 {
    color: #fff;
    font-weight: 600;
    font-size: 34px;
    line-height: 36px; }
    @media screen and (max-width: 991px) {
      .cta__inner h1 {
        font-size: 20px; } }
  .cta__inner p {
    color: #2f250a;
    font-size: 24px; }
    @media screen and (max-width: 991px) {
      .cta__inner p {
        font-size: 16px; } }
  .cta__inner a {
    font-size: 23px;
    color: #fff;
	  font-weight:600;
    text-transform: uppercase;
    background: #433715;
    padding: 15px 40px;
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -ms-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms; }
    @media screen and (max-width: 991px) {
      .cta__inner a {
        font-size: 15px;
        padding: 10px 20px; } }
    .cta__inner a:hover {
      background: #fff;
      color: #676f2f; }
    .cta__inner a img {
      height: 25px;
      margin-left: 20px; }
      @media screen and (max-width: 991px) {
        .cta__inner a img {
          height: 15px;
          margin-left: 10px;
		  display:none;
		  }
	}
@media screen and (max-width: 991px) {
  .cta__content {
    text-align: center; } }
@media screen and (max-width: 991px) {
  .cta__button {
    margin-top: 10px; } }

.about {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 100px 80px;
  background-repeat: no-repeat;
  background-size: cover; }
  @media screen and (max-width: 991px) {
    .about {
      padding: 50px 15px; } }
  .about .col-lg-6:first-child {
    order: 1; }
  .about__content {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    height: 100%; }
    @media screen and (max-width: 991px) {
      .about__content {
        margin-top: 20px; } }
    .about__content h4 {
      color: #433715;
      font-size: 21px;
     
      text-transform: uppercase; }
      @media screen and (max-width: 991px) {
        .about__content h4 {
          font-size: 18px; } }
    .about__content p, .about__content ul {
      color: #161616;
      font-size: 18px;
      font-weight: 500;
      margin-top: 20px; }
      @media screen and (max-width: 991px) {
        .about__content p, .about__content ul {
          font-size: 16px;
          margin-top: 10px; } }
  .about__image img {
    display: block;
    width: 100%; }

.services {
  padding: 30px 60px 0px;
  background: #93896c;
  border-top: 8px solid #676f2f; }
  @media screen and (max-width: 991px) {
    .services {
      padding: 30px 15px 0; } }
  .services__box {
    margin-bottom: 30px; }
    .services__box:hover {
      cursor: pointer; }
      .services__box:hover img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1); }
    .services__box-image {
      overflow: hidden; }
      .services__box-image img {
        width: 100%;
        display: block;
        -webkit-transition: all 500ms;
        -moz-transition: all 500ms;
        -ms-transition: all 500ms;
        -o-transition: all 500ms;
        transition: all 500ms; }
    .services__box-content {
      padding: 15px 20px;
      background: #676f2f; }
      .services__box-content h3 {
        color: #fff;
        font-size: 22px;
        
        text-transform: uppercase; }
        @media screen and (max-width: 991px) {
          .services__box-content h3 {
            font-size: 18px; } }
      .services__box-content p {
        color: #fff;
        font-size: 16px;
        font-weight: 200;
        margin: 10px 0px; }
        @media screen and (max-width: 991px) {
          .services__box-content p {
            font-size: 14px;
            margin: 5px 0px; } }
      .services__box-content a,.services__box-content a:visited {
        font-size: 18px;
        color: #fff;
        font-weight: 500;
        -webkit-transition: all 500ms;
        -moz-transition: all 500ms;
        -ms-transition: all 500ms;
        -o-transition: all 500ms;
        transition: all 500ms; }
        @media screen and (max-width: 991px) {
          .services__box-content a {
            font-size: 16px; } }
        .services__box-content a:hover {
          color: #313131; }

.testimonials {
  padding: 20px 30px; }
  @media screen and (max-width: 991px) {
    .testimonials {
      padding: 20px 15px; } }
  .testimonials__box {
    background-image: url(../images/t-bg.png);
    padding: 45px 30px 43px 60px;
    background-repeat: no-repeat;
    background-size: 100% 100%; }
    @media screen and (max-width: 1199px) {
      .testimonials__box {
        margin-top: 20px; } }
    .testimonials__box-heading h4 {
      color: #31230c;
      font-size: 24px;
      line-height: 24px;
      font-weight: 600; }
      @media screen and (max-width: 991px) {
        .testimonials__box-heading h4 {
          font-size: 20px;
          line-height: 22px; } }
    .testimonials__box-heading span {
      color: #959595;
      font-size: 17px;
      display: block; }
      @media screen and (max-width: 991px) {
        .testimonials__box-heading span {
          font-size: 14px; } }
    .testimonials__box-heading .review {
      display: -webkit-flex;
      display: -webkit-box;
      display: -moz-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex; }
    .testimonials__box-heading .rating {
      display: -webkit-flex;
      display: -webkit-box;
      display: -moz-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center;
      margin-left: 10px; }
      .testimonials__box-heading .rating a {
        font-size: 14px;
        color: #ffd203; }
        @media screen and (max-width: 991px) {
          .testimonials__box-heading .rating a {
            font-size: 12px; } }
    .testimonials__box-content p {
      color: #31230c;
      font-size: 17px;
      font-weight: 500;
      margin-top: 20px; }
      @media screen and (max-width: 991px) {
        .testimonials__box-content p {
          font-size: 16px;
          margin-top: 10px; } }
  .testimonials__heading {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    height: 100%; }
    .testimonials__heading h3 {
      color: #676f2f;
      font-size: 37px;
      line-height: 40px;
      margin-bottom: 20px; }
      @media screen and (max-width: 991px) {
        .testimonials__heading h1 {
          font-size: 26px;
          line-height: 30px;
          margin-bottom: 10px; } }
    .testimonials__heading a {
      color: #31230c;
      font-size: 18px;
      font-weight: 500;
      -webkit-transition: all 500ms;
      -moz-transition: all 500ms;
      -ms-transition: all 500ms;
      -o-transition: all 500ms;
      transition: all 500ms; }
      @media screen and (max-width: 991px) {
        .testimonials__heading a {
          font-size: 16px; } }
      .testimonials__heading a:hover {
        color: #676f2f; }
  @media screen and (max-width: 1199px) {
    .testimonials .heading_col {
      order: -1; } }

.footer {
  padding: 50px 80px;
  background: #31230c;
  position: relative; }
  @media screen and (max-width: 991px) {
    .footer {
      padding: 30px 15px; } }
  @media screen and (max-width: 991px) {
    .footer__col--margin {
      margin-top: 30px; } }
  .footer__col h4 {
    font-size: 20px;
    color: #fff;
  
    margin-bottom: 25px;
    text-transform: uppercase; }
    @media screen and (max-width: 991px) {
      .footer__col h4 {
        font-size: 18px;
        margin-bottom: 15px; } }
  .footer__col a,.footer__col a:visited, .footer__col p {
    font-size: 18px;
    font-weight: 200;
    color: #fff; }
    @media screen and (max-width: 1199px) {
      .footer__col a, .footer__col p {
        font-size: 16px; } }
    @media screen and (max-width: 991px) {
      .footer__col a, .footer__col p {
        font-size: 16px; } }
    .footer__col a i, .footer__col p i {
      margin-right: 5px; }
  .footer__col a {
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -ms-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms; }
    .footer__col a:hover {
      color: #676f2f; }
  .footer__col .number {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: 20px 0px; }
    @media screen and (max-width: 991px) {
      .footer__col .number {
        margin: 10px 0px; } }
    .footer__col .number a:first-child {
      margin-right: 20px; }
      @media screen and (max-width: 1199px) {
        .footer__col .number a:first-child {
          margin-right: 10px; } }
  .footer__col ul.social {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px; }
    @media screen and (max-width: 991px) {
      .footer__col ul.social {
        margin-top: 15px; } }
    .footer__col ul.social a {
      font-size: 30px;
      color: #93896c;
      -webkit-transition: all 500ms;
      -moz-transition: all 500ms;
      -ms-transition: all 500ms;
      -o-transition: all 500ms;
      transition: all 500ms; }
      @media screen and (max-width: 991px) {
        .footer__col ul.social a {
          font-size: 20px; } }
      .footer__col ul.social a:hover {
        color: #676f2f; }
    .footer__col ul.social li {
      margin-right: 15px; }
      @media screen and (max-width: 991px) {
        .footer__col ul.social li {
          margin-right: 10px; } }
  .footer__tree {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0; }
    @media screen and (max-width: 991px) {
      .footer__tree {
        bottom: auto;
        top: -20px; }
        .footer__tree img {
          width: 200px; } }
    .footer__tree img {
      display: block; }

    @media screen and (min-width: 1300px) {
.header__menu a {
    font-size: 21px;
    padding: 5px 14px;
}
		.testimonials__box {

    min-height: 260px;
			padding-top: 54px;
		}
}

.services-list-main ul li i {
    color: #676f2f;
}

  .about__image2 img {
    display: block;
    width: 100%; }

 @media screen and (min-width: 1660px) {
	 .about__image2 img {
    display: none;
	 }
}
.about__content ul {
line-height: 32px;
}

a:visited {
    color: #676f2f;
}

a {
    color: #676f2f;
}

.content-area{
	color: #676f2f;
}
.content-area .entry-content p{
margin-bottom:14px;
	color:#161616;
		    font-weight: 400;
}

h1.page-title {
    text-transform: uppercase;
    font-weight: 500;
}

h2{
	font-weight: 400;
    text-transform: uppercase;
	font-size:1.7rem;
}

.cta__button a, .cta__button a:visited{
	color:white;
}

.number .fas, .footer__col .fal,.contact-info .fal{
	margin-right:6px;
}

.services-list div div{
	    background-color: #f2f2f2;
    padding: 14px;
    height: 100%;
    border-left: 3px solid #676f2f;

}

.services-list .col-md-6{
	margin-bottom:20px
}

.hrcontent{
	    background-color: #f1f1f1;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
    margin-top: 1.5em;
}

.services-list h2{
	text-transform:none;
	margin-bottom:16px
}

.home-banner {
    height: 80vh;
    background-size: cover;
    background-position: 63% 50%;
}

.home-banner-text {
    color: white;
    padding: 24px;
	padding-top:160px;
}

.home-banner-text h1 {
    font-size: 42px;
    font-weight: 700;
}

 @media screen and (min-width: 700px) {
	.home-banner-text {
    padding: 24px;
	padding-top:190px;
	} 
	 .home-banner-text h1 {
    font-size: 58px;
	}
	 
}

 @media screen and (min-width: 1000px) {
	.home-banner-text {
    max-width:700px;
	} 	
	 
}

 @media screen and (min-width: 1300px) {
	.home-banner-text {
    max-width:900px;
		padding:100px;
		padding-top:190px;
	} 	
	  .home-banner-text h1 {
    font-size:64px;
	}
	 
}



#catapult-cookie-bar{
    color: #fff;
    font-size: 12px;
}
