/*======================
   01. fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;900&amp;display=swap');
@font-face {
    font-family: sf-regular;
    src: url(../webfonts/SFProDisplay-Regular.ttf);
}
@font-face {
    font-family: sf-Bold;
    src: url(../webfonts/SFProDisplay-Bold.ttf);
}
@font-face {
     font-family: sf-Bold;
    src: url(../webfonts/Pacifico-Regular.ttf);
}
/*======================
   02. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Raleway', sans-serif;
    color: #000;
    font-weight: 400;
    overflow-x: hidden;
    background-color: #fafafa;
}
ol,
ul {
    list-style: none;
}
a:hover {
    text-decoration: none;
    color: inherit;
}
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: none;
}
.bounce {
    -webkit-animation: float 1500ms infinite ease-in-out;
    animation: float 1500ms infinite ease-in-out;
}
@-webkit-keyframes float {
    0% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }
    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px)
    }
    100% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }
}
@keyframes float {
    0% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }
    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px)
    }
    100% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }
}

/*======================
   03. Preloader css
========================*/
.proloader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
    background: #fff;
}
.loader_34 {
    /* Preloader */
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.loader_34 .ytp-spinner {
    /* Spinner Container */
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    margin-left: -32px;
    z-index: 18;
    pointer-events: none;
}
.loader_34 .ytp-spinner .ytp-spinner-container {
    pointer-events: none;
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    top: 50%;
    left: 50%;
    margin-top: -50%;
    margin-left: -50%;
    animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
    -webkit-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
}
.loader_34 .ytp-spinner-rotator {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
    animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
}
.loader_34 .ytp-spinner-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}
.loader_34 .ytp-spinner-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.loader_34 .ytp-spinner-left {
    /* Position inside Container*/
    right: 50%;
}
.loader_34 .ytp-spinner-right {
    /* Position inside Container*/
    left: 50%;
}
.loader_34 .ytp-spinner-circle {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    width: 200%;
    height: 100%;
    border-style: solid;
    /* Spinner Color */
    border-color: #6fb744 #6fb744 transparent;
    border-radius: 50%;
    border-width: 6px;
}
.loader_34 .ytp-spinner-left .ytp-spinner-circle {
    left: 0;
    right: -100%;
    border-right-color: transparent;
    -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
    animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
}
.loader_34 .ytp-spinner-right .ytp-spinner-circle {
    left: -100%;
    right: 0;
    border-left-color: transparent;
    -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
    animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
}
/* Preloader Animations */
@-webkit-keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
    }
    25% {
        -webkit-transform: rotate(270deg);
    }
    37.5% {
        -webkit-transform: rotate(405deg);
    }
    50% {
        -webkit-transform: rotate(540deg);
    }
    62.5% {
        -webkit-transform: rotate(675deg);
    }
    75% {
        -webkit-transform: rotate(810deg);
    }
    87.5% {
        -webkit-transform: rotate(945deg);
    }
    to {
        -webkit-transform: rotate(1080deg);
    }
}

@keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    25% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
    37.5% {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }
    50% {
        -webkit-transform: rotate(540deg);
        transform: rotate(540deg);
    }
    62.5% {
        -webkit-transform: rotate(675deg);
        transform: rotate(675deg);
    }
    75% {
        -webkit-transform: rotate(810deg);
        transform: rotate(810deg);
    }
    87.5% {
        -webkit-transform: rotate(945deg);
        transform: rotate(945deg);
    }
    to {
        -webkit-transform: rotate(1080deg);
        transform: rotate(1080deg);
    }
}

@-webkit-keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
    }
    50% {
        -webkit-transform: rotate(-5deg);
    }
    to {
        -webkit-transform: rotate(130deg);
    }
}

@keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }
    50% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    to {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }
}

@-webkit-keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
    }
    50% {
        -webkit-transform: rotate(5deg);
    }
    to {
        -webkit-transform: rotate(-130deg);
    }
}

@keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
    50% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    to {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
}
.hamburger-menu {
    cursor: pointer;
    position: absolute;
    right: 15px;
    display: none;
    z-index: 999;
    top: -15px;
}
.hamburger-menu span {
    background: #6fb744;
    width: 30px;
    height: 3px;
    display: block;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.hamburger-menu:hover .line-top {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}
.hamburger-menu:hover .line-bottom {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}
.hamburger-menu .line-top.current {
    -webkit-transform: translateY(200%) rotate(135deg);
    -ms-transform: translateY(200%) rotate(135deg);
    transform: translateY(200%) rotate(135deg);
}
.hamburger-menu .line-center.current {
    opacity: 0;
}
.hamburger-menu .line-bottom.current {
    -webkit-transform: translateY(-325%) rotate(-135deg);
    -ms-transform: translateY(-325%) rotate(-135deg);
    transform: translateY(-325%) rotate(-135deg);
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1024;
    width: 100%;
}
header.sticky{
    background-color: #fff;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
#menu {
    margin-top: -1px;
    text-align: right;
}
#menu li {
    display: inline-block;
}
#menu li a {
    font-size: 17px;
    color: #444444;
    padding: 0 30px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-weight: 500;
}
#menu li:last-child a{
    padding-right: 0;
}
#menu>li>a.active,
#menu>li>a:hover {
    color: #6fb744;
}
.logo{
    max-width: 165px;
    width: 100%;
    display: inline-block;
}
header #menu li a.button{
  border-radius: 5px;
  font-size: 17px;
  color: #ffffff;
  padding: 10px 18px;
  margin-left: 15px;
  font-weight: 600;
  min-width: auto;
}
.title {
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
}
.sub_title {
    font-weight: 500;
    color: #878787;
    font-size: 20px;
    line-height: 30px;
    margin-top: 10px;
}
.landing_wrapper {
    padding-top: 70px;
}
.delivery_wrapper {
    padding: 80px 0;
}
.delivery_box_wrapper {
    color: #444444;
    font-size: 20px;
    line-height: 27px;
    font-weight: 500;
}
.custom_grid .col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 204px;
    flex: 0 0 204px;
    max-width: 204px;
}
.custom_grid .line_shape {
    position: absolute;
    max-width: calc(100% - 145px);
    left: 50%;
    top: 20px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.delivery_box {
    border: 2px solid rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    background-color: #f9fcfe;
    -webkit-box-shadow: 0px 14px 13px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 14px 13px 0px rgba(0, 0, 0, 0.07);
    height: 165px;
    margin-bottom: 20px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.delivery_box_wrapper:hover .delivery_box {
    background-color: #6fb744;
    border-color: #6fb744;
}
.delivery_box_wrapper .delivery_box img {
    max-height: 60px;
}
.delivery_box_wrapper p {
    color: #878787;
}
.delivery_box_wrapper:hover .delivery_box img {
    -webkit-filter: brightness(427%) contrast(286%);
    filter: brightness(427%) contrast(286%);
}
/* launch box */
.launch_wrapper {
    padding: 60px 0;
}



/* get free */
.getfre_wrapper {
    padding-bottom: 75px;
}
.get_text p {
    font-size: 22px;
    line-height: 38px;
    font-weight: 500;
    color: #7a7a7a;
    max-width: 480px;
}
.getp_text {
    max-width: 514px !important;
}
.get_text img {
    max-height: 535px;
}
.gshape1 {
    top: 14px;
    left: -83px;
}
.gshape2 {
    top: 49px;
    right: 40px;
    width: 85px;
}
.gshape3 {
    bottom: 0;
    left: -68px;
}


footer{
    background-color: #19191b;
}
footer ul li a,
footer p{
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
footer ul li{
    margin-top: 15px;
}
footer a:hover,
footer a.media:hover p{
    color: #6fb744;
}
footer h4{
    font-size: 22px;
    font-weight: bold;
}
footer .sub_title{
    font-size: 16px;
    line-height: 35px;
    margin-top: 20px;
}
footer .media img{
    width: 22px;
}
.footer_bottom{
    padding-bottom: 25px;
    border-top: 1px solid #202022;
}
.footer_bottom a img{
    height: 35px;
}
.social_icons a{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid #6fb744;
    color: #6fb744;
}
.social_icons a:hover{
    background-color: #6fb744;
    color: #ffffff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
/*return-to-top START CSS*/
.back-to-top {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: none;
    position: fixed;
    bottom: 70px;
    right: 15px;
    z-index: 1000;
    border-radius: 50%;
}
.back-to-top i {
    color: #fff;
}

/* custom-css */
.download-app-img {
	display: inline-block;
		margin: 20px 0px;
}
.download-app-img img {
	width: 150px;
	height: 50px;
   margin: 0px 0px 10px;
}

@media (max-width: 575px) {
    .landing_wrapper h1 {
        font-size: 36px!important;
    }
}
@media (max-width: 991px) {
#menu li a {
    font-size: 30px;
}

}

.payment-img img {
    width: 100%!important;
    height: auto;
    margin-top: 20px;
}
.payment-op {
    background-color: #fff;
    padding: 30px 0;
}

/*blog list page */

.banner-blog {
    position: relative;
}
.banner-blog img, .blog-list-img img  {
    width: 100%;
    max-width: 100%;
}
.mytro-color {
    color: #9eb638;
}
.blog-tm {
    margin-top: 30px;
}
.blog-section {
    padding: 40px 0;
}
.blog-section .blog-list-img {
    text-align: center;
}
  .blog-l-detail {
      padding-top: 10px;
  }
 .blog-l-detail .blog_title {
     font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
 }
 .blog-l-detail .blog_title a {
     color: #212121;
 }
 .blog-l-detail .blog-meta {
     font-size: 15px;
      margin: 0 0 20px;
 }
 .blog-l-detail .blog-meta .blog-author {
     margin-right: 8px;
 }
 .blog-l-detail .blog-readmore {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 11px;
    margin-top: 15px;   
    padding: 6px 18px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
    transition: all .3s ease;
     background-color:  #9eb638;
     color: #fff!important;
 }
 .blog-l-detail .blog-readmore:hover {
     cursor: pointer;
 }
 
 /* blog-detail page */
 .detail-page-banner {
    height: 450px; 
    background-repeat: no-repeat;
      background: url(../img/banner-1.jpg);
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
 }
 .detail-page-banner .banner-detail-overly .blog-detail-title {
   text-align: center;
    top: 50%;
    transform: translate(-50% , -50%)!important;
    position: absolute;
    left: 50%;
    width: 100%;
 }
.banner-detail-overly {
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.7);
}
.banner-detail-overly .blog-detail-title h1 {
    font-weight: 600;
    color: #000;
    font-size: 45px;
}
 .blog-detail-sec {
     padding: 40px 0;
 }
  .blog-detail-sec p {
      margin-bottom: 15px;
  }
   .blog-detail-sec ol {
       list-style-type:decimal;
        padding-left: 15px;
  }
    .blog-detail-sec ul {
       list-style: disc;
       padding-left: 15px;
        margin-top: 15px;
        margin-bottom: 15px;
  }
 
 @media (max-width: 991px) {
  .banner-detail-overly .blog-detail-title h1 {
    font-size: 25px;
}
}
.banner-bg {
    background-image: url("../img/Banner.jpg");
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}
.banner-detail {
   padding-top: 12%;
    text-align: center;
}
.banner-detail h2 {
    font-family: Pacifico;
     font-weight: 400;
    font-size: 4rem;
    line-height: 2;
}
.banner-dw {
    margin-top: 35px;
}
.app-shot {
    margin-top: 80px;
    margin-bottom: 110px;
}
.choose-us {
    text-align: center;
}
.choose-us img {
    width: 40px;
    margin-bottom: 20px;
}
.choose-banner {
    background-image: url("../img/Milk-Splash.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #000;
}
.launch_wrapper img {
    width: 175px;
    margin-bottom: 20px;
}
.custom_app_wrapper {
    padding-bottom: 90px;
    padding-top: 30px;
}
.custom_app_wrapper .title {
    margin-bottom: 70px;
}
 @media (max-width: 1024px) {
  .banner-detail h2 {
    font-size: 2rem;
}
.banner-bg {
    height: 100%;
}
}
