/*@import url('reset.css');*/

:root {
  --color-blue: #d54078;
  --color-dblue: #0545af;
  --color-yellow: #edd100;
  --color-dyellow: #edd100;
  --color-white: #ffffff;
  --color-light: #f2f2f2;
}
/*===================================================
    Buttons
====================================================*/
.cbtn_uls{
   display: flex;
   align-items: center;
   gap: 15px;
}
.cbtn_uls .cbtn_lis{
  position: relative;
  list-style: none;
}
.btn{
   position: relative;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   padding: 5px 15px;
   background: transparent;
   min-height: 30px;
   z-index: 0;
   overflow: hidden;
}
.cbtn{
   position: relative;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   padding: 8px 32px;
   height: 46px;
   font-size: 14.5px;
   font-weight: 700;
   border-radius: 100px;
   background: #ed1c24;
   color: var(--color-white);
   min-height: 30px;
   z-index: 0;
   overflow: hidden;
   box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
   border: none;
   gap: 2px;
}
.cbtn:hover:before, .cbtn:focus:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #28807e;
  -webkit-animation: cbtn_hvr 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: cbtn_hvr 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  z-index: -1;
}

.cbtn_white{
   background: var(--color-white);
   color: #ed1c24;
}
.cbtn_white:hover{
  background: #ed1c24;
  color: var(--color-white);
}
.cbtn_green{
   background: #28807e;
   color: var(--color-white);
}
.cbtn_green:hover{
  background: #28807e;
  color: var(--color-white);
}

@-webkit-keyframes cbtn_hvr {
  0% {
    -webkit-transform: scaleX(0.4);
            transform: scaleX(0.4);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes cbtn_hvr {
  0% {
    -webkit-transform: scaleX(0.4);
            transform: scaleX(0.4);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@media only screen and (max-width: 768px) {
   .cbtn{
     height: 34px;
     padding: 4px 17px;
     font-size: 11.5px;
   }
}
@media (min-width: 768px)  and (max-width: 1024px) {
   .cbtn{
     height: 40px;
     padding: 4px 24px 3px;
     font-size: 12.5px;
   }
}
@media (min-width: 1024px)  and (max-width: 1280px) {
   .cbtn{
     height: 42px;
     padding: 4px 26px 3px;
     font-size: 13px;
   }
}
@media (min-width: 1280px)  and (max-width: 1440px) {
   .cbtn{
     height: 45px;
     padding: 4px 27px 3px;
     font-size: 13px;
   }
}


.cbtn span.arrow{
    content: "";
    width: 26px;
    height: 26px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 12px;
    border: 1px solid #ffffff;
    padding-bottom: 0px;
    position: relative;
    right: -12px;
}
.cbtn  span.arrow i{
    font-weight: 300;
}
/* ===================================*/
/*  Preloader
/*====================================*/
.green-preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 100000000000000;
    background: rgb(255 255 255 / 85%) no-repeat center center;
}

.loader:before, .loader:after, .loader {
    border-radius: 50%;
    width: 2.3em;
    height: 2.3em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}

.loader {
    font-size: 10px;
    margin: 80px auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.loader:before {
    left: -3.3em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader:after {
    left: 3.3em;
}

.loader:before, .loader:after {
    content: '';
    position: absolute;
    top: 0;
}

@-webkit-keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em #1aa996;
    }

    40% {
        box-shadow: 0 2.5em 0 0 #1aa996;
    }
}

@keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em #1aa996;
    }

    40% {
        box-shadow: 0 2.5em 0 0 #1aa996;
    }
}

/*==================================
    #Back to top
====================================*/
.scroll-to-top {
    width: 37px;
    height: 37px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    position: fixed;
    bottom: 41px;
    right: 50px;
    border-radius: 50%;
    display: none;
    z-index: 2000;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    transition: .3s ease-out;
    background-color: #28807e;
    transition: transform 0.3s;
    overflow: hidden;
}

.scroll-to-top:before, .scroll-to-top:after {
    content: "";
    position: absolute;
    display: block;
    top: 15px;
    background-color: #fff;
    height: 8px;
    width: 2px;
}

.scroll-to-top:before {
    transform: rotate(45deg);
    left: 15px;
    box-shadow: none;
}

.scroll-to-top:after {
    transform: rotate(-45deg);
    right: 15px;
}

.scroll-to-top:focus, .scroll-to-top:hover {
    outline: none;
    background-color: #45a19f;
}

@media only screen and (max-width: 768px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
    }
}

/*=============================================
  Main-wrapper
===============================================*/
.main-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/*=============================================
  Topbar
===============================================*/

.topbar_wrapper{
   width: 100%;
   /* background: #f3f3f3; */
}
.topbar{
   display: flex;
   justify-content: space-between;
   align-items: center;
   /* height: 125px; */
   padding: 15px 0px;
}
.topbar_left{
    
}
.topbar_left .bicon_desc{
    flex-direction: row-reverse;
}
.topbar_left .bicon_desc h4, .topbar_left .bicon_desc h4 span{
    text-align: left;
}
.topbar_left .bicon_desc .bicon {
    margin-inline-start: 0px;
    margin-inline-end: 12px;
}
.topbar_right{
    
}
.bicon_desc{
    display: flex;
    height: 100%;
    align-items: center;
}
.bicon_desc h4{
    font-size: 15.5px;
}
.bicon_desc h4 span{
    display: block;
    text-align: right;
    color: #7b8189;
    font-size: 14px;
    padding-bottom: 1px;
}
.bicon_desc h4 b{
    
font-weight: 800;
    
color: #3b2a56;
}
.bicon_desc .bicon{
    margin-inline-start: 12px;
    width: 44px;
    height: 44px;
    background: linear-gradient(to right, #f9e2e2, #f1f1f1);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bicon_desc i{font-size: 25px;position: relative;top: 1px;color: #ed1c24;}
.navbar-nav li.current>a,.navbar-nav li.active>a{
        color: #1ea69a;
}
.navbar-nav li.current>a:after, .navbar-nav li.active>a:after{
        border-color:  transparent #1ea69a #1ea69a transparent !important;    
}

.navbar-nav li.active>a:before {
    content:"";
    position:absolute;
    background: #1ea69a;
    width: 100%;
    height: 3px;
    left: 0px;
    bottom: 0;
    border-radius: 30px;
    z-index: -1;
}

/*=============================================
  Header
===============================================*/
header {
    box-shadow: none;
    transition: all 0.5s ease 0s;
    position: relative;
    z-index: 99999;
    box-shadow: 0 8px 20px rgba(41, 99, 112, .06);
}

.navbar-brand img {
    height: 30px;
    transition-duration: 0.5s;
    position: relative;
    top: 6px;
}
.navbar-header-custom {
    padding: 2px 0 2px 0;
    position: absolute;
    left: calc(50% - 100px);
    width: 200px;
    top: -59px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu_area .navbar-nav{
    width:100%;
    height: 100%;
}
.navbar-default {
    transition: all 0.5s ease 0s;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0,0,0,.1);
    -ms-box-shadow: 0 8px 20px 0 rgba(0,0,0,.1);
    box-shadow: 0 8px 20px 0 rgba(0,0,0,.1);
    background: #fff;
}

.navbar-default .container,.navbar-default .container-fluid {
    position: relative
}

.menu_area {
    position: relative;
    z-index: 2;
}
.menu_area .navbar {
    position: initial;
    height: 55px;
    line-height: inherit;
    background: transparent;
    padding: 0px;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .6s all ease;
    /* padding-inline-start: 200px; */
}
.scrollHeader .menu_area .navbar {
    height: 62px;
    padding: 0px 0px 0px 200px;
    transition:.6s all ease;
}
.menu_area .navbar-brand {
    transition: all 0.5s ease 0s
}

.navbar-nav li {
    list-style: none;
    -webkit-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
    height: 100%;
}
.navbar-nav li a{
    color: #3b2a56;
}
.navbar-nav li.has-sub .sub-menu li a{
    padding: 10px 15px;
    font-weight: 500;
}
.navbar-nav li.has-sub a:hover {
    color: #28807e;
}
.navbar-nav li.has-sub > a{
    padding-right:28px;
}
.navbar-nav li.has-sub.active>a:after{
    border-color:#28807e !important;
}
nav ul a:hover {
    background-color: #daefec;
}
nav ul li.active {
    background-color: transparent;
}

.navbar-nav>li.has-sub {padding: 0;}

.navbar-nav>li>a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 13.5px;
    height: 100%;
    font-weight: 700;
    padding: 10px 18px 10px 18px;
    color: #3b2a56;
    letter-spacing: .1px;
    text-transform: uppercase;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    /* border-bottom: 3px solid transparent; */
}
.navbar>ul>li.has-sub>a:after {
  position: absolute;
  top: calc(50% - 5px);
  right: 12px;
  content: "";
  border-color: transparent #887e97 #887e97 transparent;
  border-style: solid;
  border-width: 0 2px 2px 0;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  transition: border 0.3s ease 0s;
  width: 8px;
  border-radius:2px;
}
.navbar-nav li.has-sub a:hover:before,
.navbar-nav li.has-sub a:hover:after{
background: none;
border-color: transparent #2a817f #348785 transparent;
}
.navbar-nav ul {
    position: absolute;
    left: -9999px
}

.navbar ul ul li {
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    transition: all .25s ease;
    padding: 0px;
    float: inherit;
}
.navbar ul ul li a:hover, .navbar ul ul li a:active{
    background: #fff;
    border-radius: 0px;
}
.navbar ul ul li:last-child {
    margin-bottom: 0
}

.navbar-nav li>ul {
    background: #daefec;
    border-radius: 0px;
    padding: 0px;
    min-width: 250px;
    border: none;
    border-radius: 0px;
}

.navbar-nav li:hover>ul {
    left: auto
}

.navbar-nav>li.has-sub>ul {
    opacity: 0;
    margin-top: 10px;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

.navbar-nav>li.has-sub:hover>ul {
    margin-top: 0px;
    opacity: 1;
}

.navbar li>ul ul {
    margin-top: -43px;
    margin-left: 100%;
    min-width: 240px;
    z-index: 1;
}

.navbar li>ul ul ul {
    margin-left: 175px;
    min-width: 130px
}

.navbar ul ul li:last-child>a,.navbar ul ul li.last-item>a {
    border-bottom: 0
}

.navbar ul ul li.has-sub>a:after {
    position: absolute;
    top: 14px;
    right: 9px;
    width: 7px;
    height: 1px;
    display: block;
    background: #9d9d9d;
    content: "";
    opacity: 0;
}

.navbar ul ul li.has-sub>a:before {
    position: absolute;
    top: 11px;
    right: 12px;
    display: block;
    width: 1px;
    height: 7px;
    background: #9d9d9d;
    content: '';
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    transition: all 0.25s ease;
    opacity: 0;
}

.navbar ul ul>li.has-sub:hover>a:before {
    top: 17px;
    height: 0
}

.attr-nav {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
}

.attr-nav .dropdown-toggle:after {
    content: none
}

.attr-nav>ul {
    padding: 0;
    display: inline-flex;
    margin: 0px -8px;
}
.attr-nav>ul li{
    padding: 0 8px;
}
.attr-nav>ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 100%; */
    /* color: #d8417d; */
    padding: 8px 24px;
    height: 40px;
    /* width: 25px; */
    border-radius: 100px;
    /* background: #1e8631; */
    font-weight: 700;
    font-size: 14px;
}
.attr-nav>ul li a i{
    height: auto;
    font-size: 22px;
}
.attr-nav>ul li a i.pe-so-youtube-1{
  font-size: 18px;
}



.ul-nav {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
}
.ul-nav>ul {
    padding: 0;
    display: inline-flex;
    margin: 0px -8px;
}
.ul-nav>ul li{
    padding: 0 8px;
}
.ul-nav>ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d8417d;
    padding: 0 0px;
}
.ul-nav>ul li a i{
    height: auto;
    font-size: 22px;
}
.ul-nav>ul li a h6{    
  display: flex;  
  align-items: center;
}
.ul-nav>ul li a h6 span{
    font-size: 13px;
    padding-left: 2px;
    padding-top: 4px;
}


.search_input{
    display: flex;
    align-items: center;
    background: #fff;
    height: 43px !important;
    border-radius: 7px;
}
.search_input input{
    margin-bottom: 0px !important;
    border: none !important;
    border-radius: 7px !important;
    padding: 0px 18px !important;
    padding-inline-end: 50px !important;
    font-weight: 700;
    font-size: 17px !important;
    color: #565F67;
}
.search_input a{
    position: absolute;
    right: 0;
    display: flex;
    height: 100%;
    background: none !important;
    align-items: center;
    justify-content: center;
    padding: 0px 15px;
}
.search_input a img{
    height: 17px;
}

@media screen and (min-width: 991px){
    .menu_area .navbar-nav{
        display: flex !important;
        justify-content: left;
        border-top: 1px solid #eee;
    }
}
@media screen and (max-width: 768px){
  .menu_area .navbar {
    height: 50px;
    padding: 0px;
 }
}
@media screen and (max-width: 992px) {
    header.scrollHeader .navbar-default {
        position:
        fixed;
        top: 0;
        z-index: 99;
        width: 100%;
        left: 0;
        transition: all 0.2s ease 0s;
        -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.2);
        -ms-box-shadow: 0 0 3px rgba(0,0,0,0.2);
        box-shadow: 0 0 3px rgba(0,0,0,0.2)
    }
}
@media screen and (min-width: 992px) {
    header.scrollHeader .navbar-default {
        position:
        fixed;
        top: 0;
        z-index: 99;
        width: 100%;
        transition: all 0.2s ease 0s;
        -webkit-box-shadow: 0 8px 20px 0 rgba(0,0,0,.1);
        -ms-box-shadow: 0 8px 20px 0 rgba(0,0,0,.1);
        box-shadow: 0 8px 20px 0 rgba(0,0,0,.1);
    }
header.scrollHeader .navbar-default .search_input input {
    width: 280px !important;
    font-weight: 700;
    font-size: 16px !important;
}
    .wrapper-boxed .scrollHeader .navbar-default {
        left: 0;
        margin: 0 auto;
        max-width: 1200px;
        right: 0
    }

    .scrollHeader .navbar-brand img {
        height: 28px;
        transition-duration: 0.5s;
        top: 4px;
    }

    .scrollHeader .navbar-header-custom {
        transition-duration: 0.5s;
        top: 12px;
        width: 200px;
        left: 0;
        justify-content: flex-start;
    }

    .navbar-nav .megamenu {
        margin: 0 10%;
        padding: 22px 15px;
        right: 0;
        width: 80%;
        display: flex !important;
    }

    .navbar .megamenu>li {
        margin: 0;
        float: left;
        flex: 1;
    }

    .navbar .sub-title {
        font-weight: 400;
        padding: 5px 0px 11px;
        font-size: 12px;
        display: block;
        letter-spacing: .5px;
        text-transform: uppercase;
    }

    .megamenu>li>ul {
        left: 0;
        margin: 0;
        min-width: auto;
        position: static;
        width: 100%
    }

    .navbar .megamenu li>ul {
        margin: 0px;
        min-width: auto;
        padding: 0;
        -webkit-box-shadow: none;
        -ms-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        padding: 10px 10px 10px;
        border: 1px solid #f9f9f9;
        border-radius: 6px;
    }

    .navbar .megamenu ul li {
        padding: 0
    }

    .navbar .megamenu li.has-sub>a:after,.navbar .megamenu li.has-sub>a:before {
        background: none
    }


    .header-style1 {
        position: relative;
        left: 0;
        width: 100%;
    }
    .header-style1 .navbar-default {
        -webkit-box-shadow: none;
        -ms-box-shadow: none;
        box-shadow: none
    }

}

@media screen and (max-width: 1366px) {
    .navbar-nav>li>a {
    padding: 10px 20px;
    font-size: 13px;
}
 .search_input input {
    width: 18vw !important;
}   
}
@media screen and (max-width: 580px) {

.navbar-header-custom {
    width: 140px;
}      
}
@media(min-width: 580px) and (max-width: 768px){ 
.navbar-brand span, .scrollHeader .navbar-brand span {
    padding: 7px 10px 7px 14px;
    letter-spacing: 4px;
    font-size: 15px;
    left: 30px;
 }
 .attr-nav>ul>li a i{
    opacity: .95;
    font-size: 12px !important;
    height:auto;
    color: #fff;
 }
}
@media(min-width: 768px) and (max-width: 1024px){
    .menu_area .navbar, .scrollHeader .menu_area .navbar {
      padding: 0;
      height: 50px;
    }
    .navbar-header-custom {
    width: 150px;
  } 
.navbar-brand span, .scrollHeader .navbar-brand span {
    padding: 7px 10px 7px 14px;
    letter-spacing: 4px;
    font-size: 15px;
    left: 38px;
 }
 .attr-nav>ul>li a i{
    opacity: .95;
    font-size: 13px !important;
    height:
    auto;
    color: #fff;
 }
}
@media screen and (max-width: 991px) {
    .navbar-header-custom {
        left: -8px;
        top: 8px;
        justify-content: flex-start;
    }

    .navbar-brand img {
    height: 20px;
}
    .topbar {
    height: 60px;
    border-bottom: 1px solid #f1f1f1;
    width: 92%;
}
    .bicon_desc .bicon {
    margin-inline-start: 10px;
    width: 30px;
    height: 30px;
}
    .topbar_left .bicon_desc .bicon {
    margin-inline-end: 10px;
}
    .bicon_desc h4 span {
    font-size: 11px;
}
    .bicon_desc h4 {
    font-size: 12px;
}
    .bicon_desc i {
    font-size: 19px;
}
 .signin_user h4 {
    font-size: 18px;
} 
 .signin_user .user_img img {
    height: 30px;
}   
    .navbar-nav li>ul {
        -webkit-box-shadow: none;
        -ms-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none
    }

    .navbar-nav>li.has-sub>ul {
        opacity: 1;
        margin: 0;
        -webkit-box-shadow: none;
        -ms-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        -webkit-transition: all 0s ease;
        -ms-transition: all 0s ease;
        -moz-transition: all 0s ease;
        -o-transition: all 0s ease;
        transition: all 0s ease
    }

    .navbar li>ul ul {
        margin: 0;
        min-width: auto
    }

    .navbar-nav>li.has-sub {
        padding-right: 0
    }

    .navbar-nav>li>a {
        padding: 10px 20px;
        text-transform: capitalize;
        font-weight: 700;
        font-size: 13px;
    }

    .navbar-nav>li>a:hover {
        opacity: 1
    }

    .navbar .sub-title {
        color: #232323
    }

.navbar .sub-title{
    width:100%;
    display:
    block;
    padding: 8px 15px;
    font-size: 12px;
}
    
    .navbar-nav {
        background: #ffffff;
        -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.2);
        -ms-box-shadow: 0 2px 3px rgba(0,0,0,0.2);
        -moz-box-shadow: 0 2px 3px rgba(0,0,0,0.2);
        box-shadow: 0 2px 3px rgba(0,0,0,0.2);
        position: absolute;
        top: 55px;
        left: 0;
        width: 100%;
        height: auto !important;
        max-height: 70vh;
        overflow-y: auto;
        transition-duration: 0;
        -ms-transition-duration: 0;
        -moz-transition-duration: 0;
        -webkit-transition-duration: 0;
        -o-transition-duration: 0;
        width: 100%;
        display: none;
        transition: none;
        -ms-transition: none;
        -moz-transition: none;
        -webkit-transition: none;
        -o-transition: none;
    }

    .navbar-nav li.active>a {
        opacity: 1
    }

    .navbar-nav ul {
        width: 100%;
        display: none;
        transition: none;
        -ms-transition: none;
        -moz-transition: none;
        -webkit-transition: none;
        -o-transition: none
    }

    .navbar-nav li {
        width: 100%;
        border-top: 1px solid #e6e6e6;
        position: relative;
        padding: 0;
        margin: 0
    }

    .navbar-nav ul li:hover {
        background: #f5f5f5
    }

    .navbar-nav ul ul li {
        height: auto
    }

    .navbar-nav li:hover>ul>li {
        height: auto
    }

    .navbar ul li a {
        width: 100%;
        border-bottom: 0
    }
.search_input a {width: auto !important;}
    .search_input input {
    width: 40vw !important;
}
.search_input {
    height: 36px !important;
}    
    .scrollHeader .menu_area .navbar {
    height: 50px;
    padding: 0px;
}
    
    .navbar ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
        background: #f5f5f5;
        padding: 0
    }

    .navbar ul ul li {
        margin-bottom: 0;
        padding: 0;
        border-color: #e6e6e6
    }

    .navbar ul ul li a {
        width: 100%;
        border-bottom: 0;
        background: none;
        padding: 10px 30px !important;
    }

    .navbar ul ul ul li a {
        padding-left: 45px
    }

    .navbar>ul>li {
        float: none
    }

    .navbar-nav ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
        background: #f5f5f5;
        padding: 0
    }

    .navbar>ul>li.has-sub>a:after,.navbar>ul>li.has-sub>a:before {
        display: none
    }

    .navbar ul ul>li.has-sub>a:after,.navbar ul ul>li.has-sub>a:before {
        display: none
    }

    .navbar-nav ul ul ul li.active a {
        border-left: none
    }

    .navbar-nav>ul>li.has-sub>ul>li.active>a,.navbar-nav>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }

    .navbar li>ul ul ul {
        margin-left: 0;
        background: #fff
    }

    .navbar ul ul ul ul li a {
        padding-left: 55px
    }

    .navbar-nav .has-sub .has-sub .submenu-button {
        height: 40px
    }

    .navbar-nav .has-sub .has-sub .submenu-button:after {
        top: 18px;
    }

    .navbar-nav .has-sub .has-sub .submenu-button:before {
        top: 15px;
    }

    .navbar-toggler {
        background: none;
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 6px;
        position: absolute;
        right: -10px;
        top: 3px;
        cursor: pointer;
        z-index: 12;
        border: none;
    }

    .navbar-toggler:after {
        position: absolute;
        top: 21px;
        right: 10px;
        display: block;
        height: 9px;
        width: 20px;
        border-top: 2px solid #6f6e6e;
        border-bottom: 2px solid #6f6e6e;
        content: "";
    }

    .navbar-toggler:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 14px;
        right: 10px;
        display: block;
        height: 2px;
        width: 20px;
        background: #6f6e6e;
        content: "";
        opacity: .9;
    }

    .navbar-toggler.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 18px;
        border: 0;
        height: 2px;
        width: 18px;
        background: #757575;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .navbar-toggler.menu-opened:before {
        top: 18px;
        background: #757575;
        width: 18px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .navbar-nav .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        height: 38px;
        display: block;
        width: 100%;
        cursor: pointer
    }

    .navbar-nav .submenu-button:after {
        position: absolute;
        top: 19px;
        right: 17px;
        width: 7px;
        height: 1px;
        display: block;
        background: #232323;
        content: ""
    }

    .navbar-nav .submenu-button:before {
        position: absolute;
        top: 16px;
        right: 20px;
        display: block;
        width: 1px;
        height: 7px;
        background: #232323;
        content: ""
    }

    .navbar-nav .has-sub.active>.submenu-button:before {
        display: none
    }

    .attr-nav {
        float: left;
        width: auto;
        right: 40px;
    }

    .attr-nav>ul>li {
        display: inline-block
    }    
    .attr-nav>ul>li.dropdown ul.dropdown-menu {
        left: -193px;
        top: 38px;
        display: none !important
    }

    .attr-nav>ul>li.dropdown.show ul.dropdown-menu {
        display: block !important
    }

    .attr-nav>ul>li>a.cbtn {
        padding: 4px 14px;
        height: 32px;
        font-size: 12px;
    }

    .attr-nav>ul>li>a span.badge {
        right: -8px
    }

    .header-style1 {
        box-shadow: none;
        position: relative;
        left: 0;
        width: 100%
    }

    .header-style1 #top-bar {
        display: none;
        background: none;
        border-bottom: 1px solid rgba(255,255,255,0.35)
    }

    .header-style1 .navbar-toggler:after {
        border-top: 2px solid #546684;
        border-bottom: 2px solid #546684;
        opacity:.9
    }
    .scrollHeader .navbar-toggler:after {
        border-top: 2px solid #232323;
        border-bottom: 2px solid #232323;
    }
    .header-style1 .navbar-toggler:before {
        background: #546684;
    }
    .scrollHeader .navbar-toggler:before {
        background: #232323;
    }
    .header-style1 .navbar-toggler.menu-opened:after {
        background: #546684;
        border-bottom: none
    }

    .header-style1 .navbar-toggler.menu-opened:before {
        background: #546684;
    }
    .scrollHeader.header-style1 .navbar-toggler.menu-opened:before{
        background: #232323;
    }
    .header-style1 .attr-nav>ul>li>a img{
        height:12px;
    }      
}
@media screen and (max-width: 580px) {
    .attr-nav>ul>li>a.cbtn {
        font-size: 11px;
        font-weight:600;
        height: 30px;
        padding: 5px 13px 4px;
    }
}
@media (min-width: 580px) and (max-width: 768px){
      .bicon_desc .bicon {
    margin-inline-start: 10px;
    width: 33px;
    height: 33px;
}
    .topbar_left .bicon_desc .bicon {
    margin-inline-end: 10px;
}
    .bicon_desc h4 span {
    font-size: 11px;
}
    .bicon_desc h4 {
    font-size: 13px;
}
    .bicon_desc i {
    font-size: 20px;
}
}
@media (min-width: 768px) and (max-width: 992px){
      .bicon_desc .bicon {
    margin-inline-start: 10px;
    width: 36px;
    height: 36px;
}
    .topbar_left .bicon_desc .bicon {
    margin-inline-end: 10px;
}
    .bicon_desc h4 span {
    font-size: 12px;
}
    .bicon_desc h4 {
    font-size: 14px;
}
    .bicon_desc i {
    font-size: 21px;
}
}
@media (min-width: 992px) and (max-width: 1280px){
     .bicon_desc .bicon {
    margin-inline-start: 10px;
    width: 36px;
    height: 36px;
}
    .topbar_left .bicon_desc .bicon {
    margin-inline-end: 10px;
}
    .bicon_desc h4 span {
    font-size: 12px;
}
    .bicon_desc h4 {
    font-size: 14px;
}
    .bicon_desc i {
    font-size: 21px;
}
 .navbar-brand img {
    height: 24px;
    transition-duration: 0.5s;
    position: relative;
    top: 12px;
}
        .navbar-nav>li>a {
        padding: 8px 13px;
        font-size: 12px;
    }
    .attr-nav>ul>li>a.cbtn {
        padding: 5px 20px;
        height: 34px;
        font-size: 11.5px;
    }
}
@media (min-width: 1280px) and (max-width: 1440px){
    .bicon_desc .bicon {
    margin-inline-start: 10px;
    width: 36px;
    height: 36px;
}
    .topbar_left .bicon_desc .bicon {
    margin-inline-end: 10px;
}
    .bicon_desc h4 span {
    font-size: 13px;
}
    .bicon_desc h4 {
    font-size: 14.5px;
}
    .bicon_desc i {
    font-size: 21px;
}
 .navbar-brand img {
    height: 27px;
    transition-duration: 0.5s;
    position: relative;
    top: 11px;
}
        .navbar-nav>li>a {
        padding: 8px 16px;
        font-size: 12px;
    }
    .attr-nav>ul>li>a.cbtn {
        padding: 5px 21px;
        height: 37px;
        font-size: 12.5px;
    }
}

/*=========================================
    homeslider-section 
===========================================*/
.homeslider-section{
   max-height: 100%;
   background: #F2F6F7;
   height: 680px;
   position: relative;
   z-index: 0;
}
.homeslider-section .swiper-pagination{
    display:none;
}
.homeslider{
  height:100%;
  z-index: 2;
}
.homeslider .swiper-slide {
  font-size: 18px;
  color:#fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.homeslider .swiper-slide img{height: 88%;width: 100%;object-fit: contain;margin-top: -30px;margin-inline-start: 25px;z-index: 1;}
.homeslider .swiper-slide.sliderbg1{
   background:#ffc843 
}




.homeslider .swiper-slide + .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  top: -40px;
  z-index: 5;
}

.homeslider .swiper-slide + .container .swiper-button-prev,
.homeslider .swiper-slide + .container .swiper-button-next {
  height: 16px;
  top: 0px;
  margin-top: 0px;
}
.homeslider .swiper-slide + .container .swiper-button-prev::after,
.swiper .swiper-wrapper + .container .swiper-button-next::after {
  font-size: 16px;
}

.homeslider .swiper-slide + .container .swiper-button-prev,
.homeslider .swiper-slide + .container .swiper-button-next,
.homeslider .swiper-slide + .container .swiper-pagination {
  position: relative;
  left: unset;
  right: unset;
}
.homeslider .swiper-slide + .container .swiper-pagination {
  max-width: 200px;
}


.homeslider .swiper-slide {
  overflow: hidden;
  position: relative;
}
.homeslider .swiper-slide .slide-image {
  display: block;
  object-fit: cover;
  height: 400px;
  position: relative;
  width: 66%;
  z-index: 1;
}

.slidercontent_wrap{
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F9F6F2 !important;
  background-position: center !important;
  background-size: cover !important;
}
.slidercontent_wrap:before{
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    /* opacity: .5; */
    z-index: 1;
    /* background: #F2F6F7; */
    /* background: linear-gradient(180deg, rgb(213 64 120 / 12%) 0%, rgba(223, 242, 93, 0) 100%) !important; */
}

.homeslider .swiper-slide .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  top: 0px;
  left: 0%;
  z-index: 3;
  height: 100%;
  color: #fff;
}
.homeslider .swiper-slide .slide-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 10px;
  color: #3b2a56;
}
.hslider_desc{
    width: 55%;
    z-index: 1;
}
.slide-img{
    width: 50%;
    display: flex;
    justify-content: flex-end;
}
.slide-img img{
   height: 100% !important;
   width: 24vw !important;
   margin-top: -60px;
}
.homeslider .swiper-slide .slide-content .slide-content-inner {
  text-align: start;
}
.homeslider .swiper-slide .title{margin-top: -55px;font-size: 60px;line-height: 64px;font-weight: 800;letter-spacing: -0.01em;}
.homeslider .swiper-slide .title span{
 
color: #edd100;
}
.homeslider .swiper-slide .title span img{

width: auto;

height: 50px;

position: relative;

top: 7px;

margin-inline-start: 8px;
}
.homeslider .swiper-slide .sublist{
    margin: 22px 0px 28px;
}
.homeslider .swiper-slide-active .sublist > * ,
.homeslider .swiper-slide-active .cbtn_list > *, 
.homeslider .swiper-slide-active .title,
.homeslider .swiper-slide-active .hslider_img{
  opacity: 1;
  transform: none;
}
.homeslider .swiper-slide-active .title{
    transition-delay: 0.4s;
}
.homeslider .swiper-slide-active .sublist > *:nth-child(1) {
  transition-delay: 0.5s;
}
.homeslider .swiper-slide-active .sublist > *:nth-child(2) {
  transition-delay: 0.6s;
}
.homeslider .swiper-slide-active .sublist > *:nth-child(3) {
  transition-delay: 0.7s;
}
.homeslider .swiper-slide-active .cbtn_list > *:nth-child(1) {
  transition-delay: 0.8s;
}
.homeslider .swiper-slide-active .cbtn_list > *:nth-child(2) {
  transition-delay: 0.9s;
}
.homeslider .swiper-slide-active .hslider_img{
    transition-delay: 0.4s;
}
.homeslider .sublist > *, 
.homeslider .cbtn_list > *, 
.homeslider .title
{
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s;
}

.homeslider .swiper-slide .sublist li{
    margin: 8px 0px;
}
.homeslider .swiper-slide .sublist li span{
    position:
    relative;
    margin-inline-start: 24px;
    font-weight: 400;
    font-size: 18px;
}
.homeslider .swiper-slide .sublist li span a{ 
color: #dd3c7a;
}
.homeslider .swiper-slide .sublist li span:before{
    content: "\f058";
    position: absolute;
    margin-inline-start: -24px;
    margin-top: 1px;
    font-family: 'font_awesome';
    font-size: 16px;
    color: #28807e;
    font-weight: 600;
}
.homeslider .swiper-button-next:hover, .homeslider .swiper-button-prev:hover{

background: rgb(255 255 255 / 90%);
}

.homeslider .cbtn_list {
    display:flex;
    gap: 10px;
}
.homeslider .cbtn_list li{
   display: inline-flex;
}


.homeslider .hslider_img {
  transform: scale(1);
  transition: all 0.4s;
  position: absolute;
  right: 0;
  z-index: 0;
}

.hsimg_wrap{
    width: 560px;
    height: 560px;
    /* border: 1px dashed rgb(161 59 99 / 15%); */
    /* border-radius: 50%; */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hsimg_wrap:after{
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        height: 650px;
        width: 650px;
        background: radial-gradient(circle, #fc1d1d 0, #fff 60%, #fff 100%);
        border-radius: 50%;
        z-index: -2;
        opacity: .1;
}
.hsimg_bg{
    border-radius: 100%;
}
.hsimg_bg1{
    width: 460px;
    height: 460px;
    /* background: rgb(239 214 223); */
    z-index: -1;
    display: flex;
    position: absolute;
}
.hsimg_bg2{
    width: 340px;
    height: 340px;
    /* background: #f2f5f6; */
    z-index: 0;
    display: flex;
    position: absolute;
}
.cshape-1{   
position: absolute;   
top: -40px;    
left: -45%;    
transform: translateY(-45%);    
z-index: -1;   
animation: moveleftbounce 5s linear infinite;
}
.cshape-1 img{
    height: 200px !important;
    width:auto;
}
.cshape-2{
        position: absolute;
        top: 62%;
        left: -22%;
        transform: translateY(-50%) translateX(-52%);
        z-index: -1;
}
.cshape-2 img{
    height: 205px !important;
    width:auto;
}
.cshape-3 img{
    height: 42px !important;
    width:auto;
}
.cshape-3 {
    position: absolute;
    bottom: 40px;
    left: -62%;
    transform: translateY(-35%);
    z-index: -1;
    animation: moveleftbounce 5s linear infinite;
}
@keyframes moveleftbounce {  0% {  transform: translateX(0)}50% {transform: translateX(20px)  }   100% {transform: translateX(0)}}
@media (max-width: 580px){
  .homeslider-section {
    height: 400px;
}
    .hslider_desc {
    width: 82%;
}
.swiper-button-next,.swiper-button-prev {
    display:none;
}
.homeslider .swiper-slide .title{
    font-size: 28px;
    line-height: 30px;
    width: 100%;
}
  .homeslider .swiper-slide .title span img{
    height: 25px;
    margin-inline-start: 3px;
    top: 4px;
  }
  .homeslider .swiper-slide .title br{
   /* display: none; */
} 
  .homeslider .swiper-slide .sublist li{
    margin: 4px 0px;
    font-size: x-small;
}
.homeslider .swiper-slide .sublist li span:before{
    margin-top: 1px;
    margin-left: -18px;
    font-size: 12px;
}
.homeslider .swiper-slide .sublist li span{
    font-size: 13px;
    margin-inline-start: 20px;
}
 .hsimg_wrap {
    width: 220px;
    height: 220px;
    opacity: .8;
    filter: blur(1.4px);
}
    .cshape-1{
    top: -42%;
    left: -18%;
    }
    .cshape-1 img {
    height: 100px !important;
}
    .cshape-2{
    }
     .cshape-2 img {
    height: 85px !important;
}
   .cshape-3{
        left: -25%;
        bottom: -30px;
    } 
     .cshape-3 img {
    height: 20px !important;
}
}

@media (min-width: 580px) and (max-width: 768px){
 .homeslider-section {
    height: 420px;
}
    .hslider_desc {
    width: 82%;
}
.swiper-button-next,.swiper-button-prev {
    display:none;
}
.homeslider .swiper-slide .title{
    font-size: 30px;
    line-height: 31px;
    width: 100%;
}
  .homeslider .swiper-slide .title span img{
    height: 25px;
    margin-inline-start: 3px;
    top: 4px;
  }
  .homeslider .swiper-slide .title br{
   /* display: none; */
} 
  .homeslider .swiper-slide .sublist li{
    margin: 4px 0px;
    font-size: x-small;
}
.homeslider .swiper-slide .sublist li span:before{
    margin-top: 1px;
    margin-left: -18px;
    font-size: 12px;
}
.homeslider .swiper-slide .sublist li span{
    font-size: 14px;
    margin-inline-start: 20px;
}
 .hsimg_wrap {
    width: 220px;
    height: 220px;
    opacity: .8;
    filter: blur(1.4px);
}
    .cshape-1{
    top: -42%;
    left: -18%;
    }
    .cshape-1 img {
    height: 100px !important;
}
    .cshape-2{
    }
     .cshape-2 img {
    height: 85px !important;
}
   .cshape-3{
        left: -25%;
        bottom: -30px;
    } 
     .cshape-3 img {
    height: 20px !important;
}
}

@media (min-width: 768px) and (max-width: 1024px){
  .homeslider-section {
    height: 450px;
}
    .hslider_desc {
    width: 82%;
}
.swiper-button-next,.swiper-button-prev {
    display:none;
}
.homeslider .swiper-slide .title{
    font-size: 34px;
    line-height: 35px;
    width: 100%;
}
  .homeslider .swiper-slide .title span img{
    height: 30px;
    margin-inline-start: 3px;
    top: 4px;
  }
  .homeslider .swiper-slide .title br{
   /* display: none; */
} 
  .homeslider .swiper-slide .sublist li{
    margin: 4px 0px;
    font-size: x-small;
}
.homeslider .swiper-slide .sublist li span:before{
    margin-top: 1px;
    margin-left: -18px;
    font-size: 12px;
}
.homeslider .swiper-slide .sublist li span{
    font-size: 14px;
    margin-inline-start: 20px;
}
 .hsimg_wrap {
    width: 220px;
    height: 220px;
    opacity: .8;
    filter: blur(1.4px);
}
    .cshape-1{
    top: -42%;
    left: -18%;
    }
    .cshape-1 img {
    height: 100px !important;
}
    .cshape-2{
    }
     .cshape-2 img {
    height: 85px !important;
}
   .cshape-3{
        left: -25%;
        bottom: -30px;
    } 
     .cshape-3 img {
    height: 20px !important;
}
}

@media (min-width: 1024px) and (max-width: 1280px){
  .homeslider-section {
    height: 420px;
}
    .hslider_desc {
    width: 82%;
}
.homeslider .swiper-slide .title{
    font-size: 28px;
    line-height: 30px;
    width: 100%;
}
  .homeslider .swiper-slide .title span img{
    height: 25px;
    margin-inline-start: 3px;
    top: 4px;
  }
  .homeslider .swiper-slide .title br{
   /* display: none; */
} 
  .homeslider .swiper-slide .sublist li{
    margin: 4px 0px;
    font-size: x-small;
}
.homeslider .swiper-slide .sublist li span:before{
    margin-top: 1px;
    margin-left: -18px;
    font-size: 12px;
}
.homeslider .swiper-slide .sublist li span{
    font-size: 13px;
    margin-inline-start: 20px;
}
 .hsimg_wrap {
    width: 220px;
    height: 220px;
    opacity: .8;
    filter: blur(1.4px);
}
    .cshape-1{
    top: -42%;
    left: -18%;
    }
    .cshape-1 img {
    height: 100px !important;
}
    .cshape-2{
    }
     .cshape-2 img {
    height: 85px !important;
}
   .cshape-3{
        left: -25%;
        bottom: -30px;
    } 
     .cshape-3 img {
    height: 20px !important;
}
}

@media (min-width: 1280px) and (max-width: 1440px){
  .homeslider-section {
    height: 520px;
}
    .hslider_desc {
    width: 82%;
}
.homeslider .swiper-slide .title{
    font-size: 54px;
    line-height: 54px;
    width: 100%;
}
  .homeslider .swiper-slide .title span img{
    height: 44px;
    margin-inline-start: 4px;
    top: 7px;
  }
  .homeslider .swiper-slide .title br{
   /* display: none; */
} 
  .homeslider .swiper-slide .sublist li{
    margin: 4px 0px;
    font-size: x-small;
}
.homeslider .swiper-slide .sublist li span:before{
    margin-top: 1px;
    margin-left: -22px;
    font-size: 14.5px;
}
.homeslider .swiper-slide .sublist li span{
    font-size: 15px;
    margin-inline-start: 25px;
}
 .hsimg_wrap {
    width: 350px;
    height: 350px;
    opacity: 1;
}
    .cshape-1{
    top: -25%;
    left: -35%;
    }
    .cshape-1 img {
    height: 125px !important;
}
    .cshape-2{
    }
     .cshape-2 img {
    height: 120px !important;
}
   .cshape-3{
        left: -25%;
        bottom: -10px;
    } 
     .cshape-3 img {
    height: 32px !important;
}
}


/*=========================================
    Intro-Card-Section 
===========================================*/
.intro_card_section{z-index: 1;position: relative;margin-top: -65px;}
.intro_card_wrapper{
    margin: 0px -15px 0px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.intro_card_item {
   padding: 15px;
   width: calc(100% / 4);
}
.intro_card_box {
  display: flex;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
  padding: 15px 18px;
  width: 100%;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.intro_card_box:after{
    content: "";
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: 1 / 2;
    -ms-grid-row-align: end;
    -ms-grid-column-align: end;
    place-self: end;
    width: 90px;
    height: 90px;
    top: -42px;
    right: -4px;
    position: absolute;
    background: -o-radial-gradient(50%, circle, #ffffff 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    background: radial-gradient(circle at 50%, #867c7f 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    margin: 0 -30px -30px 0;
    /* z-index: -1; */
    opacity: .2;
    border-radius: 100%;
}
.intro_card_icon{
    
width: 68px;
    
height: 68px;
    
display: inline-flex;
    
background: linear-gradient(to right, #eff7f6, #f1f1f1);
    
border-radius: 100%;
    
justify-content: center;
    
align-items: center;
}
.intro_card_icon img{
    height: 42px;
    filter: hue-rotate(190deg);
}
.intro_card_icon i{
    font-size: 30px;
    color:#d54078;
}
.intro_card_content{padding-inline-start: 15px;width: calc(100% - 72px);}
.intro_card_content h4{
   font-weight: 800;
   font-size: 17px;
   line-height: 19px;
   width: 90%;
   color: #3b2a56;
}

@media (max-width: 580px){
    .intro_card_wrapper {
    margin: 0px -4px 0px;
}
.intro_card_item {
   width: calc(100% / 2);
   padding: 4px;
}
.intro_card_content {
    padding-inline-start: 0;
    width: 100%;
    margin-top: 8px;
}    
    .intro_card_section {
    margin-top: -55px;
}
    .intro_card_box {
    padding: 12px 12px;
    flex-direction: column;
    text-align: center;
    height: 100%;
}
    .intro_card_icon {
    width: 45px;
    height: 45px;
}
    .intro_card_icon img {
    height: 28px;
}
    .intro_card_content h4 {
        font-weight:700;
        font-size: 13px;
        line-height: 15px;
        width: 100%;
        padding: 0px 5px;
}
}
@media (min-width: 580px) and (max-width: 768px){
       .intro_card_wrapper {
    margin: 0px -4px 0px;
}
.intro_card_item {
   width: calc(100% / 4);
   padding: 4px;
}
.intro_card_content {
    padding-inline-start: 0;
    width: 100%;
    margin-top: 8px;
}    
    .intro_card_section {
    margin-top: -55px;
}
    .intro_card_box {
    padding: 12px 12px;
    flex-direction: column;
    text-align: center;
    height: 100%;
}
    .intro_card_icon {
    width: 50px;
    height: 50px;
}
    .intro_card_icon img {
    height: 30px;
}
    .intro_card_content h4 {
        font-weight:700;
        font-size: 13px;
        line-height: 15px;
        width: 100%;
        padding: 0px 0px;
}
}
@media (min-width: 768px) and (max-width: 1024px){
       .intro_card_wrapper {
    margin: 0px -4px 0px;
}
.intro_card_item {
   width: calc(100% / 4);
   padding: 4px;
}
.intro_card_content {
    padding-inline-start: 0;
    width: 100%;
    margin-top: 8px;
}    
    .intro_card_section {
    margin-top: -55px;
}
    .intro_card_box {
    padding: 12px 12px;
    flex-direction: column;
    text-align: center;
    height: 100%;
}
    .intro_card_icon {
    width: 50px;
    height: 50px;
}
    .intro_card_icon img {
    height: 32px;
}
    .intro_card_content h4 {
        font-weight:700;
        font-size: 14.5px;
        line-height: 18px;
        width: 100%;
        padding: 0px 14px;
}
}
@media (min-width: 1024px) and (max-width: 1280px){
        .intro_card_wrapper {
    margin: 0px -4px 0px;
}
.intro_card_item {
   width: calc(100% / 4);
   padding: 4px;
}
.intro_card_content {
    padding-inline-start: 0;
    width: 100%;
    margin-top: 8px;
}    
    .intro_card_section {
    margin-top: -55px;
}
    .intro_card_box {
    padding: 18px 12px;
    flex-direction: column;
    text-align: center;
    height: 100%;
}
    .intro_card_icon {
    width: 50px;
    height: 50px;
}
    .intro_card_icon img {
    height: 32px;
}
    .intro_card_content h4 {
        font-weight:700;
        font-size: 14.5px;
        line-height: 18px;
        width: 100%;
        padding: 0px 14px;
}
}
@media (min-width: 1280px) and (max-width: 1440px){
        .intro_card_wrapper {
    margin: 0px -4px 0px;
}
.intro_card_item {
   width: calc(100% / 4);
   padding: 4px;
}
.intro_card_content {
    padding-inline-start: 0px;
    margin-top: 0px;
    width: calc(100% - 55px);
}    
    .intro_card_section {
    margin-top: -55px;
}
    .intro_card_box {
    padding: 14px 16px;
    height: 100%;
}
    .intro_card_icon {
    width: 55px;
    height: 55px;
}
    .intro_card_icon img {
    height: 32px;
}
    .intro_card_content h4 {
        font-weight:700;
        font-size: 14.5px;
        line-height: 18px;
        width: 100%;
        padding: 0px 14px;
}
}

/***===============================================
Section Title
================================================***/
.sec-title {
  position: relative;
  margin-bottom: 60px;
}
.sec-title.sectitle_center{
  text-align: center;
}
.sec-title.sectitle_center h2:before {
    left: 50%;
    margin-left: -38px;
}
.sec-title .sub-title {
  font-size: 13.5px;
  color: #6a6f78;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.sec-title h2 {
  position: relative;
  font-size: 43px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0;
  padding-bottom: 24px;
  color: #3b2a56;
}

/* .sec-title h2:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--bg-theme-color2)), to(transparent));
  background: linear-gradient(to right, #d54078, transparent);
  content: "";
} */
.sec-title h2:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -2px;
    margin: auto;
    width: 76px;
    height: 15px;
    background-image: url(../images/others/border.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2;
}
.sec-title .ptext{margin-top: 25px;line-height: 26px;font-weight: 400;color: #6e6e6e;font-size: 15.5px;}
.ptext{margin-top: 25px;line-height: 26px;font-weight: 400;color: #6e6e6e;font-size: 15.5px;}

.sectitle_light.sec-title h2{
  color:#fff;
}
.sectitle_light.sec-title .sub-title{
    color:#eaeaea;
}

@media (max-width: 580px) {
  .sec-title .sub-title {
  font-size: 12px;
  letter-spacing: .5px;
}
  .sec-title h2 {
    font-size: 24px;
    line-height: 28px;
    padding-bottom: 20px;
}
  .sec-title h2:before {
    width: 50px;
}
  .sec-title .ptext {
    margin-top: 20px;
    line-height: 22px;
    font-size: 14px;
 }
    .sec-title {
    margin-bottom: 40px;
}
}
@media(min-width: 580px) and (max-width: 767px){
   .sec-title .sub-title {
  font-size: 12px;
  letter-spacing: .5px;
}
  .sec-title h2 {
    font-size: 26px;
    line-height: 30px;
    padding-bottom: 22px;
}
  .sec-title h2:before {
    width: 50px;
}
  .sec-title .ptext{
    font-size: 14.5px;
    line-height: 23px;
 } 
}
@media(min-width: 768px) and (max-width: 1023px){
  .sec-title .sub-title {
  font-size: 12px !important;
  letter-spacing: .5px;
  margin-bottom: 5px !important;
}
  .sec-title h2 {
    font-size: 30px;
    line-height: 32px;
    padding-bottom: 22px;
}
  .sec-title h2:before {
    width: 50px;
}
  .sec-title .ptext{
    font-size: 14px;
    line-height: 21px;
 } 
}
@media(min-width: 1024px) and (max-width: 1365px){
  .sec-title .sub-title {
  font-size: 12px;
  letter-spacing: .5px;
}
  .sec-title h2 {
    font-size: 33px;
    line-height: 37px;
    padding-bottom: 22px;
}
  .sec-title h2:before {
    width: 50px;
}
  .sec-title .ptext{
    font-size: 15px;
    line-height: 23px;
 }
}
@media(min-width: 1366px) and (max-width: 1600px){
  .sec-title .sub-title {
  font-size: 12.5px;
  letter-spacing: .5px;
}
  .sec-title h2 {
    font-size: 36px;
    line-height: 37px;
    padding-bottom: 22px;
}
  .sec-title h2:before {
    width: 50px;
}

  .sec-title .ptext{
    font-size: 15px;
    line-height: 24px;
 }
}

/*** 

====================================================================
Page Title
====================================================================

***/

.page-title {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0 35px;
  background: rgb(40 128 126 / 20%) !important;
  overflow: hidden;
}
.page-title .title-outer{  
     position: relative;
}

.sectitle_fix_wrap{
    position: absolute;
    right:30%;
    top: 15px;
    height: 200px;
    width: 200px;
    z-index: 0;
    opacity: .7;
    filter: blur(1.1px);
}
.sectitle_fix_wrap > img{
    height:200px;
    position: absolute;
    right: 0;
    top: 0;
}
.sectitle_fix_wrap .cshape-1{top: -35px;left: -130px;transform: none;z-index: 0;}
.sectitle_fix_wrap .cshape-1 img{
    height: 95px !important;
    width:auto;
}
.sectitle_fix_wrap .cshape-2{
        top: 85px;
        left: -65px;
        transform: none;
        z-index: 0;
}
.sectitle_fix_wrap .cshape-2 img{
    height: 72px !important;
    width:auto;
}
.sectitle_fix_wrap .cshape-3 img{
    height: 20px !important;
    width:auto;
}
.sectitle_fix_wrap .cshape-3 {
    bottom: 0;
    left: -125px;
    transform: none;
    z-index: 0;
}

.page-title .title {
  font-size: 46px;
  color: #3b2a56;
  margin-bottom: 16px;
  font-weight: 800;
}
.page-title .text {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.05em;
  max-width: 520px;
}
.breadcrumb_wrap{  
display: flex;  
align-items: end;  
justify-content: space-between;  
position: relative;
}
.page-breadcrumb {
  position: relative;
  margin-top: 5px;
}
.page-breadcrumb li {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  padding-right: 13px;
  color: #3b2a56;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
}
.page-breadcrumb li:after {
  position: absolute;
  content: "\f105";
  right: -5px;
  top: 1px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  font-family: "Font_Awesome";
  color: #ed1c24;
}
.page-breadcrumb li:last-child {
  padding-right: 0px;
  margin-right: 0px;
}
.page-breadcrumb li:last-child::after {
  display: none;
}
.page-breadcrumb li a {
  color: #ed1c24;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.page-breadcrumb li a:hover {
  color: #ffffff;
}
.bread_btn{
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  background: rgb(40 128 126);
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  border: none;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: .5px;
  padding: 7px 20px 7px;
  margin: 0;
}

@media only screen and (max-width: 580px) {
  .page-title {
    padding: 60px 0 20px;
  }
  .page-title .title {
  font-size: 17px;
  margin-bottom: 2px;
}
  .page-breadcrumb {
    margin-top: 2px;
}
  .page-breadcrumb li {
    margin-right: 8px;
    padding-right: 9px;
    font-size: 10px;
}
  .page-breadcrumb li:after {
    right: -4px;
    top: 1px;
    font-size: 10px;
    font-weight: 400;
}
  .bread_btn{min-height: 28px;font-size: 10px;padding: 4px 14px 5px;}
    .sectitle_fix_wrap{
    right:20%;
    top: -35px;
        transform:scale(0.5);
}
}

@media (min-width: 580px) and (max-width: 768px) {
   .page-title {
    padding: 60px 0 20px;
  }
  .page-title .title {
  font-size: 20px;
  margin-bottom: 2px;
}
  .page-breadcrumb {
    margin-top: 2px;
}
  .page-breadcrumb li {
    margin-right: 8px;
    padding-right: 9px;
    font-size: 11px;
}
  .page-breadcrumb li:after {
    right: -4px;
    top: 1px;
    font-size: 10px;
    font-weight: 400;
}
  .bread_btn{min-height: 29px;font-size: 10.5px;padding: 4px 14px 4px;}
    .sectitle_fix_wrap{
    right:20%;
    top: -35px;
        transform:scale(0.5);
}
}

@media (min-width: 768px) and (max-width: 1024px) {
  .page-title {
    padding: 60px 0 20px;
  }
  .page-title .title {
  font-size: 24px;
  margin-bottom: 2px;
}
  .page-breadcrumb {
    margin-top: 2px;
}
  .page-breadcrumb li {
    margin-right: 8px;
    padding-right: 9px;
    font-size: 13px;
}
  .page-breadcrumb li:after {
    right: -4px;
    top: 1px;
    font-size: 10px;
    font-weight: 400;
}
  .bread_btn{min-height: 30px;font-size: 11.5px;padding: 4px 18px 5px;}
    .sectitle_fix_wrap{
    right:20%;
    top: -35px;
        transform:scale(0.5);
}
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .page-title {
    padding: 60px 0 20px;
  }
  .page-title .title {
  font-size: 28px;
  margin-bottom: 2px;
}
  .page-breadcrumb {
    margin-top: 2px;
}
  .page-breadcrumb li {
    margin-right: 8px;
    padding-right: 9px;
    font-size: 13px;
}
  .page-breadcrumb li:after {
    right: -4px;
    top: 1px;
    font-size: 10px;
    font-weight: 400;
}
  .bread_btn{min-height: 32px;font-size: 12px;padding: 4px 18px 5px;}
    .sectitle_fix_wrap{
    right:20%;
    top: -35px;
        transform:scale(0.5);
}
}

@media (min-width: 1280px) and (max-width: 1440px) {
  .page-title {
    padding: 60px 0 20px;
  }
  .page-title .title {
  font-size: 32px;
  margin-bottom: 2px;
}
  .page-breadcrumb {
    margin-top: 2px;
}
  .page-breadcrumb li {
    margin-right: 8px;
    padding-right: 9px;
    font-size: 13px;
}
  .page-breadcrumb li:after {
    right: -4px;
    top: 1px;
    font-size: 10px;
    font-weight: 400;
}
  .bread_btn{min-height: 33px;font-size: 12px;padding: 4px 20px 5px;}
    .sectitle_fix_wrap{
    right:20%;
    top: -35px;
        transform:scale(0.5);
}
}

/***=====================================================
     Fixed backgrounds
=====================================================***/
.fixed_bgs{
width: 0;
height: 0;
}
.fixbg_1{
    position: absolute;
}
.fixbg_2{
    position: absolute;
}
.fix_dots{
    width: 100px;
    height: 120px;
    background: -o-radial-gradient(50%, circle, #ffffff 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    background: radial-gradient(circle at 50%, #deefed 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    margin: 0 -30px -30px 0;
    opacity: 1;
}
.fix_round{
    height: 100px;
    width: 100px;
    border: 8px solid #eff7f6;
    border-radius: 100%;
    animation-name: float;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes float {
    50% {
        transform: translate(0, 8px);
    }
}
/***=====================================================
        About Section
=====================================================***/
.about-section {
  position: relative;
  padding: 100px 0 180px;
  z-index: 4;
}
.about-section .fixbg_1{
     left: -30px;
     bottom: 200px;
}
.about-section .fixbg_2{
    right: -30px;
    top: 80px;
}
.about-section .fixbg_1 .fix_round{
    top:-15px;
    left:40px;
    position:relative;
}
.about-section .fixbg_2 .fix_round{
    top:-135px;
    right:40px;
    position:relative;
}

.aboutsec_wrap{
  display: flex;
  gap: 30px;
}
.about_descarea{
  
width: 60%;
}
.about_descarea .cbtn_uls{
    gap: 30px;
}
.about_descarea .sec-title{
  margin-bottom: 30px;
}

.about_imgarea{
  width: 40%;
  display: flex;
  gap: 30px;
  position: relative;
  padding-inline-end: 40px;
}
.about_imgarea .about_imgleft{
  
width: 270px;
}
.about_imgarea .about_imgright{
  
position: relative;
  
width: 270px;
}
.circlemap_img{position: relative;margin-top: 40px;display: flex;justify-content: center;}
.circlemap_img .map_img{
  position: absolute;
  left: -32px;
  top: -5px;
  width: calc(100% + 50px);
}
.circlemap_img .map_img img{width: 100%;}
.circlemap_img .hover_img{
}
.circlemap_img .hover_img img{
  border-radius: 100%;
}
.hover_img{position: relative;overflow: hidde;}
.hover_img:before{
        position: absolute;
        left: 15px;
        right: -10px;
        bottom: -2px;
        height: 95%;
        /* background-image: url(../images/icons/lines.png); */
        content: "";
        z-index:-1;
        border-radius: 10px;
}
.hover_img:after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
  border-radius: 10px;
}
.hover_img:hover:after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.hover_img img{
  width: 100%;
  border-radius: 10px;
}
.squaresmall_img{}
.squarebig_img{
}
.squaresmall_img .hover_img img, .squarebig_img .hover_img img{
    border-radius:12px;
}
.squaresmall_img .hover_img img{
     height: 160px;
     position: relative;
     left: 20px;
}
.squarebig_img .hover_img img{
    height: 285px;
    width: auto;
}
.about-section .experience {
  background: linear-gradient(to right, #f9e2e2, #f1f1f1);
  -webkit-box-shadow: 0 15px 60px rgba(68, 67, 67, 0.08);
  box-shadow: 0 15px 60px rgb(68 67 67 / 8%);
  border-radius: 12px;
  margin-bottom: 60px;
}


.about-section .experience .inner {
  position: relative;
  min-height: 90px;
  display: flex;
  align-items: center;
  padding: 15px 25px;
}
.about-section .experience .icon {
  height: 62px;
  width: 62px;
  font-size: 40px;
  font-weight: 700;
  color: #ed1c24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
}
.about-section .experience .text {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
  font-weight: 600;
  padding-inline-start: 18px;
}

.about-section .sublist{
    margin-top: 20px;
}

.sublist {margin-top: 20px;}
.sublist li{
    margin: 10px 0px;
}
.sublist li span{
    position:
    relative;
    margin-inline-start: 25px;
    font-size: 16.5px;
    font-weight: 500;
    height: 100%;
    display: inline-block;
}
.sublist li span a{
  
color: #dd3c7a;
}
.sublist li span:before{
    content: "\f058";
    margin-top: 1px;
    font-family: 'font_awesome';
    position: absolute;
    margin-inline-start: -23px;
    color: #3c797d;
    font-weight: 600;
    font-size: 15.5px;
}


@media (max-width: 580px) {
    .about-section {
    padding: 0px 0 120px;
}
 .aboutsec_wrap{
   flex-direction: column;
   gap: 20px;
 } 
  .about_descarea{
    width: 100%;
    margin-top: -70px;
  }
  .about_imgarea{
    width: 100%;
    padding-bottom: 10px;
    padding-top: 0;
    gap: 20px;
    padding-inline-end: 0;
    transform: scale(0.65);
    margin-top: -25px;
    justify-content: center;
  }
  .about_descarea .cbtn_uls {
    gap: 20px;
}
.circlemap_img {
    margin-bottom: 12px;
    margin-top: 12px;
}
  .about-section .experience {
    left: 0;
    bottom: -35px;
    -webkit-animation: none;
    animation: none;
    margin-top: 0;
    width: 100%;
    margin-bottom: 20px;
  }

    .sublist li {
    margin: 4px 0px;
}
    .sublist li span {
    margin-inline-start: 20px;
    font-size: 13px;
    font-weight: 500;
}
    .sublist li span:before {
    margin-inline-start: -19px;
    font-weight: 600;
    font-size: 12.5px;
}
    .sublist {margin-top: 15px;}
     .profile-grid .well p {
        margin-top: 0px;
        line-height: 21px !important;
        font-size: 14px !important;
    }
    .profile-grid .well h3 {
    font-size: 17px !important;
}
}
@media(min-width: 580px) and (max-width: 767px){
  .about-section {
    padding: 0px 0 120px;
}
 .aboutsec_wrap{
   flex-direction: column;
   gap: 20px;
 } 
  .about_descarea{
    width: 100%;
    margin-top: -70px;
  }
  .about_imgarea{
    width: 100%;
    padding-bottom: 10px;
    padding-top: 0;
    gap: 20px;
    padding-inline-end: 0;
    transform: scale(0.68);
    margin-top: -25px;
    justify-content: center;
  }
  .about_descarea .cbtn_uls {
    gap: 20px;
}
.circlemap_img {
    margin-bottom: 12px;
    margin-top: 12px;
}
  .about-section .experience {
    left: 0;
    bottom: -35px;
    -webkit-animation: none;
    animation: none;
    margin-top: 0;
    width: 100%;
    margin-bottom: 20px;
  }

    .sublist li {
    margin: 4px 0px;
}
    .sublist li span {
    margin-inline-start: 20px;
    font-size: 13.5px;
    font-weight: 500;
}
    .sublist li span:before {
    margin-inline-start: -19px;
    font-weight: 600;
    font-size: 12.5px;
}
    .sublist {margin-top: 15px;}
     .profile-grid .well p {
        margin-top: 0px;
        line-height: 21px !important;
        font-size: 14px !important;
    }
    .profile-grid .well h3 {
    font-size: 17px !important;
}   
}
@media(min-width: 768px) and (max-width: 1023px){
 .about-section {
    padding: 60px 0 120px;
}
 .aboutsec_wrap{
   gap: 30px;
   align-items: flex-start;
 } 
  .about_descarea{
  width: 65%;
  padding-left: 60px;
  }
  .about_imgarea{
    transform: scale(0.65) translateX(-100px) translateY(-105px);
    width: 35%;
  }
  .about_descarea .cbtn_uls {
    gap: 20px;
}
.circlemap_img {
    margin-bottom: 12px;
    margin-top: 12px;
}
  .about-section .experience {
    left: 0;
    bottom: -35px;
    -webkit-animation: none;
    animation: none;
    margin-top: 0;
    width: 100%;
    margin-bottom: 20px;
  }

    .sublist li {
    margin: 4px 0px;
}
    .sublist li span {
    margin-inline-start: 20px;
    font-size: 13px;
    font-weight: 500;
}
    .sublist li span:before {
    margin-inline-start: -19px;
    font-weight: 600;
    font-size: 12.5px;
}
    .sublist {margin-top: 15px !important;}
     .profile-grid .well p {
        margin-top: 0px;
        line-height: 21px !important;
        font-size: 14px !important;
    }
    .profile-grid .well h3 {
    font-size: 17px !important;
}
}
@media(min-width: 1023px) and (max-width: 1280px){
  
}
@media (min-width: 1280px) and (max-width: 1440px){
  .about_imgarea {
    width: 45%;
}
  .about_descarea {
    width: 55%;
}
}

/***=====================================================
        About Section
=====================================================***/


.circle-button {
  position: relative;
  display: inline-block;
}

.circle-button.in-bord:after {
  content: '';
  position: absolute;
  top: 55px;
  left: 55px;
  right: 55px;
  bottom: 55px;
  border: 1px solid rgb(233 245 244);
  border-radius: 50%;
  background: #28807e;
  z-index: -1;
}

.circle-button.in-bord:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgb(233 245 244);
  border-radius: 50%;
}

.circle-button .rotate-circle svg {
  width: 200px;
  height: 200px;
  display: flex;
}
.circle-button .rotate-circle svg textPath{
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 600;
    fill: #3a3a3a;
}
.circle-button .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-20px) translateY(-20px);
  -ms-transform: translateX(-20px) translateY(-20px);
  transform: translateX(-20px) translateY(-20px);
  display: inline-block;
  width: 0;
  height: 0;
}

.circle-button .arrow svg {
  width: 40px;
  height: 40px;
}
.circle-button .arrow svg path{
 fill: #ffffff;
}

.circle-button .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.circle-button .in-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.circle-button.no-animate .rotate-circle {
  -webkit-animation: none;
  animation: none;
}
.rotate-circle {
  -webkit-animation-name: rotateCircle;
  animation-name: rotateCircle;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes rotateCircle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotateCircle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/***=====================================================
       Service Section
=====================================================***/


.services_section{padding: 110px 0px 110px;background: #eff7f6;position: relative;}
.services_section.innerpage_section {
    padding: 90px 0px 160px;
    background: #fff;
}
.cshape-pot{
    
position: absolute;
    
top: -120px;
    
right: 240px;
    
z-index: 1;
}

@media (max-width: 580px){
    .services_section {
    padding: 60px 0px 60px;
}
    .services_section.innerpage_section {
    padding: 60px 0px 120px;
}
   .services_section .cshape-pot {
    top: -45px;
    right: 15px;
  }
    .services_section .cshape-pot img{
      height: 110px;
  }
}
@media(min-width: 580px) and (max-width: 768px){
    .services_section {
    padding: 60px 0px 60px;
}
    .services_section.innerpage_section {
    padding: 60px 0px 120px;
}
   .services_section .cshape-pot {
    top: -45px;
    right: 15px;
  }
    .services_section .cshape-pot img{
      height: 120px;
  }
}
@media(min-width: 768px) and (max-width: 1024px){
    .services_section {
    padding: 60px 0px 60px;
}
    .services_section.innerpage_section {
    padding: 60px 0px 120px;
}
   .services_section .cshape-pot {
    top: -65px;
    right: 15px;
  }
    .services_section .cshape-pot img{
      height: 140px;
  }
}


/***=====================================================
        Smartclasson_Model_wrap
=====================================================***/
.products_section{
    padding:120px 0px;
    background: #ffffff;
    position: relative;
}
.products_section .cshape-pot{
    right: 24%;
    top: -100px;
}
.products_section .cshape-pot img{
   margin-top: 25px;
   height: 230px;
}
.products_section.innerpage_section{
    padding: 90px 0px 160px;
    background: #F9F6F2;
}
.products_section .sec-title .cbtn {
  position: absolute;
  right: 0;
  top: 45px;
}
.products_section .sec-title .cbtn:hover {
  color:#fff;
}
.service_tab_wrap{
    
}

.stab_content_wrap{
    display:flex;
}
.stab_icon{
    width: 68px;
    height: 68px;
    display: inline-flex;
    background: linear-gradient(to right, #eff7f6, #f1f1f1);
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    border-radius: 100px;
}
.stab_icon img{
   height: 38px;
   filter: hue-rotate(190deg);
}
.stab_icon i{
    font-size: 24px;
    color: #d54078;
}
.stab_text{
    font-weight: 700;
    font-size: 15.5px;
}
.image_side{
    width: 340px;
    position: relative;
    z-index: 2;
}
.image_side img{
}
.desc_side{
    width: calc(100% - 350px);
    padding-inline-start: 50px;
    padding-inline-end: 42px;
    padding-top: 0px;
}
.desc_side h2{
   
position: relative;
   
font-size: 30px;
   
font-weight: 700;
   
margin-bottom: 0;
   
width: 90%;
}
.desc_side p{margin-top: 18px;margin-bottom: 18px;}
.desc_side ul.sublist{
    margin: 20px 0px 25px;
}


@media only screen and (max-width: 992px) {
.stab_content_wrap {
   flex-direction:column;
}
   .stab_content_wrap .image_side {
    width: 110px;
    margin-bottom: 15px;
}
.stab_content_wrap .desc_side {
    width: 100% !important;
    padding-inline-start: 0px !important;
    padding-inline-end: 0px !important;
    padding-bottom: 25px;
}
}

.r-tabs {
    position: relative;
}

/* Tab element */
.r-tabs .r-tabs-nav .r-tabs-tab {
    position: relative;
    flex: 1;
    margin: 0px 15px 35px 0;
}
.r-tabs .r-tabs-nav .r-tabs-tab:last-child{
    margin:0;
}
/* Tab anchor */
.r-tabs .r-tabs-nav .r-tabs-anchor {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
    padding: 18px 18px;
    align-items: center;
    border-bottom: 2px solid #fff;
    position: relative;
    overflow: hidden;
    color: #222;
}
.r-tabs .r-tabs-nav .r-tabs-anchor:after {
    content: "";
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: 1 / 2;
    -ms-grid-row-align: end;
    -ms-grid-column-align: end;
    place-self: end;
    width: 90px;
    height: 90px;
    top: -42px;
    right: -4px;
    position: absolute;
    background: -o-radial-gradient(50%, circle, #ffffff 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    background: radial-gradient(circle at 50%, #867c7f 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    margin: 0 -30px -30px 0;
    /* z-index: -1; */
    opacity: .15;
    border-radius: 100px;
}
/* Disabled tab */
.r-tabs .r-tabs-nav .r-tabs-state-disabled {
    opacity: 0.5;
}

/* Active state tab anchor */
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
    text-shadow: none;
    background: #28807e;
    color: #fff;
    position:relative;
    overflow: inherit;
    padding: 18px 20px;
}
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor:before{
        position: absolute;
        content: '';
        width: 15px;
        height: 15px;
        background: #28807e;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        bottom: -8px;
        : 0;
        transition: all 500ms ease;
}
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor:after{
    display:none;
}

/* Tab panel */
.r-tabs .r-tabs-panel {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
}

/* Accordion anchor */
.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
    padding: 18px 18px;
    align-items: center;
    border-bottom: 2px solid #fff;
    position: relative;
    overflow: hidden;
    color: #222;
}

/* Active accordion anchor */
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
    background-color: #fff;
    color: #202020 !important;
    text-shadow: none;
}

/* Disabled accordion button */
.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
    opacity: 0.5;
}





.r-tabs .r-tabs-nav {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}
.r-tabs .r-tabs-tab {
    display: block;
    margin: 0;
    list-style: none;
}

.r-tabs .r-tabs-panel {
    padding: 40px 40px 40px;
    display: none;
}

.r-tabs .r-tabs-accordion-title {
    display: none;
}

.r-tabs .r-tabs-panel.r-tabs-state-active {
    display: block;
    min-height: auto !important;
}



/* Accordion responsive breakpoint */
@media only screen and (max-width: 992px) {
    .r-tabs .r-tabs-nav {
        display: none;
    }

    .r-tabs .r-tabs-accordion-title {
        display: block;
        margin-bottom: 10px;
    }
}

.verticalTab.r-tabs{
    display: flex;
}
.verticalTab.r-tabs .r-tabs-nav{
  flex-direction: column;
  justify-content: flex-start;
  width: 400px;
  flex: 1;
}
.verticalTab.r-tabs .r-tabs-nav .r-tabs-tab {
    margin: 0px 35px 12px 0;
    flex: initial;
}
.verticalTab.r-tabs .r-tabs-nav .r-tabs-tab:last-child{
    margin: 0px 35px 15px 0;
}

.verticalTab.r-tabs .r-tabs-nav .r-tabs-anchor{
    flex-direction:row;
    padding: 15px 20px;
    background: #fff;
    border-left: 3px solid #fff;
    border-bottom:none;
    color: #222;
    overflow:hidden;
}
.verticalTab.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor:after{
    display:block;
}
.verticalTab.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor{
    border-left: 3px solid #28807e;
}
.verticalTab.r-tabs .r-tabs-panel.r-tabs-state-active{
    width: calc(100% - 400px);
    height: fit-content;
    padding: 50px 50px 50px;
}
.verticalTab.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor:before {
    left: inherit;
    right:-15px;
    transform: translateX(-50%) rotate(45deg);
    bottom: calc(50% - 8px);
    background: #fff;
    display: none;
}
.verticalTab .stab_text {
    font-size: 16px;
}
.verticalTab .stab_icon {
    width: 66px;
    height: 66px;
    /* display: inline-flex; */
    /* background: none; */
    border-radius: 14%;
    /* justify-content: flex-start; */
    /* align-items: center; */
    /* border-right: 1px solid #f9f6f2; */
    margin-bottom:0px;
    margin-right: 15px;
}
.verticalTab .stab_icon img {
    max-width: 85px;
    height: auto;
    max-height: 35px;
}
.verticalTab .image_side{
    width: 200px;
}
.verticalTab .desc_side{
    width:calc(100% - 100px);
    padding-inline-end: 40px;
    padding-inline-start: 0;
}
.verticalTab .desc_side .sublist li span {
    line-height: 20px;
}

@media only screen and (max-width: 992px) {
    .verticalTab.r-tabs{
    flex-direction:column;
}
.verticalTab.r-tabs .r-tabs-nav{
  width: 100%;
}
    .verticalTab.r-tabs .r-tabs-nav .r-tabs-anchor{
    flex-direction:column;
}
  .verticalTab.r-tabs .r-tabs-panel.r-tabs-state-active {
    width: 100%;
    padding: 30px 30px 30px;
}  
    .verticalTab .stab_icon {
        border-right:0;
        margin-bottom: 7px;
        margin-right: 0;
        justify-content: center;
        border-radius: 100px;
        width: 50px;
        height: 50px;
}
    .verticalTab .stab_icon img {
    max-width: 70px;
    max-height: 28px;
}
    .verticalTab .stab_text {
    font-size: 14px;
}
    .r-tabs .r-tabs-accordion-title .r-tabs-anchor {
    
}
}


@media (max-width: 580px){
    .products_section{
    padding:60px 0px;
}
    .products_section.innerpage_section {
    padding: 60px 0px 120px;
}
    .products_section .cshape-pot{
    right: 40px;
    top: -68px;
}
.products_section .cshape-pot img{
   height: 120px;
}
    .stab_icon{
        height:50px;
        width:50px;
    }
    .stab_icon img {
    height: 27px;
}
    .stab_text {
    font-size: 14px;
}
    .stab_content_wrap .image_side {
    width: 110px;
}
    .stab_content_wrap .desc_side h2{
        font-size: 20px;
        line-height: 24px;
        width: 100%;
    }
   .stab_content_wrap .desc_side p {
    margin-top: 12px;
    margin-bottom: 10px;
}
   .stab_content_wrap .desc_side ul.sublist {
    margin: 15px 0px 25px;
}
    .r-tabs .r-tabs-panel {
    padding: 25px 25px 40px;
}
}
@media(min-width: 580px) and (max-width: 768px){
    .products_section{
    padding:60px 0px;
}
    .products_section.innerpage_section {
    padding: 60px 0px 120px;
}
    .products_section .cshape-pot{
    right: 40px;
    top: -68px;
}
.products_section .cshape-pot img{
   height: 120px;
}
      .stab_icon{
        height:50px;
        width:50px;
    }
    .stab_icon img {
    height: 27px;
}
    .stab_text {
    font-size: 14px;
}
    .stab_content_wrap .image_side {
    width: 90px;
    margin-top: 15px;
}
    .stab_content_wrap .desc_side h2{
        font-size: 20px;
        line-height: 24px;
        width: 100%;
    }
   .stab_content_wrap .desc_side p {
    margin-top: 12px;
    margin-bottom: 10px;
}
   .stab_content_wrap .desc_side ul.sublist {
    margin: 15px 0px 25px;
}
    .r-tabs .r-tabs-panel {
    padding: 25px 25px 40px;
}
}
@media(min-width: 768px) and (max-width: 1024px){
    .products_section{
    padding:60px 0px;
}
    .products_section.innerpage_section {
    padding: 60px 0px 120px;
}
    .products_section .cshape-pot{
    right: 115px;
    top: -68px;
}
.products_section .cshape-pot img{
   height: 135px;
}
      .stab_icon{
        height: 56px;
        width: 56px;
    }
    .stab_icon img {
    height: 30px;
}
    .stab_text {
    font-size: 15px;
}
    .stab_content_wrap .image_side {
    width: 110px;
    margin-top: 15px;
}
    .stab_content_wrap .desc_side h2{
        font-size: 20px;
        line-height: 24px;
        width: 100%;
    }
   .stab_content_wrap .desc_side p {
    margin-top: 12px;
    margin-bottom: 10px;
}
   .stab_content_wrap .desc_side ul.sublist {
    margin: 15px 0px 25px;
}
    .r-tabs .r-tabs-panel {
    padding: 25px 25px 40px;
    margin-bottom: 10px;
}
}




.vision-section{padding: 120px 0px 100px;background: #F9F6F2;position: relative;}
.vision-section .cshape-pot{
    right: 240px;
    top: -150px;
}
.vision-section .cshape-pot img{
    height: 222px;
}
.vismis_area{
    background:#fff;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 13%);
    display: flex;
    margin-top: -220px;
    margin-bottom: 160px;
    overflow: hidden;
    border-radius: 10px;
}
.vismis_img{
    width: 45%;
    flex: 1;
    padding: 50px;
    background: #ffffff;
    position: relative;
    bottom: 0;
    overflow:hidden;
}
.vismis_img:after{
    content: "";
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: 1 / 2;
    -ms-grid-row-align: end;
    -ms-grid-column-align: end;
    place-self: end;
    width: 95px;
    height: 95px;
    top: -39px;
    right: -2px;
    position: absolute;
    background: -o-radial-gradient(50%, circle, #ffffff 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    background: radial-gradient(circle at 50%, #867c7f 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    margin: 0 -30px -30px 0;
    /* z-index: -1; */
    opacity: .2;
    border-radius: 100%;
}
.vismis_img img{
        height: 140px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.vismis_img .sec-title{
    margin-bottom:30px;
}
.vismis_img .sec-title h2{
    font-size: 32px;
}
.vismis_img .sec-title .sub-title{
    
font-size: 12.5px;
    
margin-bottom: 8px;
}
.vismis_img .sec-title h2:before{
    width: 55px;
    height: 15px;
}
.vismis_desc{
    width: 55%;
}
.vismis_box_uls{
    display:flex;
    height: 100%;
}
.vismis_box_lis{
     height: 100%;
}
.vismis_box_lis:nth-child(1) .vismis_box{
     background: rgb(197 217 217 / 20%);
}
.vismis_box_lis:nth-child(2) .vismis_box{
     background: #fff;
}
.vismis_box{display: flex;flex-direction: column;justify-content: center;align-items: center;height: 100%;padding: 40px;text-align: center;}
.vismis_icon{
    width: 70px;
    height: 70px;
    display: inline-flex;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    background: rgb(40 128 126);
}
.vismis_title {
    font-weight: 800;
    font-size: 21px;
    line-height: 19px;
    width: 90%;
    color: #3b2a56;
    margin-bottom: 15px;
}
.vismis_text {
    line-height: 26px;
    font-weight: 400;
    color: #6e6e6e;
    font-size: 15.5px;
}
.vismis_icon img{
    height: 40px;
    filter: brightness(29);
}



.why_choose_area{
    
display: flex;
    
margin: -15px -18px 0px;
}
.whychoose_img{
    width: 40%;
    flex: 1;
    margin: 18px;
    padding-right: 40px;
}
.whychoose_box:after{
    content: "";
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: 1 / 2;
    -ms-grid-row-align: end;
    -ms-grid-column-align: end;
    place-self: end;
    width: 90px;
    height: 90px;
    top: -42px;
    right: -4px;
    position: absolute;
    background: -o-radial-gradient(50%, circle, #ffffff 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    background: radial-gradient(circle at 50%, #867c7f 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    margin: 0 -30px -30px 0;
    /* z-index: -1; */
    opacity: .2;
    border-radius: 100%;
}

.whychoose_img img{
    height: 230px;
    position:relative;
    margin-top: 60px;
}
.whychoose_img .sec-title{
    margin-bottom:40px;
}
.whychoose_img .ptext{
    line-height: 26px;
    font-weight: 400;
    color: #6e6e6e;
    font-size: 15.5px;
}
.whychoose_desc{
    width: 60%;
}
.whychoose_box_uls{
   display: flex;
   flex-wrap:wrap;
}
.whychoose_box_lis{
    width:calc(100% / 2);
    padding: 18px;
}
.whychoose_box_lis:nth-child(2), .whychoose_box_lis:nth-child(4){
    position:relative;
    top: -50px;
}
.whychoose_box{
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
    padding: 35px 35px;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #222;
    height: 100%;
    text-align: center;
    border-bottom: 3px solid transparent;
}
.whychoose_box_lis:nth-child(1) .whychoose_box{
    border-bottom: 3px solid #edbe6f;
}
.whychoose_box_lis:nth-child(2) .whychoose_box{
     border-bottom: 3px solid #ea6161;
}
.whychoose_box_lis:nth-child(3) .whychoose_box{
     border-bottom: 3px solid #61a3b1;
}
.whychoose_box_lis:nth-child(4) .whychoose_box{
     border-bottom: 3px solid #917ab9;
}

.wcb_icon{
    width: 68px;
    height: 68px;
    display: inline-flex;
    background: linear-gradient(to right, #eff7f6, #f1f1f1);
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}
.wcb_title {
    font-weight: 800;
    font-size: 18.5px;
    line-height: 20px;
    width: 90%;
    color: #3b2a56;
    margin-bottom: 10px;
}
.wcb_text {
    line-height: 26px;
    font-weight: 400;
    color: #6e6e6e;
    font-size: 15.5px;
}
.wcb_icon img{
    height: 40px;
}



@media (max-width: 580px) {
    .vision-section {
    padding: 60px 0px 60px;
}
    .vismis_area{
        flex-direction:column;
        margin-top: -140px;
        margin-bottom: 50px;
    }
    .vismis_img{
       width:100%;
       padding: 30px;
    }
    .vismis_desc{
       width:100%; 
    }
    .vismis_box_uls{
       flex-direction:column; 
    }
    .vismis_img .sec-title h2 {
    font-size: 24px;
    }
    .ptext {
    margin-top: 10px;
    line-height: 21px !important;
    font-size: 14px !important;
}

    
    .why_choose_area{
        flex-direction:column;
    }
    .whychoose_img{
        width:100%;
    }
    .whychoose_desc{
        width:100%;
    }
    .whychoose_box_lis {
      width: calc(100% / 1);
      padding: 7px 18px 7px;
   }
    .whychoose_box_lis:nth-child(2), .whychoose_box_lis:nth-child(4) {
    top: 0px;
    }
    .whychoose_img img {
    height: auto;
    margin-top: 20px;
    width: 60%;
}
    .vismis_box {
    padding: 30px;
}
    .vismis_title {
    font-size: 20px;
}
    .vismis_icon {
    width: 50px;
    height: 50px;
}
    .vismis_icon img {
    height: 28px;
}
    .vismis_text {
    line-height: 22px;
    font-size: 14px;
}
      .wcb_icon {
    width: 50px;
    height: 50px;
}
    .wcb_icon img {
    height: 29px;
}
    .wcb_title {
    font-size: 16px;
}
        .wcb_text {
        line-height: 22px;
        font-size: 14px;
    }
    .whychoose_box {
    padding: 25px 30px;
}
   
}
@media(min-width: 580px) and (max-width: 768px){
     .vision-section {
    padding: 60px 0px 60px;
}
    .vismis_area{
        flex-direction:column;
        margin-top: -140px;
        margin-bottom: 50px;
    }
    .vismis_img{
       width:100%;
       padding: 30px;
    }
    .vismis_desc{
       width:100%; 
    }
    .vismis_box_uls{
       flex-direction: row;
    }
    .vismis_img .sec-title h2 {
    font-size: 24px;
    }
    .ptext {
    margin-top: 10px;
    line-height: 21px !important;
    font-size: 14px !important;
}

    
    .why_choose_area{
        flex-direction:column;
    }
    .whychoose_img{
        width:100%;
    }
    .whychoose_desc{
        width:100%;
    }
    .whychoose_box_lis {
      width: calc(100% / 2);
      padding: 7px 18px 7px;
   }
    .whychoose_box_lis:nth-child(2), .whychoose_box_lis:nth-child(4) {
    top: 0px;
    }
    .whychoose_img img {
    height: auto;
    margin-top: 20px;
    width: 60%;
}
    .vismis_box {
    padding: 30px;
}
    .vismis_box_lis:nth-child(2) .vismis_box {
    border-top:1px solid #f5f5f5;
}
    .vismis_title {
    font-size: 20px;
}
    .vismis_icon {
    width: 50px;
    height: 50px;
}
    .vismis_icon img {
    height: 28px;
}
    .vismis_text {
    line-height: 22px;
    font-size: 14px;
}
      .wcb_icon {
    width: 50px;
    height: 50px;
}
    .wcb_icon img {
    height: 29px;
}
    .wcb_title {
    font-size: 16px;
}
        .wcb_text {
        line-height: 22px;
        font-size: 14px;
    }
    .whychoose_box {
    padding: 25px 30px;
}
}

@media(min-width: 768px) and (max-width: 1024px){
     .vision-section {
    padding: 60px 0px 60px;
}
    .vismis_area{
        flex-direction:column;
        margin-top: -140px;
        margin-bottom: 50px;
    }
    .vismis_img{
       width:100%;
       padding: 30px;
    }
    .vismis_desc{
       width:100%; 
    }
    .vismis_box_uls{
       flex-direction: row;
    }
    .vismis_img .sec-title {
    margin-bottom: 20px;
}
    .vismis_img .sec-title h2 {
    font-size: 24px;
    line-height: 28px;
    }
    .ptext {
    margin-top: 10px;
    line-height: 21px !important;
    font-size: 14px !important;
}

    
    .why_choose_area{
        flex-direction:column;
    }
    .whychoose_img{
        width:100%;
    }
    .whychoose_desc{
        width:100%;
    }
    .whychoose_box_lis {
      width: calc(100% / 2);
      padding: 7px 18px 7px;
   }
    .whychoose_box_lis:nth-child(2), .whychoose_box_lis:nth-child(4) {
    top: 0px;
    }
    .whychoose_img img {
    height: auto;
    margin-top: 28px;
    width: 48%;
}
    .vismis_box_lis {
    height: auto;
}
    .vismis_box {
    padding: 30px;
}
    .vismis_box_lis:nth-child(2) .vismis_box {
    border-top:1px solid #f5f5f5;
}
    .vismis_title {
    font-size: 20px;
}
    .vismis_icon {
    width: 50px;
    height: 50px;
}
    .vismis_icon img {
    height: 28px;
}
    .vismis_text {
    line-height: 22px;
    font-size: 14px;
}
      .wcb_icon {
    width: 50px;
    height: 50px;
}
    .wcb_icon img {
    height: 29px;
}
    .wcb_title {
    font-size: 16px;
}
        .wcb_text {
        line-height: 22px;
        font-size: 14px;
    }
    .whychoose_box {
    padding: 25px 30px;
}
}



.benefits-section{
    
position: relative;
    
padding: 100px 0px 150px;
}
@media (max-width: 580px) {
     .benefits-section {
    padding: 60px 0px 100px;
}
    .profile-grid .item {
    padding: 7px 0px !important;
}
}


.profile-grid {
    -moz-column-width: 23em;
    -webkit-column-width: 23em;
    -moz-column-gap: 1em;
    -webkit-column-gap: 30px;
    margin-top: 20px;
}

    .profile-grid .item {
        display: inline-block;
        padding: 15px 0px;
        width: 100%;
    }

    .profile-grid .well {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
        padding: inherit;
        align-items: center;
        position: relative;
        overflow: hidden;
        color: #222;
        height: 100%;
        text-align: center;
        padding: 35px 40px;
    }
 .profile-grid .well:after{
    content: "";
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: 1 / 2;
    -ms-grid-row-align: end;
    -ms-grid-column-align: end;
    place-self: end;
    width: 90px;
    height: 90px;
    top: -42px;
    right: -4px;
    position: absolute;
    background: -o-radial-gradient(50%, circle, #ffffff 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    background: radial-gradient(circle at 50%, #867c7f 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    margin: 0 -30px -30px 0;
    /* z-index: -1; */
    opacity: .2;
    border-radius: 100%;
}
        .profile-grid .well h3 {
            font-size: 18.5px;
            line-height: 21px;
            margin-top: 0;
            padding: 12px 10px;
            color: #3b2a56;
            margin-bottom: 0;
            font-weight: 700;
            text-transform: capitalize;
        }

            .profile-grid .well h3 a {
                width: 25px;
                height: 25px;
                color: #fff;
                line-height: 26px;
                text-align: center;
                position: absolute;
                left: 66px;
                border-radius: 50%;
                background: #ed3237;
            }

        .profile-grid .well p {
            line-height: 23px;
            font-weight: 400;
            color: #6e6e6e;
            font-size: 15.5px;
        }

@media (max-width: 580px) {
    .profile-grid .well {
    padding: 20px 30px;
}
}




.product_section{position: relative;}
.product_section .parallax-container {
    height: auto;
    padding: 100px 0px 110px;
}
.product_section .parallax-container:after {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    content: '';
    background: #eff7f6;
    background-repeat: no-repeat;
    background-position: center;
}
.product_section .container {
    z-index:2;
    position:relative;
}
.products_slider{
    padding: 20px 20px 70px;
    margin: -20px -20px;
}
.products_slider .swiper-button-next,.products_slider .swiper-button-prev {
    width: 32px;
    height: 32px;
    /* background: #d54078; */
    box-shadow: 0px 2px 16px -5px rgb(0 0 0 / 13%);
    display: none;
}
.products_slider .swiper-button-prev{
    
left: 0px;
}
.products_slider .swiper-button-next{
    right: 0px;
}
.products_slider .swiper-button-next span,.products_slider .swiper-button-prev span {
    width: 10px;
    height: 10px;
    border-top: 2px solid #28807e;
    border-left: 2px solid #28807e;
}
.products_slider .swiper-pagination{
    bottom: 0px;
    margin: 0px -18px;
}
.products_slider .swiper-pagination-bullet {
    background: #d6d6d6;
}
.products_slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: #28807e;
}
.partner_wrap{
    display:flex;
    flex-wrap: wrap;
    margin: 0px -15px;
    align-items: stretch;
}
.partner_item{
    width: calc(100% / 4);
    padding: 20px;
}

.card-style1 {
    border: 0;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
    background: #ffffff;
    /* padding: 35px 38px 32px; */
    overflow: hidden;
    margin: 0;
    height: 100%;
}

.card-style1 .card-body {
    transition: all 0.5s ease 0s;
    border-radius: 10px;
    padding: 35px 40px 30px;
}
.card-style1 .card-body:before{
    content: "";
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: 1 / 2;
    -ms-grid-row-align: end;
    -ms-grid-column-align: end;
    place-self: end;
    width: 90px;
    height: 90px;
    top: -32px;
    right: -2px;
    position: absolute;
    background: -o-radial-gradient(50%, circle, #ffffff 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    background: radial-gradient(circle at 50%, #867c7f 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    margin: 0 -30px -30px 0;
    /* z-index: -1; */
    opacity: .2;
    border-radius: 100%;
}
.cardb_head{
    position:relative;
    overflow:hidden;
    padding: 0px 40px 0px;
    margin: 0px -40px 40px;
}
.cardb_head .decor{
    position: absolute;
    bottom: -1px;
    right: 0px;
    max-width: 62%;
    z-index: 3;
    -webkit-filter: drop-shadow(0px 0px 6px rgb(80 142 149 / 22%));
    filter: drop-shadow(0px 0px 6px rgb(80 142 149 / 22%));
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.card-style1 .card-body .info-icon {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    height: 48px;
}
.card-style1 .card-body .info-icon img{
    max-width: 122px;
    max-height: 38px;
    object-fit: contain;
}
.card-style1 .card-body .info-icon:after {
    font-weight: 700;
    font-size: 46px;
    line-height: 30px;
    color: rgba(0,0,0,0.05);
    counter-increment: count;
    /* content: "0" counter(count); */
}
.card-style1 .card-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-block: 18px;
    padding-bottom: 25px;
    /* border-bottom: 1px solid rgb(59 42 86 / 15%); */
    color: #3b2a56;
}
.card-style1 .card-body p {
    overflow: hidden;
    color: #6a6f78;
    font-size: 15px;
    min-height: 90px;
    max-height: 110px;
    text-overflow: ellipsis;
    display: inline-block;
}
.card-style1 a {font-weight: 600;color: #28807e;font-size: 14px;width: 100%;display: inline-flex;justify-content: space-between;align-items: center;height: 35px;background: #ffffff;border-radius: 100px;margin-top: 35px;/* box-shadow: 0px 3px 16px -5px rgba(0, 0, 0, 0.13); */position: relative;background: #eff7f6;padding: 5px 12px 5px 15px;}
.card-style1 a:hover{
    color:#d54078;
}
.card-style1 a span.arrow{
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #d54078; */
    color: #28807e;
    /* box-shadow: 0px 4px 16px -5px rgba(0, 0, 0, 0.13); */
    font-size: 11px;
    border: 1px solid #28807e;
    padding-bottom: 1px;
}
.card-style1 a span.arrow i{
    font-weight: 300;
}


@media screen and (max-width: 580px) {
    .products_slider {
    padding: 20px 20px 70px;
}
    .card-style1 .card-body i:after {
        font-size:40px;
        line-height: 20px
    }
    .cardb_head{
    margin: 0px -40px 25px;
}
    .cardb_head .decor {
    max-width: 50%;
}
    .card-style1 .card-body h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom:15px;
    color: #3b2a56;
    padding-bottom: 15px;
}
    .card-style1 a {
    font-size: 14px;
    height: 35px;
    margin-top: 10px;
}
}

@media(min-width: 580px) and (max-width: 768px){
        .products_slider {
    padding: 20px 20px 70px;
}
    .card-style1 .card-body i:after {
        font-size:40px;
        line-height: 20px
    }
    .cardb_head{
    margin: 0px -40px 25px;
}
    .cardb_head .decor {
    max-width: 50%;
}
    .card-style1 .card-body h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
    .card-style1 a {
    font-size: 14px;
    height: 35px;
    margin-top: 10px;
}
    .card-style1 .card-body p {
    font-size: 13.5px;
}
    .card-style1 .card-body {
    padding: 30px 25px 25px;
}
    .card-style1 .card-body .info-icon img {
    max-width: 105px;
    max-height: 35px;
}
}
@media(min-width: 768px) and (max-width: 1024px){
        .products_slider {
    padding: 20px 20px 70px;
}
    .card-style1 .card-body i:after {
        font-size:40px;
        line-height: 20px
    }
    .cardb_head{
    margin: 0px -40px 25px;
}
    .cardb_head .decor {
    max-width: 50%;
}
    .card-style1 .card-body h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
    .card-style1 a {
    font-size: 12.5px;
    height: 34px;
    margin-top: 10px;
    padding: 5px 12px 5px 14px;
}
    .card-style1 .card-body p {
    font-size: 13.5px;
}
    .card-style1 .card-body {
    padding: 30px 25px 25px;
}
    .card-style1 .card-body .info-icon img {
    max-width: 105px;
    max-height: 35px;
}
}





.stepsflow_section{
    padding: 100px 0px 80px;
    position: relative;
}
 .stepsflow_section .cshape-pot{
   top: -70px;
}
.stepsflow_section .cshape-pot img{
   height: 170px;
}
.stepsflow_area{
    display:flex;
    gap: 80px;
    padding-top: 22px;
}
.stepsflow_area .squarebig_img{
    width: 35%;
}
.stepsflow_area .squarebig_img .hover_img img{
   height: 400px;
}
.stepsflow_area .stepsflow_wrap{
     width: 65%;
     height: fit-content;
}
.stepsflow_wrap{
    display:flex;
    flex-wrap: wrap;
    margin: 0px -15px;
}
.stepsflow_item{
    width: calc(100% / 2);
    padding: 10px 15px 15px;
    text-align:center;
}
.process-style3{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
    padding: 18px 22px;
    width: 100%;
    align-items: center;
}
.process-style3 .process-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(to right, #fef0f0, #f1f1f1);
    border-radius: 8px;
    color: white;
    text-align: center;
}

.process-style3 .process-icon img {
    position: relative;
    z-index: 2;
    width: 36px;
    top: 20px;
    /* filter: invert(1) brightness(23.5); */
}
.process-style3 h3 {
    font-size: 16px;
    font-weight: 700;
    width: calc(100% - 70px);
    text-align: start;
    line-height: 21px;
    padding-inline-start: 32px;
}
.process-style3 .process-number {
    position: absolute;
    right: -15px;
    font-size: 14px;
    line-height: 17px;
    top: -10px;
    color: #ffffff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 9;
    background: #28807e;
    border: 3px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 580px){
    .stepsflow_section{
    padding: 60px 0px 60px;
    position: relative;
}
      .stepsflow_section .cshape-pot{
   top: -40px;
   right: inherit;
   left: 40px;
}
.stepsflow_section .cshape-pot img{
   height: 95px;
}
    .stepsflow_area {
    gap: 20px;
    padding-top: 10px;
        flex-direction:column;
}
    .stepsflow_area .squarebig_img {
    width: 100%;
}
     .stepsflow_area .squarebig_img .hover_img{
    display:flex;
         justify-content:center;
}
    .stepsflow_area .squarebig_img .hover_img img {
    height: 180px;
}
    .stepsflow_area .stepsflow_wrap{
         width: 100%;
         margin: 0;
    }
    .stepsflow_item {
    width: calc(100% / 1);
    padding: 6px 0px 6px;
}
    .process-style3 .process-icon {
    width: 50px;
    height: 50px;
}

.process-style3 .process-icon img {
    width: 28px;
    top: 12px;
}
.process-style3 h3 {
    font-size: 13.5px;
    width: calc(100% - 50px);
    line-height: 18px;
    padding-inline-start: 24px;
}
.process-style3 .process-number {
    font-size: 12px;
    width: 30px;
    height: 30px;
}
}
@media(min-width: 580px) and (max-width: 768px){
    .stepsflow_section{
    padding: 60px 0px 60px;
    position: relative;
}
      .stepsflow_section .cshape-pot{
   top: -40px;
   right: inherit;
   left: 40px;
}
.stepsflow_section .cshape-pot img{
   height: 95px;
}
    .stepsflow_area {
    gap: 20px;
    padding-top: 10px;
        flex-direction:column;
}
    .stepsflow_area .squarebig_img {
    width: 100%;
}
     .stepsflow_area .squarebig_img .hover_img{
    display:flex;
         justify-content:center;
}
    .stepsflow_area .squarebig_img .hover_img img {
    height: 180px;
}
    .stepsflow_area .stepsflow_wrap{
         width: 100%;
         margin: 0;
    }
    .stepsflow_item {
    width: calc(100% / 1);
    padding: 6px 0px 6px;
}
    .process-style3 .process-icon {
    width: 50px;
    height: 50px;
}

.process-style3 .process-icon img {
    width: 28px;
    top: 12px;
}
.process-style3 h3 {
    font-size: 13.5px;
    width: calc(100% - 50px);
    line-height: 18px;
    padding-inline-start: 24px;
}
.process-style3 .process-number {
    font-size: 12px;
    width: 30px;
    height: 30px;
}
}

@media(min-width: 768px) and (max-width: 1024px){
    .stepsflow_section{
    padding: 60px 0px 60px;
    position: relative;
}
      .stepsflow_section .cshape-pot{
   top: -40px;
   right: inherit;
   left: 40px;
}
.stepsflow_section .cshape-pot img{
   height: 95px;
}
    .stepsflow_area {
    gap: 20px;
    padding-top: 10px;
        flex-direction:column;
}
    .stepsflow_area .squarebig_img {
    width: 100%;
}
     .stepsflow_area .squarebig_img .hover_img{
    display:flex;
         justify-content:center;
}
    .stepsflow_area .squarebig_img .hover_img img {
    height: 200px;
}
    .stepsflow_area .stepsflow_wrap{
         width: 100%;
         margin: 0;
    }
    .stepsflow_item {
    width: calc(100% / 1);
    padding: 6px 0px 6px;
}
    .process-style3 .process-icon {
    width: 50px;
    height: 50px;
}

.process-style3 .process-icon img {
    width: 28px;
    top: 12px;
}
.process-style3 h3 {
    font-size: 14px;
    width: calc(100% - 50px);
    line-height: 18px;
    padding-inline-start: 24px;
}
.process-style3 .process-number {
    font-size: 12px;
    width: 30px;
    height: 30px;
}
}


/*** ===============================================
        Testimonials
====================================================***/
.testimonials_section{position: relative;padding: 100px 0px 150px;background: #F9F6F2;}
.testimonials_section.innerpage_section {
    padding: 90px 0px 160px;
}
.testimonials_section .r-tabs .r-tabs-panel {
    padding: 0px;
    background:none;
    box-shadow:none;
    margin-top: 40px;
}
.testimonials_section .r-tabs .r-tabs-nav .r-tabs-tab {
    flex: inherit;
}
.testimonials_section .container {
    z-index:2;
    position:relative;
}
.testimonials_slider{
    padding: 20px 20px 70px;
    margin: -20px -20px;
}
.testimonials_slider .swiper-button-next,.testimonials_slider .swiper-button-prev {
    width: 32px;
    height: 32px;
    /* background: #d54078; */
    box-shadow: 0px 2px 16px -5px rgb(0 0 0 / 13%);
    display: none;
}
.testimonials_slider .swiper-button-prev{
    
left: 0px;
}
.testimonials_slider .swiper-button-next{
    right: 0px;
}
.testimonials_slider .swiper-button-next span,.testimonials_slider .swiper-button-prev span {
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
}
.testimonials_slider .swiper-pagination{
    bottom: 0px;
    margin: 0px -18px;
}
.testimonials_slider .swiper-pagination-bullet {
    background: #d6d6d6;
}
.testimonials_slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: #28807e;
}
.testimonial .testimonial-content{
    margin: 20px 0 50px 0;
    position: relative;
}
.testimonial .testimonial-content:after{
    content: "";
    width: 20px;
    height: 20px;
    border-top: 20px solid #ffffff;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    margin: 0 auto;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
}
.testimonial .description{
    padding: 28px 35px 25px;
    margin: 0;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
    background: #ffffff;
    line-height: 26px;
    font-weight: 400;
    font-size: 15.5px;
    min-height: 182px;
}
.testimonial .description:before,
.testimonial .description:after{
    font-family: 'font_awesome';
    font-weight: 600;
    width: 40px;
    height: 35px;
    line-height: 35px;
    border-radius: 12px;
    text-align: center;
    background: #ffffff;
    color: #28807e;
    position: absolute;
    font-size: 18px;
}
.testimonial .description:before{
    content: "\f10d";
    top: -15px;
    left: 25px;
}
.testimonial .description:after{
    content: "\f10e";
    bottom: -13px;
    right: 25px;
}
.testimonial .testimonial-profile{
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid rgb(39 125 124 / 40%);
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
    min-width: 240px;
    width: max-content;
}
.testimonial .pic{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    /* border: 1px solid #e2e2e2; */
    float: left;
    overflow: hidden;
    background: #fff;
}
.testimonial .pic img{
    height:100%
}
.testimonial .title{
    display: inline-block;
    margin: 0 0 0 30px;
    font-size: 18px;
    font-weight: bold;
    color: #28807e;
    position: relative;
}
.testimonial .title:before{
    content: "";
    width: 1px;
    height: 50px;
    background: #a5c6c3;
    position: absolute;
    top: calc(50% - 25px);
    left: -12px;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    font-weight: normal;
    color: #728281;
    margin-top: 5px;
    font-weight: 600;
}

@media (max-width: 580px) {
    .testimonials_section {
        padding: 60px 0px 110px;
    }
    .testimonials_section.innerpage_section {
    padding: 60px 0px 120px;
}
    .testimonials_slider {padding: 20px 20px 100px;}
.swiper-pagination {
    bottom: 30px !important;
}
    .testimonials_slider .swiper-pagination{
   bottom: 60px !important;
}
    .testimonial .description{
    padding: 28px 25px 25px;
    line-height: 21px;
    font-weight: 400;
    font-size: 13.5px;
    min-height: 130px;
}
    .testimonial .testimonial-content:after{
    width: 12px;
    height: 12px;
    border-top: 12px solid #ffffff;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    bottom: -12px;
}
    .testimonial .description:before, .testimonial .description:after {
    width: 36px;
    height: 34px;
    line-height: 35px;
    border-radius: 8px;
    font-size: 15px;
}
    .testimonial .pic {
    width: 55px;
    height: 55px;
}
    .testimonial .title {
    font-size: 15px;
}
}

@media(min-width: 580px) and (max-width: 768px){
     .testimonials_section {
        padding: 60px 0px 110px;
    }
    .testimonials_section.innerpage_section {
    padding: 60px 0px 120px;
}
    .testimonials_slider {padding: 20px 20px 100px;}
.swiper-pagination {
    bottom: 30px !important;
}
    .testimonials_slider .swiper-pagination{
   bottom: 60px !important;
}
    .testimonial .description{
    padding: 25px 18px 22px;
    line-height: 20px;
    font-weight: 400;
    font-size: 13px;
    min-height: 190px;
}
    .testimonial .testimonial-content:after{
    width: 12px;
    height: 12px;
    border-top: 12px solid #ffffff;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    bottom: -12px;
}
    .testimonial .description:before, .testimonial .description:after {
    width: 36px;
    height: 34px;
    line-height: 35px;
    border-radius: 8px;
    font-size: 15px;
}
     .testimonial .pic {
    width: 55px;
    height: 55px;
}
    .testimonial .title {
    font-size: 15px;
    margin: 0 0 0 22px;
}
    .testimonial .testimonial-profile {
    padding: 12px 15px;
    min-width: 200px;
}
}

@media(min-width: 768px) and (max-width: 1024px){
     .testimonials_section {
        padding: 60px 0px 110px;
    }
    .testimonials_section.innerpage_section {
    padding: 60px 0px 120px;
}
    .testimonials_slider {padding: 20px 20px 100px;}
.swiper-pagination {
    bottom: 30px !important;
}
    .testimonials_slider .swiper-pagination{
   bottom: 60px !important;
}
    .testimonial .description{
    padding: 25px 18px 22px;
    line-height: 19px;
    font-weight: 400;
    font-size: 13px;
    min-height: 200px;
}
    .testimonial .testimonial-content:after{
    width: 12px;
    height: 12px;
    border-top: 12px solid #ffffff;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    bottom: -12px;
}
    .testimonial .description:before, .testimonial .description:after {
    width: 36px;
    height: 34px;
    line-height: 35px;
    border-radius: 8px;
    font-size: 15px;
}
     .testimonial .pic {
    width: 55px;
    height: 55px;
}
    .testimonial .title {
    font-size: 15px;
    margin: 0 0 0 22px;
}
    .testimonial .testimonial-profile {
    padding: 12px 15px;
    min-width: 185px;
}
}

/*** ===============================================
        Whatsapp_Widget
====================================================***/

.whatsapp-chat {
  z-index: 99999;
  position: fixed;
  right: 0;
  bottom: 0;
  line-height: 1.25;
}
.whatsapp-chat-toggler {
  display: none;
}
.whatsapp-chat-toggler:not(:checked) ~ .whatsapp-chat-window {
  transform: scale(0.75) translateY(calc(100% + 200px));
  pointer-events: none;
}
.whatsapp-chat-toggler:not(:checked) ~ .whatsapp-chat-backdrop {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.whatsapp-chat-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(0,0,0,.8);
  transition: 0.25s;
}

.whatsapp-chat-window {
  position: fixed;
  left: 2rem;
  right: auto;
  bottom: 90px;
  box-shadow: 0 0.5rem 1.5rem -0.25rem rgba(0, 0, 0, 0.15);
  transform-origin: bottom;
  border-radius: .5rem;
  width: 24rem;
  max-width: calc(100% - 1rem * 2);
  transition: 0.4s;
}
.whatsapp-chat-header {
  background: #2b6056;
  color: #f9f9f9;
  display: flex;
  align-items: center;
  padding: 20px 20px;
  border-radius: .5rem .5rem 0 0;
}
.whatsapp-chat-button {
    z-index: 1;
    position: fixed;
    left: 50px;
    right: auto;
    bottom: 30px;
    width: 46px;
    height: 46px;
    border-radius: 100%;
    background: #22b358;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.whatsapp-chat-button::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgb(71 185 72);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    z-index: -2;
}
.whatsapp-chat-header > * {
  display: flex;
}
.whatsapp-chat-contact-img {
  width: 38px;
  height: 38px;
  border-radius: 100%;
  object-fit: cover;
}
.whatsapp-chat-contact-info {
  -webkit-flex: 1 0 0;
  flex: 1 0 0;
  flex-direction: column;
  padding: 0 12px;
}
.whatsapp-chat-contact-info strong{
  font-size: 16px;
}
.whatsapp-chat-contact-info small{
  font-size: 11px;
  color: rgba(255,255,255,.6);
}
.whatsapp-chat-contact-info small span{
  color: #22b358;
  font-weight: 600;
  font-size: 10.5px;
  padding-inline-start: 2px;
}
.whatsapp-chat-close {
  padding: 0.25rem;
  margin-right: -0.25rem;
  cursor: pointer;
  transition: 0.2s;
  width: 25px;
  height: 25px;
  background: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.whatsapp-chat-close:before, .whatsapp-chat-close:after{
  content:"";
  position: absolute;
  height: 1px;
  width: 14px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 5px;
}
.whatsapp-chat-close:after{
  transform: rotate(-45deg);
}
.whatsapp-chat-close:hover {
  transform: scale(1.1);
  color: var(--wa-chat-light);
}
.whatsapp-chat-body {
  padding: 20px 22px 25px;
  background: url(../images/bg/whatsapp.png) no-repeat;
  background-size: cover;
}
.whatsapp-chat-bubble {
 background-color: #fff;
 padding: 11px 14px 10px;
 border-radius: 0 4px 4px 4px;
 line-height: 17px;
 font-size: 14px;
 font-weight: 400;
 max-width: 90%;
 margin: 0 0 15px;
 position: relative;
}
.whatsapp-chat-bubble:before{ 
   content: "";
    position: absolute;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    border-bottom: 5px solid transparent;
    border-left: 5px solid transparent;
    left: -10px;
    top: 0;
}
.whatsapp-chat-bubble strong{
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  color: #2b6056;
}
.wappform{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.form-control-wrap {
  float: left;
  width: 85%;
  position: relative;
}
.form-control-wrap::after {
  content: "";
  position: absolute;
  border-top: 5px solid #e7ffe7;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #e7ffe7;
  right: -10px;
  top: 0;
}
.form-control-wrap input.whatsapp-chat-input{
  border-radius: 4px 0 4px 4px;
  width: 100%;
  padding: 10px;
  background: #e7ffe7;
  border: 1px solid #e7ffe7;
  font-size: 1rem;
  box-sizing: border-box;
  height: 40px;
}
.form-control-wrap input::placeholder{
  color: #b2b2b2 !important;
}
.whatsapp-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border: 0;
  padding: 10px 20px;
  line-height: 13px;
  margin-top: 14px;
  border-radius: 4px;
  background: #128c7e;
  color: #ffffff;
  transition: 0.2s;
}
@media(max-width: 580px){
    .whatsapp-chat-button {
    left: 20px;
    bottom: 20px;
    width: 42px;
    height: 42px;
}
}
@media(min-width: 580px) and (max-width: 768px){
    .whatsapp-chat-button {
    left: 25px;
    bottom: 25px;
    width: 43px;
    height: 43px;
}
}

/*=========================================
    Footer-section 
===========================================*/
.footer_section{
    background: #382951;
    padding: 0px 0px 40px;
    color: #fff;
    font-size: 15px;
    position: relative;
}
.footer_section .footer{
    display: flex;
    flex-direction: column;
}
.footer_top{
    display: flex;
    justify-content:space-between;
}
.footer_bottom{
    display: flex;
    justify-content:space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 35px;
    margin-top: 35px;
}
.footer .logo{
    height: 30px;
    margin-bottom: 50px;
}
.footer .footer_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footer .footer_links li{
    padding: 0px 0px;
    font-size: 15px;
    font-weight: 300;
}
.footer .footer_links li a{
    color: #ffffff;
}
.footer .footer_links li ul.footer_links{
    margin-bottom: 0px;
}
.footer .footer_links li:after{
    color: rgba(255,255,255,.4);
    content: "|";
    margin: 0 20px;
}
.footer .footer_links li:last-child:after{
   display:none;
}
@media(max-width: 580px){
    .start-learning {
    top: -50px !important;
}
    .footer-start {
    padding: 22px 25px !important;
    flex-direction: column;
    text-align: center;
}
        .footer_section {
        padding: 0px 0px 25px !important;
    }
    .footer_top {
    justify-content: center;
}
    .footer_bottom {
    flex-direction: column;
    padding-top: 20px;
    margin-top: 20px;
}
    .footer .logo {
    margin-bottom: 30px;
    height: 22px;
 }
    .footer .footer_links li{
    width: calc(100% / 1);
    text-align: center;
    padding-bottom: 7px;
    font-size: 13px;
} 
    .copyright{
    display: block;
    padding-top: 5px;
    padding-bottom: 15px;
    font-size: 12px;
    }
    .footer .footer_links li:after {display: none;}
    .footer_links:last-child{
        flex-direction: column-reverse;
    }
    .footer_links{
       margin-bottom: 0px !important;
    }
}

@media(min-width: 580px) and (max-width: 768px){
    .start-learning {
    top: -50px !important;
}
    .footer-start {
    padding: 22px 25px !important;
    flex-direction: column;
    text-align: center;
}
        .footer_section {
        padding: 0px 0px 25px !important;
    }
    .footer_top {
    justify-content: center;
}
    .footer_bottom {
    flex-direction: column;
    padding-top: 20px;
    margin-top: 20px;
}
    .footer .logo {
    margin-bottom: 30px;
    height: 22px;
 }
    .footer .footer_links li{
    width: calc(100% / 1);
    text-align: center;
    padding-bottom: 7px;
    font-size: 13px;
} 
    .copyright{
    display: block;
    padding-top: 10px;
    font-size: 12px;
    }
    .footer .footer_links li:after {display: none;}
    .footer_links:last-child{
        flex-direction: column-reverse;
    }
    .footer_links{
       margin-bottom: 0px !important;
    }
}

@media(min-width: 768px) and (max-width: 1024px){
    .start-learning {
    top: -50px !important;
}
    .footer-start {
    padding: 22px 25px !important;
    flex-direction: column;
    text-align: center;
}
        .footer_section {
        padding: 0px 0px 25px !important;
    }
    .footer_top {
    /* justify-content: center; */
}
    .footer_bottom {
    padding-top: 20px;
    margin-top: 20px;
}
    .footer .logo {
    margin-bottom: 30px;
    height: 22px;
 }
    .footer .footer_links li{
    text-align: center;
    padding-bottom: 7px;
    font-size: 13.5px;
    padding-right: 12px;
} 
    .copyright{
    display: block;
    padding-top: 10px;
    font-size: 12px;
    }
    .footer .footer_links li:after {display: none;}
    .footer_links:last-child{
    }
    .footer_links{
       margin-bottom: 0px !important;
    }
}






.footer-start {
    display: flex;
    position: relative;
    width: 100%;
    margin: auto;
    background: #ffffff;
    border-radius: 14px;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
    overflow:hidden
}
.footer-start:after,
.footer-start:before{
    content: "";
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: 1 / 2;
    -ms-grid-row-align: end;
    -ms-grid-column-align: end;
    place-self: end;
    width: 90px;
    height: 90px;
    bottom: 2px;
    right: 11px;
    position: absolute;
    background: -o-radial-gradient(50%, circle, #ffffff 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    background: radial-gradient(circle at 50%, #d54078 1px, transparent 0 8px) 100% 100% / 8px 8px round round;
    margin: 0 -30px -30px 0;
    /* z-index: -1; */
    opacity: .2;
    border-radius: 100%;
}
.footer-start:before{
    bottom: inherit;
    top: -25px;
    right:inherit;
    left: -25px;
}
.start-learning {
    position: relative;
    left: 0;
    right: 0;
    top: -65px;
}
.text {
    font-size: 17px;
    line-height: 17px;
    color: #fff;
    /* letter-spacing: .18em; */
    font-weight: 600;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #3b2a56;
    margin-bottom: 10px;
}
h3.section-sub-title {
    font-size: 20px;
    font-weight: 400;
    color: #6a6f78;
}
.section-sub-title span{
    /* opacity: 0.75; */
}
h3.section-sub-title strong {
    font-weight: 600;
}

@media (max-width: 580px){
.footer-start .section-title {
    font-size: 21px;
}
   .footer-start  h3.section-sub-title {
    font-size: 14px;
    margin-bottom: 14px;
}
    .footer-start:after,
.footer-start:before{
    width: 65px;
    height: 65px;
}
}

@media(min-width: 580px) and (max-width: 768px){
    .footer-start .section-title {
    font-size: 24px;
}
   .footer-start  h3.section-sub-title {
    font-size: 15px;
    margin-bottom: 14px;
}
    .footer-start:after,
.footer-start:before{
    width: 70px;
    height: 70px;
}
}


/***

====================================================================
    Contact Section
====================================================================

***/
.contact-section {
  position: relative;
  padding-bottom: 130px;
}

.contact-wrap{
  display: flex;
  gap: 40px;
  padding: 60px 50px 10px;
  background: #fff;
  border-radius: 10px;
  margin-top: -60px;
}
.contact-wrap .sec-title{
    margin-bottom: 35px;
}
.desc-column{
    width: 60%;
}
.form-column{
    width: 40%;
}
.sublist_img_wrap{
    
display: flex;
    
gap: 70px;
}
.sublist_img_wrap img{
    height: 200px;
}
.contact-form {
  position: relative;
  padding: 40px 40px 20px;
  background-color: #eff7f6;
  border-radius: 10px;
}
.contact-form .input-field .select2-container--default .select2-selection--single,
.contact-form .input-field input:not([type=submit]),
.contact-form .input-field textarea,
.contact-form .input-field select {
  position: relative;
  display: block;
  width: 100%;
  height: 46px;
  padding: 8px 20px;
  line-height: 24px;
  font-size: 12.5px;
  color: #6a6f78;
  font-weight: 500;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 5px;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  box-sizing: border-box;
}
.input-field > label {
    left: 15px;
    background: #fff;
    border-radius: 6px;
    color: #598486;
    font-weight: 600;
    font-size: 13.5px;
}
.input-field > label:not(.label-icon).active {left: 10px;top: 5px;padding: 3px 12px;font-size: 14px;font-weight: 500;}
.contact-form .input-field ::-webkit-input-placeholder {
  color: #6a6f78;
}
.contact-form .input-field input:focus,
.contact-form .input-field select:focus,
.contact-form .input-field textarea:focus {
  border-color: #8bbbb9;
  border: none;
  border-bottom: 2px solid #8bbbb9 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.contact-form .input-field textarea {
  height: 90px;
  resize: none;
}
.contact-wrap .sublist li span:before{
    content: "\f058";
    position: absolute;
    margin-inline-start: -24px;
    margin-top: -1px;
    font-family: 'font_awesome';
    font-size: 16px;
    color: #28807e;
    font-weight: 600;
}
@media (max-width: 580px){
    .contact-section {
    padding-bottom: 80px;
}
    .contact-wrap {
    flex-direction:column;
    gap: 20px;
    padding: 40px 30px 20px;
}
    .desc-column {
    width: 100%;
}
    .form-column {
    width: 100%;
}
    .sublist_img_wrap img {
    height: 120px;
}
    .sublist_img_wrap{
    gap: 8px;
}
    .contact-form {
  padding: 25px 20px 12px;
}
    .input-field > label {
    left: 15px;
    font-size: 12.5px;
}
    .contact-form .input-field .select2-container--default .select2-selection--single,
.contact-form .input-field input:not([type=submit]),
.contact-form .input-field textarea,
.contact-form .input-field select {
  height: 42px;
}
    .contact-form .input-field textarea {
  height: 82px;
  resize: none;
}
}
@media(min-width: 580px) and (max-width: 768px){
  .contact-section {
    padding-bottom: 80px;
}
    .contact-wrap {
    flex-direction:column;
    gap: 20px;
    padding: 40px 30px 20px;
}
    .desc-column {
    width: 100%;
}
    .form-column {
    width: 100%;
}
    .sublist_img_wrap img {
    height: 120px;
}
    .sublist_img_wrap{
    gap: 8px;
}
    .contact-form {
  padding: 25px 20px 12px;
}
    .input-field > label {
    left: 15px;
    font-size: 12.5px;
}
    .contact-form .input-field .select2-container--default .select2-selection--single,
.contact-form .input-field input:not([type=submit]),
.contact-form .input-field textarea,
.contact-form .input-field select {
  height: 42px;
}
    .contact-form .input-field textarea {
  height: 82px;
  resize: none;
}
}

@media(min-width: 768px) and (max-width: 1024px){
  .contact-section {
    padding-bottom: 80px;
}
    .contact-wrap {
    flex-direction:column;
    gap: 20px;
    padding: 40px 30px 20px;
}
    .desc-column {
    width: 100%;
}
    .form-column {
    width: 100%;
}
    .sublist_img_wrap img {
    height: 120px;
}
    .sublist_img_wrap{
    gap: 8px;
}
    .contact-form {
  padding: 25px 20px 12px;
}
    .input-field > label {
    left: 15px;
    font-size: 12.5px;
}
    .contact-form .input-field .select2-container--default .select2-selection--single,
.contact-form .input-field input:not([type=submit]),
.contact-form .input-field textarea,
.contact-form .input-field select {
  height: 42px;
}
    .contact-form .input-field textarea {
  height: 82px;
  resize: none;
}
}


/***

====================================================================
        Contact
====================================================================

***/

.contactform_wrap{
  display: flex;
  gap: 60px;
  padding: 90px 0px 150px;
}
.contactform_wrap form{
    position: relative;
}
.contactform_wrap .contact-form{
    margin-top:-20px
}
.contactform_wrap .input-field-group{
    display: flex;
    flex-wrap:wrap;
    margin: 0px -8px;
}
.contactform_wrap .input-field-group .input-field{
    width:calc(100% / 1);
    margin-top: .5rem;
    margin-bottom: .5rem;
    padding: 0px 8px;
    box-sizing: border-box;
}
.contactform_wrap .input-field-group .input-field > label {
    left: 23px;
}
.contactform_wrap .input-field-group .input-field:nth-child(1),
.contactform_wrap .input-field-group .input-field:nth-child(2){
    width:calc(100% / 2);
}
.contactform_wrap .cform_area{
  width: 50%;
}
.contactform_wrap .cform_area .sec-title h2{
    width:80%;
}
.contactform_wrap .cform_desc{
  width: 50%;
}

.contact-details__info {
  position: relative;
  display: block;
  margin-top: -20px;
}
.contact-details__info li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact-details__info li .icon {
  height: 80px;
  width: 84px;
  background-color: var(--color-dyellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 10px;
}
.contact-details__info li:nth-child(1) .icon{
    background-color: #f6dec3;
}
.contact-details__info li:nth-child(2) .icon{
    background-color: #d2efed;
}
.contact-details__info li:nth-child(3) .icon{
     background-color: #ffebe7;
}
.contact-details__info li .icon img{
  max-height: 44px;
  max-width: 62px;
  background-size: contain;
  object-fit: contain;
}
.contact-details__info li:hover .text a {
  color: #6a6f78;
}
.contact-details__info li:hover .text a span {
  color: var(--notech-gray);
}
.contact-details__info li .text {
  margin-left: 30px;
  width: calc(100% - 100px);
}
.contact-details__info li .text h6 {
  font-size: 18.5px;
  line-height: 22px;
  font-weight: 700;
  padding-bottom: 5px;
  color: #3b2a56;
}
.contact-details__info li .text p {
  font-size: 14px;
  line-height: 24px;
}
.contact-details__info li .text a {
  font-weight: 400;
  font-size: 17px;
  color: #6a6f78;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  line-height: 20px;
}
.contact-details__info li .text span {
  color: #6a6f78;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
}
.contact-details__info li + li {
  margin-top: 25px;
}


@media screen and (max-width: 580px){
  .contactform_wrap{
  flex-direction: column;
  gap: 10px;
  padding: 40px 0px 40px;
}
  .contactform_wrap .cform_area{
  width: 100%;
}
    .contact_details_innerpg .contactform_wrap .cform_area{
        margin-bottom:30px
    }
.contactform_wrap .cform_desc{
  width: 100%;
}
  .contact-details__info li .icon {
    height: 50px;
    width: 50px;
}
    .contact-details__info li .icon img {
    max-height: 27px;
    max-width: 40px;
}
.contact-details__info li .text {
    margin-left: 15px;
    width: calc(100% - 80px);
}  
  .contact-details__info li .icon span {
    font-size: 18px;
}
  .form-control, .input-text {
    height: 46px!important;
    padding: 12px 20px !important;
}
  .form-control::placeholder{
    font-size: 14px;
  }
  .contact-details__info li .text h6 {
  font-size: 15px;
  line-height: 15px;
  padding-bottom: 3px;
}
.contact-details__info li .text p {
  font-size: 14px;
  line-height: 24px;
}
.contact-details__info li .text a {
  font-size: 15px;
}
.contact-details__info li .text span {
    font-size: 14px;
    line-height: 14px;
}
    .contactform_wrap .input-field-group .input-field:nth-child(1), .contactform_wrap .input-field-group .input-field:nth-child(2) {
    width: calc(100% / 1);
}
    .contact-details__info {
    margin-bottom:60px;
}
}

@media (min-width: 580px) and (max-width: 767px){
  .contactform_wrap{
  flex-direction: column;
  gap: 55px;
  padding: 40px 0px 40px;
}
  .contactform_wrap .cform_area{
  width: 100%;
}
.contactform_wrap .cform_desc{
  width: 100%;
}
  .contact-details__info li .icon {
    height: 52px;
    width: 52px;
}
.contact-details__info li .text {
    margin-left: 20px;
    width: calc(100% - 85px);
}  
  .contact-details__info li .icon span {
    font-size: 18px;
}
  .form-control, .input-text {
    height: 46px!important;
    padding: 12px 20px !important;
}
  .form-control::placeholder{
    font-size: 14px;
  }
  .contact-details__info li .text h6 {
  font-size: 16px;
  line-height: 18px;
  padding-bottom: 3px;
}
.contact-details__info li .text p {
  font-size: 14px;
  line-height: 24px;
}
.contact-details__info li .text a {
  font-size: 16px;
}
.contact-details__info li .text span {
    font-size: 15px;
}
}






/*===== Email.Css Start =====*/
#alertComment {
  color: #fff;
  visibility: visible;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
  width: auto;
  /* background: #ffdfdf; */
  color: #28807e;
  /* padding: 7px 10px; */
  border-radius: 5px;
}

#sendcform {
  opacity: .5;
  pointer-events: none;
}

#sendcform.activated {
  opacity: 1;
  pointer-events: auto;
}
/*===== Email.Css End =====*/



.coursedetails_section{
    padding:90px 0px 150px;
}
.coursedetails_wrap{
    
}
.course_details_top{
    
}
.course_details_top .coursecard{
    display: table;
    padding: 0;
    width: 100%;
} 
.course_details_top .coursecard .course_cimg_area {
    margin-bottom: 0px;
    margin: 0px 0px 0px -25px;
    height: auto;
    min-height:150px;
    width: 320px;
    display: table-cell;
    vertical-align: bottom;
}
.course_details_top .coursecard .course_cimg_area h4 {
    font-size: 21px;
    line-height: 25px;
    margin-top: 7px;
}
.course_details_top .coursecard .course_cbody_area{
    width: calc(100% - 490px);
    flex: 1;
    display: table-cell;
    padding: 25px;
    vertical-align: middle;
}
.course_details_top .coursecard .label_details_tbl {
    margin-top: 0px;
}
.course_details_top .coursecard .course_cfooter_area {
    border-top: none !important;
    border-left: 1px solid #eee;
    padding: 20px;
    height:100%;
    width: 170px;
    margin-left: 25px;
    display: table-cell;
    vertical-align: middle;
}
.course_details_top .coursecard .course_cfooter_area  .cfoot_left{
    text-align: center;
}
.course_details_top .coursecard .course_cfooter_area .course_amt{
}
.course_details_top .coursecard .course_cfooter_area .course_amt strong{
    display: block;
    margin: 0;
}
.label_details_tbl{
 border: 1px solid #eee;
 margin-top: 15px;
}
.label_details_tbl tr{
border-bottom: 1px solid #eee;
}
.label_details_tbl tr td{
   border-right: 1px solid #eee;
    padding:10px 12px
}

.course_details_bottom{
    display:flex;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;
}
.detail_wrapper{
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
    padding: 35px 35px;
    width: 68%;
}
.detail_box{
    margin-bottom: 35px;
}
.detail_box h3, .side_box h3{
    font-size: 22px;
    font-weight: 700;
}
.detail_box .ptext{
    margin-top:10px;
}
.side_wrapper{
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
    padding: 35px 35px;
    width: 32%;
}



.coursecards_wrap{
    
}
.coursecards_uls{
    display:flex;
    gap: 40px;
}
.coursecards_uls .coursecards_lis{
    width:calc(100% / 4);
}
.coursecard{
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
    overflow:hidden;
    padding: 25px 25px 0px;
}
.course_cimg_area{
    background: #382951;
    padding: 50px 25px 25px;
    margin-bottom: 15px;
    /* text-align: center; */
    margin: -25px -25px 25px;
    color: #ffffff;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.course_cimg_area h6{font-weight: 500;font-size: 14px;opacity:.7;}
.course_cimg_area h4{
    
font-weight: 700;
    
font-size: 17px;
    
margin-top: 6px;
    
line-height: 20px;
}
.course_cbody_area{padding-bottom: 25px;}
.course_cbody_area h3{
    font-weight: 700;
    font-size: 16px;
}
.course_cfooter_area{
    display:flex;
    justify-content:space-between;
    align-items: center;
    border-top:1px solid #eee;
    padding: 20px;
    flex-direction: column;
    margin: 0px -25px;
    background: #ffffff;
}
.course_cfooter_area .course_amt{
    
font-size: 16px;
    
color: #28807e;
}
.course_cfooter_area .course_amt strong{
font-weight:700;
    margin:0px 5px;
}
.course_cfooter_area .cbtn{
    font-size: 13px !important;
    padding: 6px 28px 7px;
    height: 36px;
    font-weight: 600;
    margin-top: 15px;
}

@media screen and (max-width: 580px){
    .coursedetails_section {
    padding: 60px 0px 120px;
}

    .coursecards_uls .coursecards_lis{
    width:calc(100% / 1);
}
    .coursecards_uls{
    gap: 20px;
        flex-direction:column;
}  
    .course_details_top .coursecard{
    display: flex;
     flex-direction:column;
}
    .course_details_top .coursecard .course_cimg_area {
    margin: 0px 0px 0px 0px;
    min-height: 100px;
    width: 100%;
}
    .course_details_top .coursecard .course_cimg_area h4 {
    font-size: 18px;
    line-height: 20px;
}
    .course_details_top .coursecard .course_cbody_area {
    width: 100%;
}
    .course_details_top .coursecard .course_cfooter_area {
    border-top: 1px solid #eee !important;
    border-left: none;
    height: auto;
    width: 100%;
    margin-left: 0px;
}
    .course_details_top .coursecard .course_cfooter_area .cfoot_left {
    text-align: left;
}
    .course_details_top .coursecard .course_cfooter_area .course_amt strong {
    display: inline-block;
    padding-right: 8px;
}
    .course_details_bottom {
    gap: 20px;
    margin-top: 20px;
        flex-direction:column;
}
    .detail_wrapper {
    padding: 25px;
    width: 100%;
}
    .side_wrapper {
    padding: 30px 25px 25px;
    width: 100%;
}
}

@media (min-width: 580px) and (max-width: 768px){
     .coursedetails_section {
    padding: 60px 0px 120px;
}
.coursedetails_section  .profile-grid {
       
-moz-column-width: 18em;
    
-webkit-column-width: 18em;
    
-moz-column-gap: 1em;
    
-webkit-column-gap: 15px;
    
margin-top: 15px;
}
   .coursedetails_section  .profile-grid .item {
    padding: 8px 0px;
}
    .coursecards_uls .coursecards_lis{
    width:calc(100% / 1);
}
    .coursecards_uls{
    gap: 20px;
        flex-direction:column;
}  
    .course_details_top .coursecard{
    display: flex;
     flex-direction:column;
}
    .course_details_top .coursecard .course_cimg_area {
    margin: 0px 0px 0px 0px;
    min-height: 100px;
    width: 100%;
}
    .course_details_top .coursecard .course_cimg_area h4 {
    font-size: 18px;
    line-height: 20px;
}
    .course_details_top .coursecard .course_cbody_area {
    width: 100%;
}
    .course_details_top .coursecard .course_cfooter_area {
    border-top: 1px solid #eee !important;
    border-left: none;
    height: auto;
    width: 100%;
    margin-left: 0px;
}
    .course_details_top .coursecard .course_cfooter_area .cfoot_left {
    text-align: left;
}
    .course_details_top .coursecard .course_cfooter_area .course_amt strong {
    display: inline-block;
    padding-right: 8px;
}
    .course_details_bottom {
    gap: 20px;
    margin-top: 20px;
        flex-direction:column;
}
    .detail_wrapper {
    padding: 25px;
    width: 100%;
}
    .side_wrapper {
    padding: 30px 25px 25px;
    width: 100%;
}
}


/*==================================
    TIMELINE
==================================*/
/*-- GENERAL STYLES
------------------------------*/
.timeline {
  line-height: 1.4em;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  margin-top: 30px;
}
.timeline h5 {
  line-height: inherit;
  font-weight: 600;
  font-size: 16px;
  width: 90%;
  margin-bottom:5px
}
.timeline p{
    line-height: 22px;
    font-weight: 400;
    color: #6e6e6e;
    font-size: 15.5px;
}
/*----- TIMELINE ITEM -----*/
.timeline-item {
  padding-left: 35px;
  position: relative;
}
.timeline-item:last-child {
  padding-bottom: 0;
}

/*----- TIMELINE INFO -----*/
.timeline-info {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin: 0 0 0.5em 0;
  text-transform: uppercase;
  white-space: nowrap;
}

/*----- TIMELINE MARKER -----*/
.timeline-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15px;
}
.timeline-marker:before {
  /* background: #3c797d; */
  border: 2px solid #3c797d;
  border-radius: 100%;
  content: "";
  display: block;
  height: 13px;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 13px;
  transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
}
.timeline-marker:after {
  content: "";
  width: 2px;
  background: #CCD5DB;
  display: block;
  position: absolute;
  top: 23px;
  bottom: 0;
  left: 8px;
}
.timeline-item:last-child .timeline-marker:after {
  content: none;
}

.timeline-item:not(.period):hover .timeline-marker:before {
  background: #3c797d;
  border: 2px solid #3c797d;
}

/*----- TIMELINE CONTENT -----*/
.timeline-content {
  padding-bottom: 30px;
}
.timeline-content p:last-child {
  margin-bottom: 0;
}



/*=== List Style Two ===*/
.list-style-two {
  position: relative;
}
.list-style-two li {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
  color: var(--theme-color1);
  padding-left: 25px;
  margin-bottom: 10px;
}
.list-style-two li i {
  position: absolute;
  left: 0;
  color: var(--color-dblue);
  font-size: 16px;
  line-height: 25px;
}
.list-style-two li a {
  display: inline-block;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.list-style-two li a:hover {
  color: var(--theme-color1);
}
.list-style-two.style-two li i {
  color: var(--theme-color3);
}
.list-style-two.two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list-style-two.two-column li {
  width: 50%;
  padding-right: 20px;
}
@media only screen and (max-width: 580px) {
  .list-style-two.two-column li {
    width: 100%;
    padding-right: 0;
  }
  .list-style-two li {
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 8px;
}
}

/*** 

====================================================================
    Features Section Two
====================================================================

***/
.features-section-two {
  position: relative;
  z-index: 3;
  padding-top: 100px;
}
.features-section-two .support_features_wrap {
  background-image: url(../images/icons/map3.png);
  background-color: #28807e;
  border-radius: 5px;
  display: flex;
}
.support_features_wrap .title-column{
  width: 50%;
}
.support_features_wrap .features-column{
  width: 50%;
}
.support_features_wrap .title-column .sec-title {
    margin-bottom: 0px;
}
.support_features_wrap .title-column .sec-title h2:before {
    display:none;
}
.features-section-two .features-column .image {
  position: absolute;
  bottom: -18px;
  right: -18px;
  margin-bottom: 0;
}
.features-section-two .features-column .image img{width: 310px;}
.features-section-two .title-column .inner-column {
  padding: 75px 60px 0;
}
.features-section-two .title-column .sec-title .sub-title {
  color: #eaeaea;
}
.features-section-two .features-column .inner-column {
  position: relative;
  margin-left: -75px;
  padding: 75px 0 60px;
  padding-right: 30px;
  height: 100%;
}
.features-section-two .features-column .list-style-two li i,
.features-section-two .features-column .list-style-two li {
  color: #ffffff;
}

.features-list {
  position: relative;
}
.features-list li {
  position: relative;
  padding-left: 25px;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
  color: #ffffff;
}
.features-list li:before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  line-height: 26px;
  color: var(--theme-color2);
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

@media only screen and (max-width: 767px) {
  .features-section-two .title-column .inner-column {
    padding: 30px 30px 0;
  } 
  .support_features_wrap .title-column {
    width: 100%;
}
  .support_features_wrap .features-column{
  width: 100%;
}
  .features-section-two .features-column .inner-column {
    margin-left: 0px;
    padding: 0px 30px 25px;
}
  .features-section-two .features-column .list-style-two{
    z-index: 1;
  }
  .features-section-two .features-column .image {
    bottom: -5px;
    right: -13px;
    z-index: 0;
  }
  .features-section-two .features-column .image img{
    width: 150px;
  }
  .features-section-two .support_features_wrap {
  
flex-direction: column;
}
  .features-section-two {
    padding-top: 40px;
}
}

/*** 

====================================================================
        FAQ's Sectiom
====================================================================

***/
.faqs-section {
  position: relative;
  padding: 90px 0 120px;
}
.faqsection-wrap{
  display: flex;
}
.faqs-section .image-column {
  position: relative;
  width: 45%;
  padding: 60px;
}
.faqs-section .image-column img{width: 100%;}
.faq-column{
    width: 55%;
}
.collapsible.c_collapsible {
    border-none;
    border: none;
    box-shadow: none;
}
.collapsible.c_collapsible > li{
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom:15px
}
.collapsible.c_collapsible .collapsible-header{
    position:relative;
    padding: 15px 22px;
    font-size: 15.5px;
    font-weight: 700;
    border-bottom: 1px solid #f6f6f6;
    color: #3b2a56;
}
.collapsible.c_collapsible .collapsible-header:after{
    position: absolute;
    top: calc(50% - 5px);
    right: 22px;
    content: "";
    border-color: transparent #3b2a56 #3b2a56 transparent;
    border-style: solid;
    border-width: 0 2px 2px 0;
    display: block;
    height: 10px;
    transform: rotate(-45deg);
    transition: border 0.3s ease 0s;
    width: 10px;
    border-radius: 1px;
}
.collapsible.c_collapsible > li.active .collapsible-header:after{
    transform: rotate(45deg);
    top: calc(50% - 9px);
}
.collapsible.c_collapsible .collapsible-body{
    padding:10px 30px 30px;
    font-size: 15.5px;
    line-height: 25px;
    border-bottom: 1px solid #f6f6f6;
}
.collapsible.c_collapsible .collapsible-body b{
    color: #3b2a56;
    font-size: 15px;
    font-weight:700;
}

@media only screen and (max-width: 580px) {
    .faqs-section {
    padding: 60px 0 100px;
}
    .faqsection-wrap {
    flex-direction:column;
}
    .faqs-section .image-column {
    display:none;
}
    .faq-column {
    width: 100%;
}
}
@media (min-width: 580px) and (max-width: 768px){
     .faqs-section {
    padding: 60px 0 100px;
}
    .faqsection-wrap {
    flex-direction:column;
}
    .faqs-section .image-column {
    display:none;
}
    .faq-column {
    width: 100%;
}
}


/*** 

====================================================================
   Privacy Policy and Terms & condition wrapper
====================================================================

***/
.policy_tandc_wrap{

}
.policy_tandc_wrap .ptext{
    font-size: 16.5px;
    margin-top: 13px;
}
.policy_tandc_wrap .ptext a{
    font-weight: 600;
    color:#28807e;
}


