body {
    overflow-x: hidden;
}
html,body,*{
     scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
/*.transition-fade {*/
    /*transition: 0.4s;*/
    /*opacity: 1;*/
/*}*/

html.is-animating .transition-fade {
    opacity: 0;
}


.transition-fade {
    transition: 0.4s;
    opacity: 1;
    transform: translateY(0);
    transform-origin: left;
}

html.is-animating .transition-fade {
    opacity: 1;
    transform: translateY(100px);
}

html.is-leaving .transition-fade {
    opacity: 0;
    transform: translateY(0);
}

.transition-swipe {
    transition: 500ms;
    transform: translateY(0);
}

html.is-animating .transition-swipe {
    transform: translateY(100px);
    animation-delay: 1s;
}

.text-to-top-fade{
    opacity: 1;
    transform: translateY(0px);
    transition: 0.8s;
}

html.is-animating .text-to-top-fade{
    opacity: 1;
    transform: translateY(100px);
    transition: 0.4s;

}
.animationsss::before {
    content: "";
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: #e6f2ee;
    top: -75px;
    transition: 2s;
}
.ostara.animationsss:before {
    transition: 2s;
    transform: skewY(
            270deg
    );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -ms-overflow-style: scrollbar;
  /*font-size: 62.5%; */
}
body{
	font-size: 18px;
}
@-ms-viewport {
  width: device-width;
}
*{
    margin: 0;
    padding: 0;
}
@font-face {
  font-family: Futura Lt BT;
  src: url(../font/FutuLt.ttf);
}
@font-face {
  font-family: Playfair Display;
  src: url(../font/PlayfairDisplay-VariableFont_wght.ttf);
}
.container,.container-fluid{
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
.subscribe_wrap .container-fluid {
    padding-right: 0;
    padding-left: 0;
}
a{
	
	text-decoration:none;
}

ul{
	list-style:none;
}
h1,h2,h3,h4,h5{
	font-family: Playfair Display;
	line-height: 1.3;
	font-weight: 500;
}



body,h6{
	
	font-family: Futura Lt BT;
}
p{	
	font-size: 18px;
	line-height: 28px;
	color: #4a4e57;
}
h1{
	/*font-size: 120px;*/
	font-size: max(5vw, 30px);
}
h6{
	font-size: max(1.5vw, 17px);
    letter-spacing: 8px;
}
/* grid css */

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}
.no-gutter {
  margin-right: 0;
  margin-left: 0;
}
.no-gutter > [class*="my-grid-"] {
  padding-right: 0;
  padding-left: 0;
}

.my-grid-1, .my-grid-2, .my-grid-3, .my-grid-4, .my-grid-5, .my-grid-6, .my-grid-7, .my-grid-8, .my-grid-9, .my-grid-10, .my-grid-11, .my-grid-12, .col,
.my-grid-auto, .my-grid-sm-1, .my-grid-sm-2, .my-grid-sm-3, .my-grid-sm-4, .my-grid-sm-5, .my-grid-sm-6, .my-grid-sm-7, .my-grid-sm-8, .my-grid-sm-9, .my-grid-sm-10, .my-grid-sm-11, .my-grid-sm-12, .my-grid-sm,
.my-grid-sm-auto, .my-grid-md-1, .my-grid-md-2, .my-grid-md-3, .my-grid-md-4, .my-grid-md-5, .my-grid-md-6, .my-grid-md-7, .my-grid-md-8, .my-grid-md-9, .my-grid-md-10, .my-grid-md-11, .my-grid-md-12, .my-grid-md,
.my-grid-md-auto, .my-grid-lg-1, .my-grid-lg-2, .my-grid-lg-3, .my-grid-lg-4, .my-grid-lg-5, .my-grid-lg-6, .my-grid-lg-7, .my-grid-lg-8, .my-grid-lg-9, .my-grid-lg-10, .my-grid-lg-11, .my-grid-lg-12, .my-grid-lg,
.my-grid-lg-auto, .my-grid-xl-1, .my-grid-xl-2, .my-grid-xl-3, .my-grid-xl-4, .my-grid-xl-5, .my-grid-xl-6, .my-grid-xl-7, .my-grid-xl-8, .my-grid-xl-9, .my-grid-xl-10, .my-grid-xl-11, .my-grid-xl-12, .my-grid-xl,
.my-grid-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 20px;
  padding-left: 20px;
}


.my-grid {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.my-grid-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.my-grid-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.my-grid-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.my-grid-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.my-grid-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.my-grid-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.my-grid-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.my-grid-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.my-grid-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.my-grid-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.my-grid-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.my-grid-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.my-grid-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}


.section-gap{
	
	padding-top:100px;
	padding-bottom:100px;
}

.text-white{
	color: #fff !important;
}
.text-center{
	text-align: center !important;
}
.justify-content-center{
	justify-content: center;
}
.align-items-center{
	align-items: center;
}
.mb-minus-40{
	margin-bottom: -40px;
}
.mb-40{
	margin-bottom: 40px;
}
.mb-50{
	margin-bottom: 50px;
}
.mb-0{
	margin-bottom: 0 !important; 
}
.mb-100{
	margin-bottom: 100px; 
}
.bg-gray{
	background-color: #c4c4c4;
}
.bg-blue-light{
    background-color: #f2f6f9;
}
.pricing-section {
    background: #f2f6f9;
}
.bg-white{
	background-color: #fff;
}
.bg-dark-blue{
	background-color: #1a2d35;
}
.p-50{
	padding: 50px;
}
.p-30{
	padding: 30px;
}
.img-fluid{
	max-width: 100%;
}
img.img-fluid{
	margin: 0 auto;
	display: block;
}
.slider-sec {
     padding-top: 300px; 
    padding-bottom: 100px;
    /*background-image: url(../img/main-slider.jpg);*/
    /*background-position: 75% 0%;*/
    /*background-blend-mode: overlay;*/
    /*background-color: #0000008c;*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}
.headerHome__scroll {
   display: flex;
    align-items: center;
    z-index: 2;
    cursor: pointer;
    transition: opacity .3s;
    margin-top: 0;
    justify-content: center;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}
.icon-scroll {
    width: 30px;
    height: 50px;
    bottom: auto;
    border: 2px solid #fff;
    border-radius: 25px;
    margin: auto 0;
    position: relative;
}
.icon-scroll:before {
    position: absolute;
    left: 50%;
}
@keyframes scroll {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0;
        transform: translateY(26px)
    }
}
.icon-scroll:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    margin-left: -4px;
    top: 8px;
    border-radius: 4px;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: scroll;
}
section.contact-page + section {
    display: none;
}
.headerHome__scrollText {
    padding-top: 0;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    padding-left: 15px;
}
.slider-video video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    object-position: 20% center;
}
.slider-video img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
.slider-video:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #06060796;
    z-index: -1;
    top: 0;
    left: 0;
}
.w-100{
	width: 100%;
}
.mt-50{
	margin-top: 50px;
}
.mt-100{
	margin-top: 100px;
}
.mt-30{
	margin-top: 30px;
}
.pb-100{
	padding-bottom: 100px;
}
.pb-150{
  padding-bottom: 150px;
}
.pt-130{
  padding-top: 130px;
}
.section-padding{
  padding-bottom: 150px;
  padding-top: 130px;
}
.pt-100{
     padding-top: 100px;
 }
.pt-150{
    padding-top: 150px;
}
.pb-200{
	padding-bottom: 200px;
}
.pt-175 {
    padding-top: 175px !important;
}

.py-100{
	padding-top: 100px;
	padding-bottom: 100px;
}
.mt-20{
	margin-top: 20px;
}
.d-block{
	display: block;
}
.social-wrap {
    display: flex;
    /*justify-content: center;*/
}
.align-items-flex-end {
    align-items: flex-end;
}
.social-wrap li {
    width: 70px;
    height: 70px;
    border: 1px solid #fff;
    border-radius: 50%;
    line-height: 70px;
    font-size: 35px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.social-wrap li a {
    color: #fff;
    width: 100%;
    height: 100%;
    display: block;
}
.nav-menu a{
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    bottom: -4px;
    border-bottom: 2px solid #fff;
    transition: 0.3s;
    left: 0;
}
.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100% !important;
}
.social-wrap li:not(:last-child) {
    margin-right: 25px;
}

a.btn-green {
    padding: 12px 40px;
    background: #f6973a;
    color: #1a2d35;
    font-size: 18px;
    margin-top: 30px;
    display: inline-block;
    transition: all 0.3s;
}
a.btn-green:hover {
    background: white;
}
a.btn-blue {
    padding: 12px 40px;
    background: #1a2d35;
    color: #f6973a;
    font-size: 18px;
    margin-top: 30px;
    display: inline-block;
    transition: all 0.3s;
    border:1px solid #1a2d35; 
}
a.btn-blue:hover {
	color: #1a2d35;
    background: #fff;
}
a.btn-outline {
    padding: 12px 40px;
    border: 1px solid #1a2d35;
    color: #1a2d35;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s;
}

a.btn-outline:hover {
	background: #f6973a;
	border: 1px solid #f6973a;
}
.submit-btn {
    padding: 12px 40px;
    border: 1px solid #f6973a;
    color: #fff;
    background-color:#f6973a; 
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
}

.submit-btn:hover {
	color: #f6973a;
	background: transparent;
	border: 1px solid #f6973a;
}
.card-body a.btn-outline {
    margin-top: 30px;
}
.card-body ul.fa-ul {
    font-size: 18px;
    line-height: 30px;
    margin-top: 20px;
}
.h-100{
	height: 100%;
}
h2{
    font-size: max(2vw, 31px);
}
h3{
    font-size: 26px;
}
.headding h1 {
	font-size: max(5vw, 46px);
}
.headding h2 span, .headding h1 span, .headding h3 span{
    position: relative;
    display: inline-block;
    z-index: 1;
    margin-bottom: 0px;
    line-height: 1;
    color: #1a2d35;
}

.headding h2 span:after , .headding h1 span:after , .headding h3 span:after {
    position: absolute;
    width: 100%;
    height: 30%;
    background: #f6973a;
    content: "";
    bottom: 5px;
    left: 0;
    z-index: -1;
    -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.container:hover .headding h2 span:after,.container:hover .headding h1 span:after,.container:hover .headding h3 span:after,.about_wrap:hover .headding h2 span:after,.Testimonial_wrap:hover .headding h1 span:after, section.section-padding:hover .headding span:after{
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  
}

.text-green {
    color: #f6973a;
}

.headding h1 span:after {
    bottom: 10px;
}
.headding h3 span:after {
    bottom: 2px;
}
.headding h2 span:after {
    bottom: 2px;
}
.bg-light-green{
	background-color: #e6f2ee;
}
.vertical-bottom{
	vertical-align: bottom;
}
.about_us{
	/*top: -150px;*/
    /*position: relative;*/
    /*margin-bottom: -150px;*/
}
.inspiration_us{
	top: -181px;
    position: relative;
    margin-bottom: -181px;
}
.card-body .card-title {
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 26px;
}
.news-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.news-card {
    position: relative;
}
.news-card-title {
    color: #fff;
    font-size: 26px;
    padding-bottom: 20px;
    border-bottom: 2px solid #fff;
    margin-bottom: 20px;
}
.news-icon-wrap > ul {
    margin-bottom: 10px;
}
.news-icon-wrap ul:first-child {
    display: flex;
    margin-bottom: 10px;
}


.news-icon-wrap ul:first-child li span {
    font-size: 14px;
    vertical-align: top;
    color: #fff;
    margin-left: 5px;
}

.news-icon-wrap > ul li:not(:last-child) {
    margin-right: 15px;
}
.news-icon-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: -10px;
}
.news-info span:first-child {
    padding-right: 7px;
    border-right: 1px solid #fff;
    margin-right: 7px;
}
.news-info {
    position: absolute;
    top: 0;
    padding: 30px 0 0 30px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}
.text-dark-blue{
	color: #1a2d35;
}
.logo_wrap img {
    margin: 0 auto;
    transition: all 0.5s;
    cursor: pointer;
}
.pb-30{
	padding-bottom: 30px;
}
.owl-theme .owl-dots .owl-dot span {
    border-radius: 0;
}
:focus {
    outline: -webkit-focus-ring-color auto 0px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #1a2d35;
}
.tesi-card {
    text-align: center;
    background-color: #f7f7f7;
    padding: 0 30px 30px;
}

.tesi-card img {
    max-width: 230px;
    margin: 0 auto;
}
.tesi-card .headding {
    margin-top: 30px;
}
.testi_rate {
    margin: 30px 0;
    font-size: 18px;
    color: #1a2d35;
}
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 20px;
}
.subscribe_wrap h1 {
    font-size: max(3vw, 30px);
    line-height: 1.2;
}
ul.contact_info {
    display: flex;
    justify-content: center;
    margin-bottom: -10px;
}
ul.contact_info li{
	transition: all 0.3s;
	position: relative;
	margin-bottom: 10px;
	font-size: 18px;
}
ul.contact_info li:not(:last-child) {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid white;
}
ul.contact_info a {
    color: #fff;
    white-space: nowrap;
}
ul.contact_info li:hover a {
    color: #f6973a;
}
.contact_wrap .social-wrap li {
    border: 0;
}
.contact_form input,.contact_form select{
    height: 50px;
    width: 100%;
    border: 1px solid #fff;
    background: transparent;
    padding: 10px;
    font-size: 16px;
    color: #fff;
}

.contact_form select option {
    color: #000;
}
.contact_form textarea {
    height: 150px;
    width: 100%;
    border: 1px solid #fff;
    background: transparent;
    padding: 10px;
    font-size: 16px;
    color: #fff;
}
.contact_form label{
	margin-bottom: 10px;
    display: block;
    font-size: 18px;
}
.bg-light-blue{
	background-color: #233943;
}
ul.footer_link {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #ffffff10;
    margin-bottom: 30px;
    padding: 30px 0 20px;
    font-size: 18px;
}
ul.footer_link li {
    transition: all 0.3s;
    position: relative;
    margin-bottom: 10px;
}
ul.footer_link li:not(:last-child) {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid white;
}
ul.footer_link a {
    color: #fff;
}
footer a {
    color: #fff;
    transition: all 0.3s;
}

footer a:hover {
    color: #f6973a;
}
/*.social-wrap li:hover a {*/
/*    color: #1a2d35;*/
/*}*/
.social-wrap li{
    position: relative;
}
.social-wrap li:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:#f6973a;
    left: 0px;
    top: 0px;
    z-index: -1;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.3s;
}
.social-wrap li:hover:after{
    transform: scale(1);
}
.social-wrap li:hover{
    border: 1px solid transparent;
    /*background: white;*/
    transform: scale(1.2);
    transition: all 0.2s;
}
.logo_wrap img:hover {
    transform: scale(1.2);
    transition: all 0.2s;
}
#button {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: -200px;
  transition: all .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#button:hover {
  cursor: pointer;
}

#button.show {
	opacity: 1;
  right: 30px;
	background-color: #fff;
	visibility: visible;
	background-size: 65%;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../img/up-arrow.svg);
}

header + section > div {
    padding-top: 300px !important;
}
.services_page {
    position: relative;
}

.service-bg-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 965px;
    background: #1a2d35;
    /*z-index: -1;*/
}
.services_page > .container {
    position: relative;
}
.header {
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 9999;  
}

.logo {
  margin-right: 30px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1366px;
  width: 100%;
  color: #fff;
  margin: 0 auto;
  min-height: 175px;
  padding: 0 5rem;
}

.nav-menu {
  display: flex;
  justify-content: flex-end;
  width: 50%;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  /*padding-bottom: 5px;*/
  /*border-bottom: 1px solid transparent;*/
  transition: 0.5s;
}
.nav-menu a:hover, .nav-menu a:active, .nav-menu a.active {
  color: #fff;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 30px;
  height: 3px;
  margin: 5px;
  background: #fff;
  transition: all 0.5s ease-in;
}

.burger.active .line1 {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.active .line2 {
  opacity: 0;
}

.burger.active .line3 {
  transform: rotate(-45deg) translate(5px, -6px);
}

.nav-menu.active {
  right: 0;
  width: 50%;
}

@keyframes navLinksFade {
  0% {
    opacity: 0;
    transform: translateY(50px) translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0px);
  }
}

.sticky_header header .nav {
    min-height: 90px;
}

.sticky_header header{
  background: #1a2d35;
  animation: smoothScroll 1s forwards;
}
.sticky_header header .nav .logo img {
    width: 150px;
    /*filter: brightness(1) invert(0);*/
}

.about_three_boxes ul.fa-ul,.about_two_boxes ul.fa-ul {
    font-size: 18px;
    line-height: 30px;
    margin-top: 20px;
}

.about_three_boxes .fa-ul > li:not(:last-child) ,.about_two_boxes .fa-ul > li:not(:last-child) {
    margin-bottom: 10px;
}
.about_three_boxes h3,.about_two_boxes h3 {
    font-size: 23px;
    margin-bottom: 20px;
}
.boxes_wrpa1 {
    padding: 20px;
    background: #f3f4f5 ;
        height: 100%;
}
.boxes_wrpa {
    padding: 20px;
    background: #e6f2ee;
    height: 100%;
}
.about_wrap img {
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/*.container-fluid.about_three_boxes [class*="my-grid-"]:not(:last-child) > .boxes_wrpa {*/
/*    border-right: 1px solid #ffffff36;*/
/*}*/
/*.about_three_boxes .fa-ul > li, .about_three_boxes p, .about_three_boxes h3 span,.produce_wrap .headding h3 span{*/
/*    color: #fff;*/
/*}*/
.about_three_boxes .headding h3 span:after,.produce_wrap .headding h3 span:after {
    background: #6c6c6c;
}
.px0{
    padding-left:0;
    padding-right:0;
    
}
.subscribe_wrap .my-grid-lg-5 img {
    /*margin-top: -75px;*/
    /*padding-bottom: 75px;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*.subscribe_wrap img {*/
/*    position: relative;*/
/*    object-fit: cover;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/
.news-icon-wrap > ul li a {
    display: inline-block;
}

.img_icon {
    display: table-cell;
    vertical-align: middle;
    float: none;
}

.img_icon img {
    width: 45px;
    margin-right: 20px;
}

.produce_boxes_wrap {
   padding: 15px;
   background-color: rgb(255 255 255 / 15%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    height: 100%;
}
.produce_boxes_wrap:hover{
    background-color: rgb(255 255 255 / 30%);
}
.produce_boxes_wrap h4 {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    font-family: Futura Lt BT;
    font-weight: 400;
    color: #fff;
}

.produce_wrap, .bg-img {
    background-image: url(../img/main-slider.jpg);
    background-position: 50% 50%;
    background-blend-mode: overlay;
    background-color: #0000009e !important;
    background-size: cover; 
    background-repeat: no-repeat;
    background-attachment: fixed;
}
  

/*price*/


.sec-title{
  position:relative;
  margin-bottom:70px;
}

.sec-title .title{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1em;
  color: #ff8a01;
  font-weight: 500;
  background: rgb(247,0,104);
  background: -moz-linear-gradient(to left, rgba(247,0,104,1) 0%, rgba(68,16,102,1) 25%, rgba(247,0,104,1) 75%, rgba(68,16,102,1) 100%);
  background: -webkit-linear-gradient(to left, rgba(247,0,104,1) 0%,rgba(68,16,102,1) 25%,rgba(247,0,104,1) 75%,rgba(68,16,102,1) 100%);
  background: linear-gradient(to left, rgba(247,0,104) 0%,rgba(68,16,102,1) 25%,rgba(247,0,104,1) 75%,rgba(68,16,102,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F70068', endColorstr='#441066',GradientType=1 );
  color: transparent;
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 15px;
}

.sec-title h2{
  position:relative;
  display: inline-block;
  font-size:48px;
  line-height:1.2em;
  color:#1e1f36;
  font-weight:700;
}

.sec-title .text{
  position: relative;
  font-size: 16px;
  line-height: 28px;
  color: #888888;
  margin-top: 30px;
}

.sec-title.light h2,
.sec-title.light .title{
  color: #ffffff;
  -webkit-text-fill-color:inherit; 
}
/*.pricing-section {*/
/*    position: relative;*/
/*    padding: 100px 0 80px;*/
/*    overflow: hidden;*/
/*}*/
/*.pricing-section .outer-box{*/
/*  max-width: 1100px;*/
/*  margin: 0 auto;*/
/*}*/


/*.pricing-section .row{*/
/*  margin: 0 -30px;*/
/*}*/

.pricing-block{
  position: relative;
  margin-bottom: 40px;
}

.pricing-block .inner-box{
  position: relative;
  background-color: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  padding: 0 0 75px;
  /*max-width: 370px;*/
  margin: 0 auto;
  height: 100%;
  /*border-bottom: 20px solid #1a2d35;*/
}

.pricing-block .icon-box{
  position: relative;
  padding: 50px 30px 0;
  background-color: #1a2d35;
  text-align: center;
}

.pricing-block .icon-box:before{
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 75px;
  width: 100%;
  border-radius: 50% 50% 0 0;
  background-color: #ffffff;
  content: "";
}


.pricing-block .icon-box .icon-outer{
  position: relative;
  height: 150px;
  width: 150px;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  padding: 10px;
}

.pricing-block .icon-box i{
  position: relative;
  display: block;
  height: 130px;
  width: 130px;
  line-height: 120px;
  border: 5px solid #1a2d35;
  border-radius: 50%;
  font-size: 50px;
  color: #1a2d35;
  -webkit-transition:all 600ms ease;
  -ms-transition:all 600ms ease;
  -o-transition:all 600ms ease;
  -moz-transition:all 600ms ease;
  transition:all 600ms ease;
}

.pricing-block .inner-box:hover .icon-box i{
  transform:rotate(360deg);
}

.pricing-block .price-box{
  position: relative;
  text-align: center;
  padding: 10px 20px;
}

.pricing-block .title{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 1.2em;
  color: #222222;    
  font-weight: 500;
  font-family: Playfair Display;
}

/*.pricing-block .price{*/
/*  display: block;*/
/*  font-size: 30px;*/
/*  color: #222222;*/
/*  font-weight: 700;*/
/*  color: #1a2d35;*/
/*}*/


.pricing-block .features{
  position: relative;
  /*max-width: 250px;*/
  max-width: 90%;
  margin: 0 auto 20px;
}

.pricing-block .features li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #848484;
  font-weight: 500;
  padding: 5px 0;
  padding-left: 30px;
  border-bottom: 1px dashed #dddddd;
}
.pricing-block .features li:before {
    position: absolute;
    left: 0;
    top: 20px;
    font-size: 16px;
    color: #2bd40f;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    margin-top: -8px;
}
.pricing-block .features li.false:before{
  color: #e1137b;
  content: "\f057";
}

.pricing-block .features li a{
  color: #848484;
}

.pricing-block .features li:last-child{
  border-bottom: 0;
}

.pricing-block .btn-box {
    position: absolute;
    bottom: 0;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}
.pricing-block .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 500;
  padding: 8px 30px;
  background-color: #1a2d35;
  border-radius: 0px;
  border-top:2px solid transparent;
  border-bottom:2px solid transparent;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 300ms ease;
}

.pricing-block .btn-box a:hover{
  color: #ffffff;
}

.pricing-block .inner-box:hover .btn-box a{
  color:#1a2d35;
  background:none;
  border-radius:0px;
  border-color:#1a2d35;
}

.pricing-block:nth-child(2) .icon-box i,
.pricing-block:nth-child(2) .inner-box{
  border-color: #1a2d35;
}

.pricing-block:nth-child(2) .btn-box a,
.pricing-block:nth-child(2) .icon-box{
  background-color: #1a2d35;
}

.pricing-block:nth-child(2) .inner-box:hover .btn-box a{
  color:#1a2d35;
  background:none;
  border-radius:0px;
  border-color:#1a2d35;
}

.pricing-block:nth-child(2) .icon-box i
/*.pricing-block:nth-child(2) .price*/
{
  color: #1a2d35;
}

/*.pricing-block:nth-child(3) .icon-box i,*/
/*.pricing-block:nth-child(3) .inner-box{*/
/*  border-color: #ffc20b;*/
/*}*/

/*.pricing-block:nth-child(3) .btn-box a,*/
/*.pricing-block:nth-child(3) .icon-box{*/
/*  background-color: #ffc20b;*/
/*}*/

/*.pricing-block:nth-child(3) .icon-box i,*/
/*.pricing-block:nth-child(3) .price{*/
/*  color: #ffc20b;*/
/*}*/

/*.pricing-block:nth-child(3) .inner-box:hover .btn-box a{*/
/*  color:#ffc20b;*/
/*  background:none;*/
/*  border-radius:0px;*/
/*  border-color:#ffc20b;*/
/*}*/






.container-fluid.about_three_boxes [class*="my-grid-"]:nth-child(2) > .boxes_wrpa{
    background: #f2f6f9;
}

.container-fluid.about_three_boxes [class*="my-grid-"]:nth-child(2) > .boxes_wrpa .boxes_wrap h3,.container-fluid.about_three_boxes [class*="my-grid-"]:nth-child(2) > .boxes_wrpa .boxes_wrap p,.container-fluid.about_three_boxes [class*="my-grid-"]:nth-child(2) > .boxes_wrpa .boxes_wrap li{
    color: #1a2d35 !important;
}


.video-section .item{
  opacity:0.4;
  transition:.4s ease all;
  margin:0 20px;
  transform:scale(.8);
}

@media(max-width:1000px){
  .video-section .item{margin:0; transform:scale(.9)}
}

.video-section .active .item{
  opacity:1;
  transform:scale(1);
} 


.video-section .owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

.video-section video{
  max-width:100%;
  height:auto;
}

.video-section .item {
    opacity: 0.4;
    transition: .4s ease all;
    margin: 0 20px;
    transform: scale(.8);
}













[class*="atb-"] {
    min-width: 150px;
    padding: 15px 20px;
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    text-decoration: none !important;
    text-align: center;
}

.atb-modern-a {
    overflow: hidden;
    color: #444;
    border: 1px solid #eee;
}

.atb-modern-a.atb-warning {
    color: #fff;
    border-color: #f6973a;
}
.atb-modern-a::before, .atb-modern-a::after {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    background: #eee;
    color: #444;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.atb-modern-a::before {
    top: 0;
    /*padding-top: .8em;*/
    /*padding-top: 1.3em;*/
    padding-top: .9em;
}
.atb-modern-a::after {
    bottom: 0;
    line-height: 0;
    /*line-height: 0.3;*/
}
.atb-modern-a:not(.atb-default)::before, .atb-modern-a:not(.atb-default)::after {
    color: #1a2d35;
}
.atb-modern-a.atb-warning:hover {
    background: #1a2d35;
    border-color: #1a2d35;
}
.atb-modern-a.atb-warning::before, .atb-modern-a.atb-warning::after {
    background: #f6973a;
}
.atb-modern-a > span {
    display: block;
    -webkit-transform: scale3d(0.2, 0.2, 1);
    transform: scale3d(0.2, 0.2, 1);
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.atb-modern-a:hover::before {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.atb-modern-a:hover::after {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.atb-modern-a:hover > span {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

a.atb-warning-outline {
    color: #1a2d35;
    border-color: #1a2d35;
    background: transparent;
}

.atb-modern-a.atb-warning-outline::before, .atb-modern-a.atb-warning-outline::after {
    background: #fff;
}

.atb-modern-a.atb-warning-outline {
    border-color: #1a2d35;
}

.atb-modern-a.atb-warning-outline:hover {
    background: #f6973a;
    border-color: #f6973a;
    color: #fff;
}

.container-fluid.about_three_boxes [class*="my-grid-"] .boxes_wrpa:before {
    position: absolute;
    width: 100%;
    height: 5px;
    content: "";
    background: #f6973a;
    left: 0;
    bottom: 0;
    -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.container-fluid.about_three_boxes [class*="my-grid-"]:hover .boxes_wrpa:before{
    -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.container-fluid.about_three_boxes > [class*="my-grid-"] {
    position: relative;
}
.container-fluid.about_three_boxes [class*="my-grid-"]:nth-child(2) > .boxes_wrpa:before{
    background: #1a2d35;
}
 .pricing-block .inner-box:hover i {
    color: #fff;
    background: #1a2d35;
}
.testimonial_Sec .headding, .home_testimonial_Sec .headding {
    text-align: center;
    /*padding-top: 20px;*/
    /*padding-bottom: 20px;*/
}
section.section-padding.testimonial_Sec:hover .headding span:after{
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

section.section-padding.testimonial_Sec .my-grid-lg-6:hover .headding span:after{
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.atb-modern-a.atb-dark-green {
    color: #fff;
    border-color: #1a2d35;
}

.atb-modern-a.atb-dark-green::before, .atb-modern-a.atb-dark-green::after {
    background: #1a2d35;
    color: #fff;
}

.atb-modern-a.atb-dark-green:hover {
    background: #f6973a;
    border-color: #f6973a;
    color: #fff;
}


.inner-box:hover  .icon-box {
    background: #f2f6f9;
}

.inner-box:hover {box-shadow: none;transform: scale(1.05);transition: .3s;border-bottom-color: transparent !important;}

.inner-box {
    transition: .3s;
}

.inner-box:hover  i {background: linear-gradient(45deg, #e1672c, #f59639) !important;}

.inner-box:hover li {
    font-size: 16px !important;
    color: #000;
    font-weight: 600;
}

/*.inner-box:hover ul {max-width: 250px;}*/

.inner-box:hover  a.theme-btn {
    background: linear-gradient(45deg, #e1672c, #f59639) !important;
    color: #FFF !important;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
}

.plyr--video .plyr__controls{
        padding: 0px 5px 5px !important;
}
@media (min-width: 480px){
    .plyr--video .plyr__controls {
            padding: 0px 10px 10px !important;
    }
}
.plyr--video .plyr__controls {
    display: none;
}

.plyr--video:hover .plyr__controls {
    display: flex;
}

.container-fluid.about_three_boxes {
    padding-left: 0;
    padding-right: 0;
}

a.logo img{
    max-width: 200px;
    filter: brightness(0) invert(1);
}














.butterfly {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: auto;
    transform: translateX(500px);
    opacity:0;
    
}
.butterfly.butterfly-anim-start {
    animation: flyaway 30s 0 linear;
    animation-iteration-count: 1;
    opacity:1;
}
@keyframes flyaway {
	0% {
		transform: rotateX(0deg) rotateZ(0deg) scale(1) translate3d(0, 0, 0);
	}
	30% {
		transform: rotateX(20deg) rotateZ(-20deg) scale(0.7)
   translate3d(-110vmin, -100vmin, 0);
	}
	40% {
		transform: rotateX(20deg) rotateZ(-20deg) scale(0.7)
   translate3d(-110vmin, -100vmin, 0);
	}
	55% {
		transform: rotateX(20deg) rotateZ(-20deg) scale(0.7)
    translate3d(-300vmin, -100vmin, 0);
	}
	60% {
		transform: rotateX(20deg) rotateZ(-20deg) scale(0.7)   translate3d(-310vmin, -100vmin, 0) rotate3d(0, 1, 0, 180deg);
	}
	65% {
		transform: rotateX(20deg) rotateZ(-20deg) scale(0.7)   translate3d(-230vmin, -100vmin, 0) rotate3d(0, 1, 0, 180deg);
	}
	/*70% { transform: rotateX(30deg) rotateZ(0deg)    scale(0.1) translate3d(300vmin, -200vmin, 0); }*/
	100% {
		transform: rotateX(1deg) rotateZ(-3deg) scale(1) translate3d(50vmin, 0vmin, 0)  rotate3d(0, 1, 0, 180deg);
	}
}
.butterfly .wing.right,.nav .wing.right {
    animation: wingBottomFlap2 0.4s 0s ease-in-out infinite;
    transform-origin: 0 70%;
}
@keyframes wingBottomFlap2 {
  0%, 100% { transform: rotate3d(0, 0, 0, 10deg) scaleY(1); }
  50% { transform: rotate3d(0, 0, 0, 30deg) scaleY(0.8) }
}

.butterfly .wing.left,.nav .wing.left {
    transform-origin: 0 70%;
    animation: wingBottomFlap1 0.4s 0s ease-in-out infinite;
}
@keyframes wingBottomFlap1 {
  0%, 100% { transform: rotate3d(0, 0, 0, 10deg) scaleY(1); }
  50% { transform: rotate3d(1, 0, 0, -30deg) scaleY(1); }
}

.logo svg {
    width: 90px;
    position: absolute;
    opacity:0;
    right: -500px; top: -70px;
}
.logo svg.logo-anim-start{   
    right: -60px;
    top: -8px;
    opacity:1;
    animation: logo 5s 0s linear;
    
}
@keyframes logo {
  0%{ right: -500px; top: 20px;opacity:1; }
  100% { right: -60px; top: -8px; }
}
a.logo {
    position: relative;
}

body.sticky_header .logo svg {
    /*opacity:0;*/
}

body.sticky_header .logo svg.logo-anim-start{
    right: -60px;
    top: -23px;
    animation: logo1 5s 0s linear;
}
@keyframes logo1 {
  0%{ right: -500px; top: 0px;opacity:1; }
  100% { right: -60px; top: -23px; }
}
header + main section:first-child .headding.text-white,header + main section:first-child h1.text-white {
    color: #f6973a !important;
}
@media (max-width: 575.98px){
    .nav .logo img {
        width: 150px;
    }
    .logo svg {
        width: 90px;
        position: absolute;
        opacity:0;
        right: -500px; top: -70px;
        
    }
    
    .logo svg.logo-anim-start{
        right: -60px;
        top: -23px;
    }
    
    
}
img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
    width: 50px;
}
img.vert-move {
    width: 50px;
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.uturn{
    animation: uturn 10s infinite;
	width: 85px;
	vertical-align: text-top; 
}
@keyframes uturn {
      0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(120px);
    }
    51% {
        transform: rotatey(
    180deg) translateX(-120px);
    }
    100% {
        transform: rotatey(
    180deg) translateX(0px);
    }
}


.ploicy_wrap h2 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.3;
}

.ploicy_wrap p {
    margin-bottom: 12px;
}

.ploicy_wrap h3 {
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 1.3;
}

.ploicy_wrap h4 {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.3;
}

.ploicy_wrap ul, .ploicy_wrap ol {
    list-style: unset;
    padding-left: 20px;
    margin-bottom: 20px;
}

.ploicy_wrap li {
    margin-bottom: 7px;
}


.fab.fa-twitter{
	font-family:sans-serif;
}
.fab.fa-twitter::before{
	content:"𝕏";
	font-size:1.2em;
}