@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    
}
:root{
    --primary-font: "Montserrat", sans-serif;
    --primary-color: #542877;
    --secondary-color: #FDBA12;
    --third-color:#508D30;
}

img{
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

.mfp-img{
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

html,
body{
    overflow-x: hidden;
    /* background: #F6F5ED; */
}

body::-webkit-scrollbar{
    width: 5px;
    background: var(--primary-color);
}
body::-webkit-scrollbar-thumb{
    background: var(--secondary-color);
}
a{text-decoration: none;color: #000; display: block;}
ul{padding: 0; margin: 0; list-style-type: none;}
p,h1,h2,h3,h4,h5,h6{margin: 0;}
.msgbox{
    position: fixed;
    bottom: 20px;
    z-index: 99;
    width: 70%;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
}
.msgbox .alertdiv{
    background: #fff;
    padding: 12px  10px;
    text-align: center;
    border-radius: 5px;
    width: fit-content;
    margin: auto;
}
.msgbox .alertdiv.success{
    background: #7acb7a;
}
.msgbox .alertdiv.failed{
    background: #ff8d8d;
}
.msgbox .alertdiv p{font-family: var(--secondary-font); color: #fff;margin: 0;font-size: 16px;letter-spacing: 0.5px;font-weight: 300;display: flex;align-items: center;gap: 5px;}
.msgbox .alertdiv.success p{}
.msgbox .alertdiv.success p i{color: green; font-size: 16px; line-height: 1;}
.msgbox .alertdiv.failed p{}
.msgbox .alertdiv.failed p i{color: red;font-size: 16px;line-height: 1;}
.msgbox .loading-wrapper{background: #bb8100;padding: 10px;display: flex;align-items: center;justify-content: center;width: 50%;margin: auto;border-radius: 10px;}
.msgbox .loading-wrapper .loading_span{
    width: 30px;
    height: 30px;
    border: 2px solid #bb8100;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 50px;
    animation: circle 1s linear infinite;
}
@keyframes circle{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
.msgbox .loading-wrapper p{
    color: #fff;
    letter-spacing: 1px;
    margin-left: 10px;
}
.pagebtn{
    background: var(--primary-color);
    padding: 10px 12px 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    transition: .3s linear;
    overflow: hidden;
}
.pagebtn:before{
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    z-index: -1;
    transition: .3s linear;
    background: #a4cb1f;
}
.pagebtn i{
    font-size: 20px;
    transform: rotate(-30deg);
    transform-origin: center center;
    transition: .2s linear;
    line-height: 1;
    position: relative;
    z-index: 1;
    color: #fff;
}

.pagebtn:hover{
    color: #fff;
}
.pagebtn i:after{
    content: "";
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    z-index: -1;
}
.pagebtn:hover:before{
    width: 100%;
}
.pagebtn:hover i:after{
    background: #fff;
}
.pagebtn:hover i{
    transform: rotate(0);
    color: var(--secondary-color);
}

.preloader{
    background: var(--secondary-color);
    position: fixed;
    width: 100%;
    height: 100vh;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.preloader span{
    width: 150px;
    height: 150px;
    border: 1px solid #fff;
    border-radius: 50%;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    animation: circle 1s linear infinite alternate;
}
@keyframes circle{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}


.slick-dots{
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: auto;
    display: flex;
    gap: 0;
    justify-content: end;
    align-items: end;
    border-radius: 50px;
}
.slick-dots li{
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 6px;
    display: block;
    transition: .2s linear;
    outline: 1px solid #fff;
    outline-offset: 3px;
}
.slick-dots li.slick-active{
    background: var(--primary-color);
}
.slick-dots li button{
    display: none;
}


/*=======================
    page breadcrumb
=======================*/
.page-breadcrumb{
    background: #0D3642;
}
.page-breadcrumb:after{
    content: "";
}
.page-breadcrumb .breadcrumb-col{display: flex;align-items: center;justify-content: center;padding: 60px 0;flex-direction: column;}
.page-breadcrumb .breadcrumb-col h3{
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    padding: 0 0 10px;
}
.page-breadcrumb .breadcrumb-col span{
    font-weight: 800;
    margin: 30px 0 0;
    color: #fff;
}
.page-breadcrumb .breadcrumb-col ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.page-breadcrumb .breadcrumb-col ul li{
    font-size: 16px;
    display: flex;
    align-items: center;
}
.page-breadcrumb .breadcrumb-col ul li:not(:last-child):after{
    content: "";
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    display: inline-block;
    border-radius: 50%;
    margin: 0 10px;
}
.page-breadcrumb .breadcrumb-col ul li a{
    color: var(--secondary-color);
}
.page-breadcrumb .breadcrumb-col ul li:not(:first-
ild) a:before{
    content: "/";
    margin: 0 5px;
    color: #aaa;
}

.page-breadcrumb .breadcrumb-col ul li:not(:last-child) a{
    color: #aaa;
}

.maintitle{
    text-align: center;
    margin: 0 0 30px;
}
.maintitle span{
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    background: #1489cd24;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    color: var(--secondary-color);
}
.maintitle h2{
    font-size: 40px;
    font-weight: 500;
    margin: 20px 0 0;
}



/*=======================
        header
=======================*/
header{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 9;
    transition: position .5s linear;
    box-shadow: 0 2px 15px 1px rgb(0 0 0 / 10%);
}
header.fix{
    box-shadow: 0 2px 5px 2px #00000014;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: #fff;
}
header.fix .topheader{
    display: none;
}
.topheader{
    background: #5428771a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px;
}
.topheader-left{}
.topheader-left ul {
    padding-left: 0;
    margin-bottom: 0;
}

.topheader-left ul li {
    display: inline-block;
    color: #565659;
    font-size: 15px;
    font-family: $heading-font;
    font-weight: 500;
    margin-right: 20px;
    line-height: 1;
}
.topheader-left ul li a {
    color: #565659;
    font-weight: 600;
}
.topheader-left ul li a:hover {
    color: var(--primary-color);
}

.topheader-left ul li a i {
    margin-right:5px;
    font-size: 16px;
    top: 1px;
    position: relative;
}
.th-left{}
.th-left p{
    color: #fff;
    font-size: 14px;
    line-height: 1;
}
.th-left p i{
    color: var(--secondary-color);
    margin-right: 5px;
}
.th-right{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}
.th-right .icons{
    color: #fff;
    transition: .3s ease-in;
    font-size: 14px;
    line-height: 1;
}
.th-right .icons:hover{
    color: var(--secondary-color);
}

.headerleft{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.headerleft a.searchicon{
    font-size: 25px;
    transition: .3s linear;
}
.headerleft a.searchicon:hover{
    color: var(--primary-color);
}
.headerleft .headeremail{
    font-size: 16px;
}
.headerleft .headeremail i{
    margin: 0 8px 0 0;
    line-height: 1;
}
.headercenter{
    text-align: start;
    margin: 15px 0;
}
.headercenter .websitelogo{
    width: 70px;
}
.headerright{
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100%;
    gap: 10px;
}
.headerright .contactno{
    font-size: 16px;
}
.headerright .contactno i{
    margin-right: 10px;
}
.headerright .contactlink{
    transition: .3s linear;
    color: #fff;
    border: 1px solid var(--secondary-color);
    font-size: 14px;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s linear;
}
.headerright .contactlink:hover{
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
}
.headerleft{
}
.headerleft .menu{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.headerleft .menu .menulist{
    display: inline-block;
    position: relative;
    z-index: 1;
}
.headerleft .menu .menulist .menulink{
    font-size: 15px;
    transition: .3s linear;
    line-height: 1;
    padding: 30px 0;
    position: relative;
    z-index: 1;
    color: #555;
    text-transform: capitalize;
    font-weight: 500;
}
.headerleft .menu .menulist .menulink:after{
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 20%;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s linear;
}
.headerleft .menu .menulist .menulink.active,
.headerleft .menu .menulist .menulink:hover{
    color: var(--primary-color);
}
.headerleft .menu .menulist .menulink:hover:after{
}
.header.fix headerleft .menu .menulist .menulink{color: #000;font-weight: 500;letter-spacing: 0.4px;}
.header.fix headerleft .menu .menulist{margin-left: 16px;}
.headerleft .menu .menulist .menulink:hover{color: #000;}
.headerleft .menu .menulist .menulink i{
    font-size: 0.9em;
    color: #000;
}
.header.fix headerleft .menu .menulist .menulink i{color: #000;}
.headerleft .menu .menulist .menulink:hover i{color: var(--secondary-color);}

.headerleft .menu .menulist.enuirylist{}
.headerleft .menu .menulist.enuirylist .menulink.enquirylink{
    background: #fff;
    padding: 5px 10px 5px 20px;
    border-radius: 50px;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    transition: .3s linear;
    overflow: hidden;
}
.headerleft .menu .menulist.enuirylist .menulink.enquirylink:before{
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    z-index: -1;
    transition: .3s linear;
    background: #000;
}
.headerleft .menu .menulist.enuirylist .menulink.enquirylink i{
    width: 25px;
    height: 25px;
    display: inline-block;
    background: #000;
    border-radius: 50px;
    line-height: 25px;
    text-align: center;
    font-size: 20px;
    transform: rotate(-30deg);
    transition: .2s linear;
}
.headerleft .menu .menulist.enuirylist .menulink.enquirylink:hover{
    color: #fff;
}
.headerleft .menu .menulist.enuirylist .menulink.enquirylink:hover:before{
    width: 100%;
}
.headerleft .menu .menulist.enuirylist .menulink.enquirylink:hover i{
    transform: rotate(0);
    background: #fff;
    color: #000;
}

/*====== submenu start here =======*/
.headerleft .submenu{
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 310px;
    margin: 40px 0 0;
    visibility: hidden;
    opacity: 0;
    transition: .2s linear;
    z-index: 99999;
    text-align: left;
    z-index: 9999;
    box-shadow: 0px 4px 6px 1px rgb(0, 0, 0, 0.2);
    padding: 10px 0;
    border-radius: 5px;
    max-width: 500px;
    min-width: 250px;
}
.headerleft .menu .menulist:hover .submenu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;   
    margin: 0;   
}
.headerleft .submenu .sublist{
    display: block;
    position: relative;
    z-index: 1;
}
.headerleft .submenu .sublist .sublink{
    color: #111;
    padding: 6px 20px;
    border-radius: 3px;
    transition: .2s linear;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headerleft .submenu .sublist .sublink:hover{
    color: #000;
    transform: translateX(10px);
}

.headerleft .submenu .sublist .childmenu{position: absolute;top: 0;left: 100%;background: #fff;width: 310px;margin: 40px 0 0;visibility: hidden;opacity: 0;transition: .2s 
linear;z-index: 99999;text-align: left;z-index: 9999;box-shadow: 0px 4px 6px 1px rgb(0, 0, 0, 0.2);padding: 10px 0;border-radius: 5px;max-width: 500px;min-width: 250px;}
.headerleft .submenu .sublist:hover .childmenu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin: 0;
}
.headerleft .submenu .sublist .childmenu .childlist{}
.headerleft .submenu .sublist .childmenu .childlist .childlink{
    color: #111;
    padding: 6px 20px;
    border-radius: 3px;
    transition: .2s 
linear;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
}


/*====== submenu end here =======*/

/*====== mobile menu start here =======*/

.mobheader{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.mobheader .moblogo{width: 20%;}
.mobheader .moblogo img{width: 100%;}
.mobheader .mobtoggle{
    color: #000;
    width: 25px;
    height: 20px;
    position: relative;
    z-index: 1;
}
.mobheader .mobtoggle span{
    width: 25px;
    height: 1px;
    background: #000;
    display: inline-block;
    position: absolute;
    right: 0;
}
.mobheader .mobtoggle span:nth-child(1){}
.mobheader .mobtoggle span:nth-child(2){margin: 8px 0 0;}
.mobheader .mobtoggle span:nth-child(3){
    margin: 16px 0 0;
}
.mobsearch-box{
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    padding: 8px;
}
.mobsearch{
    width: 30px;
    height: 23px;
    position: relative;
    z-index: 1;
    display: none;
}
.mobsearch span{
    display: inline-block;
    position: absolute;
    z-index: 1;
}
.mobsearch span:nth-child(1){
    width: 18px;
    height: 18px;
    border-radius: 50px;
    border: 1px solid #000;
    top: 0;
    left: 0;
}
.mobsearch span:nth-child(2){
    width: 1px;
    height: 10px;
    background: #000;
    top: 14px;
    left: 60%;
    transform: rotate(-42deg);
}
.mobheader .mobheader-right{
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobmenu{
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    z-index: 9999;
    background: var(--primary-color);
    transition: .3s linear;
    overflow: auto;
}
.mobmenu.active{
    box-shadow: -2px 0 10px 0 #0000002e;
    right: 0;
}
.mobmenu .close-mobmenu{
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 18px;
}

.mobmenuhead{text-align: center;padding: 15px 10px;border-bottom: 1px solid #ddd;}
.mobmenuhead h3{font-size: 16px;text-transform: uppercase;letter-spacing: 1px;font-weight: 700;color: #fff;}
.mobul{
    padding: 0px 0;
}
.mobul .mobli{
    padding: 0 0px 10px;
}
.mobul .mobli .moba{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    letter-spacing: .4px;
    font-family: var(--secondary-font);
    font-size: 15px;
    letter-spacing: .5px;
    padding: 5px 10px;
}
.mobsmneu{
    padding: 10px 0px 10px;
    display: none;
    background: #7437a5;
}

.mobsmneu .mobsmneu {
    background: var(--primary-color);
}

.mobsmneu .mobsmneu .childlink {
    padding: 5px 10px 5px;
    color: #fff;
}

.mobsmneu .mobslist{
    padding: 5px 0 0;
}
.mobsmneu .mobslist .mobslink{
    font-size: 13px;
    font-family: var(--secondary-font);
    letter-spacing: .4px;
    color: #666;
}
/*====== mobile menu end here =======*/


.searchpanel{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s linear;
}
.searchpanel.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.close-searchpanel{
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 30px;
}
.close-searchpanel:before,
.close-searchpanel:after{}
.close-searchpanel:before{}
.close-searchpanel:after{}
.innersearchpanel{
    width: 100%;
    padding: 5% 10%;
    background: #151617;
    margin-top: -8%;
    transition: .3s linear;
}
.searchpanel.active .innersearchpanel{
    margin-top: 0;
}
.searchpanel-header{
    position: relative;
    z-index: 1;
}
.searchpanel-header img{width: 150px;margin: 0 0 10%;}
.innersearchpanel form{
}
.innersearchpanel form h3{
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 1px;
}
.innersearchpanel form .fields{
    position: relative;
    z-index: 1;
}
.innersearchpanel form .fields input{
    width: 100%;
    border: 0;
    border-bottom: 1px solid #b48b482e;
    padding: 15px 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 20px;
}
.innersearchpanel form .fields input::after{
    content: "alsdfj";
}
.innersearchpanel form .fields input::placeholder{
    color: #cdcdcd;
    letter-spacing: 0.5px;
    font-weight: 300;
    font-size: 25px;
}
.innersearchpanel form .fields button{
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px 0;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 23px;
}
.innersearchpanel form .fields .emptyinput{
    position: absolute;
    bottom: 14px;
    line-height: 1;
    right: 28px;
    display: none;
}


.sidebar-shadow{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    z-index: 998;
    transition: left .3s ease-in;
}
.sidebar-shadow.active{
    left: 0;
}
.sidebar-contact-info{
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 999;
    transition: right .3s ease-in;
    transition-delay: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-contact-info.active{
    right: 0;
}
.sidebar-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.sidebar-inner .sidelogo{}
.sidebar-inner .sidelogo img{width: 150px;}
.sidebar-inner h3{
    font-weight: 600;
    font-size: 1.4em;
    padding: 30px 0 15px;
    font-family: var(--secondary-font);
}
.sidebar-inner .number{font-weight: 500;letter-spacing: 1px;font-size: 20px;}
.sidebar-inner p{
    padding: 10px 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
}
.sidebar-inner .email{
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 20px;
}
.sidebar-inner .social{
    padding: 50px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.sidebar-inner .social a{
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    position: relative;
    color: #aaa;
}
.sidebar-inner .social a:hover{
    border-color: transparent;
    color: #000;
}
.sidebar-inner .social a:after{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 1px dashed #000;
    position: absolute;
    top: 0;
    left: 0;
    animation: socialcircle 3s linear infinite reverse;
    opacity: 0;
}
.sidebar-inner .social a:hover:after{
    opacity: 1;
}
@keyframes socialcircle{
    0%{transform: rotate(360deg);}
    100%{transform: rotate(0deg);}
}
.close-sidebar{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 20px;
}
.close-sidebar span{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    background: #000;
    height: 100%;
    border-radius: 50px;
    transition: .3s ease;
}
.close-sidebar span:nth-child(1){
    transform: translate(-50%, -50%) rotate(45deg);
}
.close-sidebar span:nth-child(2){
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close-sidebar:hover span:nth-child(1){
    transform: translate(-50%, -50%) rotate(90deg);
}
.close-sidebar:hover span:nth-child(2){
    transform: translate(-50%, -50%) rotate(-90deg);
}



/*====== slider start here =======*/
.slider-wrapper{
    /* padding: 50px 0 20px; */
}
.sliderleft{display: flex;flex-direction: column;align-items: start;justify-content: center;height: 100%;}
.sliderleft h3{
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    padding: 0 0 30px;
}
.sliderleft h3 span{
    color: var(--secondary-color);
}
.sliderleft p{
    font-size: 15px;
    color: #666;
    font-weight: 300;
}
.sliderleft .morebtn{
    padding: 40px 0 0;
    display: flex;
    gap: 20px;
}
.sliderleft .morebtn a{
    font-size: 15px;
    font-weight: 500;
    padding: 0 30px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    height: 55px;
    color: #fff;
}
.sliderleft .morebtn a i{
    font-size: 24px;
    line-height: 1;
    width: 30px;
    height: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--primary-color);
}
.sliderleft .morebtn .appointment{
}
.sliderleft .morebtn .appointment i{background: none;color: #fff; transition: .3s linear;}
.sliderleft .morebtn .appointment:hover{
}
.sliderleft .morebtn .appointment:hover i{
    color: var(--primary-color);
}
.sliderleft .morebtn .contactus{
    gap: 10px;
    background: no-repeat;
    font-weight: 300;
    color: #666;
    padding: 0;
}
.sliderleft .morebtn .contactus i{
    color: var(--primary-color);
    background: none;
    transition: .3s linear;
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary-color);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}
.sliderleft .morebtn .contactus:hover{color: var(--primary-color);}
.sliderleft .morebtn .contactus:hover i{
    border-radius: 50px;
}
.sliderright{text-align: center;}
.sliderright img{width: 100%;margin: auto;}


.appointment{padding: 50px 0;}
.appointment span{color: var(--secondary-color);font-weight: 300;text-transform: uppercase;letter-spacing: 1px;}
.appointment h2{
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #fff;
    padding: 0 0 15px;
}


/*====== slider end here =======*/


.video-section {
     background: #0d3642;
     position: relative;
     padding: 100px 0 300px;
}
 .video-section::before {
     position: absolute;
     content: '';
     background-image: url(../image/video-shape.png);
     background-size: cover;
     background-position: center center;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
}
 .video-section .video-text {
     position: relative;
}
 .video-section .video-text i {
     color: #fff;
     background: #fe6417;
     width: 80px;
     height: 80px;
     text-align: center;
     line-height: 85px;
     display: inline-block;
     font-size: 25px;
     position: relative;
     z-index: 0;
}
 .video-section .video-text i::after {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     border: 3px solid rgba(255, 101, 80, 0.50);
     animation: pulse 2s ease-out infinite;
     left: 0;
     top: 0;
}

/* play button animation */
@keyframes pulse {
    from {
        transform: scale(1);
        filter: opacity(0.9);
    }

    to {
        transform: scale(2);
        filter: opacity(0);
    }
}
 .video-section .video-text p {
     position: absolute;
     left: 150px;
     top: 0;
     font-size: 30px;
     color: #fff;
     line-height: 1.4;
}
 

.theory-section {
     padding: 50px 0 0;
}
 .theory-section .theory-area {
     position: relative;
     background: #fff;
     box-shadow: 0px 2px 20px 0px rgb(197 197 197 / 33%);
}
 .theory-section .theory-area .theory-text {
     padding: 50px 50px 20px 0px;
}
 .theory-section .theory-area .theory-text h2 {
     font-size: 35px;
     font-weight: 700;
     text-transform: capitalize;
     margin-bottom: 25px;
     line-height: 1.4;
}
 .theory-section .theory-area .theory-text p {
     color: #333333;
     margin-bottom: 30px;
}
 .theory-section .theory-area .theory-text .signature-box img {
     margin-bottom: 10px;
}
 .theory-section .theory-area .theory-text .signature-box p {
     margin-bottom: 0;
     color: #333333;
     font-weight: 500;
}
 .theory-section .theory-area .theory-text .signature-box span {
     font-size: 14px;
     color: #333333;
}
 .theory-section .theory-area .theory-img {
     position: absolute;
     right: 0;
     max-width: 550px;
     bottom: 0;
}
.theory-section .theory-area .theory-img img {
    width: 100%;
}


.about-section {
     padding-top: 100px;
     background: #f7f7f7;
     padding-bottom: 100px;
}
 .about-section .about-image img {
     border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
     box-shadow: 0 0 11px 0 rgba(0, 0, 0, .35);
     z-index: 1;
     animation: wrep 10s infinite linear;
     width: 100%;
     max-width: unset;
}
.about-section .default-btn{
        font-size: 16px;
        font-weight: 500;
        color: #FFFFFF;
        background: linear-gradient(90deg, rgb(255, 124, 0) 0%, rgb(254, 98, 25) 100%);
        padding: 16px 40px;
        position: relative;
        display: inline-block;
        margin: 20px 0 0;
}
@keyframes wrep {
    0% {
        border-radius: 55% 45% 38% 62% / 52% 57% 43% 48%;
    }

    35% {
        border-radius: 67% 33% 39% 61% / 48% 63% 37% 52%;
    }

    70% {
        border-radius: 40% 60% 62% 38% / 32% 41% 59% 68%;
    }

    100% {
        border-radius: 55% 45% 38% 62% / 52% 57% 43% 48%;
    }
}

 .about-section .about-text .section-title {
     margin: 0 auto 25px 0;
}
.about-section .about-text .section-title > span{
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}
.about-section .about-text .section-title h2{
    font-weight: 700;
    font-size: 40px;
}
 .about-section .about-text .about-us {
     margin-bottom: 20px;
}
 .about-section .about-text .about-us i {
     font-size: 40px;
     left: 20px;
     position: relative;
     top: 0;
     line-height: 1;
     margin-bottom: 10px;
     display: inline-block;
     color: #111;
     z-index: 0;
}
 .about-section .about-text .about-us i::after {
     position: absolute;
     content: '';
     width: 40px;
     height: 40px;
     top: 0;
     left: -15px;
     z-index: -1;
}
 .about-section .about-text .about-us i.icon-one::after {
     background: rgba(132, 186, 63, 0.65);
}
 .about-section .about-text .about-us i.icon-two::after {
     background: rgba(255, 124, 0, 0.64);
     border-radius: 50px;
}
 .about-section .about-text .about-us i.icon-three::after {
     background: rgba(255, 199, 10, 0.66);
     transform: rotate(30deg);
}
 .about-section .about-text .about-us p {
     font-size: 14px;
     color: #808291;
     margin-bottom: 0;
}
 .about-section .about-text p {
     color: #808291;
     margin-bottom: 10px;
     max-width: 500px;
}
.aboutpage p {
    margin: 0 0 15px;
}
 
/* Newsletter CSS Start */
 .newsletter-section .newsletter-area {
     background: #ff7309;
     padding: 70px;
     margin-bottom: -140px;
     z-index: 1;
     position: relative;
     text-align: center;
}
 .newsletter-section .newsletter-area h2 {
     font-size: 32px;
     font-weight: 700;
     color: #fff;
     margin-bottom: 35px;
     line-height: 1;
}
 .newsletter-section .newsletter-area .newsletter-form {
     position: relative;
}
 .newsletter-section .newsletter-area .newsletter-form .form-control {
     border: 1px solid #fff;
     padding: 20px 0 20px 20px;
     height: 50px;
     background: #ff7309 !important;
     color: #fff;
     border-radius: 0;
}
 .newsletter-section .newsletter-area .newsletter-form ::placeholder {
     color: #fff;
}
 .newsletter-section .newsletter-area .newsletter-form .default-btn {
     position: absolute;
     font-size: 16px;
     color: #fff;
     height: 50px;
     padding: 0 20px;
     top: 0px;
     right: -1px;
     transition: 0.5s;
     border-left: 1px solid;
     background: #ff7309;
     border: 1px solid;
}
 .newsletter-section .newsletter-area .newsletter-form .default-btn:hover {
     color: #fff;
     background: #000;
}
 .newsletter-section .newsletter-area .validation-danger {
     color: #fff;
     margin-top: 10px;
}
 .newsletter-section .newsletter-area .subscribe-shape {
     position: absolute;
     right: 50px;
     bottom: 0;
     animation: translatey 5s infinite linear;
}
 





/*====== contact info start here =======*/

.continfo{
    padding: 50px 40px;
    font-weight: 400;
}
.continfo .continfobox{
    border-radius: 20px;
    position: relative;
    z-index: 1;
    height: 100%;
}
.continfo .continfobox .masking{
    -webkit-mask: url(../image/shape.png) top right no-repeat;
    mask: url(../image/shape.png) top right no-repeat;
    padding: 40px;
    border-radius: 30px;
    height: 100%;
}
.continfo .continfobox .masking.schedule{
    background: var(--primary-color);
}
.continfo .continfobox .masking.location{
    background: var(--secondary-color);
}
.continfo .continfobox .masking.appointment{
    background: url('../image/appoint.png');
    background-size: cover;
}
.continfo .continfobox .masking.appointment h3{
    color: var(--primary-color);
    font-weight: 600;
}
.continfo .continfobox.schedule .icon{
    background: var(--primary-color);
}
.continfo .continfobox.location .icon{
    background: var(--secondary-color);
}
.continfo .continfobox.appointment .icon{
    background: var(--primary-color);
}
.continfo .continfobox.schedule .icon i{
    color: #fff;
}
.continfo .continfobox.location .icon i{
    color: #fff;
}
.continfo .continfobox.appointment .icon i{
    color: #fff;
}
.continfo .continfobox .icon{
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}
.continfo .continfobox .icon i{
    color: var(--primary-color);
    font-size: 24px;
}
.continfo .continfobox h3{
    font-size: 22px;
    color: #fff;
    padding: 0 0 20px;
    border-bottom: 1px solid #ffffff3b;
    margin: 0 0 20px;
}
.continfo .continfobox .content{}
.continfo .continfobox .content .infos{display: flex;align-items: center;justify-content: space-between;padding: 0 0 10px;flex-wrap: wrap;}
.continfo .continfobox .content .infos span{
    color: #fff;
    font-size: 14px;
}
.continfo .continfobox .content .infos span:nth-child(1){}
.continfo .continfobox .content .infos span:nth-child(2){}
.continfo .continfobox .content p{
    font-size: 14px;
    padding: 0 0 20px;
    color: #fff;
}
.continfo .continfobox .content .infos a{
    border: 1px solid #ffffff;
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    color: #fff;
}
.continfo .continfobox .content .infos a i{
    font-size: 26px;
    line-height: 0.5;
    color: #fff;
}
.continfo .continfobox .content .infos a:hover{
    background: var(--primary-color);
}
.continfo .continfobox .content .infos.appointinfo{}
.continfo .continfobox .content .infos.appointinfo span{
    font-size: 20px;
    flex-basis: 100%;
}
.continfo .continfobox .content .infos.appointinfo span:nth-child(1){
    font-size: 18px;
}
.continfo .continfobox .content .infos.appointinfo span:nth-child(2){
    color: var(--primary-color);
    font-weight: 600;
}


/*====== contact info end here =======*/


/*====== home about us start here =======*/
.homeaboutus{padding: 50px 0 60px;}
.homeaboutleft{}
.homeaboutleft img{width: 100%;border-radius: 50px;}
.homeaboutright{
    padding: 50px 0 0 30px;
}
.homeaboutright > span{
    color: var(--secondary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.homeaboutright h3{
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: var(--primary-color);
    padding: 0 0 15px;
}
.homeaboutright p{
    font-weight: 400;
}
.homeaboutright .aboutser{
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
}
.homeaboutright .aboutser ul{
    padding-left: 20px;
}
.homeaboutright .aboutser ul li{
    position: relative;
    z-index: 1;
    font-weight: 400;
    font-size: 15px;
    padding: 0 0 5px;
}
.homeaboutright .aboutser ul li:before{
    content: "";
    background: url('../image/check.svg');
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    background-size: cover;
    transform: translateY(-50%);
    left: -12%;
}
.homeaboutright .morebtns{
    display: flex;
    align-items: center;
    gap: 40px;
}
.homeaboutright .morebtns .appointment{
    font-size: 13px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 500;
    padding: 10px 10px 10px 15px;
    border-radius: 50px;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
.homeaboutright .morebtns .appointment i{
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
}

.homeaboutright .morebtns span{
    display: inline-block;
    position: relative;
    z-index: 1;
    color: #999;
    font-weight: 300;
    padding-left: 40px;
}
.homeaboutright .morebtns span i{
    color: var(--primary-color);
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.homeaboutright .morebtns span a{
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
}
/*====== home about us end here =======*/





/*====== our services start here =======*/
.services{
    padding: 80px 30px 120px 30px;
    background: url('../image/servicebg.webp');
    position: relative;
    z-index: 1;
}
.services:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #1489cd8a;
}
.services .maintitle{}
.services .maintitle span{
    background: #fff;
}
.services .maintitle h2{
    color: #fff;
}
.services .services-wrapper{}
.services .services-wrapper .serbox{
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    width: 150px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    margin: 0 10px;
    transition: .3s linear;
}
.services .services-wrapper .serbox .icon{
    width: 70px;
    aspect-ratio: 1 / 1;
    text-align: center;
    background: var(--primary-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s linear;
}
.services .services-wrapper .serbox:hover .icon{
    background: #fff;
}
.services .services-wrapper .serbox img{
    width: 60%;
    filter: invert(1);
    margin: -5px 0 0;
}
.services .services-wrapper .serbox h3{
    font-size: 18px;
    font-weight: 600;
    padding: 30px 0 0;
    text-align: center;
    transition: .3s linear;
}
.services .services-wrapper .serbox:hover{
    background: var(--secondary-color);
}
.services .services-wrapper .serbox:hover img{
    filter: invert(0);
}
.services .services-wrapper .serbox:hover h3{
    color: #fff;
}
.services .services-wrapper .slick-dots{
    display: none !important;
}

/*====== our services end here =======*/


/*====== our specialities start here =======*/

.specialities{
    padding: 50px 30px;
}
.specialities .maintitle{}
.specialities .maintitle span{}
.specialities .maintitle h3{}

.specialities .specbox{
    background: #00597c14;
    margin: 0 0 20px;
    padding: 25px;
    border-radius: 10px;
}
.specialities .specbox figure{}
.specialities .specbox figure img{
    width: 40px;
}
.specialities .specbox .content{}
.specialities .specbox .content h3{
    font-size: 18px;
    font-weight: 600;
    padding: 0 0 10px;
}
.specialities .specbox .content p{
    font-size: 15px;
}

/*====== our specialities end here =======*/





/*========== views start here ==========*/
.testimonials{
    padding: 50px 30px;
    position: relative;
    z-index: 1;
}
.testimonials .maintitle{
    text-align: start;
}
.testimonials .maintitle span{}
.testimonials .maintitle h2{}
.testimonials .maintitle a{
    background: var(--primary-color);
    margin-top: 40px;
    display: inline-flex;
    padding: 8px 20px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: .3s linear;
}
.testimonials .maintitle a i{
    font-size: 25px;
    line-height: 1;
}
.testimonials .maintitle a:hover{
    background: var(--secondary-color);
}

.reviewright .reviewbox{
    overflow: hidden;
    height: 100%;
    padding: 30px;
    margin: 15px;
    transition: .3s ease-in;
    position: relative;
    z-index: 1;
    text-align: center;
}
.reviewright .reviewbox > i{
    font-size: 30px;
    color: var(--secondary-color);
}
.reviewright:hover .reviewbox > i{
    color: var(--primary-color);
}
.reviewright .reviewbox p{
    font-weight: 300;
    font-size: 18px;
    transition: .3s ease-in;
}
.reviewright .reviewbox .info{
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 20px auto 0;
    padding-left: 60px;
}
.reviewright .reviewbox .info img{
    width: 50px;
    border: 1px solid #eee;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border-radius: 10px;
}
.reviewright .reviewbox .info h3{transition: .3s ease-in;font-size: 18px;color: #000;font-weight: 400;}
.reviewright .reviewbox .info span{
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: .3s ease-in;
}
/*========== views end here ==========*/



/*=========== footer ===========*/
footer{
    padding: 50px 0 30px;
    background: #151617;
}
.footerbox iframe{
    width: 100%;
    height: 290px;
}
.footerbox .footerlogo{margin: 0 0 10px;display: inline-block;}
.footerbox .footerlogo img{
    width: 130px;
}
.footerbox .cont-info{
    font-size: 16px;
    font-weight: 100;
    color: #fff;
    padding: 15px 0 0;
    display: block;
    letter-spacing: 1px;
}
.footerbox .cont-info a{
    color: #fff;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: 100;
}
.footerbox .cont-info a i{
    margin: 0 10px 0 0;
    color: #001d62;
    font-size: 1.3em;
}
.footerbox-title{
    color: #fff;
    font-size: 22px;
    margin: 0 0 10px;
    letter-spacing: 1px;
}
.socialmedia{
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}
.socialmedia .sociallinks{
    width: 25px;
    height: 25px;
    color: #fff;
    transition: .3s linear;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
}
.socialmedia .sociallinks:hover{
    outline: 1px dashed var(--primary-color);
    background: #fff;
    color: var(--primary-color);
}
.socialmedia .sociallinks.ri-facebook-line{
}
.socialmedia .sociallinks.ri-instagram-line{
 
}
.socialmedia .sociallinks.ri-youtube-line{
}
.socialmedia .sociallinks.ri-linkedin-line{
    
}
.socialmedia .sociallinks.ri-twitter-line{
    
}
.socialmedia .sociallinks.ri-pinterest-line{
    
}
.usefullinks{color: #fff;
    font-size: 22px;
    letter-spacing: 2px;
    margin: 0 0 15px;
    font-family: var(--secondary-font);
}
footer .footer-menu{
    /* text-align: center; */}footer .footer-menu li{
    padding: 0 0 5px;
}footer .footer-menu li a{
    font-size: 14px;
    position: relative;
    transition: .2s linear;
    letter-spacing: 1px;
    display: inline-block;
    font-weight: 400;
    color: #999;
    font-family: var(--secondary-font);
}
footer .footer-menu li a:is(:hover, .active){
    color: #fff;
}footer .footer-menu li a:before{
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 20px;
    transform: scaleX(0);
    transition: .2s linear;
}footer .footer-menu li a.active:before,
footer .footer-menu li a:hover:before{
    transform: scaleX(1);
}
.footer-map{
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 20px 0 0;
}
.footer-map iframe{
    width: 100%;
    height: 140px;
    border-radius: 20px;
}
.footer-mapiframe{width: 100%;height: 300px;display: block;border-radius: 50px;border-bottom-left-radius: 0;
}

.copyright{margin: 40px 0 0;border-top: 1px solid #333;padding: 30px 0 0;text-align: center;}
.copyright p{
    font-size: 15px;
    display: block;
    color: #fff;
    font-weight: 200;
    letter-spacing: 1px;
}
.copyright p a{
    color: var(--primary-color);
    font-weight: 400;
    display: inline-block;
}
.copyright p a:hover{
    color: #fff;
}


/*=========== contact page =======*/
.contactpage{
    padding: 40px 0 50px;
}
.contactpage .contmap{margin: 0 0 50px;}
.contactpage .contmap iframe{width: 100%; height: 400px;}
/*.continfo{}
.continfo span{text-transform: uppercase;letter-spacing: 1px;font-size: 16px;font-weight: 400;color: #333;}
.continfo h3{
    width: 80%;
    font-size: 43px;
    font-weight: 100;
    line-height: 1.3;
    margin: 15px 0 20px;
}*/
.rightbox{
    margin: 20px 0 10px;
    display: flex;
    align-items: center;
}
.rightbox i{font-size: 18px;display: inline-block;color: var(--secondary-color);margin-right: 10px;}
.rightbox a{font-size: 16px;color: #000;font-weight: 500;}

.form{}
.form h3{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 600;
    color: #332;
    margin: 0 0 20px;
}
.form .maintitle{
    text-align: start;
}
.form .maintitle .tag{}
.form .maintitle h2{}
.form .maintitle h2 span{}
.form form{}
.form form .fields{margin: 0 0 25px;position: relative;z-index: 1;}
.form form .fields label{font-size: 14px;font-weight: 500;letter-spacing: 1px;color: var(--primary-color);
}
.form form .fields :is(input, select){background: none;color: #000;font-weight: 400;border: none;border-bottom: 1px solid #e7e7e7;font-size: .9em;padding: 15px 15px 15px 40px;border-radius: 0;font-family: var(--secondary-font);}
.form form .fields input[type='number']::-webkit-outer-spin-button,
.form form .fields input[type='number']::-webkit-inner-spin-button{
    -webkit-appearance: none;-moz-appearance: none;appearance: none;
}
.form form .fields textarea{border: none;border-bottom: 1px solid #e7e7e7;background: none;height: 100px;font-size: .9em;font-weight: 400;border-radius: 0;color: #000;padding: 15px 15px 15px 40px;font-family: var(--secondary-font);}

.form form .fields textarea::placeholder,
.form form .fields input::placeholder{
    color: #bbb;
    font-weight: 400;
    font-size: 14px;
}
.form form .fields :is(input, select, textarea):focus{
    box-shadow: none;
    border-color: var(--secondary-color);
}
.form form .fields i{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #959595;
    font-size: 20px;
}
.form form .fields.textarea i{
    top: 30px;
}
.form form .fields-btn{}
.form form .fields-btn button{transition: .3s linear;background: var(--primary-color);padding: 10px 20px;border: none;color: #fff;font-size: 18px;letter-spacing: 1px;font-weight: 200;border-radius: 5px;}
.form form .fields-btn button:hover{
    background: #9f7736;
}

/*========== aboutus page ===========*/
.aboutpage{
    padding: 3% 80px;
    position: relative;
    z-index: 1;
}
.aboutpage .contenttagline{
    padding: 0 0 30px;
}
.aboutpage .contenttagline h3{
    margin: 10px auto 10px;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    margin: 0;
}
.aboutpageleft{
    padding: 0 30px;
    text-align: start;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100%;
}
.aboutpageleft span{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}
.aboutpageleft h3{margin: 10px auto 10px;font-size: 30px;font-weight: 300;text-transform: uppercase;color: #000;}
.aboutpageleft p{
    text-align: justify;
    font-weight: 300;
    color: #000;
    font-size: 16px;
    letter-spacing: .5px;
}
.aboutpageleft .aboutcontact{margin: 30px 0 0;background: var(--primary-color);display: inline-block;padding: 10px 50px;color: #fff;letter-spacing: 1px;transition: .3s linear;}
.aboutpageleft .aboutcontact:hover{
    background: #a98244;
}
.aboutpageright{display: flex; justify-content: space-between;}
.aboutpageright img{width: 48%;}
.aboutuscontainter{}

.aboutpage .fulldesc{
    padding: 40px 0 0;
}
.aboutpage .fulldesc .descbox{
    margin: 0 0 20px;
}
.aboutpage .fulldesc .descbox .manufact-box{
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 15px 0 0;
    gap: 25px;
}
.aboutpage .fulldesc .descbox .manufact-box figure{
    flex-basis: 50%;
    margin: 0;
}
.aboutpage .fulldesc .descbox .manufact-box figure img{width: 100%;}
.aboutpage .fulldesc .descbox .manufact-box .content{
    flex-basis: 50%;
}
.aboutpage .fulldesc .descbox .manufact-box .content p{}
.aboutpage .fulldesc .descbox h3{margin: 10px auto 10px;font-size: 30px;font-weight: 300;text-transform: uppercase;color: #000;text-align: center;}
.aboutpage .fulldesc .descbox .manufact-box .content h3{
    text-align: left;
}
.aboutpage .fulldesc .descbox .manufact-box .content h4{margin: 20px 0 0; font-size: 18px; font-weight: 600;}
.aboutpage .fulldesc .descbox p{color: #000;font-weight: 300;font-size: 16px;text-align: justify;letter-spacing: .3px;}
.aboutpage .fulldesc .descbox ul{
    padding: 10px 00;
}
.aboutpage .fulldesc .descbox ul li{
    color: #000;
    font-weight: 300;
    padding: 0 0 15px;
    font-size: 16px;
    text-align: justify;
    letter-spacing: 0.5px;
}
.aboutpage .fulldesc .descbox ul li:before{
    content: "\f3ce";
    font-family: "bootstrap-icons";
    color: var(--primary-color);
    margin-right: 5px;
    font-size: 13px;
    display: none;
}
.aboutpage .fulldesc .descbox ul li span{
    color: #000;
    font-weight: 400;
}
.aboutpage .fulldesc .descbox p.last{
}
.aboutpage .fulldesc .descbox:last-child{}
.aboutpage .fulldesc .descbox:last-child h3{
    line-height: 1;
}
.aboutpage .fulldesc .descbox:last-child ul{
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.aboutpage .fulldesc .descbox:last-child ul li{
    /* flex-basis: 30%; */
    background: #eee;
    line-height: 1;
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
}

/*========== our products page start here ==========*/
.ourproducts{
    padding: 50px 80px 4%;
    position: relative;
}
.productlist{}
.productlist figure{overflow: hidden;}
.productlist figure img{
    width: 100%;
    transition: .3s linear;
}
.productlist:hover figure img{
    transform: scale(1.08);
}

.productlist h3{
    font-size: 21px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 200;
}

.ourproducts .product-img{display: flex;align-items: start;gap: 15px;flex-wrap: wrap;}
.ourproducts .product-img .popup_img{
    width: 48%;
}
.ourproducts .product-img .popup_img img{width: 100%;}
.ourproducts .product-info{
}
.ourproducts .product-info .tagname{
    background: var(--secondary-color);
    color: #fff;
    font-size: 12px;
    display: inline-block;
    padding: 1px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-style: italic;
    letter-spacing: 1px;
}
.ourproducts .product-info h3{
    font-size: 50px;
    margin: 0 0 20px;
    font-weight: 100;
}
.ourproducts .product-info .productcat{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 15px;
    font-family: var(--secondary-font);
    padding: 0 0 10px;
}
.ourproducts .product-info .productcat a{
    font-family: var(--secondary-font);
    font-size: 15px;
}
.ourproducts .product-info p{
    font-size: 16px;
    font-family: var(--secondary-font);
    color: #999;
    font-weight: 300;
    margin: 0 0 25px;
}

.ourproducts .product-info .productshare{
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 0 30px 0 0;
}
.ourproducts .product-info .productshare span{
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 2px 0 0 2px;
    background: var(--primary-color);
    color: #fff;
}
.ourproducts .product-info .productshare a{
    font-size: 20px;
    color: #666;
    transition: .3s linear;
}
.ourproducts .product-info .productshare a:hover{
    color: var(--primary-color);
}
.relatedproducts{
    padding: 50px 0 0;
}
.relatedproducts > h3{
    font-size: 36px;
    margin: 0 0 25px;
    font-weight: 100;
}
.relproduct{}
.relproduct figure{overflow: hidden;}
.relproduct figure img{
    width: 100%;
    transition: .3s linear;
}
.relproduct:hover figure img{
    transform: scale(1.08);
}

.relproduct h3{
    font-size: 20px;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 100;
}

.notfound{}
.notfound h3{

}
/*========== our products page end here ==========*/


/*========== gallery page start here ==========*/
.gallerypage{
    padding: 3% 0;
}
.gallerypage .gallerbox{
    margin: 0 0 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 300px;
}
.gallerypage .gallerbox span{
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    padding: 10px 15px;
    font-weight: 600;
    text-transform: capitalize;
    /* white-space: nowrap; */
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 3px;
    color: #fff;
    text-align: center;
}
.gallerypage .gallerbox img{width: 100%;height: 100%;object-fit: cover;object-position: center;}


/*========== gallery page end here ==========*/


/*========== blogs page start here ==========*/
.blogpage{padding: 3% 80px;}
.blogpage .blogbox{
    background: #fff;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4%;
}
.blogpage .blogbox figure{
    margin: 0;
    overflow: hidden;
    flex: 1 0 48%;
}
.blogpage .blogbox figure img{width: 100%;transition: .3s ease-in}
.blogpage .blogbox:hover figure img{transform: scale(1.1);}
.blogpage .blogbox .content{flex: 1 0 48%;}
.blogpage .blogbox .content .tagname{
    background: var(--secondary-color);
    color: #fff;
    font-size: 12px;
    display: inline-block;
    padding: 1px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
}
.blogpage .blogbox .content .date{
    margin: 20px 0 0;
    display: inline-block;
    color: #999;
    font-family: var(--secondary-font);
    font-size: 14px;
    position: relative;
    z-index: 1;
}
.blogpage .blogbox .content .date:before{
    content: "";
    width: 80px;
    height: 1px;
    background: #000;
    position: absolute;
    top: -10px;
    left: 0;
    z-index: 9;
}
.blogpage .blogbox .content h3{
    font-size: 24px;
    margin: 0 0 10px;
    font-weight: 100;
}
.blogpage .blogbox .content a{
    font-size: 14px;
    color: #666;
    letter-spacing: .5px;
}
.blogpage .blogbox .content a:hover{
    color: var(--primary-color);
}







/*============= single blogs start here ===========*/
.blog{
    position: relative;
}
.blog figure{
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    text-align: center;
}
.blog figure img{width: 30%;margin: auto;}
.blog .blogleft{
    position: relative;
    background: #f6f5ed;
    padding: 50px 0 50px;
    margin: 0 0 50px;
}
.blog .blogleft .content{
    position: relative;
    text-align: center;
    margin: 0 0 0;
    background: #f6f5ed;
    padding: 20px 0;
    z-index: 1;
}
.blog .blogleft .content .tagname{
    background: var(--secondary-color);
    color: #fff;
    font-size: 12px;
    display: inline-block;
    padding: 1px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-weight: 400;
    letter-spacing: 1px;
    font-style: italic;
}
.blog .blogleft .content .date{
    margin: 20px 0 0;
    display: inline-block;
    color: #999;
    font-family: var(--secondary-font);
    font-size: 14px;
    position: relative;
    z-index: 1;
}
.blog .blogleft .content h3{
    font-size: 45px;
    letter-spacing: 1px;
    margin: 0 0 10px;
    width: 80%;
    margin: auto;
    font-weight: 100;
}
.blog .blogleft .blogdesc{position: relative; z-index: 2; width: 80%; margin: auto;}
.blog .blogleft .blogdesc h2{
    font-size: 18px;
    margin: 30px 0 10px;
    font-weight: 400;
}
.blog .blogleft .blogdesc p{
    color: #555;
    line-height: 1.8;
    font-weight: 200;
}
.blog .blogleft .blogdesc ul{}
.blog .blogleft .blogdesc ul li{
    margin: 0 0 5px;
    font-weight: 200;
}
/*============= single blogs start here ===========*/




.footer-area {
     background: #0d3642;
     padding-top: 235px;
     clip-path: polygon(53% 15%, 100% 0, 100% 43%, 100% 78%, 100% 100%, 32% 100%, 0 100%, 0% 43%, 0 0);
}
 .footer-area .footer-widget .footer-logo img {
     margin-bottom: 25px;
     width: 40%;
}
 .footer-area .footer-widget p {
     color: #fff;
     margin-bottom: 18px;
}
 .footer-area .footer-widget .footer-social a i {
     color: #ff7c00;
     font-size: 16px;
     margin-right: 10px;
     transition: 0.5s;
}
 .footer-area .footer-widget .footer-social a i:hover {
     color: #fff;
}
 .footer-area .footer-widget h3 {
     color: #fff;
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 40px;
     display: inline-block;
     position: relative;
     padding-bottom: 5px;
}
 .footer-area .footer-widget h3::before {
     position: absolute;
     content: '';
     background: #626a5b;
     width: 100%;
     height: 2px;
     bottom: -2px;
     left: 0;
}
 .footer-area .footer-widget ul {
     padding-left: 0;
     line-height: 1;
     margin-bottom: 0;
}
 .footer-area .footer-widget ul li {
     display: block;
     margin-bottom: 20px;
     transition: 0.5s;
     color: #fff;
}
 .footer-area .footer-widget ul li a {
     color: #fff;
     transition: 0.5s;
}
 .footer-area .footer-widget ul li a:hover {
     color: var(--secondary-color);
     margin-left: 2px;
}
 .footer-area .footer-widget ul li a:hover i {
     color: var(--primary-color);
}
 .footer-area .footer-widget ul li a i {
     font-size: 12px;
     top: -1px;
     position: relative;
}
 .footer-area .footer-widget ul li i {
     font-size: 12px;
     transition: 0.5s;
}
 .footer-area .footer-widget ul :last-child {
     margin-bottom: 0;
}
 .footer-area .pl-75 {
     padding-left: 75px;
}
 .footer-area .copyright-area {
     border-top: 1px solid #4a6871;
     padding: 20px 0;
     margin-top: 95px;
}
 .footer-area .copyright-area p {
     color: #fff;
     margin-bottom: 0;
}
 .footer-area .copyright-area p a {
     color: var(--secondary-color);
     display: inline-block;
}
 .footer-area .copyright-area p a:hover {
     color: var(--secondary-color);
}
 .footer-area .copyright-area .lh-1 {
     line-height: 1;
}
 .footer-area .copyright-area ul {
     margin-bottom: 0;
}
 .footer-area .copyright-area ul li {
     display: inline-block;
     margin-left: 20px;
     position: relative;
}
 .footer-area .copyright-area ul li::before {
     position: absolute;
     content: '';
     background: #fff;
     width: 5px;
     height: 5px;
     border-radius: 10px;
     right: -15px;
     top: 6px;
}
 .footer-area .copyright-area ul li a {
     color: #fff;
}
 .footer-area .copyright-area ul li a:hover {
     color: var(--primary-color);
}
 .footer-area .copyright-area ul :nth-child(2)::before {
     display: none;
}



.pagecontent{
    padding: 30px 0;
}
.pagecontent .pagedesc{
    padding: 0 0 20px;
}
.pagecontent .pagedesc h1{
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    border-radius:5px;
    margin: 0 0 5px;
}

.pagecontent .pagedesc h2{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
}
.pagecontent .pagedesc h3{
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.pagecontent .pagedesc h3:after{
    content: "";
    width: 80px;
    height: 1px;
    background: #888;
    position: absolute;
    top: 50%;
    right: -90px;
    transform: translateY(-50%);
    z-index: 1
}

.pagecontent .pagedesc h4{
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0 10px;
}
.pagecontent .pagedesc h5{}
.pagecontent .pagedesc h6{}
.pagecontent .pagedesc ul{
    padding: 0 0 20px 20px;
}
.pagecontent .pagedesc ul li > ul{
    padding: 0 0 0 30px;
}
.pagecontent .pagedesc ul li{
    color: #666;
    position: relative;
    z-index: 1;
}
.pagecontent .pagedesc ul li:before{
    content: "";
    width: 8px;
    height: 8px;
    background: var(--third-color);
    position: absolute;
    top: 8px;
    left: -16px;
    border-radius: 2px;
    transform: rotate(-45deg);
}
.pagecontent .pagedesc table{
    border: 1px solid #ddd !important;
}
.pagecontent .pagedesc table thead tr th{
    background: #ddd;
}
.pagecontent .pagedesc table tbody{}

.pagecontent .pagedesc table tbody tr{}
.pagecontent .pagedesc table tbody tr td{
    border: 1px solid #ddd;
    padding: 5px;
}
.pagecontent .pagedesc .innerpage-left{

}
.pagecontent .pagedesc .innerpage-left .innerbox{
    padding: 0 0 20px;
}
.pagecontent .pagedesc .innerpage-left .innerbox h4{
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
}
.pagecontent .pagedesc .innerpage-left .innerbox ul{
    padding: 0 0 0 20px;
}
.pagecontent .pagedesc .innerpage-left .innerbox ul li{
    color: #666;
    text-align: justify;
    position: relative;
    z-index: 1;
}
.pagecontent .pagedesc .innerpage-left .innerbox ul li:before{
    content: "";
    width: 8px;
    height: 8px;
    background: var(--third-color);
    position: absolute;
    top: 8px;
    left: -16px;
    border-radius: 2px;
    transform: rotate(-45deg);
}
.pagecontent .pagedesc .innerpage-left .innerbox ul li span{
    color: #444;
    font-weight: 600;
}
.pagecontent .pagedesc .innerpage-left .innerbox ul li:before{
    content: "";
}
.pagecontent .pagedesc ul li,
.pagecontent .pagedesc p{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
.pagecontent .pagedesc ul li strong{
    font-weight: 600;
    color: #333;
}
.pagecontent .pagedesc p{
    font-size: 16px;
    font-weight: 500;
    color:#666;
    line-height: 1.5;
    padding: 0 0 10px;
}
.pagecontent .pagedesc-side{background: #fdba123d;padding: 20px;border-radius: 10px;}

.pagecontent .pagedesc-side .choosewhy h3{
    color: #000;
    font-size: 20px;
    display: inline-block
}
.pagecontent .pagedesc-side .choosewhy h3:after{
    width: 30px;
    right: -40px;
    display: none;
}
.pagecontent .pagedesc-side .choosewhy span{
    font-weight: 500;
    color:black;
}
.pagecontent .pagedesc-side .choosewhy ul{
}
.pagecontent .pagedesc-side .choosewhy li{
        color: #666;
        font-size: 15px;
        padding: 0 0 10px;
}
.pagecontent .pagedesc-side .getstarted{
    padding: 20px 0 0;
}
.pagecontent .pagedesc-side .getstarted h3{}
.pagecontent .pagedesc-side .getstarted h3:after{
    display: none;
}

.pagecontent .pagedesc-side .getstarted p{
    font-size: 15px;
    padding: 0 0 10px;
    }
.pagecontent .pagedesc-side .getstarted strong{
      font-weight: bold;
    color:black;
}

.pagecontent .pageservice-benefit{
   display: flex;
   justify-content: space-between;
   align-items: start;
   padding: 15px;
   background: #F8F9E6;
   margin: 0 0 30px;
   gap: 25px;
   flex-wrap: wrap;
}

.pagecontent .pageservice-benefit .pagebox{
    flex-basis: 48%;
}
.pagecontent .pageservice-benefit .pagebox h4{
    font-size: 18px;
    font-weight: 500;
    padding: 0 0 10px;
}
.pagecontent .pageservice-benefit .pagebox h3{}
.pagecontent .pageservice-benefit .pagebox ul{padding-left: 10px;}
.pagecontent .pageservice-benefit .pagebox ul li{
    color: #666;
    padding: 0 0 5px;
}
.pagecontent .pageservice-benefit .pagebox ul li:before{
    content: "";
    width: 5px;
    height: 5px;
    display: inline-block;
    border: 1px solid #666;
    border-radius: 50%;
    transform: translateY(-2px) translateX(-10px);
}


.pagecontent .pagedesc ul li span{
    color:#444;
    font-weight:bold;

}


.pagecontent .pagedesc .pagesteps .stepsno{background: #aaa;width: 80px;aspect-ratio: 1 / 1;border-radius: 10px;position: absolute;top: 50%;right: 20px;transform: translateY(-50%);display: flex;flex-direction: column;align-items: center;justify-content: center;}
.pagefaqs{}
.pagefaqs .faqsbox{
    padding: 0 0 20px;
}
.pagefaqs .faqsbox h3{
    color: #444;
    margin: 0 0 5px;
}
.pagesteps{
    padding: 0 0 30px;
}
.pagesteps h2{}
.pagesteps .stepsbox{
    background: #eee;
    padding: 15px;
    border-radius: 10px;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
    height: 110px;
}
.pagesteps .stepsbox:nth-child(even){
    text-align: left;
    padding-left: 120px;
}
.pagesteps .stepsbox:nth-child(even) .stepsno{
    background: #aaa;
    width: 80px;
    aspect-ratio: 1/1;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pagesteps .stepsbox:nth-child(odd){
    text-align: right;
    padding-right: 120px;
}
.pagesteps .stepsbox .stepsno{}
.pagesteps .stepsbox .stepsno span{}
.pagesteps .stepsbox .stepsno span:nth-child(1){
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}
.pagesteps .stepsbox .stepsno span:nth-child(2){
    font-weight: 500;
    line-height: 1;
}
.pagesteps .stepsbox h4{
    font-size: 18px;
    font-weight: 600;
}
.pagesteps .stepsbox p{
    font-size: 15px;
}

.successstory{}
.successstory h2{}
.successstory ul{
    padding: 0 0 30px;
}
.successstory ul li{}
.successstory ul li span{}

.footer-social{
    justify-content: start;
    margin: 20px 0;
}



.trainingpage{
    padding: 0 0 20px;
}
.trainingpage h1{
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    border-radius: 5px;
    margin: 0 0 15px;
}
.trainingpage h2{
    font-size: 26px;
    font-weight: 600;
    color: #222;
    border-radius: 5px;
    margin: 0 0 15px;
}
.trainingpage p{
    font-size: 16px;
    font-weight: 500;
    color: #666;
    line-height: 1.5;
}
.trainingcontent{}
.trainingcontent > p{
    font-size: 16px;
    font-weight: 500;
    color: #666;
    line-height: 1.5;
    padding: 0 0 20px;
}
.trainingcontent > .innercontent{}
.trainingcontent > .innercontent h2{
    font-size: 26px;
    font-weight: 600;
    color: #222;
    border-radius: 5px;
    margin: 0 0 15px;
}
.trainingcontent > .innercontent h3{color: #000;font-size: 20px;font-weight: 600;margin: 0 0 10px;position: relative;z-index: 1;display: inline-block;}
.trainingcontent > .innercontent ul{}
.trainingcontent > .innercontent > ul > li{
    font-size: 16px;
    font-weight: 500;
    color: #666;
    line-height: 1.5;
    padding: 0 0 10px;
}
.trainingcontent > .innercontent p{
    font-size: 16px;
    font-weight: 500;
    color: #666;
    line-height: 1.5;
    padding: 0 0 5px;
}
.trainingcontent > .innercontent p span{}
.trainingcontent > .innercontent p ul{}
.trainingcontent > .innercontent p ul li{}
.innertrainingcontent{}
.innertrainingcontent h2{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    border-radius: 5px;
    padding: 10px;
    margin: 0 0 20px;
}
.innertrainingcontent .innerbox{
    padding: 0 0 20px;
}
.innertrainingcontent .innerbox h3{
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.innertrainingcontent .innerbox p{
    font-size: 16px;
    color: #666;
    text-align: justify;
    position: relative;
    z-index: 1;
    padding: 0 0 5px;
}
.trainingcontent > .innercontent > .innerbox{}
.trainingcontent > .innercontent > .innerbox h3{}
.trainingcontent > .innercontent > .innerbox h4{
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    position: relative;
    z-index: 1;
}
.trainingcontent > .innercontent > .innerbox ul{}
.trainingcontent > .innercontent > .innerbox ul li{}
.trainingcontent > .innercontent > .innerbox ul li span{}
.trainingpage-right{}
.trainingpage-right .pagerightside{
    box-shadow: 0 0 10px 3px rgb(0 0 0 / 11%);
    border-radius: 10px;
    padding: 20px;
    margin: 0 0 20px;
}
.trainingpage-right .pagerightside h3{
    font-size: 18px;
    font-weight: 700;
    padding: 0 0 10px;
}
.trainingpage-right .pagerightside p{
    font-size: 15px;
    color: #666;
    position: relative;
    z-index: 1;
    padding: 0 0 5px;
}
.trainingpage-right .pagerightside ul{}
.trainingpage-right .pagerightside ul li{
    font-size: 15px;
    color: #666;
    position: relative;
    z-index: 1;
    padding: 0 0 5px;
}
.trainingpage-right .pagerightside ul li span{
    color: #444;
    font-weight: 500;
}

/* service home section style start */

.servicesection {
    padding: 50px 0;
}

.servicesection .section-title {
    margin: 0 auto 45px;
    text-align: center;
    width: 50%;
}

.servicesection .section-title span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.servicesection .section-title h2 {
    font-weight: 700;
    font-size: 40px;
}

.servicesection .servicesectionbox {
    cursor: pointer;
    margin: 0 10px 30px;
}

.servicesection .servicesectionbox .serviceimg {
    position: relative;
    overflow: hidden;
}

.servicesection .servicesectionbox .serviceimg:before {
    position: absolute;
    content: "";
    background: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
}

.servicesection .servicesectionbox:hover .serviceimg .servicetext {
    bottom: 0;
}

.servicesection .servicesectionbox .serviceimg img {
    width: 100%;
}

.servicesection .servicesectionbox .serviceimg .servicetext {
    position: absolute;
    bottom: -68px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    transition: 0.5s;
    background: rgba(0, 0, 0, 0.5);
}

.servicesection .servicesectionbox .serviceimg .servicetext h3 {
    color: #FFFFFF;
    font-weight: 500;
    padding: 15px 0 15px;
    margin-bottom: 0px;
    font-size: 18px;
}

.servicesection .servicesectionbox .serviceimg .servicetext .servicebtn {
    font-size: 14px;
    font-weight: 500;
    background: #fb7a00;
    color: #FFFFFF;
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid transparent;
}
.servicesection .servicesectionbox .serviceimg .servicetext .servicebtn:hover {
    border: 1px solid #FFFFFF;
    background: transparent;
}

.servicesection .servicesectionbox .serviceimg .servicetext .servicebtn i {
    font-size: 10px;
}

.servicesection .slick-prev,
.servicesection .slick-next,
.trainingsection .slick-prev,
.trainingsection .slick-next {
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    transition: all .3s ease;
}

.servicesection .slick-prev:before,
.servicesection .slick-next:before,
.trainingsection .slick-prev:before,
.trainingsection .slick-next:before {
    font-family: 'FontAwesome';
    color: #ffffff;
}

.servicesection button.slick-prev, .trainingsection button.slick-prev {
    left: -1%;
}

.slick-slide {
    height: auto !important;
}

.servicesection button.slick-next, .trainingsection button.slick-next {
    right: -1%;
}

.servicesection button.slick-next::before, .trainingsection button.slick-next::before {
    content: '';
}

.servicesection button.slick-prev::before, .trainingsection button.slick-prev::before {
    content: '';
}

.servicesection .slick-prev:hover, 
.servicesection .slick-prev:focus, 
.servicesection .slick-next:hover, 
.servicesection .slick-next:focus,
.trainingsection .slick-prev:hover, 
.trainingsection .slick-prev:focus, 
.trainingsection .slick-next:hover, 
.trainingsection .slick-next:focus{
    color: #fff;
    outline: none;
    background: var(--primary-color);
    border-color: var(--primary-color);
}


/* service home section style start */

/* training section style start */

.trainingsection {
    padding: 50px 0;
    border: 1px solid #eee;
}

.trainingsection .section-title {
    margin: 0 auto 45px;
    text-align: center;
    width: 50%;
}

.trainingsection .section-title span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.trainingsection .section-title h2 {
    font-weight: 700;
    font-size: 40px;
}

.trainingsection .section-title p {}

.trainingsection .trainingbox {
    text-align: center;
    box-shadow: 0px 2px 20px 0px rgb(12 0 46 / 11%);
    padding: 30px 20px;
    transition: 0.5s;
    position: relative;
    background: #fff;
    z-index: 1;
    margin: 0 10px;
}

.trainingsection .trainingbox .icon {
    padding: 20px 20px 20px;
}

.trainingsection .trainingbox .icon img {
    width: 100%;
}

.trainingsection .trainingbox h3 {
    font-weight: 600;
    margin-bottom: 10px;
    transition: 0.5s;
    font-size: 18px;
    margin-bottom: 10px;
    transition: .5s;
    color: var(--primary-color);
}

.trainingsection .trainingbox p {
    margin-bottom: 0;
    font-size: 16px;
    transition: 0.5s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}
.trainingsection .trainingbox a {
    transition: all .3s ease;
    color: var(--third-color);
    font-size: 18px;
    font-weight: 600;
    margin: 20px auto 10px;
    background: var(--secondary-color);
    width: max-content;
    color: #fff;
    padding: 5px 20px;
    border-radius: 5px;
}
.trainingsection .trainingbox a:hover {
    background: var(--primary-color);
}
/* training section style end */

/* testimonial section style start */

.testimonial-section {
    background: var(--primary-color);
}

.testimonial-section .testimonial-slider {
    text-align: center;
    position: relative;
    z-index: 0;
}
.testimonial-section .testimonial-slider:before {
    position: absolute;
    content: "";
    background: #FFFFFF;
    width: 85%;
    height: 85%;
    left: 0;
    z-index: -1;
    margin: auto;
    right: 0;
    bottom: -20px;
    z-index: -1;
    border-radius: 30px;
}

.testimonial-section .testimonial-slider .slider-items {
}

.testimonial-section .testimonial-slider .slider-items img {
    max-width: 100px;
    height: 100px;
    width: unset;
    margin: 0 auto 20px;
    right: 0;
    left: 0;
    border: 3px solid #fb7a00;
    border-radius: 50%;
    padding: 0px;
    background: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.testimonial-section .testimonial-slider .slider-items h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--primary-color);
}

.testimonial-section .testimonial-slider .slider-items span {
    color: #fe6219;
    font-size: 16px;
    margin-bottom: 20px;
    display: inline-block;
}

.testimonial-section .testimonial-slider .slider-items p {padding: 0 70px 20px 70px;font-size: 16px;font-family: var(--primary-font);font-weight: 500;}

.testimonial-section .testimonial-image {
    background-position: center center;
    background-size: cover;
    height: 100%;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.testimonial-section .slick-prev,
.testimonial-section .slick-next{
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    transition: all .3s ease;
}

.testimonial-section .slick-prev:before,
.testimonial-section .slick-next:before {
    font-family: 'FontAwesome';
    color: #ffffff;
}

.testimonial-section button.slick-prev {
    left: -1%;
}

.slick-slide {
    height: auto !important;
}

.testimonial-section button.slick-next {
    right: -1%;
}

.testimonial-section button.slick-next::before {
    content: '';
}

.testimonial-section button.slick-prev::before {
    content: '';
}

.testimonial-section .slick-prev:hover, 
.testimonial-section .slick-prev:focus, 
.testimonial-section .slick-next:hover, 
.testimonial-section .slick-next:focus{
    color: #fff;
    outline: none;
    background: var(--primary-color);
    border-color: var(--primary-color);
}


/* testimonial section style end */

.phoneicon {
    width: 50px;
    height: 50px;
    display: inline-block;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9;
    background: #2196F3;
    border-radius: 50%;
    text-align: center;
    padding-top: 6px;
    font-size: 26px;
    color: #fff;

}
.whatsappicon {
    width: 50px;
    height: 50px;
    display: inline-block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
}
.whatsappicon img {
    width: 100%;
}
