*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
      font-family: "Poppins", sans-serif;
      --primary-color:#0094d9;
      --gradient-color: linear-gradient(90deg, #0094d9 0%, #00b9ff 100%);
      --black-text: #000;
      --white-text: #fff;
      --bg-color: #eefaff;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

img{
    display: block;
    width: 100%;
}

a{
    text-decoration: none;
}


.main-title {
    text-align: center;
    margin-bottom: 45px;
}

.main-title span {
    display: block;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.main-title h3 {
    margin: 0;
    font-size: 35px;
    color: var(--black-text);
    text-transform: capitalize;
    line-height: 55px;
    width: 80%;
    margin: auto;
}


/* header section Start */

.header-logo {
    width: 32%;
}
.header-menu ul {
    padding-left: 0px;
}

.header-menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0px;
    gap: 10px
}

.header-menu ul li {
    position: relative;
    padding: 15px;
}

.header-menu ul li a {
    text-decoration: none;
    color: black;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    display: block;
    position: relative;
    transition: all 0.5s ease;
}

.bg-header {
    padding: 10px 0;
}

.header-menu {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: end;
}

.header-menu ul >li>a::before {
    content: "";
    height: 2px;
    border-radius: 0px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -3px;
    left: 0px;
    right: 0px;
    transition: transform 500ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
    z-index: 1;
}

.header-menu ul >li:hover>a::before {
    transform: scale(1, 1);
    transform-origin: right center;
}

.header-menu ul li:hover a{
    color: var(--primary-color);
}


/* header section End */











/* banner section */
.banner-img {
    /* animation: topBottom 3s ease-in-out infinite; */
    height: 500px;
    position: relative;
}

@keyframes topBottom {
    0% {
    transform: translateY(0px);
}
50% {
    transform: translateY(10px);
}
100% {
    transform: translateY(0px);
}
}

.banner-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}
.banner-sec {
  
}

.banner-slider:before {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    z-index: -2;
    height: 100%;
    position: absolute;
    background: linear-gradient(270deg, #0094d900 0%, #0094d9db 76.76%);
    z-index: -1;
}

.banner-slider{
    /* height: 600px; */
    overflow: hidden;
    position: relative;
}

.slider{
    height: 100%;
    padding: 120px 0 0;
}

.inner-content  .title {
    font-size: 42px;
    font-weight: 600;
    color: var(--white-text);
    line-height: 55px;
    margin-bottom: 0;
}

.inner-content  .title  span{
    position: relative;
}

.inner-content .title span::after{
   content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    background-image: url(../images/hero_border.png);
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    filter: brightness(0) saturate(100%) invert(86%) sepia(99%) saturate(0%) hue-rotate(148deg) brightness(105%) contrast(101%);
}

.sub-title{
    margin-bottom: 0;
    font-size: 20px;
    color: #e5e5e5;
}

.main-btn a{
    background: var(--white-text);
    padding: 10px 30px;
    color: var(--primary-color);
    border-radius: 5px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
     transition: 0.5s ease-in-out;
    

}
.main-btn a::before {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    bottom: 0;
    left: 0;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #101010;
    transform: translateX(-100%);
        box-sizing: border-box;
    transition: 0.5s ease-in-out;
    z-index: -1;
}

.main-btn a:hover::before {
        transform: translateX(0);
}

.main-btn a:hover{
    color: var(--white-text);
}

.inner-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.book-btn{
    margin-top: 30px;
}

.bg-banner-shape {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: -1;
    opacity: 0.1;
}

.bg-banner-shape img{
    filter: brightness(0) saturate(100%) invert(37%) sepia(45%) saturate(1991%) hue-rotate(170deg) brightness(95%) contrast(95%);
}

.all-shape{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    top: 0;
    background-color: #65bfe847;
    clip-path: polygon(0 0, 0 22%, 100% 100%, 0% 100%);
    z-index: -1;
}

.shape-3 {
    position: absolute;
    top: -316px;
    background-color: #97d2ed47;
    left: 26%;
    width: 400px;
    height: 500px;
    border-radius: 50px;
    transform: rotate(59deg);
    z-index: -1;
}

.shape-3:before{
        content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    border: 1px solid #6e54f333;
    border-radius: 50px;
}

.banner-content{
    padding-top: 40px;
}

.shape-4{
    position: absolute;
    top: 50px;
    right: 300px;
    opacity: .30;
        animation: float-bob-y 2s infinite linear;
}

.shape-4 img{
    filter: brightness(0) saturate(100%) invert(37%) sepia(45%) saturate(1991%) hue-rotate(170deg) brightness(95%) contrast(95%);
}

.banner-exp {
    padding: 15px 25px;
    background: linear-gradient(270deg, #0094d9 0%, #00b9ff 100%);
    border-radius: 6px;
    position: absolute;
    top: 13%;
    right: -8%;
    color: var(--white-text);
    animation: bounce-box 8s infinite alternate;
}

.banner-exp span {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    display: block;
}


.banner-exp strong {
    display: inline-block;
}

.banner-exp strong span {
    font-size: 40px;
    font-weight: 600;
    color: var(--white-text);
    display: inline-block;
}

@keyframes bounce-box {
    0% {
    transform: translateY(15px);
}
100% {
    transform: translateY(-15px);
}
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(-20px);
    }
}

@keyframes float-bob-x{
    0% {
    transform: translateX(-30px);
}
50% {
    transform: translateX(-10px);
}
100% {
    transform: translateX(-30px);
}
}

.shape-5{
    position: absolute;
    bottom: 120px;
    right: 900px;
    width: 50px;
    height: 50px;
    background: #B718A6;
    background: var(--gradient-color);
    border-radius: 50%;
}


.badge-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.badge-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.badge-list li {
    position: relative;
    display: block;
}

.review-img {
    position: relative;
    display: block;
    width: 44px;
    overflow: hidden;
    border-radius: 50%;
}

.review-img img {
    width: 100%;
    border-radius: 50%;
    border: 1px solid var(--white-text);
}

.badge-box-content {
    position: relative;
    display: block;
}

/* .banner-two__trustpilot-rating-review {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 4px;
} */

.badge-main-sec {
    font-size: 16px;
    color: var(--white-text);
    margin: 0;
    text-align: center;
}

.badge-sub-sec {
    font-size: 14px;
    color: var(--white-text);
    position: relative;
    display: block;
    text-align: center;
    margin: 0;
    letter-spacing: 1px;
}


.badge-list li+li {
    margin-left: -10px;
}

.scrollTop a {
    color: #fff;
    font-size: 20px;
    transition: all 0.4s ease;
}

.scrollTop {
    position: fixed;
    right: 4%;
    border-radius: 5px;
    z-index: 9;
    bottom: 7%;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.scrollTop:hover {
    background-color: transparent;
}

.scrollTop:hover a {
    color: var(--primary-color);
}

.sticky-fixed{
    top: 0%;
    position: sticky !important;
    background-color: #fff;
    left: 0;
    width: 100%;
    z-index: 99 !important;
    box-shadow: 0px 0px 12px #80808060;
    transition: all 0.5s ease;
}

/* .............................. why this offer css ............................... */

.why-us {
    padding: 80px 0;
    position: relative;
}

.why-offer-main {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 25px;
}

.why-offer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    padding: 25px;
    gap: 25px;
    height: 100%;
    background-color: var(--white-text);
    box-shadow: 0 0 30px rgb(0 0 0 / 4%);
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.2s;
    overflow: hidden;
}

.why-offer-card::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.4s;
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--gradient-color);
}

.why-offer-card:hover::after {
    transform: scaleY(1);
}

.why-offer-card:hover h3 {
    color: var(--white-text);
}

.why-icon {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 25px;
    position: relative;
    background-color: #f4faff;
    border-radius: 100px;
}

.why-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.why-offer-card h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin: 0;
    line-height: 35px;
    transition: all 0.4s;
}

.why-offer-card:hover .why-icon {
    background: var(--white-text);
}


/* .............................. why this offer css end ............................... */




/* portfoli section */
.portfolio {
    padding: 80px 0;
    background: aliceblue;
}



.portfolio_box .image_box {
    height: 350px;
    border-radius: 6px;
}

.portfolio_box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #021e2b, transparent);
    background: linear-gradient(0deg, #014465ab, transparent);
    opacity: 0.85;
    z-index: 0;
}

.portfolio_box .image_box img{
    position: relative;
    transition: all 0.4s ease-in-out;
    border-radius: 6px;
    height: 100%;
    object-fit: cover;
}
.portfolio_box:hover .image_box img{
    transform: scale(1.02);
    transition: all 0.4s ease-in-out;
}
.portfolio_box{
       position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    margin-bottom: 30px;
    border-radius: 6px;
    /* padding: 20px; */
    background: #fff;
    
}

.portfolio_box .image_box{
    background: var(--white-text);
    overflow: hidden;
    display: block;
}

.portfolio-title h4 a{
    color: var(--white-text);
    width: 100%;
    display: block;
}


.portfolio-title {
       /* background-color: var(--bg-color); */
    padding: 20px;
    width: 100%;
    border-radius: 4px;
    transition: all 0.2s ease;
    /* border-bottom: 1px solid; */
    /* border-color: rgb(224 241 223 / 1); */
    position: absolute;
    width: 90%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    z-index: 2;
}

.portfolio-title h2 {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-left: 30px;
}

.portfolio-title h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 20px;
    background-color: var(--primary-color);
}

.portfolio-title h4 {
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 0;
}

.portfolio-inner .tab-content {
    margin-top: 20px;
}

.portfolio-cate {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: var(--white-text);
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 2;
    background: var(--primary-color);
    padding: 10px 30px;
    border-radius: 5px;
}

/* faq section */

.faq{
    padding: 80px 0;
}

.faq-section .main-title span{
    text-align: left;
}

.faq-section .main-title h3{
    text-align: left;
    width: 100%;
}

.accordion-item {
    border: 0;
    background: #f2f5fa !important;
    border-radius: 12px !important;
}

.accordion-item .accordion-header button{
    border-radius: 0;
    padding: 12px 45px 12px 30px;
    min-height: 73px;
    box-shadow: none;
    background-color: transparent;
}

.accordion-item .accordion-header h5{ 
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    box-shadow: none !important;
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0);
    gap: 10px;
    margin-bottom: 0;
    text-align: left;
    position: relative;
}
.accordion-item .accordion-header button.collapsed h5{
     color: #0b1422;
}

.accordion-body{
    color: #6e7070;
    line-height: 1.75;
    font-size: 16px;
    border-radius: 0;
    border: none;
    padding: 0px 30px 30px;
}

.accordion-item.faq-box button::after{
    color: #0b1422;
    content: "+";
}

.accordion-item.faq-box button:not(.collapsed):after {
    content: "-";
    font-size: 43px;
    color: var(--primary-color);
}

.accordion-item button::after{
      content: "";
    height: 100%;
    width: auto;
    line-height: 1;
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    font-family: var(--icon-font);
    color: var(--white-color);
    font-weight: 400;
    font-size: 35px;
    display: grid;
   align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: 30px;
}

.accordion-button:not(.collapsed)::after{
    background-image: none;
    transform: none;
  
}

.faq-accordion{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq .main-title {
    margin-bottom: 30px;
}



.sec-text {
    line-height: 1.75;
    font-size: 16px;
}

.toggle-bar{
    display: none;
}

.bg-header .row{
    align-items: center;
}


/* mobile menu */

.mobile-menu {
    padding-left: 0px;
}

.mobile-menu {
    display: flex;
    align-items: start;
    list-style: none;
    margin-bottom: 0px;
    gap: 0px;
    flex-direction: column;
}

.mobile-menu li {
    position: relative;
    padding: 15px;
}

.mobile-menu  li a {
    text-decoration: none;
    color: black;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    display: block;
    position: relative;
}

.mobile-menu-main .btn-close {
    color: #000 !important;
    background: none;
    opacity: 1;
    width: unset;
    height: 2em;
    text-align: right;
}

.mobile-menu-main .btn-close i {
    font-size: 25px;
    padding: 5px 10px;
}


.testimonial {
    padding: 80px 0;
    position: relative;
}
.testimonial .main-title {
    text-align: left;
    padding-bottom: 25px;
    margin-bottom: 0px;
}

.testimonial .main-title h3 {
    width: 100%;
    margin-bottom: 25px;
}

.main-title p {
    font-size: 16px;
    line-height: 1.5rem;
    color: var(--black-text);
    margin-bottom: 0;
}

.testi-clients .badge-main-sec {
    color: var(--black-text);
    font-size: 20px;
    font-weight: 500;
}

.testi-clients {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-bottom: 1px solid #ccefff;
    border-top: 1px solid #ccefff;
    padding-bottom: 25px;
}

.testi-p p {
    font-size: 16px;
    line-height: 1.5rem;
    color: var(--black-text);
    margin-bottom: 0;
    padding-top: 25px;
}

.testi-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testi-img {
    width: 70px;
    border-radius: 100px;
}

.testi-img img {
    width: 100%;
    border-radius: 100px;
    object-fit: cover;
    object-position: top;
    display: inline-block;
}

.testi-info h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0;
}

.testi-slide {
    padding: 25px 20px;
    margin: 0 15px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgb(0 0 0 / 5%);
    background-color: var(--white-text);
    border: 1px solid transparent;
    position: relative;
    transition: all 0.5s;
}

.testi-content p {
    font-size: 16px;
    line-height: 1.5rem;
    color: var(--black-text);
    margin-bottom: 0;
    padding-top: 25px;
    margin-bottom: 50px;
    text-align: center;
    height: 200px;
    scrollbar-width: none;
    overflow-y: auto;
}

.quote-icon {
    display: block;
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    filter: brightness(0);
    opacity: 0.25;
}

.testimonial-slider {
    margin: 0;
}

.testimonial-slider .slick-list {
    padding: 40px 0;
}

.testimonial-slider .slick-slide{
    border: 1px solid transparent;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

.testimonial-slider .slick-slide.slick-active.slick-current {
    border: 1px solid var(--primary-color);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

/*.testi-slide:hover {*/
/*    border: 1px solid var(--primary-color);*/
/*}*/

.testimonial-slider .slick-dots {
    bottom: -25px;
}

.testimonial-slider .slick-dots li button:before {
    font-size: 10px;
    color: var(--primary-color);
}

.testimonial-slider .slick-dots li.slick-active button:before {
    opacity: 1;
}

.testimonial::after {
    content: "";
    position: absolute;
    bottom: 25px;
    left: 0;
    background: url(../images/banner-one-shape.png);
    background-size: auto;
    background-position: left bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: -1;
}

.how-it-work {
    padding: 80px 0;
    position: relative;
}

.how-it-work::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/why-choose-bg-two.png);
    opacity: 0.25;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.how-it-work::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, var(--primary-color), transparent);
    opacity: 0.05;
}

.how-it-steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
    gap: 50px;
}

.how-step-card {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.how-icon {
    height: 150px;
    width: 150px;
    border-radius: 200px;
}
.how-icon img {
    height: 100%;
    width: 100%;
    border-radius: 200px;
    object-fit: cover;
}

.steps-content {
    padding: 30px;
    border-radius: 20px;
    background-color: var(--white-text);
    box-shadow: 0 0 30px rgb(0 0 0 / 4%);
    position: relative;
    width: 100%;
    text-align: center;
    height: 100%;
    border-top: 3px solid var(--primary-color);
    transition: all 0.5s;
}

.steps-content:hover {
    transform: translateY(-5px);
}

.steps-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.steps-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5rem;
}

/* .steps-content::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
    height: 45px;
    width: 2px;
    background-color: var(--primary-color);
} */

/* .steps-content::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
    height: 10px;
    width: 10px;
    border-radius: 50px;
    background-color: var(--primary-color);
} */

.step-count {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    min-height: 35px;
    border-radius: 100px;
    position: relative;
    background-color: var(--primary-color);
    color: var(--white-text);
    margin-top: 10px;
    margin-bottom: 40px;
}

.step-count::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    height: 45px;
    width: 2px;
    background-color: var(--primary-color);
}

.cta {
    padding: 80px 0 100px;
    position: relative;
}

.cta-btn {
    display: flex;
    gap: 25px;
    margin-top: 30px;
}

.cta-content {
    padding-bottom: 50px;
}

.cta-content h3 {
    font-size: 40px;
    line-height: 55px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
}
.cta-content p {
    font-size: 20px;
    color: #fff;
    margin: 0;
    margin-top: 15px;
}

.cta-card {
    display: flex;
    background: var(--gradient-color);
    padding: 50px 50px 0;
    border-radius: 25px;
    position: relative;
    z-index: 2;
}

.cta-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(../images/bg-shape1.png);
    background-repeat: no-repeat;
    background-size: auto;
    width: 100%;
    background-position: center;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
}

.cta-img {
    height: 400px;
    margin-top: -150px;
    align-self: end;
}

.cta-img img {
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.cta-btn .main-btn:last-child a {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.cta-btn .main-btn:last-child a::before {
    border-bottom: 80px solid #fff;
}

.cta-btn .main-btn:hover:last-child a {
    color: var(--primary-color);
}

.footer {
    position: relative;
    z-index: 2;
    background: var(--bg-color);
    padding: 30px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 16px;
    color: #000;
    text-transform: capitalize;
    font-weight: 500;
}

.footer-bottom p span  {
    padding: 0 10px;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    margin: 0 10px;
}


.footer-bottom {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.footer-social li a {
    transition: all 0.5s;
    display: block;
}

.footer-social li a i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 5px;
    font-size: 17px;
    transition: all 0.5s;
}

.footer-social li a:hover {
    transform: translateY(-10px);
}



.inq-input {
    margin-bottom: 25px;
}

.inq-input input {
    display: block;
    width: 100%;
    height: 45px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    background-color: transparent;
}

.inq-input input:focus {
    border: 1px solid var(--primary-color);
}

.inq-input textarea:focus {
    border: 1px solid var(--primary-color);
}

.inq-input textarea {
    display: block;
    width: 100%;
    height: 150px;
    overflow-y: auto;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    background-color: transparent;
}

.inq-input label {
    font-size: 19px;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: var(--black-text);
    font-weight: 500;
}

.inquire-modal .main-btn a {
    width: 100%;
    display: block;
    text-align: center;
    color: #fff;
    background: var(--gradient-color);
    font-size: 19px;
}

.inquire-modal .main-btn {
    margin-top: 40px;
}

.inquire-modal .modal-header {
    border: none;
    padding: 0;
    padding-bottom: 15px;
}

.inquire-modal .modal-body {
    border: none;
    padding: 0;
}

.inquire-modal .modal-content {
    border: none;
    padding: 25px;
    padding-top: 20px;
}

.inquire-modal .modal-header h4 {
    font-size: 27px;
    font-weight: 600;
    color: var(--primary-color);
}

.inquire-modal .btn-close {
    position: absolute;
    border: 1px solid #000;
    top: 15px;
    right: 15px;
    box-shadow:none;
    border-radius: 5px;
    background-size: 15px;
    padding: 7px;
}


/* new */

.slide-box {
    margin: 0 10px;
}

.portfolio-slider .slick-arrow {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    line-height: 45px;
    border: none;
    color: white;
    background: var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    border: 1px sold var(--primary-color);
    transition: all 0.5s ease;
}

.portfolio-slider .slick-arrow:hover {
    background: transparent;
    border: 1px solid var(--primary-color);
}

.portfolio-slider .slick-arrow:hover i{
    color: var(--primary-color);
}

.portfolio-slider .next-arrow {
    right: -5%;
}

.portfolio-slider .prev-arrow {
    left: -5%;
}



@media screen and (min-width: 1401px) and (max-width: 1500px) {
    .portfolio-slider .next-arrow {
        right: -3.5%;
    }
    
    .portfolio-slider .prev-arrow {
        left: -3.5%;
    }
}

@media screen and (max-width: 1400px) {
    
    .header-menu ul li a {
        font-size: 17px;
    }
    .header-menu ul{
        gap: 0;
    }
    .main-title h3{
        font-size: 30px;
        line-height: 45px;
    }
    
    .portfolio-slider .next-arrow {
        right: -1%;
    }
    .portfolio-slider .prev-arrow {
        left: -1%;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1300px) {
    .header-menu ul li a {
        font-size: 16px;
    }

    .banner-img {
        height: 420px;
    }

    .inner-content .title {
        font-size: 38px;
    }

    .review-img {
        width: 40px;
    }

    .banner-exp{
        padding: 15px 15px;
        right: -6%;
    }

    .badge-main-sec {
        font-size: 15px;
    }

    .badge-sub-sec{
        font-size: 13px;
    }

    .slider {
        padding: 80px 0 0;
    }

    .shape-5{
        right: 600px;
    }

    .banner-content {
        padding-top: 20px;
    }

    .why-offer-card h3{
        line-height: 30px;
    }
}


@media screen and (min-width: 992px) and (max-width: 1199px) {
    .header-menu ul li a {
        font-size: 16px;
    }

    .banner-img {
        height: 380px;
        left: -50px;
    }

    .inner-content .title {
        font-size: 32px;
        line-height: 50px;
    }

    .sub-title {
        font-size: 18px;
    }

    .book-btn {
        margin-top: 20px;
    }

    .slider {
        padding: 50px 0 0;
    }

    .review-img {
        width: 40px;
    }

    .banner-exp{
        padding: 15px 15px;
        right: -12%;
    }

    .badge-main-sec {
        font-size: 15px;
    }

    .badge-sub-sec{
        font-size: 13px;
    }

    .shape-5{
        right: 600px;
    }

    .banner-content {
        padding-top: 20px;
    }

    .why-offer-card h3{
        line-height: 28px;
        font-size: 18px;
    }

    .header-menu ul li {
        padding: 15px 12px;
    }

    .main-title span {
        font-size: 18px;
    }

    .why-icon{
        padding: 20px;
    }

    .why-icon{
        height: 80px;
        width: 80px;
    }

    .portfolio-title h4 {
        font-size: 22px;
    }
}

@media screen and (max-width: 991px) {
    .main-title span {
        font-size: 18px;
    }

    .main-title h3 {
        font-size: 25px;
        line-height: 40px;
    }

    .why-offer-main {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-offer-card h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .faq-section .col-lg-5{
        margin-bottom: 40px;
    }

    .accordion-item button::after{
        font-size: 30px;
    }

    .accordion-item.faq-box button:not(.collapsed):after {
        font-size: 38px;
    }
    .toggle-bar{
        display: block;
        text-align: right;
        font-size: 30px;
    }

    .header-menu{
        display: none;
    }

    .header-logo {
        width: 45%;
    }

    .slider {
        padding: 50px 0 0;
    }

    .inner-content {
        width: 80%;
    }

    .inner-content .title{
        font-size: 32px;
    }

    .banner-img {
        height: 400px;
    }

    .banner-exp {
        right: -2%;
    }

     .why-us {
        padding: 60px 0;
    }

    .portfolio {
        padding: 60px 0;
    }
    .faq {
        padding: 60px 0;
    }
       
    
}

@media screen and (max-width: 767px){
    .faq-section .main-title span {
        text-align: center;
    }
    .faq-section .main-title h3{
        text-align: center;
    }
    .sec-text {
        text-align: center;
    }

    .banner-slider:before {
        background: linear-gradient(270deg, #0282be 0%, #0094d9db 76.76%);
    }

    .banner-img {
        height: 350px;
        left: 45%;
        transform: translateX(-50%);
    }

    .inner-content {
        width: 100%;
    }

    .banner-exp {
        right: -8%;
        top: 4%;
        padding: 15px;
    }

    .why-us {
        padding: 50px 0;
    }

    .portfolio {
        padding: 50px 0;
    }
    .faq {
        padding: 50px 0 25px;
    }
    
    .inquire-modal .modal-content {
        padding: 15px;
    }
    
    .inquire-modal .main-btn {
        margin-top:30px;
    }
    
    .inquire-modal .main-btn a {
        font-size: 16px;
    }
    
    .inq-input {
        margin-bottom:20px;
    }
    
    .inquire-modal .modal-header h4 {
        font-size: 25px;
    }
    
    .inq-input label {
        font-size: 16px;
    }
    
    .inq-input textarea {
        font-size: 16px;
    }
    
    .inquire-modal .btn-close {
        padding: 5px;
    }
}



@media screen and (max-width: 575px) {
    .banner-content {
        padding-top: 10px;
    }

    .inner-content .title {
        font-size: 28px;
        text-align: center;
        line-height: 40px;
    }

    .sub-title {
        font-size: 16px;
        text-align: center;
    }

    .banner-slider .main-btn.book-btn{
        margin: 30px auto 0;
    }

    .badge-main-sec {
        font-size: 14px;
    }

    .banner-exp {
        right: -4%;
    }

    .badge-sub-sec {
        font-size: 12px;
    }

    .why-offer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-offer-card h3 {
        font-size: 18px;
        line-height: 25px;
    }

    .main-title span {
        font-size: 16px;
    }

    .main-title h3 {
        font-size: 20px;
        line-height: 30px;
        width: 95%;
    }

    .why-us .main-title {
        margin-bottom: 25px;
    }

    .accordion-body {
        line-height: 1.5;
        font-size: 14px;
        padding: 0px 15px 15px;
    }

    .accordion-item .accordion-header h5 {
        font-size: 16px;
    }

    .accordion-item .accordion-header button {
        padding: 12px 25px 12px 15px;
        min-height: 50px;
    }

    .sec-text {
        font-size: 15px;
    }

    .faq-section .col-lg-5 {
        margin-bottom: 20px;
    }

    .accordion-item button::after {
        right: 10px;
        font-size: 24px;
    }

    .accordion-item.faq-box button:not(.collapsed):after {
        font-size: 32px;
    }

    .header-logo {
        width: 60%;
    }

    .toggle-bar {
        font-size: 25px;
    }
    
    .portfolio-slider .slick-arrow {
        width: 40px;
        height: 40px;
        line-height: 40px;
        top: unset;
        bottom: -40px;
        z-index: 1;
        left: 42%;
        transform: translateX(-50%);
    }

    .portfolio-slider .next-arrow{
        left: 58%;
        right: unset;
    }
}

@media screen and (max-width: 480px){
    .banner-exp {
        top: 40%;
    }

    .why-icon {
        height: 80px;
        width: 80px;
        padding: 20px;
    }

    .portfolio-title h4{
        font-size: 20px;
    }

    .why-offer-main {
        grid-template-columns: repeat(1, 1fr)  !important;
    }
    
}


@media only screen and (min-width:992px) and (max-width:1199px) {
    .how-it-steps {
        gap: 25px;
    }
    .cta-content {
        padding-bottom: 40px;
    }
    .cta-card {
        padding: 40px 40px 0;
    }
    .cta-img {
        height: 450px;
        margin-top: -180px;
    }
    .cta-content h3 {
        font-size: 35px;
        line-height: 45px;
    }
    .how-it-work {
        margin-bottom: 0px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .how-it-steps {
        gap: 25px;
    }
    .cta-content {
        padding-bottom: 30px;
        width: 80%;
    }
    .cta-card {
        padding: 30px 30px 0;
    }
    .cta-img {
        height: 350px;
        margin-top: 0;
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .cta-content h3 {
        font-size: 30px;
        line-height: 40px;
    }
    .testi-clients .badge-main-sec {
        font-size: 16px;
    }
    .testimonial {
        padding: 60px 0;
    }
    .how-it-work {
        padding: 60px 0;
    }
    .cta {
        padding: 60px 0;
    }
    .cta-btn {
        flex-direction: column;
        margin-top: 20px;
        gap: 15px;
    }
    .cta-content p {
        font-size: 16px;
    }
    .steps-content {
        padding: 20px;
    }

    .footer-social li a i {
        height: 35px;
        width: 35px;
        line-height: 35px;
    }
    
    .footer {
        padding: 20px 0;
    }

    .scrollTop {
        bottom: 10%;
    }

    .how-icon {
        height: 125px;
        width: 125px;
    }
}

@media only screen and (max-width:767px)  {

    .how-it-steps {
        gap: 45px;
        grid-template-columns: repeat(1,1fr);
    }
    .cta-content {
        padding-bottom: 30px;
    }
    .cta-card {
        padding: 30px 30px 0;
    }
    .cta-img {
        height: 250px;
        margin-top: 0;
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .cta-content h3 {
        font-size: 30px;
        line-height: 40px;
    }
    .testi-clients .badge-main-sec {
        font-size: 16px;
    }
    .testimonial {
        padding: 50px 0;
    }
    .how-it-work {
        padding: 50px 0;
    }
    .cta {
        padding: 25px 0 50px;
    }
    .cta-btn {
        flex-direction: column;
        margin-top: 20px;
        gap: 15px;
    }
    .cta-content p {
        font-size: 16px;
        width: 70%;
    }
    .steps-content {
        padding: 20px;
        width: 70%;
    }
    .how-icon {
        height: 125px;
        width: 125px;
    }
    .how-it-work::after {
        background-size: cover;
        opacity: 0.19;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
    }
    .testi-content p {
        padding-top: 15px;
        height: 160px;
    }

    .why-offer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial .main-title{
        text-align: center;
    }

    .testimonial .main-title p{
        text-align: center;
    }

    .testi-clients{
        justify-content: center;
    }

    .testi-p p{
        text-align: center;
    }

}

@media only screen and (max-width:575px) {

    .steps-content {
        width: 100%;
    }

    .footer-bottom p {
        text-align: center;
        line-height: 1.7;
    }

    .cta-content {
        width: 100%;
        text-align: center;
    }

    .cta-img {
        display: none;
    }

    .cta-content p {
        width: 100%;
    }

    .cta-btn a {
        width: 100%;
        text-align: center;
    }

    .main-title p {
        text-align: center;
    }
    
    .testi-p p {
        text-align: center;
    }

    .testimonial .main-title {
        text-align: center;
    }

    .testi-clients {
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
    }

}