@charset "utf-8";
/* CSS Document: Mobile first design */
/*
@font-face {
    font-family: 'Roboto';
    font-weight: 400;
    src: url("fonts/roboto-regular-webfont.woff2") format('woff2'), url("fonts/roboto-regular-webfont.woff") format('woff');
}
*/
:root {
    --white: #FEFEFE;
    --black: #000;
    --black: #050810;
    --green: #01D722;
    --secondary-text-color: #707070;
    --dark-text-color: #008F63;
    --light-text-color: #A5A1FF;
    --soft-text-color: #A5A1FF80;
    --primary-bgcolor: #0B0B0C;
    --light-bgcolor: #B6DBCE;
    --soft-bgcolor: #E9E9FF;
    --dark-purple-bgcolor: #161723;
    scroll-behavior: smooth;
    font-size: 62.50%;
    color: #707070;
}
body {
    margin: 0;
    padding: 0;
}
* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
*::selection {
    background-color: var(--green);
    color: #000;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
a {
    text-decoration: none;
    color: var(--black);
}
ul {
    list-style: none;
    padding: 0rem;
    margin: 0rem;
}
.section-heading-bx {
    padding: 4rem;
}
.section-heading {
    font-size: 2rem;
    text-align: center;
    color: var(--white);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.015em;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}
.section-hr1, .section-hr2 {
    width: 100px;
    height: 3px;
    background-color: var(--white);
    margin: auto;
    margin-top: 4px;
}
.section-hr2 {
    width: 50px;
}
.section-para {
    color: var(--white);
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    letter-spacing: 1.1;
}
/* =================== Form submitted message-section ===================== */
.submitted-message {
    width: 350px;
    padding: .6rem 2rem;
    position: fixed;
    background-color: #fff;
    color: #000;
    border-radius: 4px;
    top: 530px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 5px 5px 1px #ffffff40;
}
.submitted-message > p {
    display: flex;
    align-items: center;
}
.submitted-message > p > svg {
    margin-right: 10px;
}
.submitted-message > p > span {
    font-size: 1.6rem;
}
.submitted-message > svg > path {
    display: inline-block;
}
.submitted-message > p > svg > path {
    color: green;
}
.success_alert {
    display: none;
    background-color: aqua;
    width: 400px;
}
/* ========================= header-section ============================ */
#site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    min-height: 7.2rem;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(3, 5, 12, 0.9) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(55, 118, 255, 0.18);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.4rem;
    padding: 1.2rem 1.6rem;
}
.site-logo {
    display: inline-flex;
    align-items: center;
    color: var(--white);
}
.site-logo img {
    width: 16.8rem;
    height: auto;
    display: block;
}
.header-navigation {
    display: none;
}
.contact-button-container {
    display: none;
}
.hamburger-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.mobile-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.9rem;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    color: #ffffff;
    background: #2f73ff;
    font-size: 1.2rem;
    font-weight: 800;
    white-space: nowrap;
}
.mobile-menu-link {
    /* display: inline-flex; */
    display: none; 
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}
#hamburger {
    width: 2rem;
    height: 2rem;
    filter: invert(1);
}
@media screen and (max-width:390px) {
    #site-header {
        padding: 1rem 1.2rem;
    }
    .site-logo img {
        width: 12.8rem;
    }
    .mobile-contact-link {
        padding: 0.85rem 1rem;
        font-size: 1.1rem;
    }
}
/* ============================ content-area ============================ */
#content-area {
    width: 100%;
}
#hero-section,
#project-section,
#service-section,
#contact-section {
    scroll-margin-top: 8.4rem;
}
#bg-image {
    position: fixed;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(70%);
}
/* ============================ hero-section ============================ */
#hero-section {
    width: 100%;
    min-height: calc(100vh - 6vh);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.6rem;
    background:
        linear-gradient(120deg, rgba(3, 5, 12, 0.98) 0%, rgba(8, 15, 32, 0.94) 46%, rgba(3, 5, 12, 0.98) 100%),
        radial-gradient(circle at top right, rgba(47, 115, 255, 0.24), transparent 34%);
    color: var(--white);
    overflow: hidden;
    position: relative;
}
#hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
    mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
    pointer-events: none;
}
.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
.eyebrow {
    width: fit-content;
    color: #77a7ff;
    font-size: 1.15rem;
    line-height: 1.4;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 1.4rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(119, 167, 255, 0.28);
    border-radius: 999px;
    background-color: rgba(47, 115, 255, 0.12);
}
.hero-name {
    max-width: 720px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 0.98;
    margin: 0;
    color: #fff;
}
.hero-role {
    max-width: 680px;
    margin: 1.2rem 0 0;
    color: #d9e5ef;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.35;
}
.hero-lead {
    color: #aeb9c7;
    font-size: 1.55rem;
    line-height: 1.65;
    max-width: 60ch;
    margin: 1.6rem 0 0;
}
.hero-ctas {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 2.6rem;
}
.hero-btn {
    min-height: 4.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.35rem 2.2rem;
    border-radius: 999px;
    font-size: 1.45rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hero-btn:hover {
    transform: translateY(-2px);
}
.hero-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #7db0ff 0%, #2f73ff 50%, #0b45d9 100%);
    box-shadow: 0 18px 46px rgba(47, 115, 255, 0.28);
}
.hero-btn-outline {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}
.hero-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.45);
}
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 640px;
    margin-top: 3rem;
}
.hero-metric {
    min-height: 9.6rem;
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(10px);
}
.hero-metric strong {
    display: block;
    color: #ffffff;
    font-size: 2.4rem;
    line-height: 1;
}
.hero-metric span {
    display: block;
    color: #94a3b8;
    font-size: 1.2rem;
    line-height: 1.35;
    margin-top: 0.8rem;
}
.hero-visual {
    width: 100%;
    max-width: 42rem;
}
.hero-image-panel {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    padding: 1rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}
.hero-image-panel::after {
    content: "";
    position: absolute;
    inset: auto 3.2rem -1.8rem;
    height: 3.6rem;
    border-radius: 50%;
    background: rgba(47, 115, 255, 0.34);
    filter: blur(28px);
    z-index: -1;
}
.hero-image-panel img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: 22px;
}
.hero-floating-card {
    position: absolute;
    min-width: 16.4rem;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    background: rgba(5, 8, 16, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}
.hero-floating-card span,
.hero-floating-card strong {
    display: block;
}
.hero-floating-card span {
    color: #77a7ff;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.hero-floating-card strong {
    color: #ffffff;
    font-size: 1.35rem;
    margin-top: 0.35rem;
}
.hero-floating-card-top {
    top: 8%;
    right: -1rem;
}
.hero-floating-card-bottom {
    left: -1rem;
    bottom: 10%;
}
@media screen and (max-width:520px) {
    #hero-section {
        padding: 3.6rem 1.4rem 4.4rem;
    }
    .hero-name {
        font-size: 3.8rem;
    }
    .hero-role {
        font-size: 1.5rem;
    }
    .hero-lead {
        font-size: 1.4rem;
    }
    .hero-ctas {
        gap: 1rem;
    }
    .hero-btn {
        width: 100%;
    }
    .hero-metrics {
        grid-template-columns: 1fr;
    }
    .hero-metric {
        min-height: 8rem;
    }
    .hero-floating-card {
        min-width: 14.2rem;
        padding: 0.85rem 1rem;
    }
    .hero-floating-card strong {
        font-size: 1.18rem;
    }
    .hero-floating-card-top {
        right: 0.2rem;
    }
    .hero-floating-card-bottom {
        left: 0.2rem;
    }
}
/* ============================ Project-section ============================ */
.project-section {
    width: 100%;
    padding: 2rem 0rem 5rem;
    background-color: var(--black);
    overflow: hidden;
}
.project-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    gap: 30px 20px;
}
.project-card {
    width: 390px;
    padding: 1rem;
    border: 1px solid #872C86;
    border-radius: 5px;
    transition: transform 1s ease, opacity 1s ease, background-color .7s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.project-card:nth-child(2) {
    border: 1px solid #607EB5;
    transition: transform 1s ease .2s, opacity 1s ease .2s, background-color .7s cubic-bezier(0.215, 0.61, 0.355, 1);
    ;
}
.project-card:nth-child(3) {
    border: 1px solid #fff;
    transition: transform 1s ease .2s, opacity 1s ease .2s, background-color .7s cubic-bezier(0.215, 0.61, 0.355, 1);
    ;
}
.project-card:nth-child(4) {
    border: 1px solid #00ff00;
    transition: transform 1s ease .2s, opacity 1s ease .2s, background-color .7s cubic-bezier(0.215, 0.61, 0.355, 1);
    ;
}
.project-card:nth-child(5) {
    border: 1px solid #D8FF00;
    transition: transform 1s ease .2s, opacity 1s ease .2s, background-color .7s cubic-bezier(0.215, 0.61, 0.355, 1);
    ;
}
.project-card:nth-child(6) {
    border: 1px solid #003CFF;
    transition: transform 1s ease .5s, opacity 1s ease .5s, background-color .7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.project-card:hover {
    background-color: #872C86;
    box-shadow: 0px 0px 140px 1px #872C8680;
}
.project-card:nth-child(2):hover {
    background-color: #607EB5;
    box-shadow: 0px 0px 140px 1px #607EB580;
}
.project-card:nth-child(3):hover {
    background-color: #fff;
    box-shadow: 0px 0px 140px 1px #ffffff80;
}
.project-card:nth-child(4):hover {
    background-color: #00ff00;
    box-shadow: 0px 0px 140px 1px #00FF0080;
}
.project-card:nth-child(5):hover {
    background-color: #D8FF00;
    box-shadow: 0px 0px 140px 1px #D8FF0080;
}
.project-card:nth-child(6):hover {
    background-color: #003CFF;
    box-shadow: 0px 0px 140px 1px #003CFF80;
}
.project-card:hover > h1, .project-card:hover > div > span {
    color: #000;
}
.project-card:hover > p {
    color: #000;
}
.project-moniter {
    width: 330px;
    height: 280px;
    background-size: cover;
}
.project-img {
    padding: 1rem 1.3rem 1.2rem;
    width: 370px;
    height: 220px;
}
.project-card > div {
    margin: 1.5rem 0rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}
.project-language {
    color: var(--black);
    padding: 0.4rem 0.8rem;
    font-size: 1.3rem;
    border-radius: 5px;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    background-color: var(--white);
}

.project-name{
    background-color: var(--white);
    padding: 5px 15px;
    border-radius: 4px;
    display: inline-block;
    font-size: 1.9rem;
    text-align: center;
    color: var(--black);
}
.project-card > p {
    margin-top: 1.5rem;
    padding: 2rem;
    font-size: 1.7rem;
    text-align: left;
    border-radius: 5px;
    color: var(--secondary-text-color);
    transition: background-color .7s ease-in-out, color .7s ease-in-out;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.13);
}
/* ============================ Template-section ========================= */
#template-section > .project-cards > .project-card:first-child {
    border: 1px solid #590017;
}
#template-section > .project-cards > .project-card:nth-child(2) {
    border: 1px solid #fff;
}
#template-section > .project-cards > .project-card:nth-child(3) {
    border: 1px solid #FF0000;
}
#template-section > .project-cards > .project-card:first-child:hover {
    background-color: #590017;
}
#template-section > .project-cards > .project-card:nth-child(2):hover {
    background-color: #fff;
}
#template-section > .project-cards > .project-card:nth-child(3):hover {
    background-color: #FF0000;
}
/* ============================ Passion-section ========================= */
#passion-section {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
}
.passion-text-container {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.passion-text-bx {
    position: relative;
    width: 400px;
    height: 70px;
    overflow: hidden;
}
.passion-h1 {
    height: 70px;
    line-height: 70px;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.7rem;
    color: #fff;
    visibility: hidden;
    text-shadow: 0px 0px 50px #00000080;
    font-weight: 900;
}
#passion-text-h1-bg {
    position: absolute;
    width: 0px;
    height: 100px;
    background-color: grey;
    transform: translateX(0px);
    transition: width 0.3s ease, transform 0.3s ease;
}
/* ============================ service-section ============================ */
.service-section {
    width: 100%;
    padding: 2rem 0rem 0rem;
    background-color: var(--black);
}
.service-bx {
    width: 100%;
    padding: 0rem 2rem;
}
#service-row-wrapper {
    padding-bottom: 1rem;
}
.service-row {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    /*    background-color: yellowgreen;*/
}
.service-row_left {
    flex: 1 0 60%;
    height: 70px;
    padding: 2rem 5rem 1rem 2rem;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 75px;
    transition: transform 0.5s ease, border-radius 0.5s ease, opacity 0.5s ease;
    transform: translateY(0px, 0px);
}
.service-row_left_text > h3 {
    font-size: 1rem;
    font-weight: 625;
    margin: 0rem 0px 0rem;
}
.service-row_left_text > p {
    font-size: 0.7rem;
    margin: 5px 0px;
    color: var(--secondary-text-color);
}
.service-row_right {
    flex: 1 0 40%;
    height: 70px;
    color: var(--white);
    border-radius: 75px;
    padding: 3rem 1rem 2rem;
    transition: transform 0.5s ease;
    transform: translate(0px, 0px);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.13);
}
.service-row_right > h3 {
    font-size: 1rem;
    font-weight: 625;
    margin-bottom: 5px;
    text-align: center;
}
.service-row_right > p {
    font-size: .7rem;
    text-align: center;
    margin-top: 0px;
    color: #636363;
}
/* ============================ contact-section ============================ */
#contact-section {
    width: 100%;
    background-color: var(--black);
    padding-bottom: 5rem;
}
.contact-form-bx {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.contact-image {
    display: none;
}
.contact-image > img {
    width: 100%;
    height: auto;
}
.contact-form {
    width: 100%;
    padding: 3rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.2);
        border: 1px solid rgba(255, 255, 255);
    /*    background-color: #05429f40;*/
}
.contact-input {
    width: 100%;
    padding: 0.8rem;
    font-size: 1.2rem;
    color: #C4C4C4;
    margin-bottom: 2rem;
    background-color: #47474780;
    border: none;
    transition: box-shadow 0.2s linear;
    resize: vertical;
    border-radius: 4px;
}
input[type=submit].contact-input {
    padding: 1.5rem;
    color: #323232;
    background-color: rgba(137, 137, 139, 1.00);
    margin-bottom: 0rem;
    transition: background-color .2s linear, color .2s linear;
}
input[type=submit].contact-input:hover {
    cursor: pointer;
    color: #303037;
    background-color: var(--white);
}
.contact-input:focus {
    outline: none;
    box-shadow: 0px 0px 40px 1px #4444ff;
}
label {
    display: block;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
}
/* ============================ footer-section ============================ */
#footer-fluid {
    width: 100%;
    background-color: var(--black);
    border-top: 2px solid #363636;
}
.footer {
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.widget {
    width: 100%;
    margin-bottom: 4rem;
}
.widget h1 {
    color: #ffffff;
}
.widget > p, .widget li, .widget li a, .widget li > a > img {
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #979797;
}
#footer-logo-img {
    width: 100px;
    height: auto;
}
.widget li {
    margin-top: 1rem;
}
.widget li a:hover {
    color: #fff;
}
.widget:first-child {
    order: 6;
}
.footer-social > ul > li {
    float: left;
}
.footer-menu > ul > li {
    float: left;
    margin-right: 2rem;
}
.footer-social-icon {
    width: 30px;
    height: 30px;
    background-size: cover;
    margin-right: 1rem;
}
@media screen and (min-width:993px) and (max-width:5000px) {
    #site-header {
        min-height: 8.4rem;
        padding: 1.4rem 3rem;
    }
    .header-navigation, .contact-button-container {
        display: block;
    }
    .hamburger-container {
        display: none;
    }
    .contact-button-container {
        flex: 0 0 auto;
    }
    .menu-list {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.055);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .menu-item {
        padding: 0;
        float: none;
        margin: 0;
    }
    .menu-item > a {
        display: inline-flex;
        align-items: center;
        min-height: 3.8rem;
        padding: 0.9rem 1.45rem;
        border-radius: 999px;
        font-size: 1.35rem;
        color: #cbd5e1;
        font-weight: 600;
        transition: color 0.2s ease, background-color 0.2s ease;
    }
    .menu-item > a:hover {
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.08);
    }
    .contact-button-link {
        min-height: 4.2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        padding: 1.1rem 1.8rem;
        font-weight: 800;
        color: #ffffff;
        background: linear-gradient(135deg, #7db0ff 0%, #2f73ff 50%, #0b45d9 100%);
        box-shadow: 0 14px 34px rgba(47, 115, 255, 0.22);
        font-size: 1.35rem;
        white-space: nowrap;
    }
    /* ============================ hero-section (desktop) ============================ */
    #hero-section {
        min-height: calc(100vh - 8.4rem);
        padding: 7rem 3rem;
    }
    .hero-content {
        grid-template-columns: minmax(0, 1.08fr) minmax(34rem, 0.72fr);
        gap: 6rem;
        align-items: center;
    }
    @keyframes hero-anime {
        0% {
            opacity: 0.5;
            transform: translateX(-500px);
        }
        100% {
            opacity: 1;
            transform: translateX(0px);
        }
    }
    .hero-name {
        font-size: 7.2rem;
    }
    .hero-role {
        font-size: 2.35rem;
    }
    .hero-lead {
        font-size: 1.75rem;
    }
    .hero-visual {
        max-width: 46rem;
        justify-self: end;
    }
    #hero-content-bx > p {
        margin: 1rem 0rem 4rem;
    }
    /* ============================ project-section ============================ */
    .section-heading {
        font-size: 3rem;
    }
    .project-cards {
        width: 1300px;
        height: auto;
        margin: auto;
        flex-flow: row wrap;
        align-items: flex-end;
        justify-content: flex-start;
        gap: 30px;
/*        flex-wrap: wrap;*/
    }
    .project-card {
        width: 400px;
        /*        transform: translateX(300px);*/
    }
    
    .project-img {
        width: 380px;
    }
    /* ============================ passion-section ============================ */
    .passion-text-bx {
        width: 1200px;
        height: 100px;
    }
    .passion-h1 {
        height: 100px;
        line-height: 100px;
        font-size: 5rem;
    }
    #passion-text-h1-bg {
        height: 70px;
    }
    /* ============================ service-section ============================ */
    .service-bx {
        width: 1200px;
        margin: auto;
    }
    .service-row {
        width: 1200px;
        height: 150px;
    }
    .service-row_left {
        flex: 1 0 750px;
        height: 150px;
        padding: 3rem 14rem 3rem 4rem;
        transform: translateX(310px);
    }
    .service-row_left_text > h3 {
        font-size: 1.8rem;
        margin: 1rem 0px 0rem;
    }
    .service-row_left_text > p {
        font-size: 1.6rem;
    }
    .service-row_right {
        flex: 1 0 550px;
        height: 150px;
        padding: 2rem 4rem;
        transform: translateX(-440px);
    }
    .service-row_right > h3 {
        font-size: 3rem;
        margin: 3rem 0px 10px;
    }
    .service-row_right > p {
        font-size: 1.9rem;
    }
    /*    js animation classes*/
    /* close animation class for js*/
    .close-left-anime {
        transform: translateX(310px);
        opacity: 0;
    }
    .close-right-anime {
        transform: translateX(-440px);
    }
    /* open animation class for js*/
    .open-left-anime {
        transform: translateX(0px);
        opacity: 1;
    }
    .open-right-anime {
        transform: translateX(-140px);
    }
    /* ====================== service-section ============================ */
    .contact-form-bx {
        flex-direction: row;
        padding: 0rem 5rem;
    }
    .contact-bx {
        margin: auto;
        width: 1200px;
    }
    .contact-image {
        display: block;
        width: 50%;
    }
    .contact-image > img {
        width: 100%;
        height: auto;
    }
    .contact-form {
        width: 50%;
        padding: 3rem 2rem;
        border-radius: 6px;
    }
    label {
        display: block;
        font-size: 1.8rem;
    }
    .contact-input {
        font-size: 1.7rem;
    }
    /* ============================ footer-section ============================ */
    .footer {
        padding: 4rem 0rem;
        width: 1200px;
        margin: auto;
        flex-direction: row;
        align-items: stretch;
    }
    .widget {
        width: auto;
    }
    .widget:first-child {
        order: 0;
    }
    .widget h1 {
        text-align: left;
    }
    .footer-menu > ul > li {
        float: none;
    }
}