@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

:root {
    --header-font: 'Lexend Deca', sans-serif;
    --paragraph-font: 'Roboto', sans-serif;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    font-family: var(--paragraph-font);
    color: #213343;
}

img,
picture,
svg,
video {
    max-width: 100%;
    display: block;
}

header {
    position: fixed;
    width: 100%;
    top: -1px;
    left: 0;
    background-color: #ffffff;
    z-index: 1000;
    /* box-shadow: 0px 4px 10px 0px rgba(0, 0, 15, 0.05); */
}

header .ez-header-container {
    /* padding: 30px 0; */
    height: 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .ez-header-container .img-logo {
    width: 215px;
    height: 40px;
}

header .ez-header-container .img-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header ul {
    display: flex;
    align-items: center;
    gap: 17px;
}

header .ez-header-container ul li .sign-in,
header .ez-header-container .mobile-btn .sign-in-mobile {
    font-family: var(--header-font);
    color: #213343;
    font-size: 16px;
    font-weight: 300;
    display: flex;
    gap: 2px;
    align-items: center;
    transition: ease-out 150ms;
}

header .ez-header-container ul li .sign-in:hover {
    gap: 6px;
}

header .ez-header-container ul li .contact {
    font-family: var(--header-font);
    color: #FFFF;
    font-size: 15px;
    font-weight: 400;
    border-radius: 6px;
    background: #213343;
    padding: 8px 16px;
    transition: ease-out 150ms;
}

header .ez-header-container ul li .contact:hover {
    background: #FF884E;
}

header .ez-header-container .mobile-btn {
    display: none;
}

main {
    margin-top: 80px;
}

/* banner */
main .ez-banner {
    /* background: #FFFBF9; */
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('/icon/b-image-header.svg');
}

main .ez-banner-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

main .ez-feature-benefits {
    max-width: var(--max-width);
    margin: 0 auto;
}

main .ez-banner-container .ez-all-banner-contents {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 65px;
}

main .ez-banner-container .ez-banner-contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main .ez-banner-container .ez-banner-contents .ez-left-content {
    display: flex;
    width: 508px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

main .ez-banner-container .ez-banner-contents .ez-left-content h1 {
    color: #213343;
    font-family: var(--header-font);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    text-transform: capitalize;
    margin-bottom: 13px;
}

main .ez-banner-container .ez-banner-contents .ez-left-content a {
    display: flex;
    padding: 5px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: #F26722;
    box-shadow: 8px 8px 4px 0px rgba(255, 149, 103, 0.25);
    color: #FFF;
    font-family: var(--header-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.048px;
    transition: ease-out 150ms;
}

main .ez-banner-container .ez-banner-contents .ez-left-content a:hover {
    background: #FF884E;
}

main .ez-banner-container .ez-banner-contents .ez-left-content .sub-header {
    color: #213343;
    font-family: var(--paragraph-font);
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 37px;
}

/* Trusted by client container */
main .ez-banner-container .ez-head-container {
    position: relative;
    text-align: start;
    margin-bottom: 25px;
}

main .ez-banner-container .ez-head-container hr {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    border: 0.8px solid #ffc5a9;
    border-radius: 10px;
}

main .ez-banner-container .ez-head-container span {
    position: relative;
    z-index: 1;
    /* background-color: #FFFBF9; */
    border-radius: 50px;
    /* padding: 0 45px; */
    color: #213343;
    font-family: var(--header-font);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.048px;
}

main .ez-banner-container .ez-client-logos-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main .ez-banner-container .ez-client-logos-container img {
    opacity: 1;
}

main .ez-banner-container .ez-client-logos-container.transition-enabled {
    transition: transform 2.5s ease-in;
}

main .ez-banner-container .ez-client-logos-container.fade-out {
    opacity: 0;
    transition: opacity 2.5s ease-out;
}

/* feature and benefits */
main .ez-feature-benefits {
    background-color: rgb(255, 255, 255);
    padding: 80px 0;
}


main .ez-feature-benefits h1 {
    text-align: center;
    margin-bottom: 50px;
    color: #213343;
    font-family: var(--header-font);
    font-size: 35px;
    font-weight: 700;
    text-transform: capitalize;
}

main .ez-feature-benefits .ez-feature-card {
    display: flex;
    align-items: center;
    min-height: 150px;
    padding: 0 30px;
    gap: 20px;
    border-radius: 6px;
    /* background: #FFF; */
    background-image: url('/icon/b-img-card.svg');
    /* background-position: right bottom; */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .1);
    /* background-size: 100%; */
    background-repeat: no-repeat;
}

main .ez-feature-benefits .ez-feature-card h5 {
    font-family: var(--header-font);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 7px;
    text-transform: capitalize;
}

main .ez-feature-benefits .ez-feature-card span {
    font-size: 15px;
    font-weight: 300;
    line-height: 23px;
}

main .ez-feature-benefits .ez-feature-benefits-container .ez-feature-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: auto;
    gap: 50px;
}

/* software */
main .ez-software-system {
    background-color: #FFFBF9;
}

main .ez-software-system .ez-software-system-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

main .ez-software-system .ez-software-system-container .ez-software-contents {
    padding: 80px 0;
}

main .ez-software-system .ez-software-system-container .ez-div-system {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main .ez-software-system .ez-software-system-container .ez-div-system .ez-monitoring-system {
    display: flex;
    width: 376px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

main .ez-software-system .ez-software-system-container .ez-div-system h1 {
    color: #213343;
    font-family: var(--header-font);
    font-size: 35px;
    font-weight: 700;
    text-transform: capitalize;
    align-self: stretch;
}

main .ez-software-system .ez-software-system-container .ez-div-system span {
    color: #F26722;
    font-family: var(--header-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
}

main .ez-software-system .ez-software-system-container .ez-div-system p {
    font-size: 15px;
    font-weight: 300;
    line-height: 23px;
    align-self: stretch;
}

main .ez-software-system .ez-software-system-container .ez-first-layer {
    margin-bottom: 150px;
}

/* app */
main .ez-app {
    background-color: white;
}

main .ez-app .ez-app-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

main .ez-app .ez-app-container .ez-app-contents {
    padding: 130px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main .ez-app .ez-app-container .ez-app-contents .ez-app-right-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 564px;
    gap: 40px;
}

main .ez-app .ez-app-container .ez-app-contents .ez-app-right-content .ez-head-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

main .ez-app .ez-app-container .ez-app-contents .ez-app-right-content .ez-head-content h1 {
    color: #213343;
    font-family: var(--header-font);
    font-size: 35px;
    font-weight: 700;
    text-transform: capitalize;
}

main .ez-app .ez-app-container .ez-app-contents .ez-app-right-content .ez-head-content span {
    color: #F26722;
    font-family: var(--header-font);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

main .ez-app .ez-app-container .ez-app-contents .ez-app-right-content .ez-head-content p {
    color: #213343;
    font-size: 15px;
    font-weight: 300;
    line-height: 23px;
}

main .ez-app .ez-app-container .ez-app-contents .ez-app-right-content .ez-app-btn {
    display: flex;
    gap: 25px;
}

main .ez-app .ez-app-container .ez-app-contents .ez-app-right-content a.ez-app-google-play,
main .ez-app .ez-app-container .ez-app-contents .ez-app-right-content a.ez-app-apple {
    display: flex;
    padding: 10px 15px;
    align-items: center;
    gap: 13px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(33, 51, 67, 0.10);
}

main .ez-app .ez-app-container .ez-app-contents .ez-app-right-content a.ez-app-google-play h6,
main .ez-app .ez-app-container .ez-app-contents .ez-app-right-content a.ez-app-apple h6 {
    color: #0D0D0D;
    font-family: var(--header-font);
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 0.042px;
}

main .ez-app .ez-app-container .ez-app-contents .ez-app-right-content a.ez-app-google-play h5,
main .ez-app .ez-app-container .ez-app-contents .ez-app-right-content a.ez-app-apple h5 {
    color: #0D0D0D;
    font-family: var(--header-font);
    font-size: 25px;
    font-weight: 500;
}


/* industries work with section */

main .ez-w-industries {
    background: #FFFBF9;
}

main .ez-w-industries h1 {
    color: #213343;
    text-align: center;
    font-family: "Lexend Deca";
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    text-transform: capitalize;
    margin-bottom: 50px
}

main .ez-w-industries-contents {
    padding: 80px 0;
}

main .ez-industries-slider {
    height: auto;
    width: 980px;
}

main .ez-w-industries-contents img {
    width: auto;
    height: 110.545px;
}

main .ez-swiper-card {
    display: flex;
    width: auto;
    padding: 30px 0px;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

main .ez-swiper-card h3 {
    color: #213343;
    text-align: center;
    font-family: var(--header-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-transform: capitalize;
}

/* testimonials slider section */

main .swiper-button-next {
    margin-right: 20px;
}

main .swiper-button-prev {
    margin-left: 20px;
}

main .ez-testimonial-container {
    margin: 0 auto;
    max-width: var(--max-width);
}

main .ez-testimonial-contents {
    padding: 130px 0;
    margin: 0 100px;
}

main .ez-testimonial-layer {
    background: #FFE0D0;
    height: 393px;
    padding: 0 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

main .ez-testimonial-layer span {
    color: #213343;
    text-align: center;
    font-size: 17px;
    font-style: italic;
    font-weight: 300;
    line-height: 30px;
    text-transform: capitalize;
}

main .ez-testimonial-layer h5 {
    color: #213343;
    text-align: center;
    font-family: var(--header-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
}

main .ez-testimonial-layer h6 {
    color: #213343;
    text-align: center;
    font-family: var(--header-font);
    font-size: 17px;
    font-weight: 300;
    line-height: 30px;
    text-transform: capitalize;
}

/* Ez-faqs */
main .ez-faqs {
    background: #FFFBF9;
}

main .ez-faqs .ez-faqs-container {
    margin: 0 auto;
    max-width: var(--max-width);
}

main .ez-faqs .ez-faqs-container .ez-faqs-contents {
    padding: 80px 0;
}

main .ez-faqs-div-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

main .ez-faqs .ez-faqs-container .ez-faqs-contents h1 {
    color: #213343;
    text-align: center;
    font-family: var(--header-font);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: capitalize;
}

main .ez-faqs .item-question {
    display: flex;
    flex-direction: column;
    padding: 15px 25px;
    border-radius: 5px;
    border: 1.5px solid #213343;
    background: #F8F8F8;
    width: 920px;
}


main .ez-faqs .close,
main .ez-faqs .item-answer {
    display: none;
}

main .ez-faqs .question-ask {
    color: #213343;
    font-family: var(--header-font);
    font-size: 16px;
    font-weight: 500;
}

main .ez-faqs .answer {
    color: #213343;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}

main .ez-faqs .show-answer .item-answer {
    display: block;
}

main .ez-faqs .show-answer .close {
    display: inline;
}

main .ez-faqs .show-answer .expand {
    display: none;
}


/* ez contact section */

.ez-contact-container {
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
}

.ez-contact-contents {
    padding: 80px 0;
    display: flex;
    justify-content: space-between;
}

.ez-contact-container .ez-l-contents {
    width: 343px;
}

.ez-contact-container .ez-l-contents .ez-head-contact {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 22px;
}

.ez-contact-container .ez-l-contents .ez-head-contact h1 {
    color: #213343;
    font-family: "Lexend Deca";
    font-size: 35px;
    font-weight: 700;
    text-transform: capitalize;
}

.ez-contact-container .ez-l-contents .ez-head-contact span {
    color: #213343;
    font-size: 16px;
    font-weight: 300;
    line-height: 23px;
}

.ez-contact-container .ez-l-contents .ez-head-contact hr {
    stroke-width: 1px;
    stroke: rgba(33, 51, 67, 0.50);
    width: 100%;
}

.ez-contact-container .ez-l-contents .ez-contact-details {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 22px;
}

.ez-contact-container .ez-l-contents .ez-contact-details h5 {
    color: #213343;
    font-family: "Lexend Deca";
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
}

.ez-contact-container .ez-l-contents .ez-contact-details h6 {
    color: #213343;
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    line-height: 23px;
}

.ez-contact-container form {
    width: 470px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 414px;
}

.ez-contact-container form .submit {
    display: flex;
    width: 74px;
    padding: 9px 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: #F26722;
    outline: none;
    border: none;
    color: #FFF;
    font-family: var(--header-font);
    font-size: 15px;
    font-weight: 400;
    transition: 0.3s ease-out;
}

.ez-contact-container form .submit:hover {
    background: #FF884E;
}

.ez-contact-container .form-row {
    align-self: stretch;
}

.ez-contact-container .form-row input {
    width: 100%;
    height: 39px;
    padding: 8px 10px;
    border-radius: 5px;
    border: 2px solid white;
    outline: none;
    box-shadow: rgba(88, 75, 57, 0.44) 0px 1px 2px;
    transition: 0.3s ease-in;
    color: rgba(33, 51, 67, 0.80);
    font-size: 15px;
    font-family: var(--header-font);
    font-weight: 400;
    line-height: 23px;
}

.ez-contact-container .form-row textarea {
    border: 2px solid white;
    box-shadow: rgba(88, 75, 57, 0.44) 0px 1px 2px;
    color: rgba(33, 51, 67, 0.80);
    font-family: var(--paragraph-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    height: 194px;
    width: 100%;
    padding: 8px 10px;
    border-radius: 5px;
    transition: 0.3s ease-out;
    resize: none;
    outline: none;
}

.ez-contact-container .form-row input:focus,
.ez-contact-container .form-row textarea:focus {
    border: 2px solid #F26722;
}

footer {
    background: #fff7f0;
}

footer .ez-footer-container {
    margin: 0 auto;
    max-width: 1200px;
}

footer iframe:focus {
    outline: none !important;
    border: none !important;
}

footer .ez-footer-contents {
    padding: 50px 0;
}

footer a.ez-social-media-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    box-shadow: 0px 0px 10px 0px rgba(255, 85, 0, 0.10);
    border-radius: 50%;
    transition: 0.03s ease-out;
    background: white;
}

footer a.ez-social-media-container:hover {
    scale: 1.1;
}

footer .ez-social-media-container img {
    object-fit: cover;
    width: 30px;
    height: 30px;
}

footer .ez-social-media {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 25px;
}

footer .ez-first-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .ez-first-container .ez-copyright {
    color: #213343;
    font-family: "Lexend Deca";
    font-size: 15px;
    font-weight: 400;
}

footer .ez-social-media-div {
    display: flex;
    flex-direction: column;
    align-items: end;
    row-gap: 25px;
}

footer h5 {
    text-align: center;
    color: #FFF;
    font-family: "Lexend Deca";
    font-size: 15px;
    font-weight: 300;
}

@media screen and (max-width: 1350px) {

    header,
    .ez-banner-container,
    .ez-feature-benefits-container,
    .ez-software-system-container,
    .ez-app .ez-app-container,
    .ez-w-industries-container,
    .ez-testimonial-container,
    .ez-faqs-container,
    .ez-contact-container,
    .ez-footer-container {
        padding: 0 1rem;
    }
}

@media screen and (max-width: 1200px) {

    /* software system */

    main .ez-software-system .ez-software-system-container .ez-first-layer {
        flex-direction: column-reverse;
        gap: 50px;
    }

    main .ez-software-system .ez-software-system-container .ez-second-layer {
        flex-direction: column;
        gap: 50px;
    }

    main .ez-software-system .ez-software-system-container .ez-div-system {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    main .ez-software-system .ez-software-system-container .ez-div-system .ez-monitoring-system {
        width: 100%;
    }

    /* eztackph app */

    main .ez-app .ez-app-container .ez-app-contents {
        display: flex;
        flex-direction: column-reverse;
        gap: 35px;
    }

    main .ez-app .ez-app-container .ez-app-contents .ez-app-right-content {
        width: 100%;
    }

    /* industries work with section */

    main .ez-industries-slider {
        width: auto;
    }

    /* ez faqs */
    main .ez-faqs .item-question {
        width: 650px;
    }

    /* ez contact */
    .ez-contact-container form {
        width: 390px !important;
    }
}

@media screen and (max-width: 700px) {
    header .ez-header-container .img-logo {
        width: 185px;
        height: auto;
    }

    header .ez-header-container ul {
        display: none;
    }

    header .ez-header-container .mobile-btn {
        display: block;
    }

    main .ez-right-content {
        display: none;
    }

    /* banner */

    main .ez-banner-container .ez-all-banner-contents {
        padding: 60px 0;
        gap: 70px;
    }

    main .ez-banner-container .ez-banner-contents .ez-left-content h1 {
        font-size: 35px;
        line-height: 45px;
    }

    main .ez-banner-container .ez-banner-contents .ez-left-content .sub-header {
        line-height: 25px;
        font-size: 15px;
    }

    main .ez-banner-container .ez-client-logos-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        overflow-x: auto;
        white-space: nowrap;
    }

    /* Hide the scrollbar for WebKit browsers */
    main .ez-banner-container .ez-client-logos-container::-webkit-scrollbar {
        width: 0;
    }

    main .ez-banner-container .ez-client-logos-container img {
        margin-right: 30px;
    }

    /* banner */


    /* feature */
    main .ez-feature-benefits .ez-head-feature h1 {
        font-size: 30px;
    }

    main .ez-feature-benefits .ez-feature-card {
        width: 100%;
    }


    main .ez-software-system .ez-software-system-container .ez-div-system .ez-monitoring-system h1 {
        font-size: 30px;
    }

    /* eztrackph app */

    main .ez-app .ez-app-container .ez-app-contents .ez-app-right-content .ez-app-btn {
        flex-direction: column;
        gap: 20px;
    }

    main .ez-app .ez-app-container .ez-app-contents .ez-app-right-content .ez-head-content h1 {
        font-size: 30px;
    }

    /* industries work with section */
    main .ez-w-industries h1 {
        font-size: 30px;
    }

    main .ez-w-industries-contents img {
        width: auto;
        height: 70px;
    }

    /* testimonials */

    main .ez-testimonial-contents {
        margin: auto;
    }

    main .ez-next {
        margin-right: 5px;
    }

    main .ez-prev {
        margin-left: 5px;
    }

    main .ez-testimonial-layer {
        height: 470px;
        padding: 0 20px;
    }

    /* faqs container */
    main .ez-faqs .ez-faqs-container .ez-faqs-contents h1 {
        font-size: 30px;
    }

    main .ez-faqs .item-question {
        width: 355px;
    }

    /* contact container */
    main .ez-contact-container .ez-l-contents {
        width: 100%;
    }

    main .ez-contact-container .ez-l-contents .ez-head-contact h1 {
        font-size: 30px;
    }

    main .ez-contact-contents {
        padding: 80px 0;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    main .ez-contact-container .ez-l-contents {
        width: 100% !important;
    }

    main .ez-contact-container form {
        width: 100% !important;
        height: 480px;

    }

    main .ez-contact-container .ez-flex {
        flex-direction: column;
        gap: 25px !important;
    }

    footer .ez-footer-contents {
        padding: 60px 0;
    }

    footer .ez-first-container {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 50px;
    }

    footer .ez-social-media-div {
        align-items: start;
    }

    footer .ez-second-container {
        text-align: start;
        margin-top: 25px;
    }


    .ez-contact-container form .submit {
        width: 100%;
    }

}

@media screen and (max-width: 412px) {

    /* banner */
    main .ez-banner-container .ez-banner-contents .ez-left-content h1 {
        font-size: 32px;
    }
}