:root {
    --default-font: "Roboto",system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --heading-font: "Raleway",sans-serif;
    --nav-font: "Poppins",sans-serif
}

:root {
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #111111;
    --accent-color: #e03a3c;
    --surface-color: #ffffff;
    --contrast-color: #ffffff
}

:root {
    --nav-color: #212529;
    --nav-hover-color: #e03a3c;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #212529;
    --nav-dropdown-hover-color: #e03a3c
}

.light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff
}

.dark-background {
    --background-color: #1b1b1b;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #353535;
    --contrast-color: #ffffff
}

:root {
    scroll-behavior: smooth
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font)
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: .3s
}

a:hover {
    color: color-mix(in srgb,var(--accent-color),transparent 25%);
    text-decoration: none
}

h1,h2,h3,h4,h5,h6,summary {
    /* color: var(--heading-color); */
    font-family: var(--heading-font)
}

.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #fff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600
}

.php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(.6,.6);
        opacity: 1
    }

    100% {
        transform: scale(1,1);
        opacity: 0
    }
}

.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all .5s;
    z-index: 997
}

.header .logo {
    line-height: 1
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px
}

.header .logo h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color)
}

.header .logo span {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color)
}

.header .btn-getstarted,.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: .3s
}

.header .btn-getstarted:focus:hover,.header .btn-getstarted:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb,var(--accent-color),transparent 15%)
}

@media (max-width: 1200px) {
    .header .logo {
        order:1
    }

    .header .btn-getstarted,.header .btn-getstarted:focus {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px
    }

    .header .navmenu {
        order: 3
    }
}

@media (min-width: 1200px) {
    .navmenu {
        padding:0
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center
    }

    .navmenu li {
        position: relative
    }

    .navmenu a,.navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: .3s
    }

    .navmenu a i,.navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: .3s
    }

    .navmenu li:last-child a {
        padding-right: 0
    }

    .navmenu .active,.navmenu .active:focus,.navmenu li:hover>a {
        color: var(--nav-hover-color)
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: .3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0 0 30px rgba(0,0,0,.1)
    }

    .navmenu .dropdown ul li {
        min-width: 200px
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color)
    }

    .navmenu .dropdown ul a i {
        font-size: 12px
    }

    .navmenu .dropdown ul .active:hover,.navmenu .dropdown ul a:hover,.navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color)
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible
    }
}

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color:var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color .3s
    }

    .navmenu {
        padding: 0;
        z-index: 9997
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: .3s;
        z-index: 9998;
        box-shadow: 0 0 30px rgba(0,0,0,.1)
    }

    .navmenu a,.navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: .3s
    }

    .navmenu a i,.navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: .3s;
        background-color: color-mix(in srgb,var(--accent-color),transparent 90%)
    }

    .navmenu a i:hover,.navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color)
    }

    .navmenu .active,.navmenu .active:focus,.navmenu a:hover {
        color: var(--nav-dropdown-hover-color)
    }

    .navmenu .active i,.navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg)
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb,var(--default-color),transparent 90%);
        box-shadow: none;
        transition: all .5s ease-in-out
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33,37,41,.1)
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33,37,41,.03)
    }

    .mobile-nav-active {
        overflow: hidden
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33,37,41,.8);
        transition: .3s
    }

    .mobile-nav-active .navmenu>ul {
        display: block
    }
}

.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb,var(--default-color),transparent 90%)
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px
}

.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: var(--heading-color)
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font)
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb,var(--default-color),transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb,var(--default-color),transparent 30%);
    margin-right: 10px;
    transition: .3s
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color)
}

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px
}

.footer .footer-links {
    margin-bottom: 30px
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center
}

.footer .footer-links ul li:first-child {
    padding-top: 0
}

.footer .footer-links ul a {
    color: color-mix(in srgb,var(--default-color),transparent 30%);
    display: inline-block;
    line-height: 1
}

.footer .footer-links ul a:hover {
    color: var(--accent-color)
}

.footer .footer-contact p {
    margin-bottom: 5px
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid color-mix(in srgb,var(--default-color),transparent 90%)
}

.footer .copyright p {
    margin-bottom: 0
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px
}

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay:0!important
    }
}

.section,section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip
}

.section-bg {
    background-color: transparent;
    padding: 160px 0;
    position: relative
}

.section-bg:before {
    content: "";
    background-color: var(--background-color);
    position: absolute;
    bottom: 60px;
    top: 60px;
    left: 0;
    right: 0;
    transform: skewY(-3deg)
}

.section-bg .container {
    position: relative
}

@media (max-width: 1199px) {
    .section,section {
        scroll-margin-top:66px
    }
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto
}

.section-title p {
    margin-bottom: 0
}

.hero {
    --default-color: #ffffff;
    --background-color: #000000;
    --heading-color: #ffffff;
    width: 100%;
    min-height: calc(100vh - 100px);
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color)
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1
}

.hero:before {
    content: "";
    background: color-mix(in srgb,var(--background-color),transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2
}

.hero .container {
    position: relative;
    z-index: 3
}

.hero h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700
}

.hero p {
    color: color-mix(in srgb,var(--default-color),transparent 20%);
    margin: 10px 0 0 0;
    font-size: 24px
}

@media (max-width: 768px) {
    .hero h2 {
        font-size:32px
    }

    .hero p {
        font-size: 18px
    }
}

.about .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px
}

.about .content p {
    margin-bottom: 30px
}

.about .content .about-btn {
    padding: 8px 30px 9px 30px;
    color: var(--default-color);
    border-radius: 50px;
    transition: .3s;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--accent-color)
}

.about .content .about-btn i {
    font-size: 16px;
    padding-left: 5px
}

.about .content .about-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color)
}

.about .icon-box i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 10px
}

.about .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0
}

.about .icon-box h4 a {
    color: var(--heading-color);
    transition: .3s
}

.about .icon-box p {
    font-size: 15px;
    color: color-mix(in srgb,var(--default-color),transparent 40%);
    margin-bottom: 0
}

.about .icon-box:hover h4 a {
    color: var(--accent-color)
}

.services .service-item {
    background-color: var(--surface-color);
    padding: 30px;
    transition: .3s
}

.services .service-item .icon {
    font-size: 36px;
    line-height: 0;
    margin-right: 30px;
    color: var(--accent-color)
}

.services .service-item .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px
}

.services .service-item .title a {
    color: var(--heading-color)
}

.services .service-item .description {
    line-height: 24px;
    font-size: 14px;
    margin: 0
}

.services .service-item:hover {
    background-color: color-mix(in srgb,var(--surface-color) 90%,#fff 5%)
}

.pricing .pricing-item {
    background-color: var(--surface-color);
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(0,0,0,.1);
    height: 100%;
    position: relative
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px
}

.pricing h4 {
    font-size: 48px;
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 400
}

.pricing h4 span {
    color: color-mix(in srgb,var(--default-color),transparent 60%);
    font-size: 18px
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: color-mix(in srgb,var(--default-color),transparent 30%);
    text-align: left;
    line-height: 20px
}

.pricing ul li {
    padding: 10px 0;
    display: flex;
    align-items: center
}

.pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px
}

.faq {
    background-color: #f8f9fa
}

.faq .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222
}

.faq .section-title h3 {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px
}

.accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,.05)
}

.accordion-button {
    background-color: #fff;
    color: #212529;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px!important;
    transition: background-color .3s ease
}

.accordion-button:not(.collapsed) {
    background-color: #df3740;
    color: #fff;
    box-shadow: none
}

.accordion-button:focus {
    box-shadow: none
}

.accordion-body {
    background-color: #fff;
    color: #444;
    font-size: 15px;
    padding: 20px;
    line-height: 1.6
}

@media (max-width: 576px) {
    .faq .section-title h2 {
        font-size:26px
    }

    .faq .section-title h3 {
        font-size: 16px
    }
}

.contact .info-item {
    background-color: var(--surface-color);
    box-shadow: 0 0 20px rgba(0,0,0,.1);
    padding: 24px 0 30px 0
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all .3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb,var(--accent-color),transparent 40%)
}

.contact .info-item h3 {
    font-size: 20px;
    color: color-mix(in srgb,var(--default-color),transparent 20%);
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px
}

.contact .php-email-form {
    background-color: var(--surface-color);
    box-shadow: 0 0 20px rgba(0,0,0,.1);
    height: 100%;
    padding: 30px
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding:20px
    }
}

.contact .php-email-form input[type=email],.contact .php-email-form input[type=text],.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb,var(--default-color),transparent 80%)
}

.contact .php-email-form input[type=email]:focus,.contact .php-email-form input[type=text]:focus,.contact .php-email-form textarea:focus {
    border-color: var(--accent-color)
}

.contact .php-email-form input[type=email]::placeholder,.contact .php-email-form input[type=text]::placeholder,.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb,var(--default-color),transparent 70%)
}

.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: .4s;
    border-radius: 50px
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb,var(--accent-color),transparent 20%)
}

.visually-hidden {
    position: absolute!important;
    width: 1px!important;
    height: 1px!important;
    padding: 0!important;
    margin: -1px!important;
    overflow: hidden!important;
    clip: rect(0,0,0,0)!important;
    white-space: nowrap!important;
    border: 0!important
}

body {
    font-family: "Open Sans",sans-serif;
    color: #444
}

#header {
    background: #fff;
    transition: all .5s;
    z-index: 10000;
    box-shadow: 0 2px 15px rgba(0,0,0,.1);
    padding: 15px 0
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-family: Poppins,sans-serif
}

#header .logo a {
    color: #111
}

#header .logo a span {
    color: #e03a3c
}

#header .logo img {
    max-height: 35px
}

a {
    color: #e03a3c;
    text-decoration: none
}

a:hover {
    color: #e76668;
    text-decoration: none
}

h1,h2,h3,h4,h5,h6 {
    font-family: Raleway,sans-serif
}

.lazy-img {
    width: 70px;
    height: auto;
    aspect-ratio: 1/1
}

.device a {
    color: #2c2c2c
}

.device a:hover {
    color: #e03a3c
}

.device .service {
    align-items: center;
    text-align: center;
    border-radius: 12px;
    position: relative;
    padding: 20px 20px;
    cursor: pointer;
    transition: ease-in-out all .2s
}

.device .service:hover {
    transform: scale(1.08);
    color: #e03a3c
}

.device .service h3 {
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    color: #333;
    transition: color .3s ease-in-out
}

.device .service:hover h3 {
    color: #df3740
}

@media (min-width: 1200px) {
    .device .service {
        flex-direction:revert-layer
    }
}

.device .service,.select .icon-box {
    box-shadow: 0 13px 27px -5px rgba(50,50,93,.25),0 8px 16px -8px rgba(0,0,0,.3),0 -6px 16px -6px rgba(0,0,0,.03)
}

.section-title h2 {
    text-shadow: 1px 1px 1px rgba(0,0,0,.25)
}

section {
    padding: 60px 0;
    overflow: hidden;
    position: relative
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
    position: relative
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative
}

.section-title h2::after {
    /* content: ""; */
    /* position: absolute; */
    /* display: block; */
    /* width: 50px; */
    /* height: 3px; */
    /* background: #e03a3c; */
    /* bottom: 0; */
    /* left: calc(50% - 25px); */
}

.section-title p {
    margin-bottom: 0
}

.section-model {
    padding: 120px 0
}

.section-model:before {
    content: "";
    background: #2b2b2b;
    position: absolute;
    bottom: 60px;
    top: 60px;
    left: 0;
    right: 0;
    transform: skewY(-3deg)
}

.section-bg {
    padding: 120px 10px;
    color: #fff
}

.section-bg:before {
    content: "";
    background: #1b1b1b;
    position: absolute;
    bottom: 60px;
    top: 60px;
    left: 0;
    right: 0;
    transform: skewY(-3deg)
}

.breadcrumbs {
    padding: 15px 0;
    background: #2b2b2b;
    margin-top: 73px;
    color: #fff
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500
}

@media (max-width: 991px) {
    .breadcrumbs {
        margin-top:65px
    }
}

.about .container {
    position: relative;
    z-index: 10
}

.about .content {
    padding: 30px 5px 30px 5px
}

.about .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
    color: white;
}

.about .content p {
    margin-bottom: 30px
}

.about .content .about-btn {
    padding: 8px 30px 9px 30px;
    color: #fff;
    border-radius: 50px;
    transition: .3s;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    border: 2px solid #e03a3c
}

.about .content .about-btn i {
    font-size: 16px;
    padding-left: 5px
}

.about .content .about-btn:hover {
    background: #e35052;
    background: #e03a3c
}

.about .icon-boxes .icon-box {
    margin-top: 30px
}

.about .icon-boxes .icon-box svg {
    font-size: 40px;
    color: #e03a3c;
    margin-bottom: 10px
}

.about .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: floralwhite;
}

.about .icon-boxes .icon-box p {
    font-size: 15px;
    color: #848484
}

@media (max-width: 1200px) {
    .about .content {
        padding-right:0
    }
}

@media (max-width: 768px) {
    .about {
        text-align:center
    }
}

.modal.php-email-form button[type=submit] {
    background: #e03a3c;
    border: 0;
    padding: 10px 32px;
    color: #fff;
    transition: .4s;
    border-radius: 4px
}

.location {
    margin-top: 30px;
    font-size: 13px;
    color: #666;
    text-align: center;
    padding: 0 20px
}

.model-box {
    flex: 0 0 auto;
    background: #f0f0f3;
    transition: transform .3s ease;
    border-radius: 20px;
    box-shadow: 6px 6px 12px #c8d0e7,-6px -6px 12px #fff;
    padding: 15px;
    text-align: center;
    min-width: 130px
}

.model-box:hover {
    transform: translateY(-5px)
}

.model-box img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: inset 4px 4px 8px #d1d9e6,inset -4px -4px 8px #fff
}

.model-box h3 {
    font-size: 14px;
    margin-top: 10px
}

.banner-title {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    text-align: center;
    color: #111
}

.section-wrapper {
    padding: 100px 20px
}

.banner-title h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px
}

h1 span {
    color: #e63946
}

.highlight-android {
    color: #2d98da
}

.highlight-ipad {
    color: #f39c12
}

.highlight-watch {
    color: #2ecc71
}

.brand-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin: 40px 0 20px
}

.brand-box {
    width: 120px;
    height: 120px;
    background: #f0f0f3;
    border-radius: 20px;
    box-shadow: 8px 8px 16px #d1d9e6,-8px -8px 16px #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: transform .2s ease
}

.brand-box img {
    max-width: 80px;
    max-height: 80px;
    box-shadow: inset 4px 4px 8px #d1d9e6,inset -4px -4px 8px #fff;
    border-radius: 50%
}

.brand-box:hover {
    transform: scale(1.05)
}

.location-info {
    color: #666;
    font-size: 14px;
    text-align: center;
    margin-top: 10px
}

.more-brands-btn {
    display: block;
    align-items: center;
    padding: 5px 10px;
    font-size: 15px;
    font-weight: 500;
    background: #fff;
    color: #111;
    border: 2px solid #000;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,.05);
    transition: all .3s ease
}

.more-brands-btn:hover {
    background-color: #f0fdfb
}

.more-brands-btn svg {
    margin-left: 8px;
    stroke: #d9232d
}

.hero-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    position: relative;
    display: block
}

.hero-title::after,.hero-title::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: #aaa
}

.hero-title::before {
    right: 60%
}

.hero-title::after {
    left: 60%
}

@media (max-width: 768px) {
    .banner-title {
        /* text-align:left; */
        padding: 20px 0
    }

    .banner-title p {
        margin: 0
    }

    .brand-box img {
        max-width: 60px;
        max-height: 60px
    }

    .brand-box {
        width: 80px;
        height: 80px
    }

    .hero-title::before {
        right: 80%
    }

    .hero-title::after {
        left: 80%
    }
}

.services-wrapper {
    padding: 40px 20px;
    background: #f9f9f9;
    text-align: center
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden
}

.services-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0
}

.service-card {
    flex: 0 0 auto;
    width: 250px;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 6px 6px 12px #c8d0e7,-6px -6px 12px #fff;
    text-align: center;
    transition: transform .3s ease
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333
}

.service-card p {
    font-size: 14px;
    color: #666
}

.slider-btn {
    background: 0 0;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #555;
    z-index: 10;
    padding: 0 10px
}

@media (max-width: 768px) {
    .service-card {
        width:200px
    }

    h2 {
        font-size: 24px
    }
}

.how-it-works {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: 'Segoe UI',sans-serif
}

.step-grid {
    display: grid;
    gap: 30px
}

.step-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    text-align: center;
    align-items: center;
    gap: 20px;
    box-shadow: 8px 8px 20px #dcdcdc,-8px -8px 20px #fff;
    transition: transform .3s ease;
    text-decoration: none;
    color: inherit
}

.step-box:hover {
    transform: translateY(-5px)
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #d9232d;
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(217,35,45,.3);
    position: relative
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    color: #d9232d;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
    padding: 6px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.1)
}

.step-content {
    max-width: 320px
}

.step-content h3 {
    font-size: 1.3rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px
}

.step-content p {
    font-size: 14px;
    color: #555
}

@media (max-width: 767px) {
    .step-box:nth-child(even) {
        flex-direction:row-reverse;
        text-align: right
    }

    .step-box:nth-child(even) .step-content {
        align-items: flex-end;
        text-align: left
    }

    .step-box {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        text-align: left
    }

    .step-icon {
        margin: 0;
        flex-shrink: 0
    }

    .step-content {
        text-align: left
    }
}

@media (min-width: 768px) {
    .step-grid {
        grid-template-columns:repeat(3,1fr)
    }

    .step-box {
        flex-direction: column;
        text-align: center;
        align-items: center
    }
}

.services .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 6px;
    background: #fff;
    transition: .3s;
    position: relative
}

.services .icon-box:hover {
    background: #2b2b2b
}

.services .icon-box i {
    float: left;
    color: #e03a3c;
    font-size: 40px;
    line-height: 0
}

.services .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px
}

.services .icon-box h4 a {
    color: #444;
    transition: .3s
}

.services .icon-box h4 a:hover {
    text-decoration: underline
}

.services .icon-box .icon-box:hover h4 a {
    color: #e03a3c
}

.services .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 14px
}

.plf30 {
    padding-right: 30px;
    padding-left: 30px
}

.select .icon-box {
    display: flex;
    flex-direction: column;
    background: #fff;
    align-items: center;
    text-align: center;
    border-radius: 12px;
    position: relative;
    padding: 25px 20px;
    cursor: pointer;
    transition: ease-in-out all .2s;
    box-shadow: 0 0 15px #e7eaf0
}

.select .icon-box:hover {
    transform: scale(1.08);
    color: #e03a3c
}

.select .icon-box img {
    width: 70px;
    line-height: 1;
    height: auto
}

.select .icon-box h3 {
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 12px;
    align-items: center;
    transition: ease-in-out .3s
}

.service-content--title {
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1em;
    letter-spacing: 0;
    margin-bottom: .5rem;
    color: #000
}

.select .icon-box:hover h3 {
    color: #e43c5c
}

.contact .info-box {
    color: #444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214,215,216,.6);
    padding: 30px 0 32px 0;
    border-radius: 4px
}

.contact .info-box i {
    font-size: 32px;
    color: #e03a3c;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #f8d4d5
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777;
    font-weight: 700;
    margin: 10px 0
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0
}

.contact .php-email-form {
    text-align: center;
    border-radius: 20px;
    background-color: #f5f5f7;
    border: none;
    padding: 20px 20px;
    position: relative
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite
}

.contact .php-email-form .form-group {
    margin-bottom: 10px
}

.contact .php-email-form input,.contact .php-email-form textarea {
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px
}

.contact .php-email-form input:focus,.contact .php-email-form textarea:focus {
    border-color: #111
}

.contact .php-email-form input {
    padding: 10px 15px
}

.contact .php-email-form textarea {
    padding: 12px 15px
}

.contact .php-email-form button[type=submit] {
    background: #e03a3c;
    border: 0;
    padding: 10px 32px;
    color: #fff;
    transition: .4s;
    border-radius: 4px
}

.contact .php-email-form button[type=submit]:hover {
    background: #e35052
}

@keyframes animate-loading {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

#footer {
    color: #fff;
    font-size: 14px;
    background: #111
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #1b1b1b
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px
}

#footer .footer-top .footer-contact h3 {
    font-size: 26px;
    line-height: 1;
    font-weight: 700
}

#footer .footer-top .footer-contact h3 span {
    color: #e03a3c
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: Raleway,sans-serif
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px
}

#footer .footer-top h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #e03a3c;
    bottom: 0;
    left: 0
}

#footer .footer-top .footer-links {
    margin-bottom: 30px
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #fff;
    font-size: 18px;
    line-height: 1
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0
}

#footer .footer-top .footer-links ul a {
    color: #aaa;
    transition: .3s;
    display: inline-block;
    line-height: 1
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #fff
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #2b2b2b;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: .3s
}

#footer .social-links a:hover {
    background: #e03a3c;
    color: #fff;
    text-decoration: none
}

input,label,select {
    transition: var(--transition)
}

:root {
    --color-primary: #10a37f;
    --color-n-200: #c2c8d0;
    --color-n-300: #999;
    --transition: 0.2s ease;
    --br: 3.2px
}

.form {
    --spacing-default: 16px;
    --spacing-top: var(--spacing-default);
    --spacing-left: var(--spacing-default);
    --spacing-right: var(--spacing-default);
    --spacing-bottom: var(--spacing-default);
    --spacing-top-offset: -0.7;
    --spacing-left-offset: 0.5;
    display: grid;
    gap: 1rem
}

.form-group {
    position: relative
}

input,select {
    border-radius: var(--br);
    padding-block:var(--spacing-top) var(--spacing-bottom);padding-inline: var(--spacing-right) var(--spacing-left);
    font: inherit;
    display: block;
    width: 300px;
    border-radius: 5px;
    border: 1px solid var(--color-n-200)
}

.text-center {
    text-align: center;
    color: #000
}

input:focus,select {
    outline: 0;
    border-color: var(--color-primary)
}

label {
    position: absolute;
    top: var(--spacing-top);
    left: var(--spacing-left);
    color: var(--color-n-300);
    font-size: 16px;
    pointer-events: none
}

input:focus~label,input:valid~label,select:focus~label,select:valid~label {
    top: calc(var(--spacing-top) * var(--spacing-top-offset));
    left: calc(var(--spacing-left) * var(--spacing-left-offset));
    font-size: 15px;
    background-color: #fff;
    color: var(--color-primary);
    padding-inline:4px}
