:root {

--blue:#409CFF;
--darkblue:#1792CE;
--green:#12BD4F;
--lightgreen:#74CF9E;
--lightblue:#7DC7FF;
--orange:#FFCF3B;
--color:#545454;
--hcolor:#000000;
--white:#fff;
--boxtext:#333333;
--bg:#FAF5EB;
--yellow:#FFFC45;



}


header {
    background:var(--bg);
    padding:15px 0;
    width: 100%;
    z-index: 99;
}
.logo{
    width:210px;
}
.head-top{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.head-left{
    display: flex;
    width:25%;
}
.head-left .logo img {
    height: auto;
}
.head-right{
    display: flex;
    justify-content:space-between;
    width:75%;
    align-items: center;
 
}
.mobile-menu{
    display: none;
}
.menu-toggle{
    display: none;
}
.menu-list{
    display: flex;
    flex-wrap: wrap;
}
.menu-list li{
    padding:0px 13px;
    margin-bottom: 0;
}
.menu-list li a {
    font-weight:500;
    font-size:18px;
    color: #333;
}
.menu-list li.current-menu-item>a, 
.menu-list li.current_page_ancestor>a{
    color:var(--green);
}
 
 .menu-list>li.current-menu-item a{
    position: relative;
     color:#333 !important;
 }
 .menu-list>li a{
    position: relative;
    color: #333;
 }
  .menu-list>li a:after{
     position: absolute;
    width:0%;
    content: '';
    height:3px;
    background: var(--green);
    left:0;
    bottom:-8px;
    transition-duration:0.3s;
  }
  .menu-list>li.current-menu-item a:after, .menu-list>li a:hover:after{
    position: absolute;
    width:100%;
    content: '';
    height:3px;
    background: var(--green);
    left:0;
    bottom:-8px;
    transition-duration:0.3s;
  }
  .foot-menu li a{
    position: relative;
  }
  .foot-menu li a:after{
    position: absolute;
    width:0%;
    content: '';
    height:1px;
    background: var(--white);
    left:0;
    bottom:-5px;
    transition-duration:0.3s;
  }
   .foot-menu li:hover a:after{
      width:100%;
    transition-duration:0.3s;
   }
.menu-button{
    display: flex; 
    justify-content: space-between;
    align-items: center;
    width:100%;
}
 li.menu-item-has-children{
    position: relative;
 }
li.menu-item-has-children .sub-menu {
    position: absolute;
    z-index: 99;
    left:0;
       width: 150px;
}

li.menu-item-has-children  .sub-menu .sub-menu {
 position: absolute;
    z-index: 99;
    left: 100%;
    width: 150px;
    top: 0;
}
.menu-list>li.menu-item-has-children>.sub-menu{
    padding-top:8px;
}
.sub-menu{
    transform: scaleY(0);
    transform-origin:top;
    transition-duration:0.3s;
}
li.menu-item-has-children:hover>.sub-menu{
     transform: scaleY(1);
    transition-duration:0.3s; 
}
.menu-list>li.menu-item-has-children>.sub-menu:before{
position: absolute;
    top:0px;
    left: 25%;
    content: "";
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffefd0; 
}
.sub-menu>li.menu-item-has-children a{
    position: relative;
}
.sub-menu>li.menu-item-has-children>a:after{
    position: absolute;
    right: 5px;
    content: '\f105';
    font:normal normal normal 14px/1 FontAwesome;
}

.sub-menu li{
    padding:0;
}
li.menu-item-has-children i {
    display: none;
}
.sub-menu li a {
   padding: 12px 10px;
    display: block;
    background:#ffefd0;
    border-bottom: solid 1px #e9dabf;
}
.sub-menu li a:hover {
    background: var(--green);
    color: var(--white);
}
a.eligible{
    background:var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 210px;
    border-radius:30px;
    height:50px;
    font-weight:600;
    color:var(--white);
}
a.eligible:hover{
 background:var(--blue);   
}




footer{
    background:var(--blue);
    padding:80px 0px 0px;
}
.foot-full{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 35px;
}
.foot{
width:18%;
}
footer h4{
    font-size: 16px;
    font-family: 'Rawson Alt';
    font-weight:600;
    color: #fff;
    margin-bottom:15px;
}
footer a, footer p{
    color: #fff;
    font-size:15px;
}
footer a:hover {
    color: #d4e46d;
}
.foot.five{
    text-align: right;
}
p.call, p.mail{
padding-bottom: 0;
position: relative;
padding-left:20px;
}
p.call:before{
    position: absolute;
    left: 0;
    content: '\f095';
    font:normal normal normal 14px/1 FontAwesome;
    top: 7px;
    font-size:14px;
}
.quick-links li{
    margin-bottom: 10px;
}
p.mail:before{
    position: absolute;
    left: 0;
    content: '\f124';
    font:normal normal normal 14px/1 FontAwesome;
    top: 7px;
    font-size:14px;
}
.get-but a{
    height: 50px;
    width: 165px;
    border: solid 1px #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    padding: 5px;
    align-items: center;
    text-transform: capitalize;
    font-weight: 500;
    margin-left: auto;
    line-height: 1;  
}
.get-but a:hover {
    background:#fff;
    color: #10aa47;
}
.social{
    margin-top:15px;
}
.social a {
    height: 40px;
    width:40px;
    border-radius: 50%;
    border:solid 1px #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 6px;
}
.social a:hover{
    background: #fff;
    color: #10aa47;
}
.footer-bottom{
    padding:25px 0px;
    border-top:solid 1px #bfbfbf;
}
.footer-bottom p {
     padding-bottom: 0px;
    font-size: 12px;
}
section.banner{
    position: relative;
    padding:0;
    background:var(--bg);
}
.banner-full{
    display: flex;
    justify-content: space-between;
    width:100%;
    flex-wrap: wrap;
    position: relative;
    padding-top: 15px;
}
section.banner .slick-track
{
    display: flex !important;
}

section.banner .slick-slide
{
    height: inherit !important;
}
.banner-left, .banner-img{
    width:50%;
}
 .banner-full, .banner-one, .banner-one .wrapper-f,section.banner .slick-slide>div {
height:100%;
 }
 .three .no-left img{
    object-position: left;
 }
 .banner-one .wrapper-f{
max-width:100%;
 }
.banner-img img {
    width:100%;
    height:100%;
    object-fit: contain;
    object-position: right bottom;
    max-height:800px;
}
.banner-content{
    padding:80px 100px 80px 80px;
}
.banner-content .ban-text {
    padding-right: 85px;
}
.banner-content .waitlist {
font-weight:600;
font-size:16;
}
.waitlist span{
padding-right:8px;
    border-right: solid 2px var(--color);
    margin-right: 8px;
    line-height: 1px;
}
.banner-content h1 span {
    font-weight:300;
    display: block;
    padding-right:30px;
}
.banner-one{
    background:var(--bg);
}
.banner-content h1 {
    margin-bottom: 0px;
}
.banner-content h2{
    font-weight: 300;
}

section.banner .slick-prev:before, section.banner .slick-next:before{
      color: var(--white);
    height: 40px;
    width: 40px;
    background: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
 
section.banner:hover .slick-prev:before,
section.banner:hover .slick-next:before{
    display: flex;
}


.banner-bottom{
    padding:65px 0;
    background: var(--blue);
}
.serving-fm{
    display: flex;
    justify-content: space-between;
    max-width:900px;
    margin:0 auto;
    align-items: center;
    flex-wrap: wrap;
}
.serving-fm ul {
    padding-left:0;
    display: flex;
    justify-content:space-between;
}
.serving-fm p{
    padding-bottom:0;
    line-height:1;
    color: var(--white);
}


.serving-fm ul li{
    margin-bottom: 0;
    padding:0 30px;
    line-height: 1;
    position: relative;
}
.serving-fm ul li a {
    color: var(--white);
 font-size:30px;
}

.serving-fm ul li:last-child{
    padding-right: 0;
}

.serving-fm ul li:after{
    position: absolute;
    content: '';
    background: var(--white);
    height: 20px;
    width: 1px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.serving-fm ul li a {
    color: var(--white);
 font-size:30px;
}
.serving-fm ul li a:hover{
    color: var(--yellow);
}
.serving-fm ul li:last-child:after{
    display: none;

}

    .serving-fm ul li:after{
    position: absolute;
    content: '';
    background: var(--white);
    height: 20px;
    width: 1px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}




.parenting{
    text-align: center;
}
.parenting h2 {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 42px;
}
.parant-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
 .parant-box .slick-slide{  
    padding:0 8px;
    }
  .parant-box  .slick-dots{
    display: none !important;
    }
.parent{
    width:24%;
    background:var(--bg);
    padding:30px 18px;
    overflow: hidden;
    border-radius: 25px;
    position: relative;
}
.parent:after{
    position: absolute;
    content:'';
    height: 8px;
    background:#000;
    width: 100%;
    bottom: 0;
    transition-duration: 0.2s;
    left: 0;
}
.parent:hover:after{
    height: 15px;
    transition-duration: 0.2s;
}
.parent .box{
    min-height:200px;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
 
}
.parent .box p{
    color: var(--boxtext);
    font-size: 20px;
    padding-bottom:0;
    font-weight: 500;
}
.parent .box:after{
    position: absolute;
    content: '';
    height:30px;
    width:30px;
    background: url(../img/blue.webp);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: 50%;
    font-size: 24px;
    transform: translateX(-50%);
}

.parent .box:before{
     position: absolute;
    content: '';
    height:30px;
    width:30px;
    background: url(../img/blue.webp);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    font-size: 24px;
}

.parent.bx1:after{
    background:var(--darkblue);
}
 .parent.bx1 .box:after, .parent.bx1 .box:before {
     background: url(../img/blue.webp);
         background-size: contain;
    background-repeat: no-repeat;
}


.parent.bx2:after{
    background:var(--orange);
}
 .parent.bx2 .box:after, .parent.bx2 .box:before {
     background: url(../img/yellow.webp);
         background-size: contain;
    background-repeat: no-repeat;

}


.parent.bx3:after{
    background: var(--blue);
}
 .parent.bx3 .box:after, .parent.bx3 .box:before {
     background: url(../img/lightblue.webp);
         background-size: contain;
    background-repeat: no-repeat;
}


.parent.bx4:after{
    background:var(--lightgreen);
}
 .parent.bx4 .box:after, .parent.bx4 .box:before {

     background: url(../img/green.webp);
         background-size: contain;
    background-repeat: no-repeat;
}

section.no-mater{
    padding:0 0;
    background: var(--lightblue);
}
.no-full{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}
.no-left{
    width:50%;
    height:100%;
}
.no-right {
    width:50%;
    padding: 80px 140px 80px 80px;
    height:100%;
}

.no-left figure{
    height:100%;
}
.no-left img {
      height:750px;
    width: 100%;
    object-fit: cover;
    height:100%;
}
.no-right h3{
    margin-bottom:25px;
    color: var(--white);
}
.no-right p{
    padding-bottom:25px;
    color: var(--white);
    padding-right:0px;
        font-family: 'Produkt Web';
    font-weight:300;
}
.no-right.home-left p{
    padding-right:0px;
}
.no-right p:last-child{
    padding-bottom: 0;
}
 
section.what-aba {
    padding:0;
    position: relative;
    overflow: hidden;
}
section.what-aba:before{
position: absolute;
    content: '';
    background: url(../img/aba-after.png);
    height: 300px;
    width: 300px;
    right: -15px;
    bottom: -80px;
}
.aba-full{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.aba-left{
    width: 50%;
    padding:100px 150px 100px 80px;
    background: var(--green);
}
.aba-left h3{
    color:var(--white);
    margin-bottom:30px;
}
.aba-left p{
    color:var(--white);
}
.aba-right h3{
    margin-bottom:30px;

}
.aba-right{
     width: 50%;
    background: var(--bg);
        padding:100px 50px 100px 70px;

}
.buttons a{
    display: inline-flex;
    font-size:16px;
    min-height:54px;
    min-width: 160px;
    padding: 10px 22px;
    color: var(--white);
    border:solid 1px var(--white);
    justify-content: center;
    align-items: center;
    border-radius:50px;
    margin-top:30px;
    text-transform: capitalize;
    line-height: 1;
    font-weight:600;
    line-height:1.1 !important;
}


.buttons a:hover{
    background: var(--white);
    color: var(--green);
}
.ban-button .buttons:first-child a{
border-color: var(--green);
background: var(--green);
margin-right:15px;
color: var(--white);
}
.ban-button {
    display: flex;
    flex-wrap: wrap;
}
.ban-button .buttons:last-child a {
border-color: var(--green);
color: var(--green);
background:transparent;
}
.ban-button .buttons a:hover{
    background: var(--blue);
    color: var(--white);
        border-color:var(--blue);
}

.what-slide{
    padding-right:100px;
}
.what-slide .slick-next, .what-slide .slick-prev{
background: var(--blue);
height: 35px;
width:35px;
color: var(--white);
border-radius:50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.what-slide .slick-prev{
    top: 0;
    left: inherit;
    right: 0;
}
.what-slide .slick-prev:before{
    content: "\f106";
    font:normal normal normal 14px/1 FontAwesome;
}
.what-slide .slick-next:before{
   content: "\f107";
    font:normal normal normal 14px/1 FontAwesome;
}
.what-slide .slick-next{
    right: 0;
    top: 45px;
}
.custom_paging{
    position: absolute;
    top: -65px;
    right:0;
}
.custom_paging li{
    display: none;
    transform: rotate(90deg);
      color: var(--blue);
    font-weight:600;
}
.custom_paging li.slick-active{
    display: block;
}





section.logo-sec{
    padding:50px 0px;
    background:var(--white);
    text-align: center;
}
.logo-full {
    display: flex;
    justify-content:center;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 20px;
    align-items: center;
}
.c-logo{
padding:0 10px;
}
.c-logo img {
    height: auto;
}

ul.tick{
padding-left: 0;
}
p.p400{
    font-weight: 400;
}
ul.tick li {
    padding-left:22px;
    position: relative;
    color: var(--white);
    font-weight:200;
}

ul.tick  li:before {
 position: absolute;
 content: '\f00c';
font:normal normal normal 14px/1 FontAwesome;
font-size: 18px;
left: 0;
font-weight:100;
color: var(--yellow);
-webkit-text-stroke: 1.3px var(--blue);
}
.no-mater.second {
background: var(--blue);
}
.no-mater .accordian .title, p.p400{
    font-family: 'Rawson Alt';
}
.no-mater .accordian .content p{
    font-family: 'Rawson Alt';
    font-weight:200;
}
.no-mater  .accordian .content ul li{
    padding-left:20px;
    position: relative;
    margin-bottom:10px;
    color: #fff;
    font-weight: 300;
    font-size:16px;
}
.no-mater  .accordian .content ul li:before {
    position: absolute;
    content: '\f00c';
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 15px;
    left: 0;
    top:4px;
    font-weight: 100;
    -webkit-text-stroke: 1px var(--blue);
    color: #FFFC45;
}
.no-mater .accordian .content p{
    font-size:16px;
}
.no-mater .accordian .content ul li:last-child{
    margin-bottom:0px;
}
.no-mater .accordian .acc:first-child{
padding-top: 0px;
border-top:none;
}
.no-mater.second  .no-right{
    padding-right:100px;
}
.no-mater.second  .no-left img{
min-height: 780px;
}

.content p{
    padding-bottom:15px;
    line-height:1.3;
}
.content p:last-child{
    padding-bottom: 0;
}
p.title{
    padding-bottom:0;
    line-height:1;
    font-weight:400;
}
.accordian {
    padding:30px 0px 0px;
}
.acc{
    padding: 30px 0;
    border-top: solid 1px #fff;
   
}
.acc:last-child{
 border-bottom: solid 1px #fff;
}
.accordian .title{
    padding-right:30px;
    position: relative;
    cursor: pointer;
}
.accordian .title:after{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right:0;
    content: '';
    height:1px;
    width: 10px;
    background: var(--white);

}
.accordian .title:before{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right:4px;
    content: '';
    height:10px;
    width: 1px;
    background: var(--white);
    transition-duration: 0.2s;

}
.accordian .acc .title.active:before{
    height: 0px;
    transition-duration: 0.2s;
}
.content{
    display: none;
    margin-top:15px;
}

section.green-sec{
    background: var(--green);
}
.green-des h2, .green-des p {
    color: var(--white);
}

.green-des{
    text-align: center;
    text-align: center;
    max-width:800px;
    margin: 0 auto;
}
.green-des p{
    max-width:730px;
    margin: 0 auto;
    font-family: 'Produkt Web';
}
.green-one{
    width:49%;

}
.green-in{
       background: var(--white);
    padding:40px;
    border-radius: 60px; 
}
.green-in .content {
    padding-right:40px;
}
.green-in  .accordian{
    padding-top:15px;
}
.green-full{
display: flex;
justify-content: space-between;
width: 100%;
flex-wrap: wrap;
margin-top: 50px;
}
.green-one h4{
    color: var(--green);
    text-align: center;
}
.green-one p.title{
    font-weight:700;
    color:var(--hcolor);
    font-size: 20px;
}
.green-one .acc{
    padding: 18px 0px;
    border-color: var(--green);
    border-width: 2px;
}
.green-one .acc:last-child{
    border-bottom: 0;
}
.green-one .accordian .title:after{
    height:2px;
    content: "";
    position: absolute;
    background-color:  var(--hcolor);
    width: 3px;
    height: 9px;
    transform: translate(-2px, 0) rotate(45deg);
}
.green-one .accordian .title:before{
       content: "";
    position: absolute;
    background-color:  var(--hcolor);
    width: 3px;
    height: 9px;
    transform: translate(-2px, 0) rotate(-45deg);
}
.green-one .accordian .active.title:before{
   height:12px;
     transform: translate(2px, 0) rotate(-45deg);
}
.green-one .accordian .active.title:after{
    height:12px; 
}
 
 .bright-sec{
    background:var(--bg);
    position: relative;
    overflow: hidden;
 }
 .bright{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
 }
 .bright-left, .bright-right{
    width:49%;
 }
    .bright-sec h2{
        margin-bottom: 30px;
        max-width: 500px;
    }

  .bright-sec ol { counter-reset: item; }
  .bright-sec ol li { display: block; line-height: 1.3; margin-bottom: 12px;}
  .bright-sec ol li:before {
    content: counter(item)". ";
    counter-increment: item;
    color:var(--blue);
    font-weight: 600;       
    }

   .bright-sec .bright-right img{
    position: absolute;
    bottom:-5px;
    right: 0;
    height: 550px;
    
    }
.bright-sec .buttons a {
background: var(--green);
color: var(--white);
border:solid 1px var(--green);
}
.bright-sec .buttons a:hover{
background: var(--blue);
border:solid 1px var(--blue);
}
     section.tab-sec{
        background: var(--bg);
    }
    .tab-des{
        max-width:900px;
        text-align: center;
        margin: 0 auto;
    }
    .tab-des p {
      max-width: 650px;
    margin: 0 auto;
    font-family: 'Produkt Web';
     }
     .tab {
    display: flex;
    border: 0;
    height: 100%;
    width:336px;
    justify-content: center;
    flex-direction: column;
}
 
    .tab-full{
        display: flex;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
        padding: 50px;
        border:solid 1px var(--orange);
        border-radius:50px;
        max-width:970px;
        margin:0 auto;
        margin-top:50px;
    } 
    .tb-cutton{
        width:300px;
    }
 .tablinks{
        cursor: pointer;
        padding:10px 10px 10px 45px;
        border:solid 1px var(--orange);
        background:transparent;
        color: var(--hcolor);
        border-radius:50px;
        min-height:48px;
        display: flex;
        align-items:center;
        position: relative;
        margin-bottom:12px;
         font-size:18px;
    }
    .tab-sec  .tablinks {
        font-family: 'Produkt Web';
        font-weight:500;
    }
  .tablinks.active, .tablinks:hover{
        background: var(--orange);
        color: var(--white);
    }
 .tablinks:before{
    position: absolute;
    content: '';
    height: 12px;
    width: 12px;
    background: var(--orange);
    left: 20px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%)
    }

 .tablinks.active:before, .tablinks:hover:before{
        background:var(--white);
    }


 .tabcontent p{
        font-size: 27px;
        font-weight: 500;
      }
.tabcontent {
    width:calc(100% - 400px);
    display: flex;
    border-left: none;
    height: 100%;
    flex-direction: column;
    display: none;
}
.tab-full .tabcontent:first-child{
    display:block !important;
}
.tab-sec .buttons a {
    background:var(--green);
    border-color: var(--green);
       margin-top:50px;
}

.tab-sec .buttons a:hover {
    background:var(--blue);
    color: var(--white);
    border-color: var(--blue);

}

header.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 99999;
    -webkit-transform-origin: top;
    transform-origin: top;
    box-shadow: 0 8px 26px -6px rgba(0, 0, 0, 0.35);
    -webkit-animation: navtrans 0.3s ease-in;
    animation: navtrans 0.3s ease-in;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

@-webkit-keyframes navtrans {
    0% {
        -webkit-transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
    }
}

@keyframes navtrans {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}
.gotop a {
    color: var(--white);
}
.gotop{
position: fixed;
    bottom:60px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--green);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
        border: solid 2px #FFE;
}
.gotop:hover{
    background: var(--blue);
}
 



/*---------------------------------   Service   ------------------------*/

.testi-one p strong{
display: block;
}
.testi-one p{
    color: var(--white);
    font-size: 26px;
}
.testimonial{
    background: var(--green);
        border-radius: 50px;
        padding:50px 118px 50px 118px;
        position: relative;
        margin-bottom:0px !important;
}
.testimonial:after {
position: absolute;
    content: '';
    background: url(../img/right.webp);
    font: normal normal normal 14px/1 FontAwesome;
    top:50px;
    height:60px;
    width:70px;
    background-size: contain;
    background-repeat: no-repeat;
    left:220px;
    font-size:60px;
    color: var(--white);
}
.testimonial:before {
position: absolute;
    content: '';
    background: url(../img/left.webp);
    font: normal normal normal 14px/1 FontAwesome;
    top:50px;
    height:60px;
    width:70px;
    background-size: contain;
    background-repeat: no-repeat;
    left:120px;
    font-size:60px;
    color: var(--white);
}
.testi-one{
    position: relative;
    padding-top:100px;
}
p.sady{
    position: absolute;
    right:100px;
    color: var(--white);
    top:0px; 
    font-size:42px;
    font-weight: bold;
}
 
 .testimonial .slick-dots {
       position: absolute;
    top: 80px;
    right: 120px;
    width: auto;
 }
  .testimonial  .slick-dots li{
  width:12px;
 }
   .testimonial  .slick-dots li button:before{
    background: #fff;
    opacity: 0.5;
    right: 0;
    height:10px;
    width:10px;
 }
    .testimonial .slick-dots li button{
width:auto;
height:auto;
 }
   .testimonial  .slick-dots li.slick-active button:before {
    width: 20px;
    background: var(--white);
    border-radius:10px;
    border:var(--white);
    opacity: 1;
    margin-right:5px;
   }
   .slick-dots li{
    width: 25px;
    justify-content: center;

   }

   section.testimo {
    padding:50px 0px 0px;
   }
   section.come-sec{
     padding:50px 0px;
   }
   .come-des{
    text-align: center;
    max-width:700px;
    margin: 0 auto;
   }
   .come-des p{
    font-family: 'Produkt Web';
   }
 
   .come-full{
    display: flex;
    justify-content: space-between;
    margin-top:30px;
    flex-wrap: wrap;
   }
    .come-one {
    width:calc(50% - 15px);
    background: var(--bg);
    padding:50px 50px 60px;
    border-radius: 70px;
    margin-bottom:30px;
    }
     .come-one img {
        margin-bottom:50px;
        height:200px;
        width: auto;
     }
       .come-full .come-one:nth-child(3) h4{
        padding-right:100px;
     }
    .come-one h4{
       font-size: 28px;
    margin-bottom: 15px;
    min-height: 73px;
          }

.family-des{
    text-align: center;
    max-width: 800px;
    margin:0 auto;

}

.family-full{
    display: flex;
    justify-content: space-between;
    margin-top:50px;
    flex-wrap: wrap;
   }
    .family h6{
        min-height:50px;
    margin-bottom:10px;
    font-size:19px;
        }
        .family p {
           line-height:1.4;
           font-size:16px;

        }
    .family {
width: calc(33.3% - 45px);
    background: var(--bg);
    padding: 40px;
    border-radius: 50px;
    margin-bottom: 30px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    }
     .family:after{
        content:'';
        height:25px;
        background: var(--orange);
        width:100%;
        position: absolute;
        bottom:0;
        left:0;
        transition-duration: 0.3s;
     }
      .family:hover:after{
        height:35px;
        transition-duration: 0.3s;
      }
    .family:nth-child(1):after, .family:nth-child(5):after,  .family:nth-child(9):after{
        background: var(--orange);
    }
    .family:nth-child(2):after,  .family:nth-child(6):after,  .family:nth-child(10):after{
        background: var(--lightgreen);  
    }
      .family:nth-child(3):after,  .family:nth-child(7):after, .family:nth-child(11):after {
        background: var(--yellow);  
    }
          .family:nth-child(4):after,  .family:nth-child(8):after, .family:nth-child(11):after{
        background: var(--blue);  
    }

    .family-full  .slick-slide:nth-child(1) .family:after,
     .family-full  .slick-slide:nth-child(5) .family:after
      {
       background: var(--yellow);  
    }
       .family-full .slick-slide:nth-child(2) .family:after,
       .family-full  .slick-slide:nth-child(6) .family:after
       {
       background: var(--orange);  
    }
 
   .family-full  .slick-slide:nth-child(3) .family:after,
   .family-full  .slick-slide:nth-child(7) .family:after
   {
       background: var(--lightgreen);  
    }

    .family-full .slick-track .slick-slide:nth-child(4) .family:after,
    .family-full .slick-track .slick-slide:nth-child(8) .family:after
    {
       background: var(--orange);  
    }
 
 

 /*------------------Service page css -------------------*/
.wp-block-image{
    margin-bottom:0;
}
 section.innerpage_sec{
    padding:0px 0px;
}
section.innerpage_sec h1{
    font-size:39px;
}
.service-banner p.buttons a{
    color:var(--hcolor);
    border-color:var(--hcolor);
}
.service-banner p.buttons a:hover{
        color:var(--white);
    border-color:var(--blue);
    background:var(--blue);
}
 
.service-banner{
    background: url(../img/service-1.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom 0 left -50px;
    position: relative; 
}
.service-banner:before{
    position: absolute;
    right:0;
    bottom:0;
    content:'';
    background: url(../img/service-2.webp);
    height: 300px;
    width:530px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    background-position:bottom right;
}

p.buttons {
    margin:0 auto;
    padding-bottom:0;
}
.no-full.service,
.no-full.service .no-left,
.no-full.service .no-left figure,
.no-full.service .no-left figure img{
   height: 100%;
}


/*Main banner */
.inner-banner h1{
  font-size:39px;
}
.inner-banner .ban-content{
  text-align: center;
  max-width: 800px;
  margin:0 auto;
}
section.inner-banner{
  padding:0;
background: var(--bg);
}
.inner-banner .buttons a{
    color: var(--hcolor);
    border-color: var(--hcolor);
}
.inner-banner .buttons a:hover{
        color: var(--white);
    background:var(--blue);
    border-color: var(--blue);
}
.main-banner .slick-arrow{
    display: none !important;
}
 .banner-leftbg {
      background-repeat: no-repeat;
  background-position: left bottom;
background-size: 400px;
}
.banner-rightbg{
    background-size: 400px;
      background-repeat:no-repeat;
background-position: right bottom;
 }
 .banner-leftbg{
    align-items: center;
    display: flex;
    width: 100%;
 
 }
 .banner-leftbg{
min-height:450px;
padding: 50px 0 50px;
 }


.inner-banner .ban-content p{
    max-width: 550px;
    margin: 0 auto;
 }
.inner-banner .buttons a {
    margin-top:40px;
}
/*service  us banner */
 .page-id-16 .banner-leftbg{
  background-size: 50%;
   padding:100px 0 150px;
}
.page-id-16  .banner-rightbg{
background-size:525px;
}
.page-id-16 .inner-banner .ban-content{
max-width:650px;
 }

/*about us banner */
.page-id-58  .ban-content {
    max-width:550px;
}
.page-id-58  .banner-leftbg{
    background-size: 440px;
}




 

 
.wp-block-columns.our-story {
    background:var(--blue);
    padding-bottom:0px;
}
.wp-block-columns.our-story p,
.wp-block-columns.our-story h2{
    color:var(--white)
}
p.ttl{
    font-family: 'Produkt Web';
    font-weight:300;
    color: var(--hcolor);
}
.our-story p.ttl,
.our-why p.ttl{
    font-weight:200px;
}
.wp-block-columns.our-story,.our-story .wp-block-columns  {
    margin-bottom:0 !important;
}
.story-content {
    margin-top:50px;
}
.story-content .wp-block-column p {
    font-size:20px;
}

.story-content .wp-block-column .cpt-grp{
max-width:545px;
}
.our-why .story-content .wp-block-column p{
     color: var(--hcolor);
}

.story-image{
    margin-top:100px;
}
.story-image img{
    border-radius:50px;
}
.our-why.section{
    padding-bottom: 0px;
}
.our-why h2{
    max-width: 845px;
    margin: 0 auto;
}
.story-content.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:first-child) {
margin-left:75px;
}
section.abt-sld-sec {
    padding: 0px 0px 100px;
}
.abt-sld-sec .wrapper-m{
    max-width:1287px;
}

section.family-sec{
    padding-bottom:0px;
}
.service-button{
    margin-bottom: 80px;
    margin-top: 20px;
}
    .service-button .buttons a {
    background: var(--green);
    border-color: var(--green);
}
.service-button .buttons a:hover{
    background: var(--blue);
    border-color: var(--blue);
    color:var(--white);
}
.celebrate ul.list-one li {
    font-size:22px;
}
.celebrate ul.list-one li:before{
    -webkit-text-stroke: 1px var(--bg);
    top: 10px;
}


.wp-block-columns.service-banner{
    margin-bottom:0;
    padding:100px 0px 150px;
}
.service-banner-grp{
    max-width:725px;
    margin:0 auto;
}
.service-banner-grp p{
    max-width:527px;
    margin:0 auto;
}
.wp-block-columns.no-full{
    background:var(--blue);
}
.wp-block-column.no-right{
    margin-left: 0 !important;
    flex-basis: inherit !important;
    flex-grow: inherit !important;
    padding-right:100px;
}
.what-aba-one .wp-block-column.no-right{
    padding-right:80px;
}
.what-aba-one{
    background: var(--lightblue);
}
.what-aba-two, .service-sec-one{
    background: var(--blue);
}
.wp-block-column.no-right p{
    font-family: 'Rawson Alt';
    font-weight: normal;
}
.wp-block-columns.no-full, .wp-block-columns.no-mater{
    margin-bottom:0;
}

.celebrate.section{
    background: var(--bg);
}
.celebrate.section h2{
max-width: 420px;
    margin: 0 auto;
    font-weight:45px;
}
.celebrate ul.list-one {
    max-width: 380px;
    margin: 0 auto;
}

ul.list-one{
    padding-left: 0;
}
ul.list-one li {
    padding-left: 20px;
    position: relative;
} 
ul.list-one li:before {
    position: absolute;
    content: '\f00c';
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 15px;
    left: 0;
    top:5px;
    font-weight: 100;
    color: var(--blue);
}


.milestone.section{
    background:var(--blue);
}
.milestone.section p, 
.milestone.section h5,
.milestone.section h2{
    color:var(--white);
}
.milestone.section h5{
    margin-bottom:0;
}
.milestone.section h2{
    margin-bottom:50px;
}
.first-mile.wp-block-columns {
    align-items:center;
    padding-top: 50px;
}
.mile-full{
    margin-bottom:0 !important;
}
.first-mile {
    position:relative;
    margin-bottom:0 !important;
}
.first-mile:before{
    position:absolute;
    content:"";
    right:50%;
    top:0;
    height:100%;
    width:1px;
    background:var(--white);
    transform: translateX(-50%);
}
.first-mile:after{
position: absolute;
    content: "";
    left: calc(50% - 1px);
    top: 50%;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #FFDE38;
    transform:translate(-50%, 50%);
}
.mile-des{
    padding-top:50px;
    padding-bottom:50px;
    display: flex;
    align-items: center;
}
.mile-des p{
max-width:395px;
margin-right:auto;
margin-left:80px;
}
.mile-des p:last-child{
padding-bottom:0px;
}
.first-mile:first-child .mile-des p{
    max-width:450px;
}
.number.wp-block-column {
  height:220px;
        position:relative; 
    display:flex;
    align-items:center;
    width:100%;
}
.mile-full p.buttons{
    margin-top:80px;
}
 
    
.first-mile .number h5{
    max-width:220px; 
    margin-left: 180px;
    margin-right: auto;
}
.first-mile .number:before{
    position: absolute;
    content: "1";
    left: 100px;
    font-size: 190px;
    font-family: 'Produkt Web';
    color: var(--white);
    opacity: 0.2;
    font-weight: 500;
    top:0;
}

.first-mile:nth-child(2) .number:before{
    content: "2";
}
.first-mile:nth-child(3) .number:before{
    content: "3";
        top: -10px;
}
.first-mile:nth-child(4) .number:before{
    content: "4";
    top:10px;
}
.first-mile:nth-child(5) .number:before{
    content: "5";
}
.first-mile:nth-child(6) .number:before{
    content: "6";
}
.first-mile:nth-child(7) .number:before{
    content: "7";
}.first-mile:nth-child(8) .number:before{
    content: "8";
}
.first-mile:nth-child(9) .number:before{
    content: "9";
}
.first-mile:nth-child(10) .number:before{
    content: "10";
}
.first-mile:nth-child(11) .number:before{
    content: "11";
}
.first-mile:nth-child(12) .number:before{
    content: "12";
}
.first-mile:nth-child(13) .number:before{
    content: "13";
}
.first-mile:nth-child(14) .number:before{
    content: "14";
}
.first-mile:nth-child(15) .number:before{
    content: "15";
}


.our-story.section,
.our-why.section,
.about-green{
    position: relative;
      padding-top: 160px;
}
.our-story.section:before,
.our-why.section:before,
.about-green:before
{
position: absolute;
left:50%;
top:50px;
transform: translateX(-50%);
content:'';
height:52px;
width:1px;
}
.our-story.section h2{
    max-width: 1080px;
    margin: 0 auto;
}
.our-story.section:before,
.about-green:before{
    background: var(--white);
}
.our-why.section:before{
    background: var(--color);
}

.our-story.section:after,
.our-why.section:after,
.about-green:after{
position: absolute;
left:50%;
top:125px;
transform: translateX(-50%);
content:'';
background:#FFDE38;
height:15px;
width:15px;
border-radius:50%;
}







/*about green section html */

section.about-green{
    position: relative;
    background:var(--green);
    padding-bottom:70px;
}
.about-green-des p,
.about-green-des h2{
color: var(--white);
}
.about-green-des{
    text-align: center;
    max-width:768px;
    margin:0 auto
}
.abt-gfull{
    margin-top:50px;
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
    width: 100%;
}

.abt-g{
    width:calc(50% - 20px);
    background:var(--white);
    margin-bottom:25px;
    border-radius:50px;
    min-height:373px;
    padding:60px;
}
.abt-g:nth-child(2n+1){
    margin-right:20px;
}
.abt-g:nth-child(2n){
    margin-left:20px;
}
.abt-g:last-child{
    margin-right: 0;
}
.abt-g .g-content{
    padding-left:30px;
    padding-right:15px;
    position: relative;
}
.g-content h5{
    font-size:22px;
}
.abt-g .g-content:before{
    position: absolute;
    content:'';
    left:-4px;
    top:5px;
    height:19px;
    background:#17D6D9;
    width:19px;
    border-radius:50%;
}
.abt-g:nth-child(1) .g-content:before,
.abt-g:nth-child(5) .g-content:before{
 background:#17D6D9;
}

.abt-g:nth-child(2) .g-content:before,
.abt-g:nth-child(6) .g-content:before{
 background:var(--blue);
}

.abt-g:nth-child(3) .g-content:before,
.abt-g:nth-child(7) .g-content:before{
 background:var(--green);
}


.abt-g:nth-child(4) .g-content:before,
.abt-g:nth-child(8) .g-content:before{
 background:#FFCF3B;
}


.about-slide{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.one-slide{
    width: calc(33.3% - 30px);
}
.one-slide img{
width:100%;
height: auto;
}
.one-slide:nth-child(2) img{
transform: rotate(-15deg);
}


/*What aba css */
.what-aba-one.wp-block-columns .wp-block-columns.no-full{
    background:var(--lightblue);
    align-items: center;
}
.what-aba-one.wp-block-columns,
.what-aba-two.wp-block-columns{
    margin-bottom:0
}
.what-aba-one .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:first-child),
.what-aba-two .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:first-child) {
margin-left:0;
}
.what-aba-one h4{
    color: var(--white);
    font-size: 27px;
    font-weight: normal;
}
.what-aba-one .list-one li{
    color: var(--white);
}
.what-aba-one .list-one li:before {
    color: var(--yellow);
     -webkit-text-stroke: 1px var(--lightblue);
}
.no-left-grp1 {
        padding-bottom: 40px;
    border-bottom: solid 1px var(--white);
    margin-bottom: 40px;
}

.what-aba-two .no-right p{
    padding-right:0px;
    font-weight: 300px;
}
.address{
    max-width:190px;
}
.expect-from-in{
    background: var(--bg);
    padding: 50px;
    border-radius: 50px;
}
.heart{
    justify-content: space-between;
}
.heart h2{
    margin-bottom:10px;
}
.heart p{
    color:var(--hcolor);
}
.heart-right img {
    height: auto;
    width:150px;
}
.expect-from.section{
    padding:50px 0 30px;
}
.expect-listing{
    padding-top:50px;
    border-top: solid 1px var(--color);
        margin-bottom: 15px;
}
.list-one{
    margin-left:0px !important;
}
.expect-listing .list-one li:before{
 -webkit-text-stroke: 1px var(--bg);
 color: var(--green);
}
.expect-listing ul.list-one li{
    padding-left:20px;
    color: var(--hcolor);
    font-size:21px;
}
.expect-listing ul.list-one {
    max-width: 360px;
}
.thats-aba-in{
    background: var(--bg);
    border-radius: 50px;
}
.thats-aba-content{
    margin-top:40px;
}
.thats-aba-grp{
    max-width: 1050px;
    margin: 0 auto;
    margin-top: 50px;
}
.thats-aba-content .wp-block-column:first-child {
    padding-right: 45px;
}
.thats-aba-content .wp-block-column:last-child {
    padding-left: 38px;
    padding-right: 17px;
}
.successful{
    background: var(--bg);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom:0px;
}

.successful-sld{
    margin-top:30px;
}




/*What aba slider */
.aba-slider-sec{
    background:var(--bg);
}
.aba-slider{
    border:solid 1px var(--blue);
    border-radius: 40px;
        padding:80px 45px;
        margin-bottom:0px !important;
        min-height:100%;
}
.aba-slider .slick-dotted.slick-slider{
    margin-bottom: 0px;
}
.aba-one .count{
    height: 90px;
    width:90px;
    border-radius:50%;
    background:var(--orange);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;

}
.aba-one .count h5{
font-size:46px;
font-weight:600;
margin-bottom:0;
display: inline;
color: var(--white);

}
.aba-one{
    text-align: center;
    padding-bottom:50px;
}
.aba-con p:last-child {
padding-bottom:0;
}
.aba-con h3{
    margin-bottom:30px;
    font-size:30px;
}

.aba-slider .slick-dots {
    left:0;
    bottom:45px;
}
.aba-slider .slick-dots li{
    width:10px;
}
.aba-slider .slick-dots li button:before{
    height:10px;
    width:10px;
    border-radius:10px;
    background:var(--green);
    opacity:0.5;
}
.aba-slider .slick-dots li.slick-active {
    width:25px;
}
.aba-slider .slick-dots li.slick-active  button:before {
    width: 23px;
    background: var(--green);
    border: none;
    opacity: 1;
}
.aba-slider  .slick-dotted.slick-slider{
    margin-bottom:0;
}
.bring-sec{
    background:var(--white);
    padding:70px 0px 20px;
}
.bring-sec .wrapper {
    max-width:1028px;
    padding:0 18px;
    margin:0 auto;
}

.bring-slider{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width:100%;
}
.bring{
    width: calc(50% - 20px);
    margin-bottom:60px;
      background:var(--bg);
          padding:50px 65px 70px;
          border-radius:40px;
          position: relative;
          overflow: hidden;
}
.bring:after{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 30px;
    width:100%;
    background:var(--orange);
    transition-duration:0.3s;
}
.bring:hover:after{
    height: 40px;
}
.bring:nth-child(1):after, .bring:nth-child(5):after, .bring:nth-child(9):after{
  background:var(--orange);
}

.bring:nth-child(2):after, .bring:nth-child(6):after, .bring:nth-child(10):after{
  background:var(--lightgreen);
}

.bring:nth-child(3):after, .bring:nth-child(7):after, .bring:nth-child(11):after{
  background:var(--blue);
}

.bring:nth-child(4):after, .bring:nth-child(8):after, .bring:nth-child(12):after{
  background:var(--yellow);
}

.bring-slider .slick-track .slick-slide:nth-child(2) .bring:after,
.bring-slider .slick-track .slick-slide:nth-child(6) .bring
{
  background:var(--orange);
 }

.bring-slider .slick-track .slick-slide:nth-child(3) .bring:after,
.bring-slider .slick-track .slick-slide:nth-child(7) .bring:after
{
  background:var(--lightgreen);
 }

.bring-slider .slick-track .slick-slide:nth-child(4) .bring:after,
.bring-slider .slick-track .slick-slide:nth-child(8) .bring:after
{
  background:var(--blue);
 }

.bring-slider .slick-track .slick-slide:nth-child(5) .bring:after,
.bring-slider .slick-track .slick-slide:nth-child(9) .bring:after
{
   background:var(--yellow);
 }





.bring-des{
    text-align: center;
}
.bring-con h6 {
    font-size:19px;
}
.bring-con p {
    font-size:20px;
}

.abas-grp{
    max-width:1080px;
    margin:0 auto;
}
.successful-sld img{
    width:100%;
    height:auto;
    border-right:50px;
    height: 560px;
    border-radius:50px !important;
    object-fit:cover;
}
.successful-sld {
    display: flex;
    margin-top:50px;
    justify-content: space-between;
    align-items: center !important;
}
.successful-sld .wp-block-column {
    flex-basis: inherit !important;
    flex-grow: inherit !important;
    width: calc(50% - 40px);
}
.successful .wp-block-columns{
    margin-bottom:0px !important;
}
.abas-grp {
    padding:100px 0px;
}
.page-id-14 .inner-banner .ban-content {
max-width:780px;
}
.page-id-14  .banner-leftbg, .page-id-14  .banner-rightbg{
    background-size: 500px;
}
.no-left-grp1 {
    margin-top:40px;
}
.what-aba-one .no-right p {
padding-right:0 !important;
}
.tab_navigation_location li {
    font-weight: normal;
}

.wpcf7 input[type="file"]{
    color:transparent;
}
.cnt-one.cnt-upload{
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: row-reverse;
}
.cnt-one.cnt-upload label{
 font-size: 18px;
    font-family: 'Rawson Alt';
    color: #B3B3B3;
    width: calc(100% - 180px);
    height: 54px;
    border: dashed 1px #B3B3B3;
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.wpcf7-form-control-wrap.resume{
    width:162px;
    margin-right:18px;
}
.cnt-one.cnt-upload input[type="file"] {
    margin-bottom:0;
    padding-bottom:0;
    font-size:16px;
}
.career-one-full .wp-block-image{
    margin-bottom:0px;
}
.career-accordian .accordion:last-child{
    margin-bottom: 0;
}

.expect-listing ul.list-one li:before{
    top: 8px;
}


#tabContainer .tabpage:first-child .tc-location .tabscontent .tab-location-full .angle-one {
display: none !important;
}

.ban-button .ban-button .buttons a {
padding-top: 14px;
}

.banner-one .banner-img .slick-list.draggable  {
height: 100%;
}

.banner-one .banner-img  .slick-list,
.banner-one .banner-img  .slick-track,
.banner-one .banner-img .slick-slide>div 

{
    height:100%;
}

.cpt-locations-template-default .tab-service ul.tick{
padding-bottom:0px !important;
}

.logo-sec .slick-dots{
	display:none;
}


.join-cpt-one .cont-form{
    position:relative;
}

.accordion__body {
    display:none;
}
/*.page .accordion:fisrt-child .accordion__body{
background:red;
}*/





.banner-content h1 span {
padding-right:0;
}

.logo-sec .slick-dots {
    display: none !important;
}
 
.banner-content h1{
    margin-bottom:0;
}
.banner-content h2{
    font-weight:300;
}
.join-cpt-one .cont-form{
    position:relative;
}
.accordion__body {
    display:none;
}
 
/*
.go-back-location.buttons a{
    color:var(--green);
    border-color:var(--green);
} 
.go-back-location.buttons a:hover{
    background:var(--blue);
    border-color:var(--blue);
    color:var(--white);
}


.logo-full .slick-prev,.logo-full .slick-next {
    width:30px;
    height:30px;
    background: var(--green);
}
.logo-full .slick-prev:before,.logo-full .slick-next:before{
    font-size: 25px;
}
.logo-full .slick-prev:hover,.logo-full .slick-next:hover{
background:var(--blue);
}

*/
 
.go-back-location.buttons a{
    color:var(--green);
    border-color:var(--green);
} 
.go-back-location.buttons a:hover{
    background:var(--blue);
    border-color:var(--blue);
    color:var(--white);
}


.logo-full .slick-prev,.logo-full .slick-next {
    width:30px;
    height:30px;
    background: var(--green);
}
.logo-full .slick-prev:before,.logo-full .slick-next:before{
    font-size: 25px;
}
.logo-full .slick-prev:hover,.logo-full .slick-next:hover{
background:var(--blue);
}




@media(max-width:1200px){
    .go-back {
    left:-25px;
    }
} 


@media(max-width:991px){
    .go-back{
        left:0;
    }
}

@media(max-width:896px){
    .go-back{
        left:inherit;
        right:0;
        font-size:13px;
        
    }
}
@media(max-width:768px){
    .go-back{
        left:0;
        right:inherit;
        font-size:13px;
        
}
.logo-full .slick-prev{
left:-30px;

}
.logo-full .slick-next {
right:-30px;
}
}