/*
    Template  Name: Garden
*/

/*
Table Of Content

1. header top area

2. main menu area

3. slider area

4. video slider area  

5. breadcum area

6. feature area

7. about area

8. service area

9. team area

10. project img area

11. testimonial area

12. pricing area

13. counter area

14. call to action

15. contact area

16. work area

17. subscribe area

18. shop area

19. offer area

20. video area

21. contact service

22. faq area

23. map area

24. blog area

25.  brand area

26. footer area

*/

/* ======= site font family ==========*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,400..700&family=Libre+Baskerville:wght@400;700&display=swap');
:root{
    --blackc: #000;
    --whitec: #fff;
    --bgcolor: #4b5a41;
    --bg2color: #F7F7F7;
    --brcolor: #489f0f;
    --paracolor: #555;
    --titlecolor: #333;
}

/* defult css */
body{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
    color: var(--paracolor);
}
h1,h2,h3,h4,h5,h6,h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{
    font-size: 20px;
    font-weight: 700;
    color: var(--titlecolor);
    line-height: 1.2;
    font-family: "Libre Baskerville", serif;
    padding: 0;
    margin-bottom: 10px;
    
}
h1{
    font-size: 30px;
}
h2{
    font-size: 20px;
}
h3{
    font-size: 18px;
}
h4{
    font-size: 17px;
}
h5{
    font-size: 16px;
}
h6{
    font-size: 15px;
}
a{
    font-size: 15px;
    font-weight: 500;
    text-decoration: none !important;
    color: var(--blackc);
    transition: .5s;
}
a:hover{
    color: var(--brcolor);
}
/* highlight color css */
.highlight{
    color: var(--brcolor);
}
/*======= header top area start =====*/
.header_top_area {
    margin: 0 95px;
    padding: 9px 80px 13px;
    background-color: var(--brcolor);
    border-radius: 0px 0px 10px 10px;
}
/* header left */
.header_left span, .header_right span, .header_left a{
    font-size: 15px;
    font-weight: 500;
    color: var(--whitec);
}
.header_left span, .header_left a {
    margin: 0 22px 0 0;
}
.header_left span i,
.header_left a i{
    color: var(--whitec);
    margin-right: 6px;
}
/* header right */
.header_right a {
    display: inline-block;
    margin: 0 0 0 10px;
    font-size: 15px;
    border: 1px solid var(--whitec);
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 30px;
    color: var(--whitec);
}
.header_right a:hover{
    background-color: var(--bgcolor);
    color: var(--whitec);
}
.header_right span i{
    margin-right: 5px;
}
/*======= header top area end ======*/

/*======== main menu area start ==========*/
.main_menu_area {
    padding: 0px 170px;
}
.main_menu_area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgb(0 0 0 / 70%);
}
.main_menu_area .sticky_logo{
    display: none;
}
.main_menu_area.sticky .main_logo{
    display: none;
}
.main_menu_area.sticky .sticky_logo{
    display: block;
}
.main_menu_area.sticky .inner_main_nav_area >ul >li >a{
    color: var(--whitec);
}
.main_menu_area.sticky .inner_main_nav_area >ul >li >a:hover{
    color: var(--brcolor);
}
.main_menu_area.sticky .inner_main_nav_area >ul >li >a i{
    color: var(--whitec);
}
.main_menu_area.sticky .main_nav_icons >i{
    color: var(--whitec);
}
.main_menu_area.sticky .main_nav_right_text h3,
.main_menu_area.sticky .main_nav_right_text h3 a{
    color: var(--whitec);
}
.site_logo_area{
    margin-right: 15px;
}
/* main nav area css */
.main_nav_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main_menu_all_item {
    position: relative;
    align-items: center;
}
/* inner main nav area css */
.inner_main_nav_area ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.inner_main_nav_area >ul >li {
    display: inline-block;
    position: relative;
}
.inner_main_nav_area >ul >li >a {
    display: inline-block;
    margin: 35px 18px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.inner_main_nav_area >ul >li >a>i {
    font-size: 14px;
    font-weight: 700;
    margin-left: 5px;
}
.inner_main_nav_area >ul> li> a:hover{
    color: var(--brcolor);
}
/* main nav icons together */
.main_nav_right_together {
    display: flex;
    align-items: center;
}
/* drop down menu css */
.inner_main_nav_area ul li .sub_menu{
    position: absolute;
    top: 130%;
    left: 0;
    width: 250px;
    text-align: left;
    margin: 0;
    padding: 15px 5px 14px;
    z-index: 9999;
    box-shadow: 0 0 30px rgb(0 0 0 / 9%);
    background-color: var(--whitec);
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.inner_main_nav_area ul li .sub_menu li{
    position: relative;
}
.inner_main_nav_area ul li .sub_menu li a {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 17px;
    text-transform: uppercase;
}
.inner_main_nav_area ul li .sub_menu li a:hover{
    color: var(--brcolor);
    margin-left: 5px;
}
.inner_main_nav_area >ul >li:hover .sub_menu{
    top: 100%;
    opacity: 1;
    visibility: visible;
}
.inner_main_nav_area .sub_menu >li > ul.sub_menu{
    top: 130%;
    left: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.inner_main_nav_area ul li .sub_menu li:hover  ul.sub_menu{
    top: 0;
    opacity: 1;
    visibility: visible;
}
/* main menu socail css */
.main_menu_socail a{
    display: inline-block;
    font-size: 22px;
    height: 35px;
    line-height: 35px;
    margin: 0 3px;
    width: 35px;
    border-radius: 100%;
    text-align: center;
    background-color: var(--brcolor);
    color: var(--whitec);
}
.main_menu_socail a:hover{
    background-color: var(--bgcolor);
    color: var(--whitec);
}
/* main nav icons together */
.gogrin_right_area {
    display: flex;
    align-items: center;
}
.main_nav_icons_together {
    display: flex;
    align-items: center;
}
/* main nav icons */
.main_nav_icons {
    margin-left: 10px;
}
.main_nav_icons >i {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 100%;
    background-color: var(--brcolor);
    color: var(--whitec);
    font-size: 17px;
    cursor: pointer;
    transition: .5s;
}
.main_nav_icons >i:hover{
    background-color: var(--bgcolor);
    color: var(--whitec);
}
/* nav icon popup css */
.nav_icon_popup {
    position: fixed;
    top: -110%;
    left: 0%;
    background: #000000f0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
}
.nav_icon_popup.icon_popup {
    opacity: 1;
    visibility: visible;
    top: 0;
}
/* inner nav icon popup */
.inner_nav_icon_popup {
    width: 47%;
    margin: 0 auto;
    position: relative;
}
.inner_nav_icon_popup input{
    font-size: 30px;
    font-weight: 500;
    padding: 17px 40px 15px 15px;
    width: 100%;
    border: none;
    outline: none;
    box-shadow: 0px 0px 30px 0px #dddddd45;
    background: var(--whitec);
    border-radius: 10px;
}
.inner_nav_icon_popup input::placeholder{
    font-size: 30px;
}
/* inner nav popup form icons css */
.inner_nav_popup_form_icons {
    position: absolute;
    top: 35%;
    right: 10px;
    transform: translateY(-50%);
}
.inner_nav_popup_btnicon{
    font-size: 40px;
    border: none;
    outline: none;
    background: none;
}
.inner_nav_icon_popup i{
    display: inline-block;
    margin-top: 10px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 100%;
    background-color: var(--whitec);
    color: var(--blackc);
    font-size: 25px;
    cursor: pointer;
    transition: 1s;
}
/* main nav icons middle css */
.main_nav_icons_middle {
    margin-left: 18px;
    position: relative;
}
.main_nav_icons_middle a {
    position: relative;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    display: inline-flex;
    background: var(--whitec);
    box-shadow: 0 0 5px #64333338;
    border-radius: 100%;
}
.main_nav_icons_middle a span {
    position: absolute;
    top: 0;
    right: -5px;
    width: 18px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    background-color: var(--brcolor);
    border-radius: 100%;
    color: var(--whitec);
}
.main_nav_middle_box_item {
    overflow: scroll;
    position: absolute;
    right: 0;
    top: 130%;
    width: 300px;
    height: 300px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background-color: var(--whitec);
    transition: .5s;
}
.main_nav_icons_middle:hover .main_nav_middle_box_item{
    top: 180%;
    opacity: 1;
    visibility: visible;
}
.main_nav_middle_box_item p{
    padding: 20px;
}
/* main nav btn css */
.main_nav_btn {
    margin-left: 20px;
}
.main_nav_btn a {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 15px;
    background-color: var(--brcolor);
    color: var(--whitec);
}
.main_nav_btn a:hover{
    background-color: var(--bgcolor);
    color: var(--whitec);
}
/* absolute menu css */
.absolute_menu {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    padding: 0 115px 0;
    border: none;
}
.absolute_menu .inner_main_nav_area >ul >li >a{
    color: var(--whitec);
    margin: 35px 0px 35px 25px;
}
/* home 2 main menu */
.h2_main_menu .main_nav_area{
    justify-content: end;
}
/*======== main menu area end ==========*/

/*======== mobile menu area start ==========*/
.mobile_logo_area{
    padding: 20px 0;
    display: none !important;
}
.mean-container a.meanmenu-reveal {
    display: none !important;
}
.mean-container .mean-nav > ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}
.mean-container .mean-bar {
    background: #fff;
    padding: 0;
}
.mean-container .mean-nav ul li {
    border-top: 0px solid #ddd;
}
.mean-container .mean-nav ul li li a,
.mean-container .mean-nav ul li a {
    color: #444;
}
.mean-container .mean-nav ul li li a {
    border-top: 1px solid #ddd;
}
.mean-container .mean-nav ul li a:hover {
    color: #ff4a17;
}
.mobile_p {
    position: fixed;
    right: 0;
    width: 300px;
    padding: 80px 20px 0px;
    overflow-y: scroll;
    top: 0;
    height: 100%;
    z-index: 9999;
    display: block;
    transition: 0.5s all;
    box-shadow: 0 0 30px rgb(0 0 0 / 7%);
    transform: translateX(100%);
    background: var(--whitec);
}
.tx-s-open {
    transform: translateX(0);
}
.mobile_p .tuetion_theme_widget > div.widget_block {
    padding: 0;
}
.mobile_p .tuetion_theme_widget > div {
    padding: 20px 0px 20px;
    box-shadow: none;
}
.mean-container .mean-nav ul li a {
    border: 0;	
    width: 100%;
    border-top: 1px solid #ddd;	
    font-size: 14px;
    padding: 12px 5px;
    font-weight: 500;
    display: block;
}
.mean-container .mean-nav ul li a.mean-expand {
    width: auto;
}
.mobile_opicon {
    text-align: right;
    padding: 4px 0;
}
.mean-container .mean-nav > ul > li:first-child > a {
    border-top: 0;
}
.mobilemenu_con {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile_menu_o  i {
    font-size: 26px;
}
.mobile_menu_content .mobile_menu_logo {
    margin-bottom: 20px;
}
.mobile_cicon {
    position: absolute;
    right: 30px;
    top: 50px;
}
.mobile_overlay {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    visibility: hidden;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease-out 0s;
}
.mobile_overlay.mactive {
    opacity: 1;
    visibility: visible;
}
/*======== mobile menu area end ==========*/

/*======== slider area start  ==========*/
.inner_slider_area {
    height: 950px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex !important;
    align-items: center;
    position: relative;
}
.inner_slider_content {
    width: 64%;
    margin: 0 auto 0;
    text-align: center;
}
.inner_slider_content h1 {
    color: var(--whitec);
    font-family: "Inter", Sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}
.inner_slider_content h2 {
    font-size: 80px;
    color: var(--whitec);
}
.inner_slider_content p {
    width: 55%;
    font-size: 15px;
    color: var(--whitec);
    margin: 0px auto 45px;
}
/* home 2 inner slider */
.h2_inner_slider .inner_slider_content {
    width: 59%;
    text-align: left;
    margin: -60px auto 0;
}
.h2_inner_slider .inner_slider_content h2{
    font-size: 72px;
    margin: 0;
}
.h2_inner_slider .inner_slider_content p {
    margin: 15px 0 45px;
}
/* home 3 all slider css */
.h3_all_slider {
    padding: 0 165px;
    background: var(--bg2color);
}
.h3_inner_slider{
    height: 699px;
}
/* golobal btn css */
.g_btn a {
    display: inline-block;
    position: relative;
    padding: 18px 45px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    background-color: var(--brcolor);
    color: var(--whitec);
    text-transform: uppercase;
    margin-right: 15px;
    overflow: hidden;
    z-index: 1;
}
.g_btn a.active{
    background: transparent;
    border: 1px dashed var(--whitec);
}
.g_btn a::before, .g_btn a::after {
    content: "";
    position: absolute; 
    top: 0;
    right: 0;
    background-color: var(--bgcolor);
    width: 0;
    height: 0;
    border-radius: 0 0 0 100px;
    transition: .5s;
    z-index: -1;
}
.g_btn a:hover::before{
    width: 100%;
    height: 100%;
    border-radius: 0 0 0 0px;
}
/* golobal slick defult arrow css */
.slick-prev , .slick-next{
    position: absolute;
    top: 50%;
    width: 55px;
    height: 55px;
    line-height: 55px;
    z-index: 9999;
    outline: none;
    border: none;
    font-size: 0;
    background: none;
    transform: translateY(-50%);
    transition: 1s;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}
.slick-prev{
    left: -60px;
}
.slick-next{
    right: -40px;
}
.slick-prev::before ,.slick-next::before{
    content: '\ea93';
    font-family: IcoFont;
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 40px;
    background-color: var(--brcolor);
    color: var(--whitec);
    transition: 1s;
}
.slick-next::before{
    content: '\ea94';
}
.slick-prev:hover::before ,.slick-next:hover::before{
    background-color: var(--bgcolor);
    color: var(--whitec)
}
/* slider defult arrow css */
.slider_area:hover .slick-prev, .slider_area:hover .slick-next {
    opacity: 1;
    visibility: visible;
}
.slider_area .slick-prev{
    left: 20px;
}
.slider_area .slick-next{
    right: 30px;
}
/*======== slider area end  ==========*/

/*======== breadcum area start  ==========*/
.breadcum_area {
    background-size: cover;
    background-position: center center;
    padding: 60px 0;
}
.inner_breadcum_area h1{
    color: var(--whitec);
}
.inner_breadcum_area ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.inner_breadcum_area ul li{
    display: inline-block;
    color: var(--whitec);
}
.inner_breadcum_area ul li a{
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: var(--whitec);
}
.inner_breadcum_area ul li i, .inner_breadcum_area ul li a i {
    font-size: 22px;
}
/*======== breadcum area end  ==========*/

/*======== video slider area start  ==========*/
.video_slider_area{
    position: relative;
    height: 100%;
    overflow: hidden;
}
.video_slider_area::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #00000057;
}
.witr_youtube_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -99;
    transform: scale(1.2);
}
.witr_youtube_video iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.video_slider_area .inner_slider_content h1,
.video_slider_area .inner_slider_content h2,
.video_slider_area .inner_slider_content h3,
.video_slider_area .inner_slider_content p{
    color: var(--whitec);
}
/*======== video slider area end  =======*/

/*======== feature area start =======*/
.feature_area {
    position: relative;
    margin-top: -90px;
}
.feature_border{
    border: 5px solid var(--brcolor);
    border-radius: 10px;
}
.single_feature {
    position: relative;
    padding: 30px 15px 35px;
    background-color: var(--whitec);
    border-right: 1px dashed;
    transition: .5s;
    z-index: 1;
}
.single_feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 0%;
    background-color: var(--brcolor);
    z-index: -1;
    transition: .5s;
}
.single_feature:hover::before{
    width: 100%;
    height: 100%;
}
.single_feature.border_none{
    border: none;
}
.single_fea_content img{
    margin-bottom: 20px;
    transition: .5s;
}
.single_feature:hover .single_fea_content img{
    filter: contrast(0) brightness(2);
}
/* feature btn css */
.single_fea_btn a {
    display: inline-block;
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--whitec);
    font-size: 27px;
    font-weight: 900;
    background-color: var(--brcolor);
    border-radius: 50px 50px 50px 50px;
}
.single_feature:hover .single_fea_content h2 a{
    color: var(--whitec);
}
/*======== feature area end =======*/

/*======== home 2 feature start =======*/
.h2_feature_area {
    position: relative;
    margin-top: -60px;
    z-index: 99;
}
/* design planting feature */
.design_planting_feature{
    padding: 120px 0 0px;
    margin-top: 0px;
}
.h2_feature_box {
    background-color: var(--bg2color);
    padding: 30px 20px 10px;
    border-radius: 10px;
}
.h2_single_feature {
    display: flex;
    margin-bottom: 20px;
}
.h2_sin_feature_icon{
    margin-right: 25px;
}
.h2_sin_feature_content {
    overflow: hidden;
    width: 70%;
}
.h2_sin_feature_content h2 a{
    font-size: 18px;
}
.h2_sin_feature_content p{
    margin: 0;
}
/*======== home 2 feature end =======*/

/*======== home 3 feature start =======*/
.h3_feature_area{
    padding: 120px 0 50px;
}
.h3_single_feature {
    display: flex;
    align-items: center;
    padding: 22px 20px 25px;
    border: 2px dashed var(--bgcolor);
    border-radius: 10px 10px 10px 10px;
    margin-bottom: 20px;
    transition: .5s;
}
.h3_single_feature:hover{
    border: 2px dashed var(--brcolor);
}
.h3_sin_feature_icon{
    margin-right: 10px;
}
.h3_sin_feature_icon i{
    font-size: 50px;
    color: var(--bgcolor);
    transition: .5s;
}
.h3_single_feature:hover .h3_sin_feature_icon i{
    color: var(--brcolor);
}
.h3_sin_feature_content p{
    margin: 0;
}
/*======== home 3 feature end =======*/

/*======= about area start ========*/
.about_area{
    padding: 130px 0 50px;
    position: relative;
    z-index: 11;
}
.inner_about_img{
    margin-bottom: 20px;
    position: relative;
}
.section_title_area {
    position: relative;
    margin-bottom: 55px;
}
.section_title_area.margin_0{
    margin-bottom: 0;
}
.section_title_area h2{
    font-size: 14px;
    font-weight: 600;
    font-family: Inter, sans-serif;
    color: var(--brcolor);
}
.section_title_area h3{
    font-size: 40px;
}
.section_title_area p{
    font-size: 14px;
}
.section_title_area.style2 p {
    width: 50%;
    margin: 13px auto 0;
}
.section_title_area.white_fff h3,
.section_title_area.white_fff p{
    color: var(--whitec);
}
.section_back_img {
    position: absolute;
    top: -40px;
    right: 0;
    left: 0;
    z-index: -1;
    animation: witr_movelr_box45 5s linear 1s infinite alternate running;
}
/* inner about feature css */
.inner_about_feature {
    display: flex;
    margin: 35px 0 10px;
}
.inner_ab_feat_icon {
    margin-right: 20px;
}
.inner_ab_feat_title {
    width: 85%;
}
.inner_ab_feat_title p{
    margin: 0;
}
/* inner about video css */
.inner_about_video {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner_ab_video_popup a{
    display: inline-block;
    position: relative;
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 28px;
    border-radius: 100%;
    text-align: center;
    background-color: var(--brcolor);
    color: var(--whitec);
    z-index: 1;
}
.inner_ab_video_popup a::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
    right: 0;
    border-radius: 100%;
    animation: witr_squares 1.5s ease-in-out infinite;
    background-color: var(--brcolor);
    color: var(--whitec);
}
@keyframes witr_squares{
	0%{-webkit-transform:scale(1);transform:scale(1);opacity:0;-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"}
	20%{-webkit-transform:scale(1.24);transform:scale(1.24);opacity:1;-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}
	100%{-webkit-transform:scale(2.1);transform:scale(2.1);opacity:0;-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"}
}

@keyframes witr_movelr_box45 {
    0%{
         transform: translateX(0px);
      }
    100%{
        transform: translateX(45px);
      }
}
@keyframes witr_movelr_box46 {
    0%{
         transform: translateY(0px);
}
    100%{
        transform: translateY(45px);
}
}
.about_shap {
    position: absolute;
    top: 0;
    left: 100px;
    z-index: -1;
    animation: witr_movelr_box45 5s linear 1s infinite alternate running;
}
/* home 2 about css */
.h2_inner_about_video {
    position: absolute;
    top: 50%;
    left: 42%;
    transform: translate(-50%, -50%);
}
.h2_inner_about_video a{
    display: inline-block;
    position: relative;
    width: 75px;
    height: 75px;
    line-height: 75px;
    font-size: 23px;
    border-radius: 100%;
    text-align: center;
    animation: witr-shadow 1s linear infinite;
    background-color: var(--brcolor);
    color: var(--whitec);
    z-index: 1;
}
.h2_about_list {
    padding: 30px 0 0;
    display: flex;
}
.h2_about_list ul{
    padding: 0;
    list-style: none;
    margin: 0 80px 0 0;
}
.h2_about_list ul li {
    padding: 0 0 18px;
}
.h2_about_list ul li img{
    margin-right: 10px;
}
/* about creator css */
.h2_about_creator {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.h2_about_creat_name p{
    font-size: 15px;
    font-weight: 600;
    color: var(--titlecolor);
    margin: 0;
}
.h2_about_creat_name h3{
    color: var(--brcolor);
}
/*======= about area end ========*/

/*======= service area start =======*/
.service_area{
    padding: 50px 0 50px;
    position: relative;
}
.single_service {
    position: relative;
    display: flex;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.11);
    background-color: var(--whitec);
    border-radius: 10px 10px 10px 10px;
    padding: 40px 28px 40px;
    margin-bottom: 20px;
    z-index: 1;
}
.single_service::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2%;
    height: 5%;
    border-radius: 0 0 0 100px;
    transition: .5s;
    z-index: -1;
    background-color: var(--brcolor);
}
.single_service:hover::before{
    width: 100%;
    height: 100%;
    border-radius: 0 0 0 0px;
}
/* service icon css */
.single_service_icon {
    margin: 10px 30px 0 0;
}
.single_service_icon i{
    display: inline-block;
    background-color: var(--brcolor);
    color: var(--whitec);
    font-size: 70px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 0px 100px 100px 100px;
    transition: .5s;
}
.single_service:hover .single_service_icon i{
    transform: rotate(90deg);
    background-color: var(--whitec);
    color: var(--brcolor);
}
.single_service:hover p{
    transition: .5s;
}
.single_service:hover h2 a,
.single_service:hover p,
.single_service:hover .single_ser_btn a{
    color: var(--whitec);
}
/* service btn */
.single_ser_btn a{
    font-size: 13px;
    color: var(--brcolor);
}
/* service absolute icon */
.single_ser_ab_icon {
    position: absolute;
    top: 35px;
    right: 50px;
    z-index: -1;
}
.single_ser_ab_icon i{
    font-size: 150px;
    color: #489F0F1A;
}
/* service shap css */
.service_left_shap {
    position: absolute;
    top: -40px;
    left: 50px;
    z-index: -1;
    animation: witr_movelr_box46 5s linear 1s infinite alternate running;
}
.service_right_shap {
    position: absolute;
    top: -45%;
    right: 0;
    z-index: -1;
    animation: witr_movelr_box45 5s linear 1s infinite alternate running;
}
/*======= service area end =======*/

/*======== home 2 service start  ==========*/
.h2_service_area {
    margin: 50px 0 0;
    padding: 130px 0 110px;
    background: var(--bg2color);
}
.h2_single_service {
    position: relative;
    width: 100%;
    height: 360px;
    margin-bottom: 20px;
}
.h2_single_service_front, .h2_single_service_back{
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.11);
    transform: perspective(1000px) rotateY(0deg);
    transition: 1s;
    background-color: var(--whitec);
}
/* single service front css */
.h2_single_service_ss_front_3d {
    width: 100%;
    padding: 0 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.h2_single_service_ss_front_3d i,
.h2_single_service_ss_back_3d i{
    display: inline-block;
    color: var(--brcolor);
    font-size: 60px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 100%;
    border-style: dashed;
    border-width: 1px 1px 1px 1px;
    border-color: var(--brcolor);
}
.h2_single_service_ss_front_3d h2 a{
    display: inline-block;
    margin: 30px 0 5px;
}
.h2_ser_btn a{
    font-size: 15px;
    color: var(--brcolor);
}
/* single service back css */
.h2_single_service_back{
    background-size: cover;
    background-repeat: no-repeat;
    transform: perspective(1000px) rotateY(-180deg);
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.h2_single_service_back::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--brcolor);
    z-index: -1;
}
/* single service back 3d css */
.h2_single_service_ss_back_3d {
    width: 100%;
    padding: 0 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.h2_single_service_ss_back_3d i{
    border-color: var(--whitec);
    color: var(--whitec);
}
.h2_single_service_ss_back_3d p{
    color: var(--whitec);
}
.h2_single_service_ss_back_3d h2 a{
    display: inline-block;
    margin-top: 30px;
    color: var(--whitec);
}
.h2_single_service_ss_back_3d .h2_ser_btn a{
    color: var(--whitec);
}
.h2_single_service:hover .h2_single_service_front{
    transform: perspective(1000px) rotateY(180deg);
}
.h2_single_service:hover .h2_single_service_back{
    transform: perspective(1000px) rotateY(0deg);
}
.single_h2_service_page{
    margin: 0px 0 0;
}
/*======== home 2 service end  ==========*/

/*======== team area start ==========*/
.team_area {
    margin: 60px 0 0px;
    background-size: cover;
    background-position: center center;
    padding: 130px 0px 500px 0px;
}
/* single page team */
.single_page_team {
    margin: 0 0;
    padding: 120px 0px 100px;
}
.inner_team_area{
    position: relative;
    margin-bottom: 20px;
}
.team_img_area{
    position: relative;
    overflow: hidden;
}
.team_img_area img{
    width: 100%;
    transition: 5s;
}
.inner_team_area:hover .team_img_area img{
    transform: scale(1.2);
}
/* team socail css */
.team_socail {
    position: absolute;
    bottom: -300px;
    right: 20px;
    display: grid;
    transition: .5s;
}
.inner_team_area:hover .team_socail{
    bottom: 75px;
}
.team_socail a{
    display: inline-block;
    margin: 5px 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    border-radius: 5px;
    background-color: var(--brcolor);
    color: var(--whitec);
}
.team_socail a:hover{
    background-color: var(--bgcolor);
    color: var(--whitec);
}
/* team overlay css */
.team_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    transition: .5s;
    background-color: var(--blackc);
    opacity: .5;
}
.inner_team_area:hover .team_overlay{
    width: 100%;
    height: 100%;
}
/* inner team content css */
.inner_team_content {
    text-align: center;
    background-color: var(--whitec);
    padding: 22px 30px;
    box-shadow: 0 0 30px 0 rgba(42, 67, 113, .15);
}
.inner_team_content p{
    margin: 0;
}
/* inner team absoute icon css */
.inner_team_absol_icon {
    position: absolute;
    bottom: 135px;
    right: 20px;
    transition: .5s;
}
.inner_team_absol_icon a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    border-radius: 5px;
    background-color: var(--brcolor);
    color: var(--whitec);
}
/*======== team area end ==========*/

/*===== project img area start  ====*/
.project_img_area {
    position: relative;
    margin-top: -390px;
    padding: 0px 0 50px;
}
/* home 2 project img */
.h2_project_img{
    margin-top: 0px;
    padding: 120px 0 50px;
    position: relative;
}
/* servic project img */
.service_project_img{
    padding: 50px 0 50px;
}
.project_width {
    max-width: 1570px;
}
.single_project_img{
    position: relative;
    overflow: hidden;
}
.inner_pro_img img{
    width: 100%;
    transition: .5s;
}
.single_project_img:hover .inner_pro_img img{
    transform: scale(1.2);
}
/* project img overlay css */
.project_img_overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blackc);
    opacity: .5;
    transform: scale(0);
    transition: .5s;
}
.single_project_img:hover .project_img_overlay{
    transform: scale(1.2);
}
/* inner project content css */
.inner_pro_content {
    position: absolute;
    text-align: center;
    background-color: var(--whitec);
    bottom: -200px;
    padding: 20px 10px 20px;
    border-radius: 5px;
    left: 30px;
    right: 30px;
    transition: .5s;
}
.single_project_img:hover .inner_pro_content{
    bottom: 30px;
}
.inner_pro_content p{
    margin: 0;
}
/* project area defult arrow css */
.project_img_area .slick-prev, .project_img_area .slick-next {
    opacity: 1;
    visibility: visible;
    top: -95px;
}
.project_img_area .slick-prev {
    left: 76%;
}
.project_img_area .slick-next {
    right: 16%;
}
/* project defult dots */
.slick-dots {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    text-align: center;
}
.slick-dots li{
    display: inline-block;
    margin: 0 5px;
}
.slick-dots li button {
    width: 40px;
    height: 8px;
    font-size: 0;
    border: none;
    outline: none;
    background-color: var(--bgcolor);
    border-radius: 10px;
    transition: .5s;
}
.slick-dots li.slick-active button{
    background-color: var(--brcolor);
}
/* project shap css */
.h2_project_left_shap, .h2_project_right_shap {
    position: absolute;
    top: 90px;
    z-index: -1;
    animation: witr_movelr_box45 5s linear 1s infinite alternate running;
}
.h2_project_left_shap{
    left: 40px;
}
.h2_project_right_shap{
    right: 30px;
}
/* home 3 project area css */
.h3_project_area{
    padding: 60px 0 50px;
    margin: 0 0;
}
.h3_project_area .single_project_img{
    border-radius: 5px;
}
.h3_project_area .slick-prev, .h3_project_area .slick-next {
    opacity: 0;
    visibility: hidden;
}
/*===== project img area end  ====*/

/*===== testimonial area start ====*/
.testimonial_area{
    position: relative;
    padding: 65px 0 50px;
}
/* about testimonial */
.about_testimonial{
    padding: 65px 0 110px;
}
.inner_testi_content{
    box-shadow: 0 0 10px 0 rgb(240 241 243);
    padding: 37px 30px 26px;
    border-top: 2px solid var(--bgcolor);
}
.inner_testi_icon {
    padding: 0 0 20px;
}
.inner_testi_icon i{
    font-size: 20px;
    color: var(--brcolor);
}
.inner_testi_content p{
    font-family: "Libre Baskerville", Sans-serif;
    font-style: italic;
}
.inner_testi_title {
    display: flex;
    align-items: center;
    margin: 30px 0 0 50px;
}
.inner_testi_title_name {
    margin: 20px 0px 0 20px;
}
.testimonial_area:hover .slick-prev ,.testimonial_area:hover .slick-next{
    opacity: 1;
    visibility: visible;
}
/* home 2 testimonial css */
.h2_testimonial{
    padding: 85px 0 50px;
    position: relative;
    z-index: 111;
}
.h2_testi_width {
    max-width: 1530px;
}
.h2_testimonial .inner_testimonial {
    background-color: var(--whitec);
    border-bottom: 2px solid var(--bgcolor);
    padding: 33px 30px 35px;
    box-shadow: 0 0 10px 0 rgb(240 241 243);
}
.h2_testimonial .inner_testi_content {
    border: none;
    padding: 15px 0 0;
    box-shadow: none;
}
.h2_testimonial .inner_testi_title{
    margin: 0 0;
}
.h2_testimonial .inner_testi_icon{
    padding: 0 0 0;
}
/* client testimonial css */
.client_testimonial{
    padding: 120px 0 30px;
}
.client_testimonial_2{
    padding: 80px 0 120px;
}
/*===== testimonial area end ====*/

/*======== pricing area start ======*/
.pricing_area {
    position: relative;
    padding: 70px 0 50px;
}
.single_page_pricing{
    padding: 120px 0 100px;
}
.inner_pricing_area {
    position: relative;
    background-color: var(--whitec);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.11);
    border-radius: 10px 10px 10px 10px;
    padding: 40px 40px 40px 40px;
    margin-bottom: 20px;
}
.inner_pricing_box {
    padding: 30px 25px 20px;
    border-radius: 5px;
    background-color: var(--bgcolor);
}
.inner_pricing_box h2 {
    color: var(--whitec);
    position: relative;
    padding-bottom: 15px;
}
.inner_pricing_box h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
    height: 1px;
    background-color: var(--whitec);
}
.inner_pricing_box h3{
    font-size: 36px;
    color: var(--whitec);
}
.inner_pricing_box h3 span.small{
    font-size: 16px;
    font-weight: 400;
}
/* inner pricing list css */
.inner_pricing_list {
    padding: 10px 0 15px;
}
.inner_pricing_list ul{
    list-style: none;
    padding: 0;
}
.inner_pricing_list ul li {
    padding: 18px 0 0;
}
.inner_pricing_list ul li i{
    margin-right: 10px;
    color: var(--brcolor);
}
/* inner pricing btn css */
.inner_pricing_btn {
    margin-top: 20px;
}
.inner_pricing_btn a {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 17px 30px;
    font-size: 15px;
    border: 1px  dashed var(--blackc);
    border-radius: 5px;
}
.inner_pricing_btn a:hover{
    background-color: var(--brcolor);
    color: var(--whitec);
    border: 1px  dashed transparent;
}
/* pricing style 2 */
.inner_pricing_area.pricing_2 .inner_pricing_box{
    background-color: var(--brcolor);
}
.inner_pricing_area.pricing_2 .inner_pricing_btn a{
    border: none;
    background-color: var(--brcolor);
    color: var(--whitec);
}
.inner_pricing_area.pricing_2 .inner_pricing_btn a:hover{
    background-color: var(--bgcolor);
    color: var(--whitec);
}
/* pricing shap css */
.pricing_left_shap , .pricing_right_shap{
    position: absolute;
    top: -80px;
    z-index: -1;
    animation: witr_movelr_box45 5s linear 1s infinite alternate running;
}
.pricing_left_shap{
    left: 25px;
}
.pricing_right_shap{
    right: 20px;
}
/*======== pricing area end ==========*/

/*===== counter area start  ====*/
.counter_area {
    position: relative;
    padding: 50px 0px 50px;
}
/* counter 2 */
.h2_counter_area {
    padding: 0 0;
    margin-top: -110px;
    position: relative;
    z-index: 22;
}
.counter_box {
    border-radius: 10px 10px 10px 10px;
    padding: 60px 0px 45px;
    background-color: var(--bg2color);
}
/* inner counter area css */
.inner_counter_area {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}
.inner_counter_thumb{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner_counter_thumb h2,
.inner_counter_thumb h4{
    color: var(--brcolor);
    font-size: 50px;
    font-weight: 700;
    margin: 0;
}
.inner_counter_area h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--bgcolor);
    font-family: Inter, sans-serif;
}
.counter_shap {
    position: absolute;
    top: -20px;
    right: 0;
    left: 0;
}
/* home 3 counter area css */
.h3_counter_area {
    padding: 70px 0 70px;
}
.h3_counter_area .counter_box {
    border-top: 2px solid var(--brcolor);
    border-bottom: 2px solid var(--brcolor);
    background: transparent;
    border-radius: 0;
}
/*===== counter area end  ====*/

/*===== call to action start ====*/
.call_to_action {
    margin-top: -150px;
    padding: 215px 0px 255px 0px;
    background-position: center center;
    background-size: cover;
}
/* home 2 call action */
.h2_call_action {
    margin-top: 0px;
    padding: 110px 0px 230px 0px;
}
.inner_call_action h3{
    font-size: 48px;
    margin-bottom: 45px;
    color: var(--whitec);
}
/*===== call to action end ====*/

/*======== contact area start  ==========*/
.contact_area {
    position: relative;
    margin-top: -140px;
    padding: 0px 0 50px;
    z-index: 11;
}
.contact_bg_img {
    background-position: center center;
    background-size: cover;
    padding: 100px 45px 70px;
    border-radius: 5px;
}
.inner_contact_img{
    position: relative;
}
.contact_video {
    position: absolute;
    top: 50%;
    left: 42%;
    transform: translate(-50%, -50%);
}
.contact_video a{
    display: inline-block;
    position: relative;
    width: 75px;
    height: 75px;
    line-height: 75px;
    font-size: 23px;
    border-radius: 100%;
    text-align: center;
    animation: witr-shadow 1s linear infinite;
    background-color: var(--brcolor);
    color: var(--whitec);
    z-index: 1;
}
@keyframes witr-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    }
}
.inner_contact_area .section_title_area{
    margin-bottom: 40px;
}
/* inner contact form */
.inner_contact_form input {
    border: 1px solid #ddddddcc;
    outline: none;
    width: 100%;
    height: 45px;
    border-radius: 5px;
    padding: 0 20px;
    margin-bottom: 23px;
}
.inner_contact_form textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #ddddddcc;
    outline: none;
    border-radius: 5px;
    padding: 20px 20px;
}
textarea::placeholder {
    color: var(--paracolor);
}
.inner_contact_form button {
    margin-top: 18px;
    display: inline-block;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: var(--brcolor);
    color: var(--whitec);
    transition: .5s;
}
.inner_contact_form button:hover{
    background-color: var(--bgcolor);
    color: var(--whitec);
}
/* single page contact */
.single_page_contact{
    margin: 0 0;
    padding: 120px 0 50px;
}
.sin_con_boxshadow {
    padding: 100px 35px 60px;
    border-radius: 10px;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 6%);
}
/*======== contact area end  ==========*/

/*======== home 2 contact start  ==========*/
.h2_contact_area {
    position: relative;
    z-index: 1;
    margin-top: -180px;
    padding: 250px 0px 120px 0px;
    background-position: center center;
    background-size: cover;
}
.h2_inner_contact_progress {
    padding: 85px 10px 0;
}
.h2_contact_area .inner_contact_area{
    padding: 95px 30px 50px 30px;
    background-position: center center;
    background-size: cover;
    border-radius: 15px;
}
.h2_contact_area p.form-messege{
    color: var(--whitec);
}
/* progress bar css */
.witr_single_progress {
    overflow: hidden;
    margin-bottom: 20px;
}
.progress {
    display: flex;
    padding: 1px 2px;
    height: 12px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid var(--brcolor);
}
.progress-bar {
    overflow: initial;
    background: var(--brcolor);
}
.witr_title2 span {
    font-size: 15px;
    font-weight: 600;
    color: var(--titlecolor);
}
.witr_progress-style2 .progress-bar {
    position: relative;
    text-align: left;
    line-height: 4px;
    border-radius: 0;
    box-shadow: none;
}
.witr_progress-style2 {
    overflow: visible;
    position: relative;
    margin-top: 2px;
    box-shadow: none;
    background: transparent;
    margin-bottom: 2px;
}
.witr_progress-style2 + .witr_progress-style2 {
	margin-top: 60px;
}
.witr_progress-style2 .progress-bar {
    position: relative;
    text-align: left;
    line-height: 25px;
    box-shadow: none;
    height: 8px;
    border-radius: 10px;
}
.witr_title6 .witr_label {
	left: 2px;
	top: 8px;
	color: #272727;
	font-size: 16px;
	font-weight: 600;
}
.witr_progress-style2 .witr_percent {
    position: absolute;
    font-size: 16px;
    right: 0;
    font-weight: 700;
    top: -28px;
    color: var(--titlecolor);
}
/*======= home 2 contact end  ========*/

/*======= work area start  ========*/
.work_area {
    padding: 120px 0 160px;
    background-position: center center;
    background-size: cover;
}
/* about work css */
.about_work {
    margin: 70px 0 50px;
    padding: 120px 0 100px;
}
.inner_work_area{
    margin-bottom: 20px;
}
.inner_work_icon {
    margin-bottom: 25px;
}
.inner_work_icon i{
    display: inline-block;
    font-size: 50px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 100%;
    background-color: var(--whitec);
    color: var(--brcolor);
    transition: .5s;
}
.inner_work_area:hover .inner_work_icon i{
    background-color: var(--brcolor);
    color: var(--whitec);
}
.inner_work_content h2 a{
    color: var(--whitec);
}
.inner_work_content p{
    color: var(--whitec);
}
/*======= work area end  ========*/


/*======== subscribe area start =======*/
.subscribe_area {
    position: relative;
    margin-top: -60px;
    padding: 0px 0 40px;
    z-index: 11;
}
.subscribe_box {
    padding: 35px 50px 5px;
    border-radius: 15px;
    background-color: var(--bg2color);
}
.inner_subscribe_form {
    position: relative;
    overflow: hidden;
}
.inner_subscribe_form input {
    width: 100%;
    font-size: 16px;
    line-height: 28px;
    border-radius: 10px;
    border: none;
    outline: none;
    padding: 15px 30px;
    height: 60px;
    background: var(--brcolor);
    color: var(--whitec);
}
.inner_subscribe_form input::placeholder{
    color: var(--whitec);
}
.inner_subscribe_form button {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 0 10px 10px 0;
    font-size: 30px;
    border: none;
    outline: none;
    background-color: var(--brcolor);
    color: var(--whitec);
    border-left: 1px solid var(--whitec);
    transition: .5s;
}
.inner_subscribe_form button:hover{
    background-color: var(--blackc);
    color: var(--whitec);
}
/*======== subscribe area end ========*/

/*======= shop area start =======*/
.shop_area {
    padding: 40px 0 30px;
}
/* about shop css */
.about_shop{
    padding: 115px 0 30px;
}
.inner_shop_area {
    padding: 10px 20px 10px;
    margin-bottom: 20px;
}
.inner_shop_content {
    padding: 30px 0 0px;
}
/* shop area defult arrow css */
.shop_area .slick-prev, .shop_area .slick-next {
    top: 50%;
    opacity: 0;
    visibility: hidden;
}
.shop_area:hover .slick-prev, .shop_area:hover .slick-next {
    opacity: 1;
    visibility: visible;
    top: 50%;
}
.shop_area .slick-prev {
    left: -60px;
}
.shop_area .slick-next{
    right: -40px;
}
.single_shop_page{
    padding: 100px 0 100px;
}
.single_shop_page .inner_shop_area {
    box-shadow: 0 0 10px #ffe9e9;
    padding: 20px 20px 20px;
}
/*======= shop area end =======*/

/*====== offer area start ======*/
.offer_area{
    padding: 55px 0 30px;
}
/* about offer css */
.about_offer{
    padding: 55px 0 100px;
}
.inner_offer_area {
    padding: 30px 40px 30px;
    background-position: center center;
    background-size: cover;
    margin-bottom: 20px;
}
.inner_offer_title {
    padding: 0px 210px 0px 0px;
}
.inner_offer_title h2 a{
    font-size: 36px;
}
/* inner offer btn css */
.inner_offer_btn {
    margin-top: 75px;
}
.inner_offer_btn a{
    font-size: 13px;
    color: var(--brcolor);
}
.inner_offer_btn a:hover{
    color: var(--bgcolor);
}
/*====== offer area end ======*/

/*===== video area start ====*/
.video_area{
    padding: 50px 0 50px;
}
.inner_video {
    padding: 230px 0;
    background-position: center center;
    background-size: cover;
}
.inner_video a{
    display: inline-block;
    position: relative;
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 28px;
    border-radius: 100%;
    text-align: center;
    animation: witr-shadow 1s linear infinite;
    background-color: var(--bgcolor);
    color: var(--whitec);
    z-index: 1;
}
@keyframes witr-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    }
}
/*===== video area end ====*/

/* cart area css */
.cart_area{
    padding: 120px 0 120px;
}
/* product checkout css */
.product_checkout {
    padding: 110px 0 105px;
}
/* my account area css */
.my_accout_area {
    padding: 110px 0 100px;
}
/* portfolio area css */
.portfolio_area {
    padding: 115px 0 120px;
}
/*======== shop area end ======*/

/*======= contact service start ====*/
.contact_service_area {
    padding: 120px 0 50px;
}
.inner_contact_service {
    padding: 50px 30px 65px 30px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.inner_contact_service i {
    font-size: 30px;
    height: 80px;
    width: 80px;
    text-align: center;
    border-radius: 5px;
    line-height: 80px;
    display: inline-block;
    background-color: var(--brcolor);
    color: var(--whitec);
    transition: .5s;
}
.inner_contact_service:hover i{
    background-color: var(--bgcolor);
    color: var(--whitec);
    border-radius: 50%;
}
.inner_contact_service h3 a {
    display: inline-block;
    font-size: 22px;
    margin: 12px 0 10px;
}
.inner_contact_service p{
    margin: 0;
}
.inner_contact_area p.form-messege{
    color: var(--brcolor);
}
/*======= contact service end ======*/

/*===== faq area start  ====*/
.faq_area{
    padding: 120px 0 100px;
}
.inner_faq_img {
    margin-bottom: 20px;
}
.accordion-item {
    margin-bottom: 20px;
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    background-color: var(--brcolor);
    color: var(--whitec);
}
.accordion-item .accordion-button {
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    border: none;
    box-shadow: 0 0 5px #dddddd7d;
}
/*===== faq area end  ====*/

/*======= contact service start ====*/
.contact_service_area {
    padding: 130px 0 45px;
}
.inner_contact_service {
    padding: 50px 30px 65px 30px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.inner_contact_service i {
    font-size: 30px;
    height: 80px;
    width: 80px;
    text-align: center;
    border-radius: 5px;
    line-height: 80px;
    display: inline-block;
    background-color: var(--brcolor);
    color: var(--whitec);
    transition: .5s;
}
.inner_contact_service:hover i{
    background-color: var(--bgcolor);
    color: var(--whitec);
    border-radius: 50%;
}
.inner_contact_service h3 a {
    display: inline-block;
    font-size: 22px;
    margin: 12px 0 10px;
}
.inner_contact_service p{
    margin: 0;
}
/*======= contact service end ======*/

/*======== map area start  ==========*/
.map_area {
    margin: 75px 0  0px;
}
.inner_map_area {
    width: 100%;
    height: 500px;
}
.inner_map_area iframe {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}
/*======== map area end  ==========*/

/*======== blog area start  ==========*/
.blog_area {
    padding: 75px 0 45px;
    position: relative;
}
.h3_blog_area{
    padding: 50px 0 45px;
}
.single_page_blog{
    padding: 120px 0 100px;
}
/* inner blog area css */
.inner_blog_area {
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--whitec);
    box-shadow: 0 5px 10px 0 rgba(50, 65, 141, .07);
    transition: .5s;
    border-radius: 10px;
}
.inner_blog_thumb {
    position: relative;
    overflow: hidden;
    margin: 20px 25px;
    border-radius: 10px;
}
.inner_blog_img img{
    width: 100%;
    transition: .5s;
}
.inner_blog_area:hover .inner_blog_img img{
    transform: scale(1.2);
}
/* blog overlay css */
.blog_overlay {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 72%;
    border-radius: 10px;
    background-color: rgb(0 0 0 / 50%);
    transform: scale(0);
    transition: .5s;
}
.inner_blog_area:hover .blog_overlay{
    transform: scale(1.2);
}
.blog_main_all {
    padding: 10px 25px 35px;
}
.inner_blog_text span {
    margin-right: 5px;
    font-size: 14px;
    color: var(--paracolor);
}
.inner_blog_text span i{
    margin-right: 6px;
    color: var(--brcolor);
}
/*inner blog content css */
.inner_blog_content h2 {
    padding: 10px 0 6px;
}
.inner_blog_content h2 a{
    font-size: 18px;
}
.inner_blog_content h2 a:hover{
    color: var(--brcolor);
}
.inner_blog_content p {
    padding-top: 10px;
}
.blog_btn a{
    font-size: 13px;
    color: var(--brcolor);
}
.blog_btn a:hover{
    color: var(--bgcolor);
}
.blog_shap {
    position: absolute;
    top: -130px;
    right: 27%;
    z-index: -1;
    animation: witr_movelr_box45 5s linear 1s infinite alternate running;
}
.blog_shap img {
    width: 150%;
    max-width: 150%;
}
/* site blog page */
.yblog_left {
    padding: 120px 0 90px;
}
.yblog_left_inner{
    margin-bottom: 30px;
    border-radius: 0;
}
.yblog_left_inner .inner_blog_thumb{
    margin: 0 0;
    border-radius: 0;
}
.yblog_left_sub h2{
    padding: 0 0;
}
.yblog_left_sub p{
    padding: 0 0;
}
/*======== blog area end  ==========*/

/*======== brand area start  ==========*/
.brand_area {
    padding: 55px 0 120px;
    position: relative;
}
.inner_brand_area img{
    margin: 0 auto;
}
.brand_area:hover .slick-prev ,.brand_area:hover .slick-next{
    opacity: 1;
    visibility: visible;
}
/* brand shap css */
.h2_brand_left_shap , .h2_brand_right_shap{
    position: absolute;
    bottom: 0;
    z-index: -1;
    animation: witr_movelr_box45 5s linear 1s infinite alternate running;
}
.h2_brand_left_shap{
    left: 0;
}
.h2_brand_right_shap{
    right: -100px;
}
/*======== brand area end  ==========*/

/*======== footer area start  ==========*/
.footer_area {
    padding: 90px 0 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.footer_widget p,
.footer_widget h2{
    color: var(--whitec);
}
.footer_widget img {
    margin-bottom: 25px;
}
/* footer socail icon css */
.footer_socail_icons a {
    display: inline-block;
    color: var(--whitec);
    background-color: transparent;
    border: 1px solid var(--whitec);
    border-radius: 100%;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 5px;
}
.footer_socail_icons a:hover{
    background-color: var(--brcolor);
    color: var(--whitec);
}
/* footer address area css */
.footer_address {
    margin-top: 25px;
}
.footer_address ul{
    list-style: none;
    padding-left: 0;
}
.footer_address ul li {
    padding: 0 0 9px;
    color: var(--whitec);
}
.footer_address ul li i{
    margin-right: 10px;
    color: var(--whitec);
}
/* footer nav css */
.footer_nav {
    margin-top: 25px;
}
.footer_nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer_nav ul li a{
    display: inline-block;
    padding: 0 0 9px;
    color: var(--whitec);
}
.footer_nav ul li a:hover{
    color: var(--brcolor);
}
/* footer widget sub img */
.inner_footer_widget_img {
    margin: 12px 0 0px;
}
.inner_footer_widget_img>img{
    width: 100%;
    height: auto;
    margin-bottom: 0px;
}
/*======== footer area end  ==========*/

/*======== copyright area start  ==========*/
.copy_right_area {
    padding: 25px 0 25px;
    background-color: var(--bgcolor);
}
.inner_copy_right_area p{
    color: var(--whitec);
    margin: 0;
}
.copy_right_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.copy_right_menu ul li {
    display: inline-block;
    margin-left: 15px;
}
.copy_right_menu ul li a{
    font-size: 15px;
    font-weight: 400;
    color: var(--whitec);
}
/*======== copyright area end  ==========*/

/*======== scroll top btn css  ==========*/
#scrollUp {
    bottom: 40px;
    font-size: 30px;
    height: 40px;
    line-height: 40px;
    right: 40px;
    text-align: center;
    border-radius: 5px;
    width: 40px;
    background: var(--brcolor);
    color: var(--whitec);
    box-shadow: 0 0 10px #0000002e;
}

/* blog and portfolio all color css */
.portfolio_nav ul li.current_menu_item,
.portfolio_nav ul li:hover,
.port_content_center a:hover,
.inner_portfolio_lower_nav ul li a.current,
.inner_portfolio_lower_nav ul li a:hover,
.ycalender_inner h5,
.ycalender_inner td.active,
.inner_project_in_icon a:hover,
.inner_sin_com_btn button,
.pay_sub_btn button,
.inner_my_accout_form_btn a ,
.inner_cart_btn a,
.shop_quenty button,
.shop_btn_area a  {
    background-color: var(--brcolor);
    color: var(--whitec);
}
.pay_sub_btn button:hover,
.inner_my_accout_form_btn a:hover,
.inner_cart_btn a:hover,
.tab_list_socail_icon a:hover,
.shop_btn_area a:hover,
.inner_shop_icons a:hover {
    background-color: var(--bgcolor);
    color: var(--whitec);
}
.port_content_center h2 a:hover{
    background: none;
    color: var(--brcolor);
}
.port_content_center p{
    color: var(--whitec);
}
.yblog_left_text_sub span i{
    color: var(--brcolor);
}