/*------------------------------------------------------------------
Project:Azota
Author: The_Krishna       
Last change: 3 April, 2023  
Primary use:  Professional Digital Creative Agency Website 
-------------------------------------------------------------------*/

/*----------------Table of contents Start---------------------------
1 Default CSS
2 Animation CSS
3 Header Section Start
4 Hero Section
5 About Section
6 Services Section
7 Skills Section
8 Video Section
9 Counter Section
10 Idea Section
11 Testimonial Section
12 Porfolio Section
13 Pricing Section
14 Team Section
15 News Section
16 Skype Section
17 Map Section
18 Contact Section
19 Subscribe Section
20 Footer Section
21 Scroll Bottom to Top Start
22 News Modal Start
23 Services Modal Start
24 Portfolio Modal Start
25 Price Modal Start

---------Table of contents End-----------------------------------*/

/*------------------------ [Color codes] ------------------------                     
Background:     #ffffff 
Content:        #808080 
Heading h1:     #ffffff
Header h2:      #ffffff
paragraph p:    #808080    

a (standard):   #ffffff
a (visited):    #FD8558
a (hover):      #FD8558
a (active):     #FD8558
-------------------------------------------------------------------*/

/************************ 1 Default css ***************************/
body {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
}

html {
    scroll-behavior: smooth;
}

.modal .modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal .modal-body::-webkit-scrollbar-track {
    border-radius: 10px;
}

.modal .modal-body::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 10px;
}

.modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #f35333;
}

/************************ 2 Animation CSS ***************************/
@keyframes fixedheader {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@-webkit-keyframes fixedheader {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadezoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.3);
    }
}

@-webkit-keyframes fadezoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
}

@keyframes Slick-FastSwipeIn {
    0% {
        transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
    }

    100% {
        transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
    }
}

@-webkit-keyframes Slick-FastSwipeIn {
    0% {
        -webkit-transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
        transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
    }

    100% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
        transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
    }
}

@keyframes in-left {
    from {
        -webkit-transform: rotate3d(0, 1, 0, 90deg);
        transform: rotate3d(0, 1, 0, 90deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@-webkit-keyframes in-left {
    from {
        -webkit-transform: rotate3d(0, 1, 0, 90deg);
        transform: rotate3d(0, 1, 0, 90deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@keyframes out-left {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        -webkit-transform: rotate3d(0, 1, 0, 86deg);
        transform: rotate3d(0, 1, 0, 86deg);
    }
}

@-webkit-keyframes out-left {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        -webkit-transform: rotate3d(0, 1, 0, 86deg);
        transform: rotate3d(0, 1, 0, 86deg);
    }
}

@keyframes in-right {
    from {
        -webkit-transform: rotate3d(0, -1, 0, 90deg);
        transform: rotate3d(0, -1, 0, 90deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@-webkit-keyframes in-right {
    from {
        -webkit-transform: rotate3d(0, -1, 0, 90deg);
        transform: rotate3d(0, -1, 0, 90deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@keyframes out-right {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        -webkit-transform: rotate3d(0, -1, 0, 86deg);
        transform: rotate3d(0, -1, 0, 86deg);
    }
}

@-webkit-keyframes out-right {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        -webkit-transform: rotate3d(0, -1, 0, 86deg);
        transform: rotate3d(0, -1, 0, 86deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-counter {
    0% {
        left: 0;
    }
}

@-webkit-keyframes animate-counter {
    0% {
        left: 0;
    }
}

@keyframes animate-positive {
    0% {
        width: 0;
    }
}

@-webkit-keyframes animate-positive {
    0% {
        width: 0;
    }
}

@keyframes scrolltop {
    0% {
        box-shadow: 0 0 0 0px hsl(16deg 98% 67%);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
    }
}

@-webkit-keyframes scrolltop {
    0% {
        -webkit-box-shadow: 0 0 0 0px hsl(16deg 98% 67%);
        box-shadow: 0 0 0 0px hsl(16deg 98% 67%);
    }

    100% {
        -webkit-box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
        box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
    }
}

@keyframes flash {
    0% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes flash {
    0% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}

/************************ 3 Header Section ***************************/
#header_sec {
    position: absolute;
    width: 100%;
    z-index: 99;
}

.site_content {
    overflow: hidden;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    padding: 0 !important;
    margin: 0 15px;
    text-transform: uppercase;
}

li.nav-item:last-child a.nav-link {
    margin-right: 0;
}

.nav-link.active {
    color: #FD8558 !important;
}

.fixed {
    position: fixed !important;
    z-index: 1;
    background: #141414;
    width: 100%;
    top: 0%;
    left: 0;
    -webkit-box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
    box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
    -webkit-animation: fixedheader 600ms ease 0ms 1 forwards;
    animation: fixedheader 600ms ease 0ms 1 forwards;
}

.nav-link:hover,
.nav-link:focus {
    color: #FD8558 !important;
    transition: 0.3S;
    -webkit-transition: 0.3S;
    -o-transition: 0.3S;
}

.nav-link:focus,
.nav-link:hover {
    color: #fd8558;
}

header.fixed,
header.fixed nav.navbar.navbar-expand-lg.navbar-light {
    height: 80px;
}

/****************************** 4 Hero Section ***********************/
.img-fill {
    position: relative;
    height: 100%;
}

.img-fill img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    animation: fadezoom 8s 0s forwards;
    -webkit-animation: fadezoom 8s 0s forwards;
}

.item {
    height: 100vh;
    overflow: hidden;
    outline: none;
}

.left-arrow:hover,
.right-arrow:hover {
    background: #fd8558;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}

.img-fill:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #151515;
    opacity: 0.5;
}

.carousel-item.active {
    animation: Slick-FastSwipeIn 0s both;
    -webkit-animation: Slick-FastSwipeIn 0s both;
}

.item .contain-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    text-align: center;
}

.item h1 {
    margin: 0px;
    font-size: 84px;
    font-weight: 300;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 275;
    font-size: 100px;
    line-height: 100px;
    color: #FFFFFF;
}

span.bold_txt {
    font-weight: 800;
}

.slider_button {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100px;
    text-align: center;
}

.slider_button_link {
    display: inline-block;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    padding: 21px 57px;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.slider_button_link span {
    font-weight: 600;
    font-family: 'Poppins';
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    text-transform: uppercase;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
}

.slider_button_link p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    margin-top: 12px;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
}

a.slider_button_link {
    text-decoration: none;
}

.item {
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.item h5 {
    font-size: 32px;
    font-weight: 300;
    padding: 10px 0 0;
    margin: 0;
    text-transform: capitalize;
}

.item .contain-wrapper .info {
    max-width: 1170px;
}

.carousel-item.active .item h1 {
    animation: fadeInDown 1s both 1s;
    -webkit-animation: fadeInDown 1s both 1s;
}

.item h1 {
    animation: fadeOutRight 1s both;
    -webkit-animation: fadeOutRight 1s both;
}

.carousel-item.active .business_button {
    animation: fadeInLeft 1s both 1.5s;
    -webkit-animation: fadeInLeft 1s both 1.5s;
}

.business_button {
    animation: fadeOutLeft 1s both;
    -webkit-animation: fadeOutLeft 1s both;
}

.hero_prev,
.hero_next {
    position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 98;
    width: 60px;
    height: 60px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    color: #000;
    margin-top: 106px;
}

.left-arrow {
    left: 80px;
    top: 50%;
    margin: 0;
}

.right-arrow {
    right: 60px;
    top: 50%;
    margin: 0;
}

.slider_button_link:hover {
    background-color: #FD8558;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}

/************************ 5 About Section ***************************/
.ult_txt {
    font-style: normal;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    line-height: 60px;
    color: #141414;
}

.comm_txt {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
}

.orange_box {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    background-color: #FD8558;
    width: 300px;
    height: 100px;
    text-transform: uppercase;
    clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0% 70%);
    -webkit-clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0% 70%);
}

.our_mission {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    color: #141414;
}

.orange_txt {
    color: #FD8558;
}

.binj_txt {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #141414;
    margin-top: 60px;
}

.direc_txt {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.1em;
    color: #808080;
    margin-top: 20px;
}

.about_third_sec {
    margin-top: 80px;
}

.number_heading {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    color: #141414;
    margin-top: 20px;
}

.commo_txt {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 40px;
}

.about_first_sec {
    margin: 80px 0;
}

#about_sec {
    padding-bottom: 100px;
}

.about_middle_img_sec {
    position: relative;
}

.about_middle_img:hover .about_middle_img_sec:before {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) scale(1);
    -webkit-transform: perspective(400px) rotateY(0deg) scale(1);
}

.pbmit-animation-style1.active {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.pbmit-animation-style1 {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    display: inline-block;
    position: relative;
    overflow: hidden;
    -webkit-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    -o-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}

.pbmit-animation-style1.active img {
    transform: scale(1) translate(0px, 0px);
    -webkit-transform: scale(1) translate(0px, 0px);
    -ms-transform: scale(1) translate(0px, 0px);
}

.pbmit-animation-style1 img {
    -webkit-transform: scale(1.5) translate(-100px, 0px);
    -ms-transform: scale(1.5) translate(-100px, 0px);
    transform: scale(1.5) translate(-100px, 0px);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    -o-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}

/************************ 6 Services Section ***************************/
.services_sec_heading {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    color: #FFFFFF;
    margin-top: 40px;
}

.services_sec_txt {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 20px;
}

.services_img_sec:before {
    content: "";
    border-radius: 100%;
    width: 120px;
    height: 120px;
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: -1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.services_img_sec {
    position: relative;
    z-index: 1;
    margin-top: 100px;
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
}

.services_img_sec.bulb:before {
    background-color: #F4DBD2;
}

.services_img_sec.ring:before {
    background-color: #CDCDF4;
}

.services_img_sec.media:before {
    background-color: #E3F4E9;
}

.services_img_sec:hover:before {
    top: 0;
    left: 0;
}

.more_btn {
    font-family: 'Poppins';
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    padding: 10px 50px;
    text-transform: uppercase;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    position: relative;
    margin-top: 40px;
    background: transparent;
    border: navajowhite;
}

.more_btn:before {
    content: "";
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 2px solid #FFFFFF;
    border-radius: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
}

.more_btn:hover:before {
    width: 100%;
    height: 100%;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
}

#services_sec {
    background: #141414;
    padding-bottom: 100px;
}

.video_btn_close {
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    padding: 0;
    border-radius: 0px;
    opacity: 1;
    width: 30px;
    border: 1px solid black;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    height: 30px;
}

.video_btn_close:hover {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid black;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}

/************************ 7 Skills Section ***************************/
.our_skill_txt {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #141414;
}

.modern_txt {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    color: #141414;
    margin-top: 20px;
}

.our_skill_desc {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    color: #808080;
    margin-top: 40px;
}

.progresbar-counter {
    margin-bottom: 40px;
}

.progresbar-counter:last-child {
    margin-bottom: 0;
}

.skill-bars {
    margin-top: 60px;
}

.progress-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    color: #141414;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    float: left;
    text-transform: uppercase;
}

.progress-value {
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    color: #141414;
    float: right;
    font-family: 'Poppins', sans-serif;
}

.reveal.active .progress-value {
    animation: animate-counter 4.5s;
    -webkit-animation: animate-counter 4.5s;
    -moz-animation: animate-counter 4.5s;
    -ms-animation: animate-counter 4.5s;
    -o-animation: animate-counter 4.5s;
}

.skil-progressbar {
    height: 2px;
    background-color: #808080;
    margin-top: 20px;
    clear: both;
}

.skil-progressbar span {
    display: inline-block;
    position: absolute;
    height: 8px;
    background-color: #141414;
}

.reveal.active .skil-progressbar span {
    animation: animate-positive 4.5s;
    -webkit-animation: animate-positive 4.5s;
    -moz-animation: animate-positive 4.5s;
    -ms-animation: animate-positive 4.5s;
    -o-animation: animate-positive 4.5s;
}

.skills_top_sec {
    margin-bottom: 80px;
}

#skills_sec {
    padding-bottom: 100px;
}

/************************ 8 Video Section ***************************/
#video_sec {
    background-image: url(../images/video/bg-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    max-width: 100%;
    padding-bottom: 230px;
    position: relative;
}

.video_sec_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 64px;
    line-height: 72px;
    color: #FFFFFF;
}

.video_overlay {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.check_btn {
    padding: 20px 37px 20px 40px !important;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 30px;
    margin-top: 80px;
}

.btn:hover {
    color: #ffffff;
    background-color: transparent;
    border-color: #ffffff;
}

i.play_icon.fa-solid.fa-play {
    font-size: 36px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    width: 100px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

i.play_icon.fa-solid.fa-play:hover {
    background: #fd8558;
}

.video_sec_play {
    position: absolute;
}

.video_button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.video_full_Sec {
    padding-top: 100px;
}

.video_second_sec {
    margin-top: 35px;
}

.modal-content-video {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal_video-sec {
    width: 100%;
    object-fit: contain;
    -o-object-fit: contain;
    height: auto;
}

.modal-dialog {
    max-width: 1170px;
    height: 100%;
    width: 100%;
    padding: 0 20px !important;
}

.video_button:hover a {
    background: #fd8558;
}

.video_button svg {
    animation: rotating 7s linear infinite;
    -webkit-animation: rotating 7s linear infinite;
    -moz-animation: rotating 7s linear infinite;
    -ms-animation: rotating 7s linear infinite;
    -o-animation: rotating 7s linear infinite;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

/************************ 9 Counter Section ***************************/
.counter_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    text-align: center;
    color: #141414;
}

.counter_details:hover .counter_heading {
    color: #fd8558;
}

.counter_heading {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #808080;
    margin-top: 20px;
}

.row.counter_full_sec {
    border-bottom: 4px solid #FD8558;
    padding: 80px 0;
    background-color: #FFFFFF;
    box-shadow: 0px 5px 40px rgba(20, 20, 20, 0.08);
    -webkit-box-shadow: 0px 5px 40px rgba(20, 20, 20, 0.08);
}

.reveal.active .skil-progressbar span {
    animation: animate-positive 4.5s;
    -webkit-animation: animate-positive 4.5s;
    -moz-animation: animate-positive 4.5s;
    -ms-animation: animate-positive 4.5s;
    -o-animation: animate-positive 4.5s;
}

.reveal.active .progress-value {
    animation: animate-counter 4.5s;
    -webkit-animation: animate-counter 4.5s;
    -moz-animation: animate-counter 4.5s;
    -ms-animation: animate-counter 4.5s;
    -o-animation: animate-counter 4.5s;
}

/************************ 10 Idea  Section ***************************/
.contact_btn {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #141414;
    border: 2px solid #141414 !important;
    border-radius: 30px;
    padding: 20px 37px 20px 40px !important;
    background-color: #ffffff;
}

.idea_sec_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    color: #141414;
}

#idea_sec {
    padding: 100px 0;
}

#counter_sec {
    margin-top: -130px;
    position: relative;
}

/************************ 11 Testimonial Section ***************************/
.client_image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.review_icon i {
    width: 60px;
    height: 60px;
    background: #fd8558;
    border-radius: 50%;
    color: white;
}

.review_icon {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.client_review p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    color: #FFFFFF;
}

.testi_img_sec {
    position: relative;
    width: 200px;
    height: 200px;
}

.client_name h4 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    margin-top: 60px;
}

.client_position h5 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #808080;
    margin-top: 20px;
}

section#testimonial {
    background: #141414;
}

.testimonial_slider {
    margin-top: 80px;
}

.logo_slider {
    padding: 100px 0;
}

.slick-custom-arrow {
    position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 98;
    width: 60px;
    height: 60px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    color: #000;
    margin-top: 106px;
}

.slick-custom-arrow-left {
    right: 80px;
    top: 50%;
}

.slick-custom-arrow-right {
    right: 0;
    top: 50%;
}

i.fas.fa-angle-right,
i.fa.fa-angle-left {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
}

.logo_imgg {
    margin-left: auto;
    margin-right: auto;
}

.slick-custom-arrow:hover {
    background: #fd8558;
}

.logo_img_sec {
    position: relative;
    height: 50px;
    overflow: hidden;
}

.logo_img_sec:hover img {
    -webkit-transform: translateY(-63px);
    -ms-transform: translateY(-63px);
    transform: translateY(-63px);
    -webkit-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
}

.logo_img_sec img {
    transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -o-transition: all 700ms ease;
}

/************************ 12 Portfolio Section ***************************/
.portfolio_overlay {
    background-color: #141414;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
}

.portfolio_content {
    padding: 30px;
    background-color: #141414;
    position: absolute;
    cursor: pointer;
    margin-right: 40px;
    bottom: -40px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
}

.portfolio_button {
    display: inline-block;
    z-index: 1;
    padding: 0px 20px;
    color: #EA4335;
}

.portfolio_name h5 {
    font-weight: 600;
    font-family: 'Poppins';
    font-size: 30px;
    line-height: 40px;
    color: #FFFFFF;
    margin-top: 20px;
    cursor: pointer;
    text-transform: capitalize;
}

.portfolio_middle_content {
    column-gap: 15px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
}

.portfolio_top_sec {
    padding-bottom: 80px;
}

.portfolio-title h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    font-family: 'Poppins';
    letter-spacing: 0.05em;
    color: #808080;
    text-transform: uppercase;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
}

.portfolio_image img {
    width: 100%;
}

.portfolio_button:before {
    content: "";
    width: 30px;
    height: 30px;
    background-color: #FD8558;
    border-radius: 30px;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: -1;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
}

#portfolio_sec {
    padding-bottom: 140px;
}

.portfolio_grid {
    row-gap: 56px;
    --bs-gutter-y: 4rem;
}

.portfolio_box:hover .portfolio_button:before {
    background-color: #141414;
    left: 30px;
}

.portfolio_box:hover .portfolio_content {
    background-color: #FD8558;
}

.portfolio_box:hover .portfolio-title h4 {
    color: #141414;
}

.portfolio_sec_full:hover .portfolio_overlay {
    opacity: 0.6;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    -webkit-box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
}

/************************ 13 Pricing Section ***************************/
.we_offer_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #FFFFFF;
    padding: 80px 0;
}

#pricing_sec {
    background: #141414;
    padding-bottom: 100px;
}

.plan_btn {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.1em;
    background: #FD8558;
    border-radius: 30px;
    padding: 20px 38px 20px 40px;
    color: #FFFFFF;
    margin-top: 60px;
    border: none;
}

.basic_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    color: #FFFFFF;
}

.price_digit {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 100px;
    line-height: 100px;
    color: #FD8558;
    margin-top: 40px;
}

.per_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #808080;
    margin-top: 20px;
}

.lince_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #808080;
    margin-top: 20px;
}

ul.price_deatails li {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: #FFFFFF;
}

li.color_price {
    text-decoration-line: line-through;
    -webkit-text-decoration-line: line-through;
    color: #808080 !important;
}

.pricing_table {
    padding: 40px;
    border: 2px solid #FFFFFF;
    -webkit-transform: translateY(0px) scale();
    -ms-transform: translateY(0px) scale();
    transform: translateY(0px) scale();
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.pricing_table:hover {
    -webkit-transform: translateY(-16px) scale(1.02);
    -ms-transform: translateY(-16px) scale(1.02);
    transform: translateY(-16px) scale(1.02);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.price_bottom {
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}

ul.price_deatails {
    margin-top: 60px;
}

/************************ 14 Team Section ***************************/
.team_bottom_sec h4 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #808080;
}

.team_middle_sec1 h2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #141414;
    padding: 80px 0;
}

#team_sec {
    padding-bottom: 100px;
}

.team_top_sec img {
    width: 100%;
}

.team_bottom_sec p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    color: #FFFFFF;
    margin-top: 20px;
}

.team_bottom_sec {
    background: black;
    padding: 20px;
    position: relative;
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    text-align: center;
    line-height: 36px;
    position: absolute;
    top: -20px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: white;
    cursor: pointer;
}

.abc {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transform: translateY(-180px);
    -webkit-transform: translateY(-180px);
    -ms-transform: translateY(-180px);
    bottom: 0;
}

.icon22 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    margin-top: 15px;
}

.team_full_section:hover .abc {
    opacity: 1;
    transition: 0.8s;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;

}

.icon22 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translate(8px, 8px);
    -ms-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
}

.icon.plus_icon svg path {
    fill: #fd8558;
}

.icon22:hover {
    background: #fe7c00;
}

.icon22:hover svg path {
    fill: white;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}

.team_top_sec:before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    right: 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: rgb(21 21 21 / 30%);
    z-index: 1;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
}

.team_top_sec img {
    width: 100%;
    transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -o-transition: all 700ms ease;
}

.team_top_sec {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: -1;
}

.team_full_section:hover .team_top_sec:before {
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .7s;
    -o-transition-duration: .7s;
    transition-duration: .7s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
}

.team_full_section:hover .team_top_sec img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.team_full_section:hover .team_bottom_sec p {
    color: #fd8558;
}

/*********************** 15 News Section ***************************/
.event_sec p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #FD8558;
}

.date_txt p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #808080;
}

.team_deatails h4 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #FFFFFF;
    cursor: pointer;
}

.team_deatails {
    margin-top: 20px;
}

.news_button {
    margin-top: 40px;
}

#news_Section {
    background: #141414;
    padding-bottom: 228px;
}

.readmore_button {
    display: inline-block;
    font-weight: 600;
    font-family: 'Poppins';
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    padding: 20px 60px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.readmore_button:before {
    content: "";
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 2px solid #FFFFFF;
    border-radius: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.readmore_button:hover {
    color: #ffffff;
}

.readmore_button:hover:before {
    width: 100%;
    height: 100%;
}

.news_button a {
    text-decoration: none;
}

.team_event_sec {
    margin-top: 40px;
}

.team_middle_sec {
    margin-top: 80px;
}

.case-one_overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: -webkit-transform 0.4s ease;
    -webkit-transition: -webkit-transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
}

.case-one_overlay:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    z-index: 1;
    right: 0px;
    bottom: 0px;
    opacity: 0.80;
    background-color: rgb(21 21 21 / 30%);
}

.team_img_sec:hover .case-one_overlay {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.team_img_sec {
    position: relative;
}

.team_img_sec img {
    width: 100%;
}

.ways_txt {
    display: inline;
    transition: all 0.35s linear;
    background: linear-gradient(to bottom, #fd8558 0%, #fd8558 98%);
    background-size: 0px 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    text-decoration: none;
}

.team_middle_first_sec:hover .ways_txt {
    background-size: 100% 2px;
}

/*********************** 16 Skype Section ***************************/
#skype_section {
    margin-top: -138px;
}

.skype_row {
    margin: 0;
    background-color: #ffffff;
    box-shadow: 0px 5px 40px rgba(20, 20, 20, 0.08);
    -webkit-box-shadow: 0px 5px 40px rgba(20, 20, 20, 0.08);
    -moz-box-shadow: 0px 5px 40px rgba(20, 20, 20, 0.08);
    -ms-box-shadow: 0px 5px 40px rgba(20, 20, 20, 0.08);
    -o-box-shadow: 0px 5px 40px rgba(20, 20, 20, 0.08);
}

.skype_left_column {
    padding: 0;
}

.skype_button {
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    right: -50px;
    cursor: pointer;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.skype_icon {
    width: 80px;
    height: 80px;
    background-color: #FD8558;
    border-radius: 100%;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.skype_right_column {
    padding: 57px 60px 57px 100px;
}

.skype_heading h5 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    color: #141414;
    font-family: 'Poppins';
}

.skype_para p {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #808080;
    margin-top: 20px;
    text-transform: capitalize;
    font-family: 'Poppins';
}

.skype_para p a {
    font-weight: 600;
    color: #FD8558;
    letter-spacing: 0.05em;
    text-decoration: underline;
    text-transform: uppercase;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.skype_para p a:hover {
    color: #000000;
}

/*********************** 17 map Section ***************************/
#map_section iframe {
    width: 100%;
    margin-top: -138px;
}

/************************ 18 Contact Section ***************************/
.form_field {
    background-color: #ffffff;
    border: none;
    border-bottom: 2px solid #808080;
    width: 100%;
    padding: 0;
    padding-bottom: 15px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.05em;
    color: #808080;
}

.border-bottom {
    display: block;
    width: 100px;
    height: 6px;
    background-color: #141414;
    position: absolute;
    bottom: -5px;
}

.message_textarea {
    display: block;
    width: 100%;
    height: 80px;
    border: none;
    border-bottom: 2px solid #808080;
    padding: 0;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.05em;
    color: #808080;
}

.form .svg_position {
    position: absolute;
    top: 0;
    right: 0;
}

.send_button {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 20px;
    color: #2D1B4E;
    background-color: #F5C741;
    border: none;
    border-radius: 35px;
    margin-top: 40px;
    padding: 18px 35px;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(245, 199, 65, 0.4);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.send_button:hover {
    background-color: #E6B830;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 199, 65, 0.5);
}

.send_button:active {
    transform: translateY(0);
}

.send_button.button_design:before,
.send_button.button_design:after,
.send_button.button_design1:before,
.send_button.button_design1:after {
    display: none !important;
    content: none !important;
}

.send_button.button_design:hover,
.send_button.button_design1:hover {
    color: #2D1B4E;
    background-color: #E6B830;
}

.upper-space {
    margin-top: 40px;
}

#contact_sec {
    padding-bottom: 100px;
    margin-top: -7px;
}

.contact_second_section h2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: #141414;
}

.contact_second_section p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 40px;
    margin-bottom: 60px;
}

.form_field:focus-visible,
.message_textarea:focus-visible {
    outline: none;
}

.contact_img:before {
    content: "";
    border-radius: 100%;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: -1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.button_design {
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.button_design:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #FD8558;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    z-index: -1;
}

.button_design:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10rem;
    z-index: -2;
}

.button_design:hover:before {
    width: 100%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.button_design:hover {
    color: white;
}

#detail_section {
    margin-top: 100px;
    margin-bottom: 210px;
}

.detail_row {
    margin: 0 -15px;
}

.detail_content {
    margin-left: 40px;
}

.detail_title h4 {
    font-weight: 600;
    font-size: 20px;
    font-family: 'Poppins';
    line-height: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.detail_title_1 {
    color: #FD8558;
}

.detail_title_2 {
    color: #706DF9;
}

.detail_title_3 {
    color: #2BF06E;
}

.detail_contact_number {
    margin-top: 20px;
}

.detail_contact_number h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #141414;
}

.detail_contact_number h5 span {
    font-weight: 400;
    color: #808080;
    cursor: pointer;
}

.mob_no:hover a,
.con_email:hover a {
    color: #fd8558;
}

.detail_contact_number p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;

    color: #808080;
}

.detail_contact_number h5 span a {
    text-decoration: none;
    color: #808080;
}

.detail_contact_number h6 span:hover {
    color: #000000;
}

.detail_para p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 20px;
}

.detail_icon {
    height: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
}

.detail_icon:before {
    content: "";
    border-radius: 100%;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: -1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.detail_icon_1:before {
    background-color: #F4DBD2;
}

.detail_icon_2:before {
    background-color: #CDCDF4;
}

.detail_icon_3:before {
    background-color: #E3F4E9;
}

.detail_icon:hover:before {
    top: 0;
    left: 0;
}

/************************ 19 Subscibe Section ***************************/
.subscribe_heading h3 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    color: #141414;
    text-transform: capitalize;
    font-family: 'Poppins';
    font-style: normal;
}

.subscribe_form_field {
    display: block;
    color: #ffffff;
    background-color: transparent;
    border-bottom: 2px solid #ffffff;
    width: 350px;
}

.subscribe_email_svg {
    position: absolute;
    top: 0;
    right: 0;
}

.contact_top {
    padding-top: 80px;
    padding-bottom: 100px;
}

.send_button {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 20px;
    color: #2D1B4E;
    margin-top: 40px;
    background-color: #F5C741;
    border: none;
    border-radius: 35px;
    font-family: 'Poppins';
    padding: 18px 35px;
    width: auto;
    height: auto;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(245, 199, 65, 0.4);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.padding {
    position: relative;
    padding: 60px;
}

.subscribe_form_email {
    float: left;
}

.subscribe_para p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
    margin-top: 16px;
}

.subscribe_form_field::placeholder {
    color: #ffffff;
}

.subscribe_form_field::-webkit-input-placeholder {
    color: #ffffff;
}

.subscribe_form_field::-moz-placeholder {
    color: #ffffff;
}

.subscribe_form_field:-ms-input-placeholder {
    color: #ffffff;
}

#subscribe_sec {
    margin-bottom: -110px;
}

.subscribe_form {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
}

.subscribe_full_sec {
    background-image: url(../../assets/images/subscribe/contact-overlay.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    max-width: 100%;
}

.subscribe_overlay {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(253 133 88 / 80%);
}

.subscribe_email_svg path {
    fill: white;
}

.button_design1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.button_design1:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: white;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    z-index: -1;
}

.button_design1:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.button_design1:hover:before {
    width: 100%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.button_design1:hover {
    color: black;
}

/************************ 20 Footer Section ***************************/
.footer_line {
    margin-top: 160px;
}

.footer_divider {
    margin: 0;
    color: #808080;
    background-color: #808080;
    width: 570px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
}

.footer_divider:before {
    content: "";
    width: 1px;
    height: 100px;
    color: #808080;
    background-color: #808080;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.footer_heading h4 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    font-family: 'Poppins';
}

.footer_heading h4 a:hover {
    color: #FD8558;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
}

.footer_heading h4 a {
    color: #ffffff;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

#footer_section {
    background: #141414;
    padding-bottom: 0px;
    padding-top: 80px;
}

.social_icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #808080;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer_social_icon {
    margin: 60px 0;
    position: relative;
}

.footer_copyright p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
    text-align: center;
}

.footer_copyright p:hover {
    color: #FD8558;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.social_icon:after {
    content: "";
    display: block;
    width: 90%;
    height: 90%;
    top: -110%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    background-color: #FD8558;
    border-radius: 50%;
}

.social_icon:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.social_icon:hover:after {
    top: 5%;
    transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    z-index: -1;
}

.social_icon:hover svg path {
    fill: white;
}

/* Footer Industries */
.footer_industries {
    margin-top: 30px;
    margin-bottom: 20px;
}

.footer_industries_row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.footer_industries_row span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #808080;
    padding: 0 10px;
}


/* Footer Sitemap */
.footer_sitemap {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.footer_sitemap_links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.footer_sitemap_links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0 20px;
    transition: all 0.3s ease;
    border-right: 1px solid #FFFFFF;
}

.footer_sitemap_links a:last-child {
    border-right: none;
}

.footer_sitemap_links a:hover {
    color: #FD8558;
}

/* Footer Bottom Bar */
.footer_bottom_bar {
    background-color: #0a0a0a;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #222;
}

.footer_bottom_bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer_bottom_bar .copyright_text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #808080;
    margin: 0;
}

.footer_bottom_social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer_bottom_social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #808080;
    transition: all 0.3s ease;
}

.footer_bottom_social a:hover {
    border-color: #FD8558;
}

.footer_bottom_social a:hover svg path {
    fill: #FD8558;
}

.footer_legal_links {
    display: flex;
    gap: 30px;
}

.footer_legal_links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #5b9bd5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer_legal_links a:hover {
    color: #FD8558;
}

@media (max-width: 768px) {
    .footer_bottom_bar {
        padding: 15px 0;
    }

    .footer_bottom_bar .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer_sitemap_links a {
        padding: 5px 15px;
        font-size: 13px;
    }

    .footer_legal_links {
        gap: 15px;
        justify-content: center;
    }
}

/****************************** 21 Scroll Bottom to Top Start ***********************/
.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    animation: scrolltop 2s infinite;
    -webkit-animation: scrolltop 2s infinite;
    animation: scrolltop 2s infinite;
    border-radius: 50%;
    display: none;
}

.scroll-top::after {
    position: absolute;
    content: "\f062";
    font-family: 'FontAwesome';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: #FD8558;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
}

.scroll-top.active {
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.scroll-top svg.border-circle path {
    stroke: #FD8558;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.scroll-top svg path {
    fill: none;
}

.scroll-top:hover {
    background: #FD8558;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;

}

.scroll-top:hover:after {
    color: white;
}

/****************************** 22 News Modal Start ***********************/
.Categories_sec li:hover a,
.blog-tags a:hover {
    color: #FD8558;
}

.social-icon-style2 li a:hover {
    color: #fd8558;
}

.news_btn_close,
.service_btn_close,
.portfolio_btn_close,
.price_btn_close {
    width: 40px;
    height: 40px;
    background-color: white;
    border: 2px solid #000000;
    border-radius: 10px;
    padding: 0;
    opacity: 1;
    z-index: 1;
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
}

.service_btn_close svg path,
.portfolio_btn_close svg path,
.news_btn_close svg path,
.price_btn_close svg path {
    fill: black;
}

.price_btn_close:hover,
.service_btn_close:hover,
.news_btn_close:hover,
.portfolio_btn_close:hover {
    border-radius: 100px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
}

.news-tag {
    position: absolute;
    bottom: 6%;
    right: 6%;
    background-color: #FD8558;
    padding: 10px 19px;
    color: #fff;
    display: inline-block;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.05em;
}

.entry-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid #efefef;
    padding: 8px 0;
    position: relative;
    font-weight: 600;
    font-family: 'Poppins';
}

.text-primary {
    color: #FD8558 !important;
}

.blog-author-box {
    overflow: hidden;
    border-radius: 10px;
    padding: 40px 40px 40px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    margin-top: 40px;
}

.leave_commemt_sec {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
}

.butn {
    color: #fff;
    font-family: 'Inter';
    background-color: #FD8558;
    padding: 14px 26px 12px !important;
    font-size: 12px !important;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}

span.txt {
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-transform: capitalize;
}

.leave_btn:hover,
.butn1:hover {
    background: black;
    color: white;
}

a.butn1 {
    text-decoration: none;
}

.butn1 {
    color: #fff;
    font-family: 'Inter';
    background-color: #FD8558;
    padding: 14px 26px 12px !important;
    font-size: 12px !important;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border-radius: 30px;
}

.widget {
    position: relative;
    display: block;
}

.section-title01 .sm-title {
    position: relative;
    font-weight: 500;
    font-size: 20px;
    display: inline-block;
    margin-bottom: 10px;
    padding-left: 50px;
    color: #FD8558;
    text-transform: uppercase;
    z-index: 9;
    font-family: 'Poppins';
}

.section-title01 .sm-title:before {
    content: "";
    height: 1px;
    width: 35px;
    position: absolute;
    background: #FD8558;
    top: 50%;
    left: 0;
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-animation: lineanimate 5s linear infinite;
    animation: lineanimate 5s linear infinite;
}

.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    font-family: 'Poppins';
}

.Categories_sec {
    list-style-type: none;
    padding: 0;
}

.Categories_sec li a {
    text-decoration: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
}

.news_second_section_full {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    padding: 30px;
}

ul.Categories_sec li {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #dee2e6;
}

.blog-tags a {
    background-color: transparent;
    padding: 9px 14px;
    margin: 10px 0;
    display: block;
    vertical-align: top;
    border: 1px solid #dee2e6;
    text-decoration: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
}

.entry-meta a {
    text-decoration: none;
    color: black;
}

.social-icon-style2 {
    display: inline-block;
    padding-left: 10px;
    margin-top: 20px;
    list-style: none;
}

.button-box {
    margin-top: 20px;
}

.social-icon-style2 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 8px;
}

.social-icon-style2 li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    text-align: center;
    color: #808080;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 35px;
    height: 50px;
    width: 50px;
    text-decoration: none;
    border-radius: 50%;
}

.fab {
    font-size: 24px;
}

a.butn {
    text-decoration: none;
}

.social-icon-style2 li a:hover .fab {
    color: white;
}

.social-icon-style2 li a:hover {
    background: #FD8558;
}

.nees-popup_sec {
    margin-top: 30px;
}

.news_popup_detalis h2 {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 38px;
    line-height: 40px;
    margin-top: 20px;
}

.news_txt1 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 10px;
}

.news_txt2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 10px;
}

.news-popup_sec1 {
    margin-top: 40px;
}

p.news_txt3 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 20px;
}

.name {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    margin-top: 20px;
}

.text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 20px;
}

h3.leave_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    color: #808080;
}

form.new_popup_form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form_txt {
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.leave_btn {
    background-color: #FD8558;
    padding: 14px 26px 12px !important;
    color: white;
    border-radius: 30px;
}

.news_modal_body {
    padding: 80px 30px 30px 30px
}

/****************************** 23 Services Modal Start ***********************/
.service_modal_body {
    padding: 80px 30px 30px 30px
}

.service-details-help h5:hover span a {
    color: #fd8558;
}

.help-icon i.fa-regular.fa-phone:hover {
    color: #fd8558;
}

.modal {
    background: rgba(20, 20, 20, 0.7);
    padding: 40px 0;
}

.cat-mt {
    margin-top: 30px;
}

.service-details-help {
    position: relative;
    display: block;
    padding: 57px 55px 50px;
    margin-top: 30px;
    text-align: center;
    z-index: 1;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);

    border-radius: 15px;
    overflow: hidden;
    width: 500px;
}

.help-icon {
    height: 60px;
    width: 60px;
    background-color: #191825;
    color: #fff;
    font-size: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;

}

.help-title {
    line-height: 40px;
    margin-bottom: 10px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 0.1em;
}

i.fa-regular.fa-phone {
    font-weight: 800;
    font-size: 30px;
    font-family: 'Font Awesome\ 5 Free';
}

h3.cre_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    text-transform: capitalize;
    margin-top: 30px;
}

.sevices-pop-details p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 10px;
}

.services-pop-details1 {
    margin-top: 40px;
}

ul.features {
    margin-top: 10px;
}

.services_overview_sec {
    margin-top: 40px;
}

h3.boost {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    text-transform: capitalize;
}

p.ipsum_txt {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
}

ul.features li {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
}

.services_overview_sec h3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    text-transform: capitalize;
}

.services_overview_sec p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 15px;
}

.service-details-help h5 {
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: 600;
}

.service-details-help span a {
    color: black;
    text-decoration: none;
}

.Services_pop_btn {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.1em;
    border-radius: 30px;
    padding: 15px 35px;
    margin-top: 20px;
    border: 1px solid;
    background: white;
}

.Services_pop_btn:hover {
    background: #fd8558;
}

.text-center img:hover,
.porfolio_popup_img_sec img:hover,
.portfolio_img_sec_pop img:hover,
.popup_img_sec img:hover,
.news-popup_sec1 img:hover {
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
}

.sevices_widget {
    position: relative;
    background: #eef7f8;
    border-radius: 10px;
    padding: 46px 48px 48px;
    margin: 0 0 60px;
}

.servi_elements {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    text-transform: capitalize;
    margin-top: 30px;
}

.iconBox08 i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 41px;
    line-height: 36px;
    color: #00c0ff;
}

.servi_title {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 40px;
}

.ser_details {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
}

.services_overview_sec h3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    text-transform: capitalize;
    margin-top: 30px;
}

.result_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    text-transform: capitalize;
    margin-top: 30px;
}

.counterBox h3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #141414;
}

.counterBox h4 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    color: #141414;
    margin-top: 10px;
}

i.orbito-set-square {
    font-family: 'Orbito' !important;
    font-size: 50px;
    font-weight: 800;
}

.iconBox08 i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 41px;
    line-height: 36px;
    color: #00c0ff;
}

.widgetTitle {
    font-size: 24px;
    line-height: 30px;
    font-family: 'Poppins';
    position: relative;
    padding: 0 0 0 30px;
    margin: 0 0 32px;
}

.widgetTitle:before {
    content: '';
    width: 18px;
    height: 18px;
    border: 3px solid #FD8558;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 3px;
}

.serviceMenu ul li a {
    font-family: 'Poppins';
    display: block;
    font-size: 18px;
    line-height: 28px;
    padding: 17px 30px 15px;
    color: #141414;
    border: 1px solid #dee2e6;
    text-decoration: none;
}

.serviceMenu ul li a:hover {
    background-color: #FD8558;
    color: white;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}

.serviceMenu ul {
    margin: 0;
    padding: 0;
}

.serviceMenu ul li {
    list-style-type: none;
    margin: 0 0 6px;
}

.current_menu {
    background-color: #FD8558;
}

.current_menu a {
    color: white !important;
}

.ser_popup_form_txt {
    display: block;
    font-family: 'Poppins';
    width: 100%;
    height: 60px;
    background: #FFF;
    border-radius: 5px;
    border: none;
    font-size: 18px;
    line-height: 30px;
    color: #868b9b;
    padding: 0 24px;
    margin: 0 0 18px;
}

.ser_textarea {
    height: 160px;
    resize: none;
    padding: 15px 24px;
    border: navajowhite;
    width: 100%;
    font-size: 18px;
    line-height: 30px;
    font-family: 'Poppins';
}

.services_form_popup {
    color: #fff;
    font-family: 'Inter';
    background-color: #FD8558;
    padding: 16px 30px;
    font-size: 16px !important;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border-radius: 30px;
    border: navajowhite;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.services_form_popup:hover {
    background: #141414;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}

.helpsection h3 {
    font-size: 36px;
    font-family: 'Poppins';
    color: #141414;
    line-height: 1;
    margin: 0 0 33px;
}

.helpsection p {
    font-family: 'Inter';
    font-size: 21px;
    line-height: 33px;
    color: #808080;
    margin: 0 0 20px;
}

i.fa-solid.fa-phone {
    background: #fd8558;
    color: #FFF;
    height: 60px;
    width: 60px;
    font-size: 21px;
    line-height: 60px;
}

.headerCall {
    position: relative;
    padding: 0px 0 0 70px;
}

.headerCall i {
    position: absolute;
    left: 0;
    top: 0;
    height: 54px;
    width: 54px;
    border-radius: 50%;
    text-align: center;
    line-height: 54px;
    background: #eef7f8;
    color: #343c55;
    font-size: 18px;
}

.headerCall h4 {
    font-size: 18px;
    font-family: 'Poppins';
    color: #141414;
}

.headerCall h3 a {
    font-size: 20px;
    font-family: 'Poppins';
    text-decoration: none;
    color: #141414;
}

.companyProfileBtns {
    display: grid !important;
}

a.Ser_popup_btn {
    width: 100%;
    height: 60px;
    border: 1px solid #dee2e6;
    margin-bottom: 20px;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    color: #141414;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 600;
}

a.Ser_popup_btn:hover {
    background-color: #FD8558;
    color: white;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}

.counterBox {
    position: relative;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
    text-align: center;
    padding: 20px;
}

.servi_img_popup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-top: 20px;

}

.ser_pop_img1:hover,
.ser_pop_img2:hover {
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
}

.mt-ser_pop1,
.mt-ser_pop2,
.mt-ser_pop3,
.mt-ser_pop4 {
    margin-top: 10px;
}

.popup_counter_ser {
    margin-top: 20px;
}

.sevices_widget:last-child {
    margin: 0;
}

/****************************** 24 Portfolio Modal Start***********************/
.overlay-box {
    position: absolute;
    left: 40px;
    top: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

a.fa.fa:hover {
    color: #FD8558;
}

.content {
    padding: 30px;
    max-width: 440px;
    width: 100%;
    border-radius: 20px;
    background-color: white;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #808080;
}

.content ul {
    margin: 0 !important;
    padding: 0;
    padding-left: 18px;
}

.overlay-box ul li a {
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    display: inline-block;
    font-size: var(--font-14);
    color: var(--color-fourtyeight);
    margin-left: var(--margin-left-5);
    border: 1px solid var(--color-fiftytwo);
    text-decoration: none;
}

.fa {
    font-family: 'FontAwesome';
}

.portfolio_popup_second h3 {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 38px;
    line-height: 40px;
    margin-top: 20px;
}

.portfolio_popup_second p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 10px;
}

.portfolio_popup_third h4 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    text-transform: capitalize;
}

ul.growth_details li {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #808080;
    margin-top: 8px;
}

.portfolio_img_sec_pop {
    margin-top: 40px;
}

.portfolio_popup_third {
    margin-top: 40px;
}

ul.growth_details {
    margin-top: 10px;
}

.portfolio_modal_body {
    padding: 80px 30px 30px 30px
}

/****************************** 25 Price Modal Start***********************/
.price_modal_dialog {
    width: 100%;
    max-width: 800px;
    height: 100%;
    padding: 0 20px !important;
}

.modal-fullscreen .price_modal_content,
.modal-fullscreen .service_modal_content,
.modal-fullscreen .news_modal_content,
.modal-fullscreen .portfolio_modal_content {
    border-radius: 20px;
}

.price_modal_body {
    padding: 40px;
}

.price_modal_heading h3 {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 38px;
    line-height: 40px;
    margin-top: 20px;
    text-transform: capitalize;
}

#price_form {
    margin-top: 60px;
}

.price_upper_space {
    margin-top: 30px;
}

.price_label {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    display: block;
    color: #000000;
    text-transform: capitalize;
}

.price_field {
    background-color: #ffffff;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    width: 100%;
    height: 54px;
    font-size: 18px;
    margin-top: 15px;
    padding: 0 20px;
    font-family: 'Poppins';
}

.custom-select {
    background-image: url(../images/price/dropdown-arrow.svg);
    background-position: 96% center;
    background-size: 18px 18px;
    background-repeat: no-repeat;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.price_plan .price_field,
.text_form {
    color: #808080;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
}

.price_textarea {
    width: 100%;
    height: 100px;
    margin-top: 15px;
    padding: 20px;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    font-family: 'Poppins';
}

.send_message_button {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #ffffff;
    background-color: #000000;
    border: none;
    border-radius: 30px;
    font-family: 'Poppins';
    width: 230px;
    height: 60px;
    margin-top: 50px;
    padding: 0;
    text-transform: capitalize;
    transition: all .3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}
