@font-face {
    font-family: "Poppins";
    font-weight: 800;
    src: url(../fonts/Poppins-Black.ttf);
}

@font-face {
    font-family: "Poppins";
    font-weight: 700;
    src: url(../fonts/Poppins-ExtraBold.ttf);
}

@font-face {
    font-family: "Poppins";
    font-weight: 600;
    src: url(../fonts/Poppins-Bold.ttf);
}

@font-face {
    font-family: "Poppins";
    font-weight: 500;
    src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
    font-family: "Poppins";
    font-weight: 400;
    src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: "Poppins";
    font-weight: 300;
    src: url(../fonts/Poppins-Light.ttf);
}

@font-face {
    font-family: "Poppins";
    font-weight: 200;
    src: url(../fonts/Poppins-ExtraLight.ttf);
}

@font-face {
    font-family: "Poppins";
    font-weight: 100;
    src: url(../fonts/Poppins-Thin.ttf);
}

:root {
    --primary-color: 10, 35, 70;
    --secondary-color: 0, 120, 255;
    --fill-color: white;

    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    border: 0;

    font-family: "Poppins";
    font-weight: 400;
}

.cursor-layer {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    pointer-events: none;

    z-index: 10;

}

.cursor-layer>.cursor {
    border-radius: 100%;

    width: 50px;
    height: 50px;

    transform: translate(-50%, -50%);

    /* backdrop-filter: invert(); */

    transition: 0.5s ease-out;
}

.debug {
    position: fixed;
    top: 0;
    left: 0;

    color: white;
    font-size: 0.5em;
}

.debug>h1 {
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 1), -2px -2px 0px rgba(0, 0, 0, 1);
}

.header {
    position: fixed;
    top: 0;
    left: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 100%;
    height: 90vh;

    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 20%), url(../image/background.jpg);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center center;

    z-index: -1;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 10%;

}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 80%;
    height: 100%;
}

.navbar>.logo {
    display: flex;
    justify-content: start;
    align-items: center;

    height: 100%;
}

.navbar>.logo>img {
    height: 50%;
}

.navbar>.logo>p {
    margin-left: 10px;

    color: white;

    font-weight: 300;
}

.navbar>.contact {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;
}

.navbar>.contact>.panel {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-left: 10px;

    padding: 0px 10px;

    border-radius: 10px;
    height: 70%;

    cursor: pointer;

    transition: 0.25s ease;
}

.navbar>.contact>.panel:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar>.contact>.panel>img {
    height: 40%;
    filter: invert();
}

.navbar>.contact>.panel>p {
    margin-left: 5px;

    color: white;

    font-size: 0.8em;
    font-weight: 300;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 80%;
    height: 10%;
}

.links>.line {
    height: 1px;
    width: 100%;

    background-color: white;
}

.links>.line>.content {
    width: 20%;
    height: 2px;

    background-color: rgba(var(--secondary-color), 1);

    transform: translateY(-50%);

    transition: 0.5s ease;
}

.links>.buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    height: calc(100% - 1px);
}

.links>.buttons>.link {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 20%;
    height: 100%;

    cursor: pointer;

    transition: 0.2s ease;
}

.links>.buttons>.link:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.links>.buttons>.link>p {
    color: white;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));

    font-size: 1em;
    font-weight: 500;
}

.links>.buttons>.link-active>p {
    font-weight: 400;
}

.links>.buttons>.break {
    display: flex;
    justify-content: center;
    align-items: center;

    width: calc(20%/3);
    height: 100%;
}

.links>.buttons>.break>.line {
    width: 2px;
    height: 50%;

    background-color: white;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 80%;
}

.hero>.inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 80%;
    height: 100%;
}


.hero>.inner>.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    margin-top: -15vh;
}

.hero>.inner>.heading>.text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero>.inner>.heading>.text>p {
    color: white;

    font-size: 0.9em;
    font-weight: 200;
    letter-spacing: 4px;

    text-transform: uppercase;
}

.hero>.inner>.heading>.text>.line {
    margin: 0px 10px;

    width: 40px;
    height: 2px;

    background-color: white;
}

.hero>.inner>.heading>h1 {
    margin-top: -5px;

    color: rgb(255, 255, 255);

    font-size: 3em;
    font-weight: 600;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
}

.hero>.inner>.heading>button {
    margin-top: 20px;
    border: 2px solid white;
    border-left: 2px solid rgba(var(--secondary-color), 1);
    border-right: 2px solid rgba(var(--secondary-color), 1);
    border-radius: 100px;

    width: 150px;
    height: 50px;

    color: rgba(var(--primary-color), 1);
    background-color: white;
    backdrop-filter: blur(10px);

    font-size: 0.8em;
    font-weight: 600;

    cursor: pointer;

    transition: 0.2s ease;
}

.hero>.inner>.heading>button:hover {
    width: 200px;
}

.hero>.inner>.watermark {
    position: absolute;
    top: 78vh;

    align-self: flex-end;
}

.hero>.inner>.watermark>p {
    color: rgba(255, 255, 255, 0.5);

    font-size: 0.8em;
    font-weight: 300;
}


.specialties {
    margin-top: calc(90vh - 50px);

    padding-bottom: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50px, rgba(255, 255, 255, 1) 50px);
}

.specialties>.cards {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 8px;
    row-gap: 20px;

    width: 80%;
    height: 100%;
}

.specialties>.cards>.card {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;

    border-radius: 4px;

    grid-column: auto/span 3;
    width: 100%;
    height: 250px;

    background-color: white;

    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);

    overflow: hidden;

    cursor: pointer;

    transition: 0.2s ease;
}

.specialties>.cards>.card:hover {
    transform: translateY(-20px);
}

.specialties>.cards>.card:hover>.loading {
    width: 100%;
}

.specialties>.cards>.card>.loading {
    margin-right: auto;

    width: 0%;
    height: 4px;

    background-color: rgba(var(--secondary-color), 1);

    transition: 0.5s ease;
}

.specialties>.cards>.card>.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 80%;
    height: calc(100% - 4px);
}

.specialties>.cards>.card>.content>.network-icon {
    align-self: flex-end;

    border-radius: 100%;

    padding-bottom: 5%;
    width: 5%;
    height: 0;

    opacity: 1;

    background-color: rgba(var(--primary-color), 1);
    /* mask-image: url(../image/icons/essentials/internet-149229.png);
    mask-size: cover; */
}

.specialties>.cards>.card>.content>.icon {
    padding-bottom: 35%;
    width: 35%;
    height: 0;

    background-color: rgba(var(--primary-color), 1);
}

.specialties>.cards>.card>.content>.icon1 {
    mask-image: url(../image/icons/essentials/stopwatch-149322.png);
    mask-size: cover;
}

.specialties>.cards>.card>.content>.icon2 {
    mask-image: url(../image/icons/essentials/like-149217.png);
    mask-size: cover;
}

.specialties>.cards>.card>.content>.icon3 {
    mask-image: url(../image/icons/essentials/diamond-149286.png);
    mask-size: cover;
}

.specialties>.cards>.card>.content>.icon4 {
    mask-image: url(../image/icons/essentials/cloud-149209.png);
    mask-size: cover;
}

.specialties>.cards>.card>.content>h1 {
    margin-top: 10px;

    color: rgba(var(--primary-color), 1);

    font-size: 1.3em;
    font-weight: 500;
    letter-spacing: 1px;
}

.specialties>.cards>.card>.content>p {
    color: rgba(var(--primary-color), 1);

    font-size: 0.8em;
}

.specialties>.cards>.card>.content>.line {
    margin-top: 30px;

    width: 40px;
    height: 2px;

    background-color: rgba(var(--primary-color), 1);
}

.specialties>.cards>.card-active {
    border-top: 2px solid white;
    background-color: rgba(var(--primary-color), 1);
    transform: translateY(-20px);
}

.specialties>.cards>.card-active>.content>.network-icon {
    background-color: white;
}

.specialties>.cards>.card-active>.content>.icon {
    background-color: white;
}

.specialties>.cards>.card-active>.content>h1 {
    color: white;
}

.specialties>.cards>.card-active>.content>p {
    color: white;
}

.specialties>.cards>.card-active>.content>.line {
    background-color: white;
}

.why-us {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    padding-bottom: 80px;

    width: 100%;

    background-color: white;
}

.why-us>.hr {
    margin-top: 50px;

    width: 80%;
    height: 1px;

    background-color: rgba(var(--primary-color), 0.6);
}

.why-us>.icon {
    width: 50px;
    height: 50px;

    transform: translateY(50px);

    mask-image: url(../image/icons/essentials/search-149309.png);
    mask-size: cover;
    mask-position: center center;

    background-color: rgba(var(--primary-color), 1);
}

.why-us>h1 {
    margin-top: 50px;

    color: rgba(var(--primary-color), 1);

    font-weight: 500;
}

.why-us>.inner {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    margin-top: 35px;

    width: fit-content;
    max-width: 80%;
}

.why-us>.inner>.up {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
}

.why-us>.inner>.up>.text {
    width: 150px;
}

.why-us>.inner>.up>.text>p {
    text-align: center;
}

.why-us>.inner>.up>.text-active {
    color: rgba(var(--primary-color), 1);
}

.why-us>.inner>.up>.text-active>p {

    /* transform: translateY(-20px); */
    font-weight: 500;
}

.why-us>.inner>.up>.text1 {
    transform: translateX(-50%);
}

.why-us>.inner>.up>.text2 {
    transform: translateX(0%);
}

.why-us>.inner>.up>.text3 {
    transform: translateX(50%);
}

.why-us>.inner>.down {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 10px;
}

.why-us>.inner>.down>.dot {
    border-radius: 100%;
    border: 2px solid rgba(0, 0, 0, 0.5);

    width: 10px;
    height: 10px;
}

.why-us>.inner>.down>.dot-active {
    border: 2px solid rgba(var(--primary-color), 1);
    background-color: rgba(var(--primary-color), 1);
}

.why-us>.inner>.down>.line {
    margin: 0px 10px;

    width: 200px;
    height: 1px;

    background-color: black;
}

.about-us {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 80px 0px;

    width: 100%;

    background-image: linear-gradient(to right, rgba(var(--primary-color), 0) 0%, 40%, rgba(var(--primary-color), 1) 50%, rgba(var(--primary-color), 1) 100%),
        url(../image/computer.jpg);
    background-size: cover;
    background-position: center left;
}

.about-us>.inner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 80%;
    height: 100%;
}

.about-us>.inner>.right {
    margin-left: auto;
    width: 45%;
    height: 100%;
}

.about-us>.inner>.right>.icon {
    width: 50px;
    height: 0;
    padding-bottom: 50px;

    background-color: white;
    mask-image: url(../image/icons/essentials/user-149452\ \(1\).png);
    mask-size: cover;
    mask-position: center center;

    transform: translateY(0px);
}

.about-us>.inner>.right>.heading {
    display: flex;
    justify-content: start;
    align-items: center;

    transform: translateY(10px);
}

.about-us>.inner>.right>.heading>h2 {
    color: rgba(255, 255, 255, 0.6);

    font-size: 1.2em;
    font-weight: 600;
}

.about-us>.inner>.right>.heading>.line {
    margin-left: 20px;

    height: 2px;
    width: 100px;

    background-color: rgba(255, 255, 255, 0.6);
}

.about-us>.inner>.right>h1 {
    color: rgba(255, 255, 255, 1);

    font-size: 2em;
    font-weight: 500;
}

.about-us>.inner>.right>p {
    margin-top: 20px;

    color: rgba(255, 255, 255, 1);

    font-size: 0.9em;
    font-weight: 300;

    line-height: 1.5em;
}

.about-us>.inner>.right>button {
    margin-top: 40px;
    padding-bottom: 5px;
    border-bottom: 2px solid white;

    color: rgba(255, 255, 255, 1);
    background-color: transparent;

    font-size: 0.9em;
    font-weight: 500;
    cursor: pointer;
}

.softwares {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 80px 0px;

    width: 100%;
    background-color: white;
}

.softwares>.inner {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;

    width: 80%;
}

.softwares > .inner > h1{
    color: rgba(var(--primary-color), 1);
    font-weight: 500;
}

.softwares>.inner>.cards {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 20px;

    width: 100%;
}

.softwares>.inner>.cards>.card {

    border: 2px solid white;

    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;

    grid-column: auto/span 4;

    border-radius: 10px;
    width: 100%;
    height: 400px;

    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);

    overflow: hidden;

    /* background-color: rgba(var(--primary-color), 1); */
    background-color: rgba(var(--primary-color), 1);
    background-size:contain;
    background-position: 50% 0%;
    transition: 0.25s ease;
}

.softwares > .inner > .cards > .card.card:nth-of-type(1){
    background-image: url(../image/cards/distribution2.jpg);
}
.softwares > .inner > .cards > .card.card:nth-of-type(2){
    background-image: url(../image/cards/medic2.jpg);
}
.softwares > .inner > .cards > .card.card:nth-of-type(3){
    background-image: url(../image/cards/aero2.jpg);
}
.softwares > .inner > .cards > .card.card:nth-of-type(4){
    background-image: url(../image/cards/education2.jpg);
}
.softwares > .inner > .cards > .card.card:nth-of-type(5){
    background-image: url(../image/cards/pharma2.jpg);
}

.softwares>.inner>.cards>.card:hover {
    transform: translateY(-20px);
    border-color: rgba(var(--primary-color), 1);
}

.softwares>.inner>.cards>.card>.image {

    width: 100%;
    height: 45%;

    /* background-color: rgba(var(--primary-color), 1); */
    background-image: url(../image/test.jpg);
    background-size: cover;
    background-position: 50% 0%;
}

.softwares>.inner>.cards>.card>.dot{
    width: 15px;
    height: 15px;

    border-radius: 100px;

    background-color: rgba(var(--primary-color), 1);
    align-self: flex-end;

    transform: translate(-5px, 20px);
}

.softwares>.inner>.cards>.card>.text {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;

    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

    padding: 7% 10%;
    width: 80%;
    height: 35%;

    background-color: white;

    transition: 0.25s ease;
}

.softwares>.inner>.cards>.card:hover>.text {
    height: 55%;
}

.softwares>.inner>.cards>.card>.text>.icon {
    margin-top: 10px;

    width: 40px;
    height: 40px;

    background-color: rgba(var(--primary-color), 1);
    mask-size: cover;
    mask-position: center center;
}

.softwares>.inner>.cards>.card:nth-of-type(1)>.text>.icon {
    mask-image: url(../image//wordwide.png);
}

.softwares>.inner>.cards>.card:nth-of-type(2)>.text>.icon {
    mask-image: url(../image/doctor.png);
}

.softwares>.inner>.cards>.card:nth-of-type(3)>.text>.icon {
    mask-image: url(../image/airplane.png);
}

.softwares>.inner>.cards>.card:nth-of-type(4)>.text>.icon {
    mask-image: url(../image/education.png);
}

.softwares>.inner>.cards>.card:nth-of-type(5)>.text>.icon {
    mask-image: url(../image/medicine.png);
}

.softwares>.inner>.cards>.card>.text>.heading {
    display: flex;
    justify-content: start;
    align-items: center;

    margin-top: 5px;

    width: 100%;
}

.softwares>.inner>.cards>.card>.text>.heading>h1 {
    font-size: 1.5em;
    font-weight: 500;
    color: rgba(var(--primary-color), 1);
}

.softwares>.inner>.cards>.card>.text>.heading>.line {
    margin-left: 20px;

    width: 80px;
    height: 1px;

    background-color: rgba(var(--primary-color), 1);
}

.softwares>.inner>.cards>.card>.text>p {
    margin-top: 10px;
    font-size: 0.8em;

    color: rgba(var(--primary-color), 1);

    text-align: justify;

    height: 0;
    transform-origin: 50% 0%;
    transform: scaleY(0);

    transition: 0.25s 0.25s ease;
}

.softwares>.inner>.cards>.card:hover>.text>p {
    height: fit-content;
    transform: scaleY(1);
}

.softwares>.inner>.cards>.card>.text>.visit {
    margin-top: auto;

    display: flex;
    justify-content: start;
    align-items: center;

    width: 100%;
}

.softwares>.inner>.cards>.card>.text>.visit>button {
    display: flex;
    justify-content: center;
    align-items: center;

    align-self: flex-start;
    width: 40px;
    height: 40px;

    border: 1px solid rgba(var(--primary-color), 1);
    background-color: white;
    color: rgba(var(--primary-color), 1);

    border-radius: 100%;

    letter-spacing: 2px;
    font-size: 1.5em;
    font-weight: 400;

    cursor: pointer;

    transition: 0.25s ease;

    overflow: hidden;
}

.softwares>.inner>.cards>.card:hover>.text>.visit>button {
    color: white;
}

.softwares>.inner>.cards>.card>.text>.visit>button>.content {
    border-radius: 100%;

    width: 0%;
    height: 0%;

    background-color: rgba(var(--primary-color), 1);

    transition: 0.25s ease;
}

.softwares>.inner>.cards>.card:hover>.text>.visit>button>.content {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;
}

.softwares>.inner>.cards>.card>.text>.visit>button>.arrow {
    position: absolute;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 40px;
    height: 40px;

    transform: rotate(90deg);

    transition: 0.25s ease;

}

.softwares>.inner>.cards>.card:hover>.text>.visit>button>.arrow {
    transform: rotate(0deg);
}

.softwares>.inner>.cards>.card>.text>.visit>a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 10px;

    font-size: 0.8em;
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(var(--primary-color), 1);
}

.contact-us {
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgba(var(--primary-color), 1);
    padding: 80px 0px;
    width: 100%;
}

.contact-us>.inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

.contact-us>.inner>.left {
    width: 47.5%;
    height: 400px;
}

.contact-us>.inner>.left>.wrapper {
    border-radius: 20px;
    width: 100%;
    height: 100%;

    overflow: hidden;
}

.contact-us>.inner>.line {
    width: 1px;
    height: 400px;

    background-color: white;
}

.contact-us>.inner>.right {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 47.5%;
}

.contact-us>.inner>.right>.heading {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.contact-us>.inner>.right>.heading>.circle {
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 100%;

    border: 2px solid white;
    width: 40px;
    height: 40px;
}

.contact-us>.inner>.right>.heading>.circle>.icon {
    border-radius: 100%;

    width: 80%;
    height: 80%;

    background-color: white;

    mask-image: url(../image/support.png);
    mask-size: contain;
    mask-position: center center;
}

.contact-us>.inner>.right>.heading>h1 {
    margin-left: 20px;
    color: white;
    font-weight: 500;
}


.contact-us>.inner>.right>.contact-list {
    margin-top: 50px;

    width: 100%;
}

.contact-us>.inner>.right>.contact-list>.contact {
    display: flex;
    justify-content: start;
    align-items: center;

    margin-bottom: 30px;

}

.contact-us>.inner>.right>.contact-list>.contact>.icon {
    margin-left: 68px;
    width: 20px;
    height: 20px;

    background-color: white;

    mask-size: cover;
    mask-position: center center;
}

.contact-us>.inner>.right>.contact-list>.contact:nth-of-type(1)>.icon {
    mask-image: url(../image/icons/essentials/black-placeholder-variant.png);
}

.contact-us>.inner>.right>.contact-list>.contact:nth-of-type(2)>.icon {
    mask-image: url(../image/icons/social/whatsapp-1384023.png);
}

.contact-us>.inner>.right>.contact-list>.contact:nth-of-type(3)>.icon {
    mask-image: url(../image/icons/social/whatsapp-1384023.png);
}

.contact-us>.inner>.right>.contact-list>.contact:nth-of-type(4)>.icon {
    mask-image: url(../image/icons/social/facebook-1384021.png);
}

.contact-us>.inner>.right>.contact-list>.contact:nth-of-type(5)>.icon {
    mask-image: url(../image/icons/social/youtube-1384028.png);
}

.contact-us>.inner>.right>.contact-list>.contact:nth-of-type(6)>.icon {
    mask-image: url(../image/icons/social/email.png);
}


.contact-us>.inner>.right>.contact-list>.contact>p {
    font-size: 0.8em;
    font-weight: 300;
    margin-left: 10px;
    color: white;
}

.footer-watermark {
    display: flex;
    justify-content: end;
    align-items: center;

    width: 80%;
    padding: 0% 10%;

    background-color: rgba(var(--primary-color), 1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8em;
    font-weight: 300;
    padding-bottom: 20px;
}

@media screen and (Max-Width: 1000px) {
    .navbar>.logo>img {
        height: 40%;
    }

    .specialties>.cards>.card {
        grid-column: auto/span 6;
    }

    .softwares>.inner>.cards>.card {
        grid-column: auto/span 6;
    }

    .softwares>.inner>.cards>.card>.text>.heading>h1 {
        font-size: 1.2em;
    }

    .softwares>.inner>.cards>.card>.text>p {
        font-size: 0.7em;
    }

}

@media screen and (Max-Width: 700px) {

    .footer-watermark {
        justify-content: center;
    }

    .contact-us>.inner>.right>.contact-list>.contact>.icon {
        margin-left: 10px;
    }

    .contact-us>.inner {
        flex-direction: column-reverse;
    }

    .contact-us {
        padding-bottom: 20px;
    }

    .contact-us>.inner>.left {
        margin-top: 20px;
        width: 100%;
        height: 300px;
    }

    .contact-us>.inner>.line {
        width: 80%;
        height: 1px;
    }

    .contact-us>.inner>.right {
        margin-bottom: 20px;
        width: 100%;
    }

    .softwares>.inner>.cards>.card {
        grid-column: auto/span 12;
    }

    .softwares>.inner>.cards>.card>.text>.heading>h1 {
        font-size: 1.2em;
    }

    .softwares>.inner>.cards>.card>.text>p {
        font-size: 0.7em;
    }

    .why-us>.inner>.up>.text {
        width: 80px;
    }

    .why-us>.inner>.up>.text>p {
        font-size: 0.8em;
    }

    .why-us>.inner>.down>.line {
        width: 80px;
    }

    .why-us>h1 {
        font-size: 1.2em;
    }

    .navbar>.contact>.panel>p {
        display: none;
    }

    .hero>.inner>.heading>h1 {
        font-size: 1.6em;
    }

    .links>.link>p {
        font-size: 0.7em;
    }

    .specialties>.cards>.card {
        height: 200px;
    }

    .specialties>.cards>.card>.content>.icon {
        width: 40%;
        padding-bottom: 40%;
    }

    .specialties>.cards>.card>.content>h1 {
        font-size: 1em;
    }

    .specialties>.cards>.card>.content>p {
        font-size: 0.8em;
        text-align: center;
    }


    .about-us {
        background-image: linear-gradient(to right, rgba(var(--primary-color), 0) 25%, rgba(var(--primary-color), 1) 25%, rgba(var(--primary-color), 1) 100%),
            url(../image/computer.jpg);
    }

    .about-us>.inner>.right {
        width: 70%;
        height: 100%;
    }

}