* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Tungsten-SemiBold';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Tungsten-SemiBold.ttf') format('woff');
}

@font-face {
    font-family: 'Sequel-Sans-Bold-Head';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Sequel-Sans-Bold-Head.otf') format('woff');
}

@font-face {
    font-family: 'Sequel-Sans-Bold-Body';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Sequel-Sans-Bold-Body.ttf') format('woff');
}

@font-face {
    font-family: 'Sequel-Sans-Medium-Body';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Sequel-Sans-Medium-Body.otf') format('woff');
}

@font-face {
    font-family: 'MYRIADPRO-REGULAR';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/MYRIADPRO-REGULAR.OTF') format('woff');
}

@font-face {
    font-family: 'MYRIADPRO-SEMIBOLD';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/MYRIADPRO-SEMIBOLD.OTF') format('woff');
}

:root {
    --MYRIADPRO-SEMIBOLD: 'MYRIADPRO-SEMIBOLD';
    --MYRIADPRO-REGULAR: 'MYRIADPRO-REGULAR';
    --Tungsten-SemiBold: 'Tungsten-SemiBold';
    --sequel-head: 'Sequel-Sans-Bold-Head';
    --sequel-medium-body: 'Sequel-Sans-Medium-Body';
    --sequel-bold-body: 'Sequel-Sans-Bold-Body';
}

.wrapper {
    overflow: hidden;
}


@media (max-width: 576px) {
    main {
        margin: 5rem 0 0 0;
    }

    .hero-section {
        width: 100%;
        height: 50vh;
        background-image: url("../images/domain/digital-commerce-banner.png");
        background-size: cover;
        background-position: 70%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-title {
        width: 90%;
        margin: 0 auto;
    }

    .hero-title h1 {
        display: inline;
        color: #fff;
        font-family: var(--sequel-bold-body);
        text-shadow: 0px 0px 50px #000000B8;
        margin: 0;
    }

    .hero-title h2 {
        color: #E4E4E4;
        font-family: var(--sequel-medium-body);
        margin: 0;
    }

    .hero-title p {
        color: #fff;
        text-shadow: 0px 0px 50px #000000C7;
        font-family: var(--MYRIADPRO-REGULAR);
        margin: 0;
        font-size: 1.09rem;

        display: inline;
    }

    .hero-title div {
        width: 72%;
    }

    /* ============== domain description css ============= */
    .domain-description .domain-desc-para {
        width: 90%;
        margin: 2rem auto;
    }

    .domain-desc-para h2 {
        font-family: var(--Tungsten-SemiBold);
        letter-spacing: 1.4px;
    }

    .domain-desc-para p {
        font-family: var(--MYRIADPRO-REGULAR);
        margin: 0;
        font-size: 1.3rem;
    }

    /* ============== technology-backbone css ============= */
    .technology-backbone {
        width: 90%;
        margin: 0 auto;
    }

    .technology-backbone h2 {
        font-family: var(--Tungsten-SemiBold);
        font-size: 2rem;
        letter-spacing: 1px;
        line-height: 2rem;
    }

    .tech-backbone-subtitle {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .tech-backbone-subtitle img {
        width: 25px;
    }

    .tech-backbone-subtitle h5 {
        color: #02455F;
        font-family: var(--sequel-bold-body);
        margin: 0;
    }

    .tech-backbone-parts {
        margin: 2rem 0;
    }

    .tech-backbone-cards-section {
        padding: 0 0 0 3rem;
        margin: 1rem 0;
    }

    .tech-backbone-card {
        border: 1px solid #CCCCCC;
        border-radius: 10px;
        padding: 1rem 0.5rem;
        margin: 0 0 1rem 0;
    }

    .tech-backbone-card h6 {
        font-family: var(--MYRIADPRO-SEMIBOLD);
        font-size: 1.3rem;
        position: relative;
        padding: 0 0 0 1rem;
    }

    .tech-backbone-card h6::before {
        position: absolute;
        left: 0;
        content: "";
        width: 2px;
        height: 1.5rem;
    }

    .tech-backbone-card h6.tech-card-title-1::before {
        background: transparent linear-gradient(180deg, #00ADEE 0%, #1EFBF8 81%, #73F2EB 100%) 0% 0% no-repeat padding-box;
    }

    .tech-backbone-card h6.tech-card-title-2::before {
        background: transparent linear-gradient(180deg, #FFF700 0%, #FF611B 100%) 0% 0% no-repeat padding-box;
    }

    .tech-backbone-card h6.tech-card-title-3::before {
        background: transparent linear-gradient(180deg, #FFF700 0%, #00B10C 81%, #00FF5C 100%) 0% 0% no-repeat padding-box;
    }

    .tech-backbone-card p {
        font-family: var(--MYRIADPRO-REGULAR);
        font-size: 1.09rem;
        line-height: 1.5rem;

        padding: 0 0 0 1rem;
    }

    /* -------------mobile app dev css start --------------*/
    .mob-app-dev {
        width: 90%;
        margin: 2rem auto;
    }

    .mob-app-title {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .mob-app-title img {
        width: 20px;
    }

    .mob-app-title h5 {
        color: #02455F;
        font-family: var(--sequel-bold-body);
        margin: 0;
    }

    .mob-app-desc {
        padding: 0 0 0 3rem;
        margin: 1rem 0;
    }

    .mob-app-desc div {
        padding: 1rem 0.5rem;
        border: 1px solid #CCCCCC;
        border-radius: 10px;
    }

    .mob-app-desc h6 {
        font-family: var(--MYRIADPRO-SEMIBOLD);
        font-size: 1.3rem;
        position: relative;
        padding: 0 0 0 1rem;
    }

    .mob-app-desc h6::before {
        position: absolute;
        left: 0;
        content: "";
        width: 2px;
        height: 1.5rem;
    }

    .mob-app-desc h6.mob-commerce-title::before {
        background: transparent linear-gradient(180deg, #FFF700 0%, #00B10C 81%, #00FF5C 100%) 0% 0% no-repeat padding-box;
    }

    .mob-app-desc h6.security-title::before {
        background: transparent linear-gradient(180deg, #00ADEE 0%, #1EFBF8 81%, #73F2EB 100%) 0% 0% no-repeat padding-box;
    }

    .mob-app-desc p {
        font-family: var(--MYRIADPRO-REGULAR);
        font-size: 1.09rem;
        line-height: 1.5rem;

        padding: 0 0 0 1rem;
    }

    .conclusion {
        width: 90%;
        margin: 2rem auto;
    }

    .conclusion p {
        font-family: var(--MYRIADPRO-REGULAR);
        margin: 0;
        font-size: 1.3rem;
    }
}

@media (min-width: 576px) {
    /* -----------------hero section css start ------------------*/
    main {
        margin: 4rem 0 0 0;
    }

    .hero-section {
        width: 100%;
        height: 50vh;
        background-image: url("../images/domain/digital-commerce-banner.png");
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-title {
        width: 90%;
        margin: 0 auto;
    }

    .hero-title h1 {
        display: block;
        color: #fff;
        font-family: var(--sequel-bold-body);
        text-shadow: 0px 0px 50px #000000B8;
        margin: 0;
    }

    .hero-title h2 {
        color: #E4E4E4;
        font-family: var(--sequel-medium-body);
        margin: 0;
    }

    .hero-title p {
        color: #fff;
        text-shadow: 0px 0px 50px #000000C7;
        font-family: var(--MYRIADPRO-REGULAR);
        margin: 0;
        font-size: 1.09rem;

        display: inline;
    }

    .hero-title div {
        width: 60%;
    }

    /* ============== domain description css ============= */
    .domain-description .domain-desc-para {
        width: 90%;
        margin: 2rem auto;
    }

    .domain-desc-para h2 {
        font-family: var(--Tungsten-SemiBold);
        letter-spacing: 1.4px;
    }

    .domain-desc-para p {
        font-family: var(--MYRIADPRO-REGULAR);
        margin: 0;
        font-size: 1.3rem;
    }

    /* ============== technology-backbone css ============= */
    .technology-backbone {
        width: 90%;
        margin: 0 auto;
    }

    .technology-backbone h2 {
        font-family: var(--Tungsten-SemiBold);
        font-size: 2rem;
        letter-spacing: 1px;
        line-height: 2rem;
    }

    .tech-backbone-subtitle {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .tech-backbone-subtitle img {
        width: 25px;
    }

    .tech-backbone-subtitle h5 {
        color: #02455F;
        font-family: var(--sequel-bold-body);
        margin: 0;
    }

    .tech-backbone-parts {
        margin: 2rem 0;
    }

    .tech-backbone-cards-section {
        padding: 0 0 0 3rem;
        margin: 1rem 0;
    }

    .tech-backbone-card {
        border: 1px solid #CCCCCC;
        border-radius: 10px;
        padding: 1rem 0.5rem;
        margin: 0 0 1rem 0;
    }

    .tech-backbone-card h6 {
        font-family: var(--MYRIADPRO-SEMIBOLD);
        font-size: 1.3rem;
        position: relative;
        padding: 0 0 0 1rem;
    }

    .tech-backbone-card h6::before {
        position: absolute;
        left: 0;
        content: "";
        width: 2px;
        height: 1.5rem;
    }

    .tech-backbone-card h6.tech-card-title-1::before {
        background: transparent linear-gradient(180deg, #00ADEE 0%, #1EFBF8 81%, #73F2EB 100%) 0% 0% no-repeat padding-box;
    }

    .tech-backbone-card h6.tech-card-title-2::before {
        background: transparent linear-gradient(180deg, #FFF700 0%, #FF611B 100%) 0% 0% no-repeat padding-box;
    }

    .tech-backbone-card h6.tech-card-title-3::before {
        background: transparent linear-gradient(180deg, #FFF700 0%, #00B10C 81%, #00FF5C 100%) 0% 0% no-repeat padding-box;
    }

    .tech-backbone-card p {
        font-family: var(--MYRIADPRO-REGULAR);
        font-size: 1.09rem;
        line-height: 1.5rem;

        padding: 0 0 0 1rem;
    }

    /* -------------mobile app dev css start --------------*/
    .mob-app-dev {
        width: 90%;
        margin: 2rem auto;
    }

    .mob-app-title {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .mob-app-title img {
        width: 20px;
    }

    .mob-app-title .secops-img {
        width: 25px;
    }

    .mob-app-title h5 {
        color: #02455F;
        font-family: var(--sequel-bold-body);
        margin: 0;
    }

    .mob-app-desc {
        padding: 0 0 0 3rem;
        margin: 1rem 0;
    }

    .mob-app-desc div {
        padding: 1rem 0.5rem;
        border: 1px solid #CCCCCC;
        border-radius: 10px;
    }

    .mob-app-desc h6 {
        font-family: var(--MYRIADPRO-SEMIBOLD);
        font-size: 1.3rem;
        position: relative;
        padding: 0 0 0 1rem;
    }

    .mob-app-desc h6::before {
        position: absolute;
        left: 0;
        content: "";
        width: 2px;
        height: 1.5rem;
    }

    .mob-app-desc h6.mob-commerce-title::before {
        background: transparent linear-gradient(180deg, #FFF700 0%, #00B10C 81%, #00FF5C 100%) 0% 0% no-repeat padding-box;
    }

    .mob-app-desc h6.security-title::before {
        background: transparent linear-gradient(180deg, #00ADEE 0%, #1EFBF8 81%, #73F2EB 100%) 0% 0% no-repeat padding-box;
    }

    .mob-app-desc p {
        font-family: var(--MYRIADPRO-REGULAR);
        font-size: 1.09rem;
        line-height: 1.5rem;

        padding: 0 0 0 1rem;
    }

    .conclusion {
        width: 90%;
        margin: 2rem auto;
    }

    .conclusion p {
        font-family: var(--MYRIADPRO-REGULAR);
        margin: 0;
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) {
    .hero-section {
        width: 100%;
        height: 70vh;
    }

    .hero-title {
        width: 85%;
    }

    .domain-description .domain-desc-para {
        width: 85%;
    }

    /* ============== technology-backbone css ============= */
    .technology-backbone {
        width: 85%;
    }

    .tech-backbone-subtitle img {
        width: 30px;
    }

    .mob-app-dev {
        width: 85%;
    }

    .mob-app-title img {
        width: 25px;
    }

    .mob-app-title .secops-img {
        width: 30px;
    }

    .conclusion {
        width: 85%;
    }
}

@media (min-width: 992px) {
    main {
        margin: 0;
    }

    .hero-section {
        height: 80vh;
        background-position: center;
    }

    .hero-title div {
        width: 59%;
    }

    .technology-backbone h2 {
        font-size: 3rem;
        line-height: 3rem;
    }

    .tech-backbone-cards-section {
        display: flex;
        gap: 15px;
    }

    .tech-backbone-card {
        width: 33%;
    }
}

@media (min-width: 1200px) {
    .hero-title h1 {
        font-size: 2.5rem;
    }

    .hero-title div {
        width: 100%;
    }

    .hero-title p {
        display: block;
    }
}

@media print and (orientation: landscape)  {
 
    main{
      margin: -7rem 0 0 0;
    }
  
  } 
  
  @media print and (orientation: portrait)  {
 
    main{
      margin: 0;
    }
  
  }