/***

====================================================================
	Reset
====================================================================

***/
* {
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
}
p {
    display: block;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;

}
/***

====================================================================
	Global Settings
====================================================================

 ***/

body {
    font-family: 'Open Sans', sans-serif;
	font-size:14px;
	color:#000;
	line-height:1.7em;
	font-weight:400;
    background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}
a{
	text-decoration:none;
	cursor:pointer;
	color:#000;
}
/* ::-webkit-scrollbar {
    width: 6px;
	z-index: -1;

}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.25);
}
::-webkit-scrollbar-thumb {
    background: #BF0345;
    border-radius: 5px;
    transition: .2s linear;
}
::-webkit-scrollbar-thumb:hover {
    background: #FF397F;
} */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
h1,h2,h3,h4,h5,h6 {
	position:relative;
	font-weight:normal;
	margin:0px;
	background:none;
	line-height:1.6em;
}
/* Typography */
h1{
    font-size:60px;
}
h2{
	font-size:40px;
}
h3{
	font-size:34px;
}
h4{
	font-size:22px;
}
h5{
	font-size:20px;
}
h6{
    font-size:18px;
}
.auto__container{
	position:static;
	max-width:1024px;
	padding:0px 15px;
	margin:0 auto;
}
.page__wrapper{
	position:relative;
	margin:0 auto;
	width:100%;
	min-width:300px;
}
ul,li{
	list-style:none;
	padding:0px;
	margin:0px;
}
img{
	display:inline-block;
	max-width:100%;
	height:auto;
}
/* header start
======================================================== */
.header__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
/* header end
======================================================== */
/* banner start
======================================================== */
.banner {
    background: url(../images/hero.png) no-repeat bottom right/cover;
    width: 100%;
    height: calc(100vh - 120px);
}
.banner__inner {
    width: 100%;
    height: calc(100vh - 120px);
}
.banner__content {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    -ms-flex-direction: column;
    width: 50%;
}
.banner__content .title {
    font-size: 40px;
    line-height: 40px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #355A20;
    margin-bottom: 10px;
}
.banner__content .text {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: #355A20;
}
/* banner end
======================================================== */
/* button__section start
======================================================== */
.button__section {
    padding: 40px 0;
    background: #e9ede7;
}
.button__section .text {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}
.btn__center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.green__btn {
    padding: 12px 35px;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: #fff;
    background: #355A20;
    border-radius: 7px;
    cursor: pointer;
    transition: .2s linear;
    -moz-transition: .2s linear;
}
.green__btn:hover {
    transform: scale(.96);
    background: #486f31;

}
/* button__section end
======================================================== */
/* banner__left start
======================================================== */
.banner__left {
    height: 350px;
    position: relative;

}
.banner__left-inner {
    height: 350px;
}
.banner__left .image__outer{
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);

}
.banner__left .rectangle{
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    background: #355A20;
}
.banner__left .image__outer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.banner__left-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    -ms-flex-direction: column;
}
.banner__left-content .title{
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    width: 45%;
}
.banner__left-content .text{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 25px;
    width: 45%;
}
/* banner__left end
======================================================== */
/* banner__center start
======================================================== */
.banner__center {
    padding: 40px 0;
}
.banner__center-inner {
    padding: 40px 50px;
    background: rgba(77, 88, 134, .05);
}
.banner__center-inner .title {
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
}
.banner__center-inner .text {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-weight: 400;
    color: #000;
    margin-bottom: 25px;
}
.banner__center-inner .image__outer {
    height: 160px;
    width: 100%;

}
.banner__center-inner .image__outer img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* banner__center end
======================================================== */
/* banner__right start
======================================================== */
.banner__right {
    height: 350px;
    position: relative;

}
.banner__right-inner {
    height: 350px;
}
.banner__right .image__outer{
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);


}
.banner__right .rectangle{
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    background: #355A20;
}
.banner__right .image__outer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.banner__right-content {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    text-align: right;
    flex-direction: column;
    -ms-flex-direction: column;
}
.banner__right-content .title{
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    width: 50%;
}
.banner__right-content .text{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 25px;
    width: 45%;

}
/* banner__right end
======================================================== */
/* testimonials start
======================================================== */
.testimonials {
    padding: 40px 50px;
    background: rgba(77, 88, 134, .05);
}
.testimonials__inner .title {
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
}
.slider__outer {
    margin: 0 -20px;
}
.slider__card {
    padding: 30px 20px;
    display: flex;
    align-items: stretch;
}
.slider__card .avatar__outer {
    width: 124px;
    height: 124px;
}
.slider__card .avatar__outer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider__card .content {
    width: calc(100% - 124px);
    padding-left: 15px;
}
.slider__card .content .card__row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.slider__card .content .card__row .icon__outer{
    height: 30px;
}
.slider__card .content .card__row .card__title{
    font-size: 17px;
    font-weight: 700;
    color: #000;
    margin-left: 20px;
}
.slider__card .content .card__row .text{
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    color: #000;
}
/* testimonials end
======================================================== */
/* footer start
======================================================== */
.footer {
    padding: 20px 0;
    background: #355A20;
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.social {
    display: flex;
    align-items: center;

}
.social .social__link {
    height: 18px;
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.copyright {
    font-size: 10px;
    line-height: 20px;
    color: #fff;
    font-weight: 400;
}
/* footer end
======================================================== */

/* Preloder  start
========================================*/
#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #e6f5f4;
}
.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}
@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		        transform: rotate(0deg);
		border: 4px solid #e6f5f4;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-o-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		        transform: rotate(180deg);
		border: 4px solid #009D8C;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		-ms-transform: rotate(360deg);

		        transform: rotate(360deg);
		border: 4px solid #a9474a;
		border-left-color: transparent;
	}
}
@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		border: 4px solid #e6f5f4;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-o-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		border: 4px solid #009D8C;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		border: 4px solid #a9474a;
		border-left-color: transparent;
	}
}
/* preloader end
===================================================== */
/* modal start
====================================================== */
.modal {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    animation-name: animateTop;
    animation-duration: .4s;
}
.modal__inner {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    background: #fff;
    width: 100%;
    max-width: 630px;
}
.modale__header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #355A20;
}
.modale__header .close {
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.modale__header .title {
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}
.modal__body {
    padding: 20px 10px;
}
.input__outer {
    width: 100%;
    position: relative;
    margin: 10px;
}
.input__outer input {
    width: 100%;
    padding: 20px;
    border: 1px solid #BDBDBD;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 16px;
    color: #828282;
    line-height: 18px;
    font-weight: 400;
    transition: .2s linear;
    -moz-transition: .2s linear;
}
.input__outer .modalLabel {
    position: absolute;
    left: 20px;
    top: 50%;
    z-index: 0;
    transform: translateY(-50%);
    font-size: 16px;
    color: #828282;
    line-height: 18px;
    font-weight: 400;
    transition: .2s linear;
    -moz-transition: .2s linear;
}
.input__outer input:focus ~ .modalLabel{
    top: 10px;
    left: 20px;
    font-size: 12px;
    line-height: 14px;
    color: #355A20;
}
.input__outer input:focus {
    border: 1px solid #355A20;
}
.input__outer input:valid ~ .modalLabel{
    top: 10px;
    left: 20px;
    font-size: 12px;
    line-height: 14px;
    color: #355A20;
}
.modal__body .modal__check {
    display: flex;
    align-items: stretch;
    padding: 10px;
}
.modal__body .modal__check input{
    width: 16px;
    height: 16px;
    background: #e6f5f4;
    cursor: pointer;
}
.modal__body .modal__check .text{
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #000;
    margin-left: 5px;
}
.modal__body .modal__check .text span{
    color: #000;
}
.modal__body .modal__check .text a{
    color: royalblue;
}
.modal__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}
.modal__btn {
    padding: 16px 35px;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    color: #fff;
    background: #355A20;
    border-radius: 7px;
    cursor: pointer;
    transition: .2s linear;
    -moz-transition: .2s linear;

}
.modal__btn:hover {
    transform: scale(.96);
    background: #486f31;
}
/* modal end
====================================================== */
/* responsiveness
========================================================= */
@media (max-width:1250px) {
    .banner {
        height: 500px;
        background-position: bottom center;
    }
    .banner__inner {
        height: 500px;

    }
    .banner__content {
        width: 70%;
    }
}
@media (max-width:1025px) {
    .banner__left-content .title {
        font-size: 20px;
        line-height: 22px;
    }
    .banner__center-inner .title {
        font-size: 20px;
        line-height: 22px;
    }
    .banner__right-content .title {
        font-size: 20px;
        line-height: 22px;
    }
    .slider__card .avatar__outer {
        width: 80px;
        height: 80px;
    }
    .slider__card .content {
        width: calc(100% - 80px);
    }
}
@media (max-width:769px) {
    .banner__left-content .title {
        font-size: 20px;
        line-height: 22px;
        width: 100%;
        text-align: center;
    }
    .banner__right-content .title {
        width: 100%;
        font-size: 20px;
        line-height: 22px;
        text-align: center;
    }
    .banner__center-inner .title {
        font-size: 20px;
        line-height: 22px;
    }
    .banner__right-content .text {
        width: 100%;
        text-align: center;
    }
    .banner__left-content .text {
        width: 100%;
        text-align: center;
    }
    .banner__left .rectangle{
        position: absolute;
        width: 100%;
        height: 100%;
        clip-path: unset;
        background: rgba(53, 90, 32, .7);
    }
    .banner__left .image__outer {
        width: 100%;
        clip-path: unset;
    }
    .banner__right .rectangle{
        position: absolute;
        width: 100%;
        height: 100%;
        clip-path: unset;
        background: rgba(53, 90, 32, .7);
    }
    .banner__right .image__outer {
        width: 100%;
        clip-path: unset;
    }
    .banner__right-content {
        width: 100%;
        text-align: center;
    }
    .banner {
        height: 400px;
    }
    .banner__content {
        text-align: center;
        width: 100%;
        height: 400px;
    }
    .banner__content .title {
        text-align: center;
        width: 100%;
    }
}
@media (max-width:550px) {
    .banner__content .title {
        font-size: 24px;
        line-height: 26px;
    }
    .banner {
        height: 300px;
    }
    .banner__content {
        height: 300px;
    }
    .logo__outer {
        height: 50px;
        width: 50px;
    }
    .header__inner {
        padding: 10px 0;
    }
    .banner__center-inner {
        padding: 20px 10px;
    }
    .testimonials {
        padding: 20px 10px;

    }
    .slider__card {
        padding: 10px;
    }
    .social .social__link {
        margin-right: 5px;
    }
    .footer__inner {
        flex-direction: column;
        -ms-flex-direction: column;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .copyright {
        margin-top: 15px;
    }
}
@keyframes animateTop{
	from {transform: translateY(-150px);
        opacity: 0}
	to {transform: translateY(0);
        opacity: 1}
}


input[type="text"],
input[type="email"],
input[type="tel"],
select {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 4px 10px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 2px; }

footer {
  padding: 20px 0; }
  footer p {
    font-size: 12px;
    margin: 0; }
  footer .header-about-me {
    font-size: 13px;
    line-height: 24px; }
    footer .header-about-me img {
      float: left;
      margin: 0 15px 0 0;
      max-height: 62px;
      width: auto;
      border: 1px solid #5e6d70; }
    footer .header-about-me .header-name {
      font-weight: 700;
      cursor: pointer; }
    footer .header-about-me div {
      margin-bottom: -5px; }

      .modal .modal-dialog {
        width: 95%;
        max-width: 660px; }

      .modal .modal-content {
        border: none;
        border-radius: 0; }

      .modal .modal-header {
        padding: 0;
        border: none;
        border-radius: 0;
        background: #355A20;
        color: #fff; }
        .modal .modal-header .close {
          margin: 0;
          padding: 0; }
        .modal .modal-header .inner {
          width: 100%;
          padding: 20px 30px; }
          .modal .modal-header .inner h4 {
            margin: 0;
            text-transform: uppercase;
            font-weight: 700;
            color: #fff; }
        .modal .modal-header .modal-title {
          font-size: 20px;
          text-transform: none; }
        .modal .modal-header .close:hover {
          background: none;
          color: #fff; }

      .modal#form-modal .modal-header .inner {
        padding: 20px 30px 15px; }

      .modal#form-modal .thanks {
        display: none;
        text-align: center; }

      .modal #amm-tabs {
        border: none;
        background: #ddd; }
        .modal #amm-tabs .nav-item {
          margin: 0;
          padding: 14px 30px;
          color: #222;
          font-size: 14px;
          text-transform: uppercase;
          background: none;
          border: none;
          border-radius: 0; }
          .modal #amm-tabs .nav-item.active {
            box-shadow: inset 0 -2px 0 #355A20; }

      .modal .modal-body {
        padding: 20px 30px;
        border-bottom: 1px solid #e6e6e6; }
        .modal .modal-body p {
          margin: 0 0 20px; }
          .modal .modal-body p:last-of-type {
            margin: 0; }
        .modal .modal-body .note {
          margin: 20px 0 !important; }
        .modal .modal-body button {
          display: block;
          margin: 0 auto; }

      .modal #amm-head {
        text-align: center; }

      .modal #amm-profileimage {
        display: block;
        margin: 0 auto 20px;
        max-width: 150px;
        max-height: 150px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); }

      .modal #amm-name {
        font-size: 24px;
        font-weight: 700;
        color: #222; }

      .modal .bx-viewport {
        border: none;
        box-shadow: none; }

      .modal .bx-wrapper {
        margin: 0 auto; }
        .modal .bx-wrapper .bx-pager {
          position: relative;
          bottom: 0; }

      .modal #amm-slider div img {
        margin: 0 auto 20px; }

      .modal #amm-slider p {
        text-align: center; }

      .modal #video-page iframe {
        margin-bottom: 20px; }

      .modal #video-page p {
        text-align: center; }

      #form-modal input[type="checkbox"] {
        transform: translateY(-1px);
        margin-right: 3px; }

      #form-modal p {
        margin: 0 0 20px;
        font-size: 14px; }

      #loadingGraphic {
        display: none;
        padding: 2px 0 3px; }

      #loader {
        width: 44px;
        height: 44px;
        margin: 6px auto;
        -webkit-animation: 1s ease-in-out infinite animball_two;
        animation: 1s ease-in-out infinite animball_two; }
        #loader .loaderBall {
          width: 44px;
          height: 44px;
          position: absolute; }
          #loader .loaderBall .ball {
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            -webkit-animation: 1s ease-in-out infinite animball_one;
            animation: 1s ease-in-out infinite animball_one; }
            #loader .loaderBall .ball.ball1 {
              background-color: #355A20;
              top: 0;
              left: 0; }
            #loader .loaderBall .ball.ball2 {
              background-color: #355A20;
              top: 0;
              left: 24px; }
            #loader .loaderBall .ball.ball3 {
              background-color: #355A20;
              top: 24px;
              left: 0; }
            #loader .loaderBall .ball.ball4 {
              background-color: #355A20;
              top: 24px;
              left: 24px; }

      @-webkit-keyframes animball_one {
        0% {
          position: absolute; }
        50% {
          top: 12px;
          left: 12px;
          position: absolute;
          opacity: 0.5; }
        100% {
          position: absolute; } }

      @keyframes animball_one {
        0% {
          position: absolute; }
        50% {
          top: 12px;
          left: 12px;
          position: absolute;
          opacity: 0.5; }
        100% {
          position: absolute; } }

      @-webkit-keyframes animball_two {
        0% {
          -webkit-transform: rotate(0deg) scale(1); }
        50% {
          -webkit-transform: rotate(360deg) scale(1.3); }
        100% {
          -webkit-transform: rotate(720deg) scale(1); } }

      @keyframes animball_two {
        0% {
          transform: rotate(0deg) scale(1); }
        50% {
          transform: rotate(360deg) scale(1.3); }
        100% {
          transform: rotate(720deg) scale(1); } }


.close {
    position: relative;
    z-index: 99;
}

@media (max-width: 1199px) {

}

@media (max-width: 991px) {

}

@media (max-width: 767px) {
    .banner, .banner__inner {
        height: 75vh;
    }

    .banner__content {
        height: 230px;
    }

    .banner {
        background: url(../images/hero-mobile.png) no-repeat center bottom/100% auto #dfdad5;
    }
}