/* Feature Clors */
:root{
    --main-bg-color: #1c1d22;
    --second-bg-color: #3500d3;
    --main-font-color: #fff;
    --second-font-color: hsla(0, 0%, 100%, 0.7);
    --main-border-color: hsla(0, 0%, 100%, 0.12);
}


code{
    padding: 2px;
    border-radius: 2px;
    color: #1e1e1e;
    background: #f7f7f7;
    font-family: Menlo,Consolas,monaco,monospace;
    font-size: 14px;
}

#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
  }

::-webkit-input-placeholder {
    color: #979797 !important;
    font-weight: 400;
    opacity: 1;
    font-size: 18px;
}

:-moz-placeholder {
    color: #979797 !important;
    font-weight: 400;
    opacity: 1;
    font-size: 18px;
}

::-moz-placeholder { 
    color: #979797 !important;
    font-weight: 400;
    opacity: 1;
    font-size: 18px;
}

:-ms-input-placeholder { 
    color: #979797 !important;
    font-weight: 400;
    opacity: 1;
    font-size: 18px;
}

input[type="text"], input[type="search"], input[type="password"], input[type="email"], textarea, select, i { 
    outline: none;
}

.fadeup__{
    animation: backInUp;
    animation-duration: 1s;
}

.fadeIn__{
    animation: zoomIn;
    animation-duration: 1s;
}

body, html{
    scroll-behavior: smooth;
    margin: 0px;
    padding: 0px;
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body a{
    color: white;
}

body ul{
    padding: 0px;
}

.nav__ ul{
    list-style: none;
}

body a:hover{
    color: white;
    text-decoration: none;
}

body img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.up_top{
    position: fixed;
    background: var(--second-bg-color);
    bottom: 47px;
    right: 31px;
    width: 50px;
    height: 50px;
    font-size: 31px;
    padding-left: 17px;
    transition: .3s;
    cursor: pointer;
    opacity: 0;
    z-index: 50;
}
 

/* Loading Animatiom */
.loading_animation{
    width: 100%;
    height: 100vh;
    background: black;
    position: fixed;
    animation: animation_page_up 1s 2s 1 running forwards;
    z-index: 100000000;
}


.loding_txt{
    color: white;
    width: 50%;
    margin: auto;
    text-align: center;
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-size: 19px;
}

.loding_txt p{
    animation: loading_text 1s 1s 1 running forwards;
}


.loading_line{
    width: 66%;
    height: 1.5px;
    margin: 0 auto;
}

.line{
    width: 100%;
    height: 100%;
    background: white;
    animation: loading_bar 1s 1 running forwards;
}


/* Navication Section */
.full_website{
    display: flex;
}


.navigation{
    display: flex;
    flex-direction: column;
    width: 90px;
    position: fixed;
    height: 100vh;
    color: white;
    border-right: 1px solid var(--main-border-color);
    text-align: center;
    justify-content: space-between;
    z-index: 2000;
    background: var(--main-bg-color);
}

.navigation__{
    margin-top: 0px;
    margin-bottom: 38px;
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
}


.ham_button{
    padding-top: 44%;
    padding-bottom: 44%;
    border-bottom: 1px solid var(--main-border-color);
    cursor: pointer;
}


.line_one{
    position: absolute;
    left: 0px;
    right: 0px;
    z-index: 2;
    display: unset;
    width: 30px;
    height: 3px;
    margin-right: auto;
    margin-left: auto;
    background-color: #fff;
    transform: translate3d(0px, -6px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}


.line_two{
    position: absolute;
    left: 0px;
    right: 0px;
    z-index: 2;
    display: block;
    width: 30px;
    height: 3px;
    margin-right: auto;
    margin-left: auto;
    background-color: #fff;
    transform: translate3d(0px, 6px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.line_one.open {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(45deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}

.line_two.open {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}


.site_logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70%;
}

.site_logo img{
    width: 49px;
    height: 49px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 50%;

}

.site_logo p{
    transform: rotate(-90deg);
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 41%;
}


.nav_social_icons{
    display: flex;
    flex-direction: column;
    font-size: 16px;
    text-align: center;
}

.nav_social_icons a{
    color: white;
    padding-top: 19%;
    padding-bottom: 19%;
    border-top: 1px solid var(--main-border-color);
    transition: .3s;
}

.nav_social_icons a:hover{
    background: var(--second-bg-color);
    color: white;
}

.nav_hidden{
    position: fixed;
    left: 90px;
    width: 455px;
    height: 100vh;
    border-right: 1px solid var(--main-border-color);
    padding-top: 5%;
    padding-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    padding-left: 10%;
    transform: translateX(-102%);
    opacity: 0;
    transition: .3s;
    z-index: 1000;
    background: var(--main-bg-color);
}

.visible__{
    transform: translateX(0%);
    opacity: 1;
}

.nav_hidden ul{
    list-style: none;
    padding: 0px;
    height: 66vh;
    overflow-y: scroll;
}

.nav_hidden ul::-webkit-scrollbar{
    width: 0px;
}

.nav_hidden ul li{
    font-size: 38px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 7px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav_hidden ul li a{
    display: inline-block;
    text-decoration: none;
    color: white;
    font-weight: 600;
}

.nav_hidden ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--second-bg-color);
    transition: width .3s;
    margin-top: 5%;
}

.nav_contact_section{
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    align-items: flex-start;
    position: absolute;
    bottom: 4%;
}

.nav_contact_section img{
    color: var(--second-font-color);
    display: flex;
    width: 50px;
    height: 50px;
    margin-right: 13px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border-right: 1px solid var(--main-border-color);
    font-size: 19px;
    padding: 14px;
}

.icon_image2{
    color: var(--second-font-color);
    display: flex;
    width: 50px;
    height: 47px;
    margin-right: 13px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border-right: 1px solid var(--main-border-color);
    font-size: 19px;
    padding: 14px;
}

.nav_contact_section a{
    display: flex;
    height: 50px;
    padding-right: 20px;
    -webkit-box-align: center;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-color: var(--main-border-color);
    margin-top: 5%;    
    font-weight: 600;
}


.nav_hidden ul li a:hover::after{
    width: 100%;
}

.rest_website{
    position: absolute;
    color: white;
    right: 0px;
    width: 93.4%;
}

.banner_{
    border-bottom: 1px solid var(--main-border-color);
    padding: 122px 5%;
}

.my_col{
    
}


.meet_os{
    display: inline-block;
    padding: 5px 10px;
    border-radius: 1px;
    background-color: var(--second-bg-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.site_heading{
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 60px;
    font-weight: 700;
}


.site_description{
    width: 80%;
    font-size: 22px;
    line-height: 29px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--second-font-color);
}


.home_page_buttons{
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    align-items: flex-start;
    margin-top: 8%;
    width: 100%;
}

.nav_hidden .sub-menu{
    background: var(--main-bg-color);
    position: absolute;
    left: 90%;
    width: 100%;
    top: 0;
    height: auto;
    padding: 7% 5%;
    transition: .5s;
    border: 1px solid var(--main-border-color);
    visibility: hidden;
    opacity:0;
    transition:visibility 0.3s linear,opacity 0.3s linear;
}

.nav_hidden .sub-menu li{
    
}

.nav_hidden ul li:hover .sub-menu{
    visibility: visible;
    opacity: 1;
}


.home_page_buttons a{
    display: flex;
    height: 50px;
    padding-right: 20px;
    padding-left: 20px;
    -webkit-box-align: center;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-color: var(--main-border-color);   
    font-weight: 600;
}

.home_page_buttons i{
    color: var(--second-font-color);
    display: flex;
    width: 50px;
    height: 50px;
    margin-right: 13px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border-right: 1px solid var(--main-border-color);
    font-size: 19px;
}

.home_page_buttons a:nth-child(2){
    margin-left: 3%;
    padding-left: 0px;
}

.header_img{
    width: 100%;
    height: 100%;
}

.header_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.services__{
    border-bottom: 1px solid var(--main-border-color);
    margin-bottom: 5%;
}

.service_col{
    height: 300px;
    padding: 50px 35px;
    border-right: 1px solid var(--main-border-color);
}

.service_col h3{
    font-size: 20px;
    line-height: 26px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 700;
}

.service_col p{
    margin-bottom: 10px;
    color: var(--second-font-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.service_col a{
    display: block;
    position: relative;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-color: var(--main-border-color);
    height: 50px;
    padding-top: 4%;
    padding-right: 20px;
    -webkit-box-align: center;
    padding-left: 20px;
    width: 120px;
    margin-top: 15%;
}


.service_col a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--second-bg-color);
    transition: width .3s;
    margin-top: 5%;
}

.service_col a:hover::after{
    width: 100%;
}

.section__{
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}

.work_sideshow{
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--main-border-color);
    padding-bottom: 9%;
    margin-bottom: 11%;
    padding-top: 5%;
}


.amizing_work{
    margin-top: 0px;
    margin-bottom: 12px;
    font-size: 44px;
    line-height: 50px;
    text-align: center;
}


.best_team{
    font-size: 22px;
    line-height: 29px;
    margin-bottom: 10px;
    color: var(--second-font-color);
    font-weight: 500;
    text-align: center;
}

.work_container{
    margin: 0 auto;
    width: 38%;
    margin-top: 8%;
}


.work_slide{
    display: flex;
    width: 100%;
}


.slide{
    flex: none;
    width: 100%;
    margin-right: 41px;
    transition: .3s;
}


.slideImage{
    width: 100%;
    height: 34vw;
    cursor: pointer;
    transition: .3s;
}

.slideImage:hover{
    opacity: .7;
}

.slideImage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slide_info{

}


.slide_heading{
    color: var(--second-font-color);
    font-size: 27px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 0px;
    margin-top: 5%;
}


.slide_des{
    margin-top: 5px;
    margin-bottom: 0px;
    font-size: 28px;
    line-height: 35px;
    font-weight: 600;
}

#nextBtn{
    position: absolute;
    top: 50%;
    right: 25.5%;
    bottom: 0;
    height: 57px;
    width: 50px;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    font-size: 28px;
    font-weight: 300;
    border: 1px solid var(--second-font-color);
    cursor: pointer;
    transition: .3s;
    padding-bottom: 10px;
}

#prevBtn{
    position: absolute;
    top: 50%;
    bottom: 0;
    height: 57px;
    width: 50px;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    font-size: 28px;
    font-weight: 300;
    border: 1px solid var(--second-font-color);
    left: 25.5%;
    cursor: pointer;
    transition: .3s;
    padding-bottom: 10px;
}

#nextBtn .fa{
    position: absolute;
    top: 20%;
    right: 37%;
}

#prevBtn .fa{
    position: absolute;
    top: 20%;
    right: 41%;
}


#nextBtn:hover{
    background: var(--second-bg-color);
}


#prevBtn:hover{
    background: var(--second-bg-color);
}


.meet_team_section{
    margin-bottom: 11%;
}


.team_main{
    padding-left: 3.5%;
}


.team_col{

}

.team_img{
    height: 36vw;
}

.team_img img{
    width: 91%;
    height: 100%;
    object-fit: cover;
}


.power_template{
    display: inline-block;
    padding: 5px 10px;
    border-radius: 1px;
    background-color: var(--second-bg-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8%;
}


.team_heading{
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 44px;
    line-height: 50px;
    font-weight: 600;
}


.team_heading2{
    width: 80%;
    font-size: 22px;
    line-height: 29px;
    margin-bottom: 10px;
    color: var(--second-font-color);
    font-weight: 500;
}


.team_des{
    width: 80%;
    margin-bottom: 10px;
    color: var(--second-font-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin-top: 8%;
}

.team_btn{
    display: block;
    position: relative;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-color: var(--main-border-color);
    height: 50px;
    padding-top: 2%;
    padding-right: 20px;
    -webkit-box-align: center;
    padding-left: 20px;
    width: 147px;
    margin-top: 9%;
}

.team_btn::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--second-bg-color);
    transition: width .3s;
    margin-top: 5%;
}

.team_btn:hover::after{
    width: 100%;
}


.skills_section{
    margin-bottom: 11%;
}


.skills_div{
    padding: 0px;
    list-style: none;
    margin-top: 8%;
    border: 1px solid var(--main-border-color);
    width: 80%;
    position: relative;
}


.skills_div li{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--main-border-color);
    padding: 15px 19px 0px 19px;
    position: relative;
    overflow: hidden;
}

.skills_div li p{

}

.skill_{
    width: 50%;
}

.skill_bar{
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: white;
    height: 2.5px;
    transition: .7s;
    transform: translateX(-100%);
}

.persent_{
    width: 50%;
    text-align: right;
}

.skill_col{
    position: relative;
}

.skill_img{
    margin-top: 9%;
}

[data-scroll]{
    transition: all .7s;
}

[data-scroll="in"]{
    transform: translateX(0%);
}

.partners_section{
    border-top: 1px solid var(--main-border-color);
    padding-top: 5%;
    margin-bottom: 5%;
}


.worked_with{
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 4%;
}


.partner_col{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 80px;
    padding: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.row_{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: grid;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
}

.partner_col img{
    display: inline-block;
    max-width: 100%;
}


.video_img{
    height: 100%;
    position: relative;
}


.video_sec{
    height: 40vw;
    margin-bottom: 11%;
    border-top: 1px solid var(--main-border-color);
    border-bottom: 1px solid var(--main-border-color);
    position: relative;
}


.video_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    position: absolute;
    z-index: 2;
}

.play_btn_{
    position: absolute;
    width: 4em;
    height: 4em;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: white;
    transition: .3s;
    background-color: var(--second-bg-color);
    cursor: pointer;
    z-index: 10;
    padding: 16px 25px;
}

.play_btn_:hover{
    background: #5923f9;
}

.play_btn_ i{
    padding: 24px 27px;
}


.the_team_{
    position: relative;
    margin-bottom: 11%;
}


.the_team_main{
    width: 92%;
    margin: 0 auto;
}

.the_team_main h1{
    margin-top: 0px;
    margin-bottom: 12px;
    font-size: 44px;
    line-height: 50px;
    text-align: center;
    font-weight: 600;
}


.the_team__main{
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 10px;
    color: var(--second-font-color);
    font-weight: 500;
    text-align: center;
    margin-bottom: 76px;
}


.the_team_container{

}


.the_team_slider{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 6%;
}


.team_slide{
    margin-top: 20%;
}


.team_slide_img{
    height: 27vw;
}

.team_slide_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.name_position{
    display: flex;
    justify-content: center;
    padding: 25px 0px;
    border: 1px solid var(--main-border-color);
    border-top: none;
}


.span_name{
    margin-right: 10px;
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 3px;
}

.position__{
    display: inline-block;
    padding: 9px 10px;
    border-radius: 1px;
    background-color: var(--second-bg-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
}


.position__related{
    font-size: 8px;
    margin-top: 10px;
}


.position_cata{
    margin-top: 2%;
}


.position_cata a{
    color: white;
}


.catagory__{
    margin-top: 8%;
}


.tags__{
    margin-top: 13px;
}


.position__single{
    cursor: pointer;
    margin-right: .5%;
    display: inline-block;
    margin-top: 1.5%;
}

.position__single_tag{
    cursor: pointer;
    margin-right: .5%;
    background: #2C92FF;
    display: inline-block;
    margin-top: 1%;
}


.team_social{
    display: flex;
    position: relative;
    border-bottom: 1px solid var(--main-border-color);
    border-left: 1px solid var(--main-border-color);
    align-items: center;
    -webkit-box-align: center;
    width: 100%;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
}


.team_social a{
    display: flex;
    width: 100%;
    padding-top: 19px;
    padding-bottom: 19px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    transition: all 300ms ease;
    border-right: 1px solid var(--main-border-color);
}

.team_social a:hover{
    background: var(--second-bg-color);
}


.testimonial_sec{
    position: relative;
    margin-bottom: 5%;
    margin-top: 18%;
    border-bottom: 1px solid var(--main-border-color);
    padding-bottom: 10%;
}


.testimonail_main{
    margin: 0 auto;
    width: 63%;
}


.testimonial_cobtainer{
    margin: 0 auto;
    width: 65%;
    overflow: hidden;
}


.testimonial_slider{
    display: flex;
    width: 100%;
}

.testimonial__{
    flex: none;
    width: 100%;
}


.testimonial__ img{
    width: 60px;
    height: 60px;
    opacity: 0.3;
    display: block;
    margin: 0 auto;
    margin-bottom: 3%;
}


.test_text{
    margin-right: auto;
    margin-left: auto;
    font-size: 31px;
    line-height: 39px;
    text-align: center;
    font-weight: 500;
}


.customer_img_sec{
    margin-top: 6%;
    margin-bottom: 0%;
}

.customer_img_sec img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 105px;
    display: block;
    margin: 0 auto;
    opacity: 1;
}


.customer_name{
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}

.customer__{
    text-align: center;
    padding: 9px 10px;
    border-radius: 1px;
    background-color: var(--second-bg-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
    margin: 0 auto;
    display: block;
    width: 209px;
}


#prvBtn{
    position: absolute;
    top: 50%;
    bottom: 0;
    height: 57px;
    width: 50px;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    font-size: 28px;
    font-weight: 300;
    border: 1px solid var(--second-font-color);
    left: 7.5%;
    cursor: pointer;
    transition: .3s;
    padding-bottom: 10px;
}


#nxtBtn{
    position: absolute;
    top: 50%;
    right: 7.5%;
    bottom: 0;
    height: 57px;
    width: 50px;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    font-size: 28px;
    font-weight: 300;
    border: 1px solid var(--second-font-color);
    cursor: pointer;
    transition: .3s;
    padding-bottom: 10px;
}

#nxtBtn .fa{
    position: absolute;
    top: 20%;
    right: 37%;
}

#prvBtn .fa{
    position: absolute;
    top: 20%;
    right: 41%;
}

#prvBtn:hover{
    background: var(--second-bg-color);
}


#nxtBtn:hover{
    background: var(--second-bg-color);
}


.first_blog{
    padding: 0px 11%;
    padding-bottom: 5%;
    border-bottom: 1px solid var(--main-border-color);
}


.the_blog{
    margin: 0 auto;
    width: 73%;
    display: flex;
}


.the_blog_img{
    width: 50%;
}


.the_blog_detail{
    width: 50%;
    padding: 43px 43px;
}


.the_blog_title{
    font-size: 32px;
    line-height: 38px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--main-font-color);
    word-wrap: break-word;
}


.the_blog_except{
    margin-bottom: 10px;
    color: var(--second-font-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin-top: 23px;
    word-wrap: break-word;
}

.f_readmore_btn {
    display: block;
    position: relative;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-color: var(--main-border-color);
    padding-right: 20px;
    -webkit-box-align: center;
    padding-left: 20px;
    width: 118px;
    margin-top: 16%;
    padding: 10px 19px;
}

.f_readmore_btn::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--second-bg-color);
    transition: width .3s;
    margin-top: 5%;
}

.f_readmore_btn:hover::after{
    width: 100%;
}

.bottom_nav{
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 2fr;
}


.bottom_rows{
    border-right: 1px solid var(--main-border-color);
    padding-top: 15%;
    padding-left: 16%;
    padding-bottom: 15%;
}

.bottom_rows:nth-child(3){
    padding: 0px;
}

.bottom_rows li{
    margin-bottom: 4%;
}

.bottom_rows li a{
    font-size: 17px;
    transition: .3s;
}

.bottom_rows li a:hover{
    color: var(--second-font-color);
}


.bottom_logo{
    font-size: 30px;
    text-transform: uppercase;
}


.nav_contact_section_bottom{
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    align-items: flex-start;
}

.nav_contact_section_bottom img{
    color: var(--second-font-color);
    display: flex;
    width: 50px;
    height: 50px;
    margin-right: 13px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border-right: 1px solid var(--main-border-color);
    font-size: 19px;
    padding: 14px;
}


.nav_contact_section_bottom a{
    display: flex;
    height: 50px;
    padding-right: 20px;
    -webkit-box-align: center;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-color: var(--main-border-color);
    margin-top: 5%;
    font-weight: 600;
}

.nav_contact_section_bottom i {
    color: var(--second-font-color);
    display: flex;
    width: 50px;
    height: 50px;
    margin-right: 13px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border-right: 1px solid var(--main-border-color);
    font-size: 19px;
}


/* Work Section */
.page_header{
    border-bottom: 1px solid var(--main-border-color);
    position: relative;
    height: 345px;
}

.search_btn__{
    cursor: pointer;
    position: absolute;
    right: 40px;
    top: 34px;
    font-size: 18px;
}

.full_page_search{
    position: fixed;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 6000;
    transition: .5s;
    transform: translateX(-113.3%);
}

.close_btn{
    background: #3f3f3f;
    color: #7f7f7f;
    fill: #7f7f7f;
    width: 50px;
    height: 50px;
    padding: 10px 17px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transition: .5s;
}

.close_btn:hover{
    background-color: #c7c7c7;
}

.block__{
    animation: search_left .5s .1s 1 running forwards;
}

.vanish{
    width: 0%;
}

.search-field{
    width: 87%;
    background: transparent;
    border: none;
    color: white;
    height: 100%;
}

.search-form{
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    height: 56px;
    margin: auto;
    border-bottom: 1px solid #7f7f7f;
}

.search-submit{
    background: transparent;
    border: 0;
    color: #7f7f7f;
    font-size: 23px;
    padding-left: 6%;
    cursor: pointer;
}


.header_detail{
    padding-left: 6%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 85%;
}


.page_name{
    margin-top: 0px;
    margin-bottom: 16px;
    font-size: 60px;
    line-height: 61px;
    font-weight: 700;
}

.search_result_p{
    line-height: 100%;
    font-size: 35px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    margin: 0 auto;
}

.pagepescription{
    width: 100%;
    font-size: 41px;
    line-height: 35px;
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
    margin-top: 2%;
}

.pagepescription a{

}


#page_path{
    margin-top: 23px;
}

#page_path a{
    display: inline-block;
    opacity: 1;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.slash{
    padding: 0% 4px;
}


.current_page{
    display: inline-block;
    opacity: 1;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    color: var(--second-font-color);
}

.project_section{
    padding-bottom: 11%;
    border-bottom: 1px solid var(--main-border-color);
}


.project_main{
    margin: 0 auto;
    width: 89%;
    padding-top: 2%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 2.5%;
    margin-bottom: 10%;
}


.project_{
    transition: .4s;
    margin-top: 11%;
    flex: none;
}

.date_author{
    color: var(--second-font-color);
    display: flex;
}

.date_{
    margin: 0px;
}

.author_{
    margin-left: 2%;
    color: white;
    font-weight: 600;
}


.project_smiller{
    width: 334px;
    margin-right: 2.5%;
    cursor: grab;
}


.project_:hover{
    opacity: .7;
}


.project_img{
    height: 25vw;
    margin-bottom: 10px;
}


.project_img img{

}


.project_cat{
    color: var(--second-font-color);
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 0px;
    margin-top: 5%;
}


.project_name{
    margin-top: 5px;
    margin-bottom: 0px;
    font-size: 28px;
    line-height: 35px;
    font-weight: 600;
    transition: .5s;
    cursor: pointer;
}


.project_detail_section{
    padding-bottom: 11%;
    border-bottom: 1px solid var(--main-border-color);
}


.projet_detail_main{
    margin: 0 auto;
    width: 66%;
    margin-top: 10%;
}


.feature_image{
    height: auto;
}


.feature_image img{

}


.project_detail_bottom{
    border: 1px solid var(--main-border-color);
    padding: 7% 5%;
    margin-bottom: 14%;
    word-wrap: break-word;
}

.project_detail_bottom a{
    color: #e83e8c;
}


.project_detail_bottom p{
    margin-bottom: 10px;
    color: var(--second-font-color);
    font-size: 16px;
}

.project_detail_bottom img{
    display: block;
    margin: 0 auto;
    width: 99%;
    margin-top: 5%;
    margin-bottom: 5%;
}

.related_project{
    padding-top: 5%;
    padding-bottom: 11%;
    border-bottom: 1px solid var(--main-border-color);
}


.related_p_project{
    margin-top: 0px;
    margin-bottom: 12px;
    font-size: 44px;
    line-height: 50px;
    text-align: center;
    font-weight: 600;
}


.related_project_main{
    display: flex;
    margin: 0 auto;
    width: 89%;
    overflow-x: scroll;
}


.related_project_main.active{
    cursor: grabbing;
    cursor: -webkit-grabbing;
    transform: scale(1.01);
}


.related_project_main::-webkit-scrollbar{
    width: 0px;
}

.section__::-webkit-scrollbar{
    width: 0px;
}


.the_about_slider{
    display: flex;
    padding: 5% 0%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2%;
    border-bottom: 1px solid var(--main-border-color);
    padding-bottom: 9%;
}


.team_about{
    flex: none;
    width: 28%;
    height: 100%;
    margin-top: 4%;
}

.border_bottom{
    border-top: 1px solid var(--main-border-color);
}


.blog_section{
    padding: 10% 0%;
    padding-top: 6%;
}

.pagina{
    margin-bottom: 10%;
    text-align: center;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}

.page-numbers{
    color: white;
    padding: 13px 26px;
    border: 1px solid white;
    border-radius: 5px;
    margin: 5px 3px;
}

.dots{
    border: none;
    padding: 10px;
}

.current{
    background-color: white;
    color: black;
}


.blog_main{
    margin: 0 auto;
    width: 72%;
}


.blog__{
    margin: 0 auto;
    display: flex;
    margin-top: 5%;
    border: 1px solid var(--main-border-color);
}


.share_social{
    margin-top: 25px;
}


.share_social li{
    display: inline-block;
    padding: 16px 30px;
    border: 1px solid var(--main-border-color);
    font-weight: 600;
    transition: .3s;
    cursor: pointer;
    margin-top: 13px;
}


.share_social li a{
    
}


.share_social li:nth-child(1){
    cursor: text;
}


.share_social li:nth-child(1):hover{
    background: none;
}


.share_social li:hover{
    background: var(--second-bg-color);
}


.store_main{
    width: 100%;
    padding: 6% 4%;
    border-bottom: 1px solid var(--main-border-color);
}

.cart_logo{
    cursor: pointer;
    position: fixed;
    justify-content: space-between;
    top: 23px;
    right: 23px;
    display: flex;
    border: 1px solid var(--main-border-color);
    padding: 10px 14px;
    width: 85px;
    z-index: 30;
}

.cart_logo img{
    width: 25px;
    height: 25px;
}

.cart_logo p{
    margin: 0px;
    font-weight: 600;
}

#map{
    padding: 15px;
    margin: 0 auto;
    width: 100%;
}

#map iframe{
    width: 100%;
}

.cart__{
    cursor: pointer;
    opacity: 0;
    border: 1px solid var(--main-border-color);
    padding: 4% 0%;
    transition: .3s;
    position: absolute;
    width: 67%;
    top: 50%;
    transform: translateY(21%);
    background-color: var(--second-bg-color);
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

.cart__:hover{
    background: black;
}

.cart__ a{
    margin-top: 4%;
}

.site-main{
    margin: 0 auto;
    width: 91%;
    padding: 7% 0%;
}

.page_content{
    padding-right: 4%;
    word-wrap: break-word;
}

.main_sec{
    border-bottom: 1px solid var(--main-border-color);
}

.proj_det{

}

.proj_det ul{
    list-style: none;
    letter-spacing: 1px;
}

.proj_det ul li{
    font-size: 16px;
    font-weight: 600;
}

.proj_det ul li span.p-name{
    font-weight: 400;
    color: var(--second-font-color);
}

.proj_det ul li a{
    font-weight: 400;
    color: var(--second-font-color);
}

.proj_det ul li a:hover{
    color: white;
}

.contact_sec{
    border-bottom: 1px solid var(--main-border-color);
}

.contact_main{
    display: flex;
    height: 705px;
    width: 90%;
    margin: 62px auto;
    border: 1px solid var(--main-border-color);
}


.contact_form{
    width: 50%;
    padding: 2% 2%;
}


.contact_image{
    width: 50%;
}

.contact_image image{

}

.contact_form .wpcf7-form{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    gap: 2%;
}

.contact_form .wpcf7-form p{
    width: 49%;
    height: 50px;
}

.contact_form .wpcf7-form p:nth-child(8){
    width: 100%;
    height: 156px;
}

.contact_form .wpcf7-form p label{
    width: 100%;
    height: 100%;
}

.contact_form .wpcf7-form p label span.wpcf7-form-control-wrap input{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    padding: 0px 12px;
    background: black;
    border: none;
    color: white;
}

.contact_form .wpcf7-form p label span.wpcf7-form-control-wrap textarea.wpcf7-textarea{
    width: 100%;
    border-radius: 5px;
    height: 100%;
    background: black;
    border: none;
    padding: 0px 14px;
    padding-top: 10px;
    color: white;
}

.contact_form .wpcf7-form p span.wpcf7-form-control-wrap{
    width: 100%;
    height: 100%;
}

.contact_form .wpcf7-form p span.wpcf7-form-control-wrap select.wpcf7-select{
    width: 100%;
    height: 100%;
    background: black;
    color: white;
    padding: 0px 10px;
    font-weight: 600;
    border: none;
    font-size: 15px;
}

.contact_form .wpcf7-form p:nth-child(9){
    width: 100%;
    height: 100px;
    bottom: -122px;
}

.contact_form .wpcf7-form p label span.wpcf7-form-control-wrap input::-webkit-input-placeholder {
    color: white !important;
    font-weight: 600;
    border: none;
    font-size: 15px;
}

.contact_form .wpcf7-form p label span.wpcf7-form-control-wrap input:-moz-placeholder {
    color: white !important;
    font-weight: 600;
    border: none;
    font-size: 15px;
}

.contact_form .wpcf7-form p label span.wpcf7-form-control-wrap input::-moz-placeholder { 
    color: white !important;
    font-weight: 600;
    border: none;
    font-size: 15px;
}

.contact_form .wpcf7-form p label span.wpcf7-form-control-wrap input:-ms-input-placeholder { 
    color: white !important;
    font-weight: 600;
    border: none;
    font-size: 15px;
}


.contact_form .wpcf7-form p label span.wpcf7-form-control-wrap textarea.wpcf7-textarea::-webkit-input-placeholder {
    color: white !important;
    font-weight: 600;
    border: none;
    font-size: 15px;
}

.contact_form .wpcf7-form p label span.wpcf7-form-control-wrap textarea.wpcf7-textarea:-moz-placeholder {
    color: white !important;
    font-weight: 600;
    border: none;
    font-size: 15px;
}

.contact_form .wpcf7-form p label span.wpcf7-form-control-wrap textarea.wpcf7-textarea::-moz-placeholder { 
    color: white !important;
    font-weight: 600;
    border: none;
    font-size: 15px;
}

.contact_form .wpcf7-form p label span.wpcf7-form-control-wrap textarea.wpcf7-textarea:-ms-input-placeholder { 
    color: white !important;
    font-weight: 600;
    border: none;
    font-size: 15px;
}

.contact_form .wpcf7-form .wpcf7-submit{
    padding: 16px 30px;
    background: var(--second-bg-color);
    border: none;
    cursor: pointer;
    color: white;
    font-weight: 600;
}


/* comments css */
#comment_section{
    border-bottom: 1px solid var(--main-border-color);
}

.comments__{
    margin: 4% auto;
    width: 81%;
}

#comment_section .comment-author{
    height: 65px;
    position: relative;
    width: 100%;
}

#comment_section .comment-author img{
    width: 65px;
    height: 65px;
}

#comment_section ol{
    list-style: none;
    padding: 0px;
}

#comment_section li.comment .comment-metadata a{

}

#comment_section .comments-area h2.comments-title{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 4%
}

#comment_section .says{
    display: none;
}

#comment_section b.fn{
    position: relative;
    top: -19px;
    left: 10px;
}

#comment_section .comment-metadata{
    position: relative;
    left: 79px;
    top: -41px;
}

#comment_section .comment-metadata a{
    color: var(--second-font-color);
    transition: .4s;
}

#comment_section .comment-metadata a:hover{
    color: white;
}

#comment_section .comment-content{
    margin-left: 80px;
    margin-top: -35px;
}

#comment_section .comment-content p{
    word-wrap: break-word;
}

#comment_section .comment-content img{
    width: 53%;
    margin-top: 10px;
    margin-bottom: 10px;
}

#comment_section a>code {
    color: black;
}

#comment_section pre {
    color: var(--second-font-color);
}

pre {
    color: var(--second-font-color);
}

#comment_section .comment-content p q{
    color: var(--second-font-color);
    font-weight: 600;
}

#comment_section .comment-content ul{
    padding-left: 37px;
}

#comment_section .comment-content ol{
    padding-left: 37px;
}

#comment_section .comment-content a{
    font-weight: 600;
}

#comment_section .comment-content table{
    width: 100%;
}

#comment_section li.comment{
    margin-bottom: 40px;
}

#comment_section .reply{
    font-weight: 600;
    margin-left: 82px;
}

#comment_section .reply a{
    color: var(--second-font-color);
    transition: .4s;
}

#comment_section .reply a:hover{
    color: white;
}

#comment_section li.comment ol.children{
    margin-left: 82px;
    margin-top: 14px;
    margin-bottom: 14px;
}

#comment_section .comment-awaiting-moderation{
    background: var(--second-bg-color);
    padding: 1px 21px;
    width: 100%;
    position: relative;
    top: -39px;
    left: 81px;
}

#comment_section .comment-form p.comment-form-comment{
    width: 100%;
    height: 200px;
}

#comment_section form.comment-form{
    /* display: flex;
    flex-wrap: wrap; */
}

#comment_section form.comment-form input{
    background: #2b2a2e;
    border: none;
    border-radius: 5px;
    height: 53px;
    color: white;
    padding: 10px 20px;
}

#comment_section form.comment-form p.comment-form-author{
    width: 32%;
    float: left;
    margin-right: 1.5%;
}

#comment_section form.comment-form p.comment-form-url{
    display: grid;
    width: 32%;
    float: left;
}

#comment_section form.comment-form p.comment-form-email{
    width: 32%;
    float: left;
    margin-right: 1.5%;
}

#comment_section form.comment-form p.comment-form-comment textarea{
    background: #2b2a2e;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

#comment_section form.comment-form p.comment-form-cookies-consent label{
    position: relative;
    top: -22px;
    color: var(--second-font-color);
}

#comment_section form.comment-form p.comment-notes {
    color: var(--second-font-color);
}

#comment_section .comment-respond{
    margin-top: 94px;
}

#comment_section p.form-submit input.submit{
    background: var(--second-bg-color);
    color: white;
    font-weight: 600;
    padding: 14px 20px;
    height: auto;
    transition: .4s;
    cursor: pointer;
}

#comment_section p.form-submit input.submit:hover{
    background: transparent;
    border: 1px solid white;
}

.site-main #comment_section{
    border-bottom: none;
}



/* Sidebar css */
.sec{
    display: flex;
}


.page_content{
    width: 75%;
}


.wiget_sec{
    width: 25%;
}

#primary .wiget_sec .widget{
    margin-bottom: 18%;
}

#primary .wiget_sec .widget-title{
    font-size: 21px;
    margin-bottom: 18px;
}

#primary .wiget_sec .widget .gallery{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2.5%;
}

#primary .wiget_sec .widget select.postform{
    width: 100%;
    height: 49px;
    padding: 0px 10px;
    background: transparent;
    color: white;
    font-weight: 600;
    border: 1px solid var(--main-border-color);
}

#primary .wiget_sec .widget select.postform option{
    color: black;
}

#primary .wiget_sec .widget .gallery figure{
    margin-bottom: 2px;
}

#primary .wiget_sec ul{
    list-style: none;
    color: white;
}

#primary .wiget_sec ul li{
    margin-top: 10px;
    transition: .4s;
}

#primary .wiget_sec ul a{
    color: var(--second-font-color);
}

#primary .widget_search{
    position: relative;
}

#primary .widget_search form.search-form{
    position: relative;
    width: 100%;
    height: 56px;
    margin: auto;
    border: none;
    background: #262529;
    padding: 10px 11px;
    border-radius: 4px;
}

#primary .widget_search form.search-form input::-webkit-input-placeholder {
    color: var(--second-font-color) !important;
    font-weight: 400;
    opacity: 1;
    font-size: 15px;
}

#primary .widget_search form.search-form .search-submit{
    position: absolute;
    font-size: 16px;
    color: white;
    width: 55px;
    background: var(--second-bg-color);
    top: 0;
    right: 0;
    bottom: 0;
    padding-right: 17px;
}

#primary .wiget_sec .widget .textwidget{
    color: var(--second-font-color);
}

#primary .wiget_sec ul li a:hover{
    color: white;
}

#primary .wiget_sec .widget .tagcloud a{
    color: white;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 3px 9px 0;
    font-family: inherit;
    font-size: 16px!important;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: capitalize;
    background: var(--second-bg-color);
    padding: 2px 6px;
    border-radius: 3px;
}

#primary .wiget_sec .widget .calendar_wrap table.wp-calendar-table{
    width: 100%;
}

#primary .wiget_sec .widget .calendar_wrap span.wp-calendar-nav-prev a{
    color: white;
    background: var(--second-bg-color);
    padding: 4px 11px;
}

#primary .wiget_sec .widget .tagcloud a:hover{
    color: white;
}

#primary .wiget_sec .widget form.woocommerce-product-search{
    position: relative;
}

#primary .wiget_sec .widget form.woocommerce-product-search input.search-field{
    position: relative;
    width: 100%;
    height: 56px;
    margin: auto;
    border: none;
    background: #262529;
    padding: 10px 11px;
    border-radius: 4px;
}

#primary .wiget_sec .widget form.woocommerce-product-search input.search-field::-webkit-input-placeholder {
    color: var(--second-font-color) !important;
    font-weight: 400;
    opacity: 1;
    font-size: 15px;
}

#primary .wiget_sec .widget form.woocommerce-product-search .search-submit{
    position: absolute;
    font-size: 16px;
    color: white;
    width: 55px;
    background: var(--second-bg-color);
    top: 0;
    right: 0;
    bottom: 0;
    padding-right: 17px;
}

#primary .wiget_sec .widget ul.product_list_widget li a img{
    width: 58px;
}

#primary .wiget_sec .widget .calendar_wrap table.wp-calendar-table tbody{
    color: var(--second-font-color);
}

#primary .wiget_sec .widget .woocommerce .widget_shopping_cart .total, .woocommerce.widget_shopping_cart .total{
    border-top: 1px solid var(--main-border-color);
    padding: 8px 0 0;
    margin-top: 10px;
}

#primary .wiget_sec .widget .woocommerce .widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons a{
    margin-right: 18px;
    margin-bottom: 5px;
    background: var(--second-bg-color);
    padding: 4px 10px;
    font-weight: 600;
    color: white;
    transition: .5s;
}

.section__{
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 1.5%;
    padding: 10% 0%;
}

.owl-carousel{
    width: 90%;
}

.owl-nav{
    display: none;
}

.ser_sec{
    flex: none;
    height: 316px;
    background: white;
    color: black;
    padding: 20px 29px;
    text-align: center;
    cursor: grab;
    box-shadow: 0 6px 7px rgb(247 244 244 / 20%);
    transition: .5s;
}


.ser_logo{
    font-size: 44px;
    margin-bottom: 20px;
}


.ser_h1_sec{
    font-size: 25px;
    font-weight: 700;
}


.ser_space{
    margin: 0 auto;
    background: var(--second-bg-color);
    width: 31%;
    height: 2px;
    margin-bottom: 20px;
}


.ser_des p{
    color: black
}

.ser_sec:hover{
    transform: translateY(-10px);
}

.owl-stage{
    padding-top: 20px;

}

.owl-item{
    padding-right: 10px;
}

.next_post_box{
    position: fixed;
    border-radius: 5px;
    width: 265px;
    bottom: 16px;
    left: 112px;
    z-index: 20;
}

.next_bottom{
    cursor: pointer;
    background-color: white;
    padding: 23px 20px;
    border-radius: 6px;
}


.nxt_pst_img{
    opacity: 0;
    transition: .5s;
    transform: translateY(10px);
    height: 125px;
}

.nxt_pst_img img{

}


.ntx_mark{
    background: inherit;
    color: black;
    display: flex;
    justify-content: space-between;

}


.nxt_post{
    width: 70%;
    font-size: 18px;
    font-weight: 600;
}


.nxt_buttons{
    width: 30%;
    display: flex;
    justify-content: space-between;
}

.nxt_buttons img{
    width: 22px;
    height: 22px;
    cursor: pointer;
}


.nxt_title{
    background: inherit;
    color: black;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    transition: .3s;
}


.up_next{
    transform: translateY(0px);
    opacity: 1;
}

.hidden_video{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

#iframe{
    width: 100%;
    height: 100%;
}

.display__{
    display: none;
}

.page_content_no_sidebar{
    width: 100%;
    padding-right: 0%;
}

.blog_section_archive{
    display: flex;
}

.blog_main_archive{
    width: 71%;
    padding: 0% 5% 0% 3%;
    margin: 0px;
}

.project_detail_section_sidebar{
    display: flex;
    padding-top: 10%;
}

.projet_detail_main_sidebar{
    margin: 0px;
    width: 71%;
    margin-top: 0px;
    padding: 0% 4% 0% 3%;
}

.wiget_sec_shop{
    width: 20%; 
    padding-top: 18%;
    position: relative;
    left: -21px;
}

.store_main_sidebar .woocommerce .products ul, .woocommerce ul.products {
    padding-top: 10%;
}

.product_sidebar{

}


.notfound_main{
    border-bottom: 1px solid var(--main-border-color);
}


.search_btn_shop{
    cursor: pointer;
    position: absolute;
    right: 130px;
    top: 34px;
    font-size: 18px;
    z-index: 20;
}


.icon_image{
    width: 17px;
    height: 17px;
}

.ser_logo img{
    width: 60px !important;
    height: auto;
    margin: auto;
}

.icon_image_tag{
    width: 12px;
    height: 12px;
    margin-right: 4px;
}