*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Satoshi-Bold';
    src: url('fonts/Satoshi-Bold.woff2') format('woff2'),
        url('fonts/Satoshi-Bold.woff') format('woff');
    font-weight: bolder;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi-Medium';
    src: url('fonts/Satoshi-Medium.woff2') format('woff2'),
        url('fonts/Satoshi-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi-Bold', sans-serif;
}

p, li, a{
    font-family: 'Satoshi-Medium', sans-serif;
    text-decoration: none;
    list-style: none;
}

:root{
    --primary-color: #0E93EF;
}

/* navbar-start */
.navbar-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-logo img{
    width: 100px;
    height: auto;
}

.navbar-links{
    background: #fff;
    box-shadow: 0 4px 20px #00000040;
    padding: 16px 50px;
    border-radius: 10px;
}

.navbar-links ul{
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navbar-links ul li a{
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.navbar-links ul li a:hover{
    color: var(--primary-color);
}

.navbar-btn a{
    background: linear-gradient(90deg, #0E93EF 0%, #31C8F0 100%);
    padding: 16px 30px;
    font-size: 16px;
    color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-btn a:hover{
    background: #000;
}

section.header {
    position: absolute;
    top: 0;
    z-index: 99;
    width: 100%;
}

/* hero-section */
.hero-sec{
    position: relative;
    width: 100%;
    height: 950px;
    background-image: url('images/hero-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 190px;
}

.hero-left-text h1 {
    font-size: 60px;
    color: #000;
}

.hero-left-text h1 span{
    background: linear-gradient(90deg, #0E93EF 0%, #31C8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left-text p{
    color: #1D1D1D;
}

.hero-left-text ul {
    margin: 0;
    padding: 0;
}

.hero-left-text ul li{
    position: relative;
    padding-left: 24px !important;
    padding: 4px 0;
    font-size: 16px;
}

.hero-left-text ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 60%;
    width: 18px;      
    height: 18px;
    transform: translateY(-50%);
    background-image: url("images/check\ icon.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-btn {
    margin-top: 24px;
}

.hero-btn a{
    background: linear-gradient(90deg, #0E93EF 0%, #31C8F0 100%);
    padding: 14px 80px;
    font-size: 16px;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-btn a:hover{
    background: #000;
}

.hero-profile {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-top: 40px;
}

.hero-profile-text h4 {
    margin-bottom: 0;
    font-size: 20px;
}

.hero-profile img {
    width: 40px;
    height: 40px;
}

.consult-box {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0px 11px 19.8px 0px rgba(0, 0, 0, 0.25);
    padding: 30px;
}

.consult-box .free-tag {
    font-size: 14px;
    font-weight: 500;
    color: #808080;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.consult-box .free-tag .dot {
    width: 14px;
    height: 14px;
    background: #0DFF6E;
    border-radius: 50%;
    margin-right: 6px;
}

.consult-box .title {
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 5px;
}

.consult-box .subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

.consult-box .custom-input {
    background: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    border: 1px solid #FAFDFF;
    font-size: 16px;
    color: #8C8C8C;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.consult-box .custom-input:focus {
    background: #f2f2f2;
    box-shadow: none;
    border: 1px solid #d0d0d0;
}

.consult-box .submit-btn {
    background: #0D0F30;
    color: #fff;
    padding: 14px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.consult-box .submit-btn:hover{
    background: var(--primary-color);
}

/* project-section-start */
section.project-sec
 {
    position: relative;
    margin-top: -80px;
    margin-bottom: 60px;
}

.project-content{
    padding: 60px;
    background: #fff;
    box-shadow: 0px 5px 20.6px 0px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
}

.project-box{
    display: flex;
    align-items: center;
    gap: 16px;
}

.project-box.with-border{
    position: relative;
}

.project-box.with-border::after{
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 100%;
    background: #EAF1FF
}

.project-icon{
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EAF1FF;
    border-radius: 13px;
}

.project-text h4{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 0;
}

.project-text p{
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
}

/* service-section-start */
.padd{
    padding: 60px 0;
}

.service-sec{
    background: #F2F5FE;
}

.service-underline{
    background: #0D99FF;
    width: 70px;
    height: 4px;
    margin: 10px 0 20px 0;

}

.crevanest-title{
    font-size: 40px;
}

.crevanest-title span{
    background: linear-gradient(90deg, #0E93EF 0%, #31C8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-box{
    padding: 16px 14px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0px 5px 20.6px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-align: center;
    width: 95%;
    margin: 10px auto;
}

.service-box:hover{
    background: linear-gradient(to bottom,#31C8F0, #0E93EF);
}

.service-box-img{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.service-box h4{
    font-size: 18px;
    transition: all 0.3s ease;
    color: #000;
}

.service-box:hover h4{
    color: #fff;
}

.service-box p{
    font-size: 14px;
    transition: all 0.3s ease;
    color: #000;
}

.service-box:hover p{
    color: #fff;
}

.service-box-btn a{
    color: #000;
    transition: all 0.3s ease;
}

.service-box:hover .service-box-btn a{
    color: #fff;
}

/* work-section */

.work-tab-btns{
    display: flex;
    gap: 20px;
    margin-top: 24px;
    justify-content: center;
}

.work-tab-btns a{
    display: block;
    padding: 12px 50px;
    font-size: 16px;
    color: #000;
    border-radius: 7px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0px 0px 4.2px 0px rgba(0, 0, 0, 0.25);
    
}

.work-tab-btns a.active,
.work-tab-btns a:hover{
    background: linear-gradient(90deg, #0E93EF 0%, #31C8F0 100%);
    color: #fff;
}

.work-box{
    position: relative;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0px 2px 10.6px -1px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.work-box-img{
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.work-box-img img{
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
}

.work-box-img::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
}

.work-box-text{
    position: absolute;
    bottom: 0px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 16px;
}

.work-box-text-left h4{
    color: #fff;
    font-size: 20px;
    margin-bottom: 6px;
}

.work-box-text-left p{
    margin-bottom: 0;
}

.work-box-btn{
    background: linear-gradient(90deg, #0E93EF 0%, #31C8F0 100%);
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.work-box-btn a{
    color: #fff;
}

.work-project-box{
    background: #fff;
    border-radius: 25px;
    box-shadow: 0px 2px 10.6px -1px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    margin: auto;
}

.work-project-box h4{
    text-align: center;
}

.work-project-box h4 a{
    color: #000;
    transition: all 0.3s ease;
}

.work-project-box h4 a:hover{
    color: var(--primary-color);
}

.work-project-box img {
    background: linear-gradient(90deg, #0E93EF 0%, #31C8F0 100%);
    width: 50px;
    height: 50px;
    object-fit: scale-down;
    border-radius: 50px;
    margin-top: 6px;
}

/* process-section */
.crevanest-subtitle{
    color: var(--primary-color);
    font-size: 24px;
    text-transform: uppercase;
}

.process-box{
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 4px 17.4px -4px rgba(0, 0, 0, 0.25);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.process-box:hover{
    /* transform: translateY(-5px); */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.process-box h4{
    font-size: 22px;
    margin-bottom: 0;
}

.process-box p{
    font-size: 16px;
    color: #494949;
    text-align: center;
}

.process-box-num{
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #0E93EF 0%, #31C8F0 100%);
    color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -25px;
    font-size: 18px;

}

.process-box-icon {
    position: absolute;
    right: -56px;
    top: 100px;
    z-index: 9;
}


/* ready-section */
.ready-content{
    background: #F0F4FD;
    border-radius: 25px;
    box-shadow: 0 4px 17.4px -4px rgba(0, 0, 0, 0.25);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 80%;
    margin: auto;
}

.ready-img img{
    width: 100px;
    height: 100px;
    object-fit: scale-down;
    background: #E6EDFD;
    border-radius: 50px;
    padding: 10px;
}

.ready-text h4{
    font-size: 28px;
}

.ready-text p{
    color: #656565;
    font-size: 16px;
}

.ready-btn a{
    background: linear-gradient(90deg, #0E93EF 0%, #31C8F0 100%);
    padding: 14px 80px;
    font-size: 16px;
    color: #fff;
    border-radius: 11px;
    transition: all 0.3s ease;
}

.ready-btn a:hover{
    background: #000;
}

/* choose-section */
.choose-content {
    position: relative;
}

.choose-box{
    text-align: center;
}

.choose-box-img img{
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.choose-box h4{
    font-size: 24px;
}

.choose-box p{
    color: #353535;
    font-size: 16px;
}

.choos-box-icon img {
    width: 326px;
    height: auto;
}

.choos-box-icon {
    position: absolute;
    top: 137px;
    left: 137px;
}

.choos-box-icon-two img {
    width: 326px;
    height: auto;
}

.choos-box-icon-two {
    position: absolute;
    top: 137px;
    left: 466px;
}

.choos-box-icon-three img {
    width: 326px;
    height: auto;
}

.choos-box-icon-three {
    position: absolute;
    top: 137px;
    left: 796px;
}

.choos-box-circle-icon {
    position: absolute;
    top: 228px;
    left: 1130px;
}

.choose-btn-one{
    background: linear-gradient(90deg, #0E93EF 0%, #31C8F0 100%);
    padding: 10px 24px;
    font-size: 14px;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.choose-btn-one:hover{
    background: #000;
}

.choose-btn-one a{
    color: #fff;
}

.choose-btn-two a{
    border: 2px solid var(--primary-color);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--primary-color);
    transition: all 0.3s ease;

}

.choose-btn-two a:hover{
    background: #000;
    color: #fff;
}

.choose-btn {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    align-items: center;
}

/* testimonial-section */
.testimonial-box{
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 4px 17.4px -4px rgba(0, 0, 0, 0.25);
    padding: 30px;
    position: relative;
    width: 95%;
    margin: 20px auto;
}

.testimonial-icon-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-right-icon i{
    color: #FFC633;
    font-size: 18px;
}

.profile-img img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50px;
}

.testimonial-profile{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.profile-text h5{
    margin-bottom: 0;
    font-size: 18px;
}

.profile-text p{
    margin-bottom: 0;
    color: #000;
}

/* footer-section */
.footer-logo img{
    width: 120px;
    height: auto;
}

.footer-sec{
    background: #1F1F1F;
    padding-top: 60px;
}

.footer-logo-box p{
    color: #fff;
    font-size: 16px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-icons img{
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.footer-quick-box{
    position: relative;
}

.footer-quick-box h4{
    color: #fff;
    font-size: 24px;
    margin-bottom: 4px;
}

.footer-underline-draw {
    background: #0D99FF;
    width: 70px;
    height: 2px;
    margin-bottom: 20px;
}

.footer-links{
    margin: 0;
    padding: 0;
}

.footer-links li{
    list-style:none;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    color: #fff;
}

.footer-links li a{
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-links li::before{
    content: "\f105";
    font-family: "Font Awesome 7 Free"; 
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #fff;
}

.footer-quick-box.with-gap {
    margin-left: 44px;
}

.footer-links li a:hover{
    color: var(--primary-color);
    letter-spacing: 1px;
}

.footer-contact-box{
    background: linear-gradient(90deg, #0E93EF 0%, #31C8F0 100%);
    padding: 30px;
    border-radius: 25px;

}

.footer-contact-icon{
    display: flex;
    align-items: start;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-contact-icon-img img{
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #fff;
    border-radius: 50px;
    padding: 10px;

}

.footer-contact-icon-text h4{
    color: #000;
    font-size: 20px;
    margin-bottom: 2px;
}

.footer-contact-icon-text h4 span{
    color: #fff;
}

.footer-contact-info{
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-call-icon img{
    filter: invert(0) brightness(1)
}

.footer-contact-call-tag a{
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-contact-call-tag a:hover{
    color: #000;
}

.footer-btn{
    background: #fff;
    padding: 14px 30px;
    font-size: 16px;
    color: #000;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.footer-btn:hover{
    background: #000;

}

.footer-text h5{
    font-size: 16px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.footer-btn:hover .footer-text h5{
    color: #fff;
}

.footer-btn-icon i{
    width: 34px;
    height: 34px;
    background: linear-gradient(90deg, #0E93EF 0%, #31C8F0 100%);
    color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-btn:hover .footer-btn-icon i{
    background: #fff;
    color: #000;
}

.footer-btm-content{
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #fff;
}

.footer-btm-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-btm-left-text p{
    color: #fff;
    font-size: 15px;
    margin-bottom: 0;
}

.footer-btm-left-text p a{
    color: #fff;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-btm-left-text p a:hover{
    color: var(--primary-color);
}

.footer-btm-right-text ul{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
}

.footer-btm-right-text ul li{
    list-style: none;
    position: relative;
}

.footer-btm-right-text ul li a{
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-btm-right-text ul li a:hover{
    color: var(--primary-color);
}


/* responsive-start */

/* 1920px */
@media only screen and (max-width: 1920px) {

}

/* 1600px */
@media only screen and (max-width: 1600px) {

}

/* 1440px */
@media only screen and (max-width: 1440px) {

}

/* 1366px */
@media only screen and (max-width: 1367px) {

    .service-box {
    min-height: 300px;
    height: 100%;
}

.ready-btn a {
    padding: 14px 50px;
}

.ready-content {
    padding: 40px 30px;
}

.choos-box-icon {
    top: 122px;
    left: 110px;
}

.choos-box-icon img {
    width: 300px;
}

.choos-box-icon-two {
    top: 122px;
    left: 394px;
}

.choos-box-icon-two img {
    width: 300px;
}

.choos-box-icon-three img {
    width: 300px;
}

.choos-box-icon-three {
    top: 122px;
    left: 679px;
}

.choos-box-circle-icon {
    position: absolute;
    top: 203px;
    left: 976px;
}

.hero-left-text h1 {
    font-size: 54px;
}

}

/* 1280px */
@media only screen and (max-width: 1280px) {

}

/* 1199px */
@media only screen and (max-width: 1200px) {

    .navbar-links {
    padding: 16px 30px;
}

.navbar-links ul {
    gap: 20px;
}

    .hero-left-text h1 {
        font-size: 50px;
    }

    .choos-box-icon {
    top: 103px;
    left: 90px;
}

.choos-box-icon img {
        width: 254px;
    }

        .choos-box-icon-two img {
        width: 254px;
    }

        .choos-box-icon-two {
        top: 103px;
        left: 330px;
    }

    .choos-box-icon-three img {
    width: 254px;
}

.choos-box-icon-three {
    top: 103px;
    left: 570px;
}

    .choos-box-circle-icon {
        position: absolute;
        top: 169px;
        left: 814px;
        /* width: 40px; */
        /* height: 40px; */
    }

    .choos-box-circle-icon img {
    height: 23px;
}

.footer-contact-icon{
    flex-direction: column;
    align-items: center;
}

.footer-contact-icon-text {
    text-align: center;
}

.ready-content {
        padding: 40px 16px;
        gap: 16px;
    }

.ready-img img {
    width: 80px;
    height: 80px;
}

.ready-text h4 {
    font-size: 24px;
}

.ready-btn a {
        padding: 14px 14px;
    }


}

/* 1024px */
@media only screen and (max-width: 1024px) {

}

/* 991px */
@media only screen and (max-width: 992px) {

    button.navbar-toggler i {
    background: linear-gradient(90deg, #0E93EF 0%, #31C8F0 100%);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    color: #fff;
    font-size: 22px;
}

.hero-sec {
    padding-top: 114px;
}

ul.mobile-nav {
    margin: 0;
    padding: 0;
}

ul.mobile-nav li {
    
}

ul.mobile-nav li a {
    color: #000;
    font-size: 16px;
    transition: all 0.3s ease;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #EAF1FF;
    
}

ul.mobile-nav li a:hover{
    color: #000;
    padding-left: 20px;
    background: #eaf1ff;
    letter-spacing: 1px;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    border-bottom: 1px solid #EAF1FF;
}

button.offcanvas-close-btn {
    margin-left: auto;
    border: none;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50px;
    font-size: 20px;
}

.mobile-navbar-btn a{
    background: linear-gradient(90deg, #0E93EF 0%, #31C8F0 100%);
    padding: 16px 30px;
    font-size: 16px;
    color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
    display: block;
    text-align: center;
}

    .hero-left-text h1 {
        font-size: 44px;
    }

    section.project-sec {
    margin-top: 60px;
}

.work-box-text {
    flex-direction: column;
    text-align: center;
}

.work-box-text-left p {
    margin-bottom: 10px;
}

        .ready-content {
        padding: 40px 16px;
        gap: 10px;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

        .ready-text h4 {
        font-size: 32px;
    }

        .choos-box-icon img, .choos-box-icon-two img, .choos-box-icon-three img {
        display: none;
    }

        .choos-box-circle-icon img {
        display: none;
    }

        .hero-sec {
        padding-top: 114px;
        height: 100%;
        padding-bottom: 60px;
    }

    .consult-box .submit-btn {
    margin-top: 16px;
}

.footer-quick-box.with-gap {
    margin-left: 0;
}

.crevanest-title {
    font-size: 34px;
}

.crevanest-subtitle {
    font-size: 22px;
}


}

/* 768px */
@media only screen and (max-width: 768px) {

    .hero-left-text h1 {
        font-size: 38px;
    }

        .crevanest-title {
        font-size: 30px;
    }

    .work-tab-btns a {
    padding: 8px 28px;
    font-size: 16px;
}

.work-box-text-left h4 {
    font-size: 21px;
}

.process-box h4 {
    font-size: 21px;
    margin-bottom: 0;
}

}

/* 576px */
@media only screen and (max-width: 576px) {

    .hero-left-text h1 {
        font-size: 34px;
    }

    .project-box.with-border::after {
    display: none;
}


.project-content {
    padding: 30px;
}

.choose-box-img img {
    width: 250px;
}

    .crevanest-title {
        font-size: 28px;
    }

        .crevanest-subtitle {
        font-size: 17px;
    }

    .work-tab-btns {
    gap: 8px;
}

        .work-tab-btns a {
        padding: 8px 14px;
        font-size: 16px;
    }

    .process-box {
    margin-top: 16px;
}

    .ready-text h4 {
        font-size: 26px;
    }

    .footer-btm-text {
    flex-direction: column;
}


}

/* 480px */
@media only screen and (max-width: 480px) {

}

/* 420px */
@media only screen and (max-width: 420px) {

}

/* 375px */
@media only screen and (max-width: 375px) {

}

/* 360px */
@media only screen and (max-width: 362px) {

    .hero-btn a {
    padding: 14px 45px;
}

    .work-tab-btns {
        gap: 5px;
    }

    .work-tab-btns a {
        padding: 8px 8px;
    }

    .choose-btn-one {
    padding: 8px 8px;
}

.choose-btn {
    gap: 12px;
}

}

/* 320px */
@media only screen and (max-width: 320px) {

}