/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
  }

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: none;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #0909099d;
}

html::-webkit-scrollbar-thumb {
    background-color: #090909;
    border-radius: 50rem;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

body {
    font-size: 24px;
    font-family: 'BeausiteSlickTrial Regular';
    font-weight: 400;
    color: #121212;
}

a,
a:hover,
a:focus {
    color: #ffffff;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

main {
    overflow: clip;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.container-fluid {
    padding: 0 40px;
}

/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 60px 0;
}

.mb-20 {
    margin-bottom: 20px;
}

p {
    color: #121212;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 37px;
}

.section-title {
    color: #0F0F0F;
    font-family: 'BeausiteClassicTrial Semibold';
    font-size: 58px;
    font-style: normal;
    font-weight: 600;
    line-height: 61px;
}
.section-title span{
    position: relative;
    z-index: 1;
}

.small-line {
    width: 79px;
    height: 2px;
    background: #000;
    display: inline-block;
    margin-left: 15px;
    margin-top: 20px;
    margin-bottom: 24px;
}

.primary-btn {
font-family: 'BeausiteClassicTrial Semibold';
border-radius: 60px;
background: #000;
padding: 12px 30px;
display: inline-block;
color: #FFF;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 22px;
transition: all .5s;
position: relative;
overflow: hidden;
z-index: 1;
}


.primary-btn:hover {
    color: #ffffff;
    box-shadow: 0 5px 7px 0 #fff;
    border-radius: 10px;
    transform: translateY(-5px);
}

.primary-btn:focus {
    color: currentColor;
}


/**************************************
         Animation
**************************************/

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

.fadeIn {
    animation-name: fadeIn;
}

.zoomIn {
    animation-name: zoomIn;
}

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

.flipInY {
    animation-name: flipInY;
}

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}

/*******************************
	Menu
*******************************/
header {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    .logo{
        margin-top: 12px;
        margin-bottom: 9px;
        display: inline-block;
    }
    p{
        color: #FFF;
        font-family: 'BeausiteSlickTrial Bold';
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 17px;
    }
}
/************************************* 
    Home Page 
**************************************/

.banner {
    background-image: url('../img/banner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 725px;
    position: relative;
    padding-top: 233px;
    padding-bottom: 250px;
    background-size: cover;
    .container{
        position: relative;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .banner-content{
        position: relative;
        z-index: 1;
        text-align: center;
        padding-top: 45px;
}
.btn-group{
    justify-content: center;
}
h1 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 66px;
}
}
.btn-group {
    display: flex;
    gap: 25px;
}
/* Category */
.category-item{
width: 194px;
height: 172px;
border-radius: 13px;
background: #ffffff;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
&:hover{
    background: #FEF9F6;
}
h4{
color: #303030;
text-align: center;
font-family: 'BeausiteClassicTrial Semibold';
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 23px;
}
.img-box {
    height: 66px;
    margin-bottom: 10px;
    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
}
.slick-arrow {
    width: 42px;
    height: 42px;
    z-index: 1;
    background: #ffffff;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    border-radius: 50%;
}
.slick-arrow::before {
    content: '';
    width: 15px;
    height: 15px;
    border-top: 1px solid;
    border-left: 1px solid;
    display: inline-block;
    transform: rotate(135deg);
    margin-right: 5px;
    opacity: 1;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    color: #000000;
    opacity: .5;
}
.slick-arrow:hover, .slick-arrow:focus {
    background-color: #F36B24;
    &::before {
        opacity: 1;
        color: #ffffff;
    }
}
.slick-arrow.slick-prev::before {
    transform: rotate(316deg);
    margin-left: 8px;
}
.about{
    .primary-btn{
        padding: 16px 26px;
        &:hover{
            background-color: #F36B24;
            color: #ffffff;
            box-shadow: 0 5px 7px 0 #F36B24;
            border-radius: 50rem;
        }
    }
}
.why-choose{
    background: linear-gradient(0deg, rgba(245, 245, 247, 0.00) 0%, #FFF7F8 100%);
}
.feature-box{
    padding-right: 138px;
    position: relative;
    text-align: right;
    margin-bottom: 120px;
    h4{
        color: #0F0F0F;
        font-family: 'BeausiteSlickTrial Bold';
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 27px;
    }
    p{
        color: #121212;
        font-size: 21px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
    }
    .icon{
        width: 115px;
        height: 115px;
        background: #FFF;
        border: 1px solid #EAEAEA;
        filter: drop-shadow(0px 14px 34px rgba(0, 0, 0, 0.07));
        position: absolute;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all .5s;
    }
    &:hover{
        .icon{
            background: #F36B24;
            border: 1px solid #F36B24;
            img{
                filter: invert(1) drop-shadow(0px 14px 34px rgb(255, 255, 255));
            }
        }
        h4{
            color: #F36B24;
        }
    }
}
.left-style{
    .feature-box{
        padding-left: 138px;
        padding-right: 0;
        text-align: left;
        .icon{
            right: auto;
            left: 0;
        }
    }
}
.center-box {
    position: relative;
    &::after{
        content: '';
        position: absolute;
        width: 611px;
        height: 611px;
        border-radius: 611px;
        border: 1px solid #d8d8d86b;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }
    .content {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding-inline: 10%;
        h5{
            color: #0F0F0F;
            text-align: center;
            font-family: 'BeausiteClassicTrial Semibold';
            font-size: 22px;
            font-style: normal;
            font-weight: 600;
            line-height: 26px;
        }
    }
    &:hover{
        .content{
            h5{
                color: #F36B24;
            }
            img{
                filter: unset;
                animation: rotate 2s linear infinite;
                border-radius: 50%;
            }
        }
        img{
            filter: invert(1) drop-shadow(0px 14px 34px rgb(255, 255, 255));
        }
    }
}
@keyframes rotate {
    0% {
        transform: rotate(-24deg);
      }
    
      50% {
        transform: rotate(24deg);
      }
    
      100% {
        transform: rotate(-24deg);
      }
}
.center-content{
    .feature-box{
        margin-bottom: 0;
        padding: 0;
        text-align: center;
        margin-top: -105px;
        .icon{
            position: relative;
            margin: 0 auto;
            right: 0;
            margin-bottom: 20px;
        }
    }
}
.mb-80{
    margin-bottom: 80px;
}

.save-money {
    background: #000;
    padding-top: 100px;
    padding-bottom: 125px;
}

.save-money .section-title {
    color: #fff;
    margin-bottom: 40px;
}

.feature-list {
    padding-left: 20px;
    margin: 0;
}

.feature-list li {
    list-style-type: disc;
    margin-bottom: 25px;
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.feature-list li img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.save-money .image-box {
    border-radius: 20px;
    overflow: hidden;
}

.save-money .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
    opacity: .2;
    &.slick-active{
        opacity:1;
    }
}

.how-it-works {
    background-color: #ffffff;
    position: relative;
}
.step-box {
    text-align: center;
    transition: all 0.3s ease;
    .img-box{
        margin-bottom: 26px;
    }
    .content{
        padding-inline: 16%;
    }
}
.step-box:hover {
    transform: translateY(-5px);
    h4{
        color: #F36B24;
    }
}
.step-box h4 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #0F0F0F;
}
.step-box p {
    color: #121212;
    margin-bottom: 0;
    font-size: 21px;
    line-height: 119.048%;
}
.seller{
    background: #F8F3EC;
}
.mb-50{
    margin-bottom: 50px;
}
/*******************************
Faq 
*******************************/
.accordion__item {
    margin: 4px auto;
    transition: .5s;
    border-radius: 9px;
border-bottom: 1px solid #E4E4E4;
backdrop-filter: blur(22px);
position: relative;
}
.accordion__item:hover {
    transform: translateY(-5px)
}

.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding-block: 10px;
    margin-bottom: 0px;
    color: #0F0F0F;
    font-family: 'BeausiteClassicTrial Semibold';
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    text-decoration: none;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
}

  
.accordion__title::after {
    content: '+';
    position: absolute;
    width: 19px;
    height: 11px;
    right: 24px;
    top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after{
    content: '-';
}




.accordion__item .accordion__content {
    padding-bottom: 10px;
    padding-right: 6%;
    display: none;
    p{
        color: #000;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 36px;
        margin-bottom: 0;
    }
}
.download-box {
    position: relative;
    border-radius: 11px;
    border: 1px solid #F36B24;
    background: #FFF5EF;
    .col-lg-5{
        position: absolute;
        left: 75px;
        top: 90px;
    }
    .mobile{
        position: relative;
        margin-bottom: -5px;
    }
}
.download-section {
    padding-bottom: 100px;
}
/******************************/

footer {
    width: 100%;
    padding-block: 50px;
    background: #0C0C0C;
    .social{
        display: flex;
        align-items: center;
        gap: 15px;
        a{
            display: inline-block;
            &:hover{
                transform: scale(1.2);
                img{
                    filter: brightness(0) saturate(100%) invert(70%) sepia(49%) saturate(6496%) hue-rotate(341deg) brightness(103%) contrast(101%);
                }
            }
        }
    }
    .primary-btn{
        background: #FFF;
        padding-block: 8px;
        margin-bottom: 14px;
        &:hover{
            transform: scale(1.2);
            border-radius: 60px;
            
        }
    }
}

.footer-box {
  .logo{
    margin-bottom: 49px;
  }
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-title {
    font-family: 'BeausiteSlickTrial Bold';
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    position: relative;
    margin-bottom: 26px;
}

footer ul li a,
footer p a {
font-style: normal;
font-weight: 400;
line-height: 31px;
color: #C3C3C3;
font-size: 19px;
line-height: 39px;
&:hover{
    color: #FF722B;
}
}


.copyright {
    text-align: center;
    margin-top: 30px;
    p{
        font-style: normal;
font-weight: 400;
line-height: 31px;
color: #C3C3C3;
font-size: 19px;
line-height: 39px;
    }
    a {
        color: #FF722B;
    }
}
.subtitle {
    font-size: 24px;
    margin-bottom: 10px;
    color: #f36b25;
    font-family: 'BeausiteClassicTrial Semibold';
    font-weight: 600;
}
.banner.inner-banner {
    padding-bottom: 250px;
    height: auto;
}
.text-dark{
    li{
        color: #000;
    }
}
.contact-info{
    a{
        color: #000;
        &:hover{
            color: #F36B24;
        }
    }
}
.text-white{
    color: #fff;
}
.bg-light{
    background: aliceblue;
}
@media(prefers-reduced-motion: no-preference){
    @view-transition{
        navigation: auto;
    }
}
::view-transition-group(*){
    animation-duration: 2s;
}
/*******************************
  Responsive
********************************/
/*************************************
    Home Page
*************************************/
@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
    
}

@media (max-width: 1440px),
(max-width: 1366px) {
    .category-item {
        width: 160px;
        h4 {
            font-size: 16px;
            line-height: 20px;
        }
    } 
    .section-title {
        font-size: 50px;
        line-height: 53px;
    } 
    p {
        font-size: 20px;
        line-height: 30px;
    }
    .feature-box {
        p {
           margin-top: 5px;
            font-size: 16px;
            line-height: 22px;
        }
        h4 {
            font-size: 22px;
        }
    }
    .center-content {
        .feature-box {
            margin-top: -140px;
        }
    }
    .center-box {
        & .content {
            h5 {
                font-size: 19px;
                line-height: 26px;
            }
        }
    }
    .center-box {
        &::after {
            width: 522px;
            height: 522px;
        }
    }
    .download-box {
        .col-lg-5 {
            left: 35px;
            top: 70px;
        }
    }
    .banner {
        height: 600px;
        padding-top: 170px;
        h1 {
            margin-bottom: 30px;
            font-size: 56px;
        }
    }
    .banner.inner-banner {
        padding-bottom: 150px;
        height: auto;
    }
}

@media (max-width: 1366px) {}

@media (max-width: 1199.98px) {
    .section-title {
        font-size: 40px;
        line-height: 43px;
    }
    .feature-box {
        h4 {
            font-size: 20px;
        }
        p {
            font-size: 14px;
        }
    }
    .center-content {
        .feature-box {
            margin-top: -220px;
        }
    }
    .save-money .section-title {
        margin-bottom: 20px;
    }
    .feature-list li {
        margin-bottom: 15px;
    }
    .step-box p {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    
}

@media (max-width: 575.98px) {
    .banner.inner-banner {
        padding-bottom: 70px;
        height: auto;
    }
    .accordion__item .accordion__title {
        padding: 12px;
        padding-right: 24px;
        font-size: 18px;
        line-height: 20px;
        padding-left: 0;
    }
    .accordion__item .accordion__content {
        p {
            font-size: 16px;
            line-height: 24px;
        }
    }
    .accordion__title::after {
        content: '+';
        right: 7px;
        top: 17px;
    }
    .accordion__item::before {
        top: 16px;
        left: 8px;
        background-size: 16px;
    }
    
    footer {
        padding-block: 20px;
    }
    .footer-box {
        padding-right: 0%;
    }
    footer p {
        font-size: 14px;
        line-height: 20px;
    }
    .banner {
        position: relative;
        height: 470px;
        object-fit: cover;
        padding-top: 110px;
        h1{
            margin-bottom: 20px;
            font-size: 30px;
        }
        .banner-content {
            width: 95%;
            padding-top: 70px;
        }
        .btn-group {
            gap: 8px;
        }
    }
    header {
        .logo {
            margin-top: 12px;
            margin-bottom: 0px;
            display: inline-block;
        }
        p {
            font-size: 13px;
            line-height: 17px;
        }
    }
    .sec-gap {
        padding: 20px 0;
    }
    .slick-arrow {
        width: 35px;
        height: 35px;
    }
    .slick-arrow::before {
        width: 10px;
        height: 10px;
    }
    .slick-next {
        right: -8px;
    }
    .slick-prev {
        left: -7px;
    }
    .section-title {
        font-size: 30px;
        line-height: 33px;
        margin-bottom: 10px;
    }
    p {
        font-size: 18px;
        line-height: 26px;
    }
    .feature-box {
        padding-right: 0;
        position: relative;
        text-align: center;
        margin-bottom: 35px;
        .icon {
            position: relative;
            width: 115px;
            height: 115px;
            margin-inline: auto;
            margin-bottom: 15px;
        }
    }
    .why-choose{
        .section-title{
            margin-bottom: 30px;
        }
    }
    .left-style {
        .feature-box {
            padding-left: 0;
            padding-right: 0;
            text-align: center;
        }
    }
    .feature-list li {
        font-size: 16px;
        line-height: 22px;
    }
    .download-box {
        overflow: hidden;
        .section-title {
            font-size: 20px;
            line-height: 22px;
            margin-bottom: 7px;
        }
        p {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 10px;
        }
        .btn-group {
            gap: 8px;
            flex-wrap: wrap;
        }
        .mobile {
            position: relative;
            margin-bottom: -6px;
            height: 300px;
            object-fit: cover;
            object-position: bottom center;
            margin-left: 23px;
        }
        .col-lg-5 {
            left: 12px;
            top: 12px;
            width: 47%;
        }
        .primary-btn{
            padding: 6px 25px;
        }    
    }
    .download-section {
        padding-bottom: 30px;
    }
    footer {
        padding-block: 20px;
        text-align: center;
        .social {
            justify-content: center;
        }
    }
    .footer-box {
        .logo {
            margin-bottom: 20px;
        }
    }
    .copyright {
        p {
            font-size: 16px;
            line-height: 22px;
        }
    }
    footer ul li a, footer p a {
        font-size: 16px;
        line-height: 30px;
    }
    .center-content {
        .feature-box {
            margin-top: 0;
        }
    }
    .subtitle {
        font-size: 18px;
        font-weight: 600;
    }
}

   /* Contact & Support */
.contact-banner{
    position: relative;
    &::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.00) 0%, #000000 100%);
    }
}
.mb-10{
    margin-bottom: 10px;
}
.mb-100{
    margin-bottom: 100px;
}
.help .accordion__item .accordion__title {
  color: #0F0F0F;
  font-family: 'BeausiteSlickTrial Regular';
  font-size: 18px;
  font-weight: normal;
}

.help .accordion__item .accordion__content p {
  color: #595959;
  font-size: 18px;
  line-height: 115%;
  font-family: 'BeausiteSlickTrial Regular';
  font-weight: normal;
}
.help p a{
        color:rgb(243, 107, 36);
    }
.help .accordion {
  margin-bottom: 28px;
}

.help .accordion__title::after {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  right: 4px;
  top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s;
  border-top: 1px solid;
  border-left: 1px solid;
  color: #000;
  transform: rotate(135deg);
}

.help .accordion__title.accordion-active::after {
  transform: rotate(226deg);
}

.help h3 {
  font-size: 24px;
}

.help .step-box {
  text-align: left;
}

.help .step-box .content {
  padding-inline: 0;
  padding-right: 10%;
}

.help .step-box .img-box {
  margin-bottom: 5px;
}

.help .step-box:hover img {
  transform: rotateY(180deg);
}

.help .step-box h4 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #0F0F0F;
}

.help .step-box p {
  color: #2D2D2D;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 20px;
}

.help .primary-btn {
  border: 1px solid #000;
  color: #000;
  background: transparent;
  padding: 12px 24px;
  font-size: 16px;
}

.help .primary-btn:hover {
  background-color: rgb(243, 107, 36);
  color: rgb(255, 255, 255);
  box-shadow: rgb(243, 107, 36) 0px 5px 7px 0px;
  border-radius: 50rem;
  border-color: #F36B24;
}

/* -------------------- Get in touch -------------------- */
.get-in-touch .form-control {
  border-radius: 10px;
  border: 1px solid #D5D5D5;
  background: #FFF;
  width: 100%;
  padding: 17px 10px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
}

.get-in-touch .form-control:focus {
  box-shadow: 0px 0px 0px 2px #F36B24;
  outline-color: #F36B24;
}

.get-in-touch .form-group {
  margin-bottom: 15px;
}

.get-in-touch textarea {
  font-family: 'BeausiteSlickTrial Regular';
  font-weight: normal;
}

.get-in-touch .primary-btn {
  border-radius: 60px;
  background: #F36B24;
  width: 100%;
  border: 0;
  padding-block: 20px;
  font-family: 'BeausiteSlickTrial Regular';
  font-size: 18px;
  cursor: pointer;
}

.get-in-touch .primary-btn:hover {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  box-shadow: rgb(0, 0, 0) 0px 5px 7px 0px;
  border-radius: 50rem;
  border-color: #000000;
}

.get-in-touch img {
  width: 100%;
  border-radius: 10px;
}

/* -------------------- Responsive -------------------- */
@media screen and (max-width: 575px) {
  .mb-80 {
    margin-bottom: 30px;
  }

  .help h3 {
    font-size: 20px;
  }

  .help .accordion__item .accordion__title {
    font-size: 16px;
  }

  .help .accordion__item .accordion__content p {
    font-size: 15px;
    line-height: 133%;
  }

  .help .step-box {
    text-align: center;
    background: #e7e7e757;
    padding: 16px;
  }

  .help .step-box .content {
    padding-inline: 0;
    padding-right: 0;
  }

  .help .step-box .btn-group {
    justify-content: center;
  }
}


