html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: ArialBold;
  src: url(ARIALBD.TTF);
}

body {
    margin: 0;
    background-color: white;
    font-family: Arial;
}

header {
    position: relative;

    padding-left: 10px;
    padding-right: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-and-nav-div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

nav ol {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    list-style: none;
    font-family: Arial;
    padding-left: 0px;
    margin: 0px;
    row-gap: 12px;
} 

.logo {
    height: 100px;
    width: auto;
}

a {
    color: black;
    text-decoration: none;
}

.nav-text {
    font-size: clamp(15px, 1vw, 1000px);
}

.down-arrow {
  display: inline-block;    /* treat it like a text-level box */
  vertical-align: middle;   /* align its middle with the text’s middle */
}

.shopping-cart-and-tagline-div{
    position: relative;
    display: flex;
    align-items: center;
    right: 0;
    gap: 30px;
}

.main-cart-logo {
    width: 40px;
    height: auto;
}

.tagline {
    height: 50px;
    width: auto;
}

h5 {
    font-family: Calibri;
    font-size: 1.9vw; 
    margin: 0;
    padding: 0;
}

.cart-dropdown {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    height: 35vw;
    width: 40vw;
    background-color: rgb(255, 255, 255);

    border-style: solid;
    border-width: 0.3vw;
    border-color: black;
    border-radius: 1.5vw;
    z-index: 20;
    overflow: hidden;
}

.cart-dropdown-content {
    position: relative;
    width: 100%;
    height: 30vw;
    overflow-x: hidden;
    overflow-y: scroll;
}

.cart-dropdown-content::-webkit-scrollbar {
    width: 0.5vw;
}
.cart-dropdown-content::-webkit-scrollbar-track {
    background-color: rgb(255, 149, 149);
}
.cart-dropdown-content::-webkit-scrollbar-thumb {
    background: #b70000;
    border-radius: 0.7vw;
}
.cart-dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #820000;
}

.cart-dropdown-footer {
    position: absolute;
    bottom: 0;

    display: flex;
    width: 100%;
    height: 5vw;
    box-sizing: border-box;
    padding: 1.2vw 2vw;
    background-color: white;
    justify-content: right;
    gap: 1vw;
}

.new-cart-item {
    position: relative;
    width: 100%;
    height: 14vw;
    box-sizing: border-box;
    padding: 2vw;
    background-color: white;
    border-style: solid;
    border-color: black;
    border-width: 0.1vw;
    border-top: 0vw;
    border-left: 0vw;
    border-right: 0vw;   
    overflow: hidden;
}

.new-cart-item-background {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    z-index: 0;
}

.new-cart-item-header{
    position: relative;
    color: black;
    z-index: 2;
}

.new-cart-quantity-and-price-div {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.new-cart-item-quantity {
    position: relative;
    font-size: 1.5vw;
    font-family: Calibri;
}

.new-cart-item-price {
    position: relative;
    right: 0;
    bottom: 0;

    color: black;
}

.all-neccessary-with-many-reports-NCI {
    height: 14vw;
}

.not-all-neccessary-with-many-reports-NCI {
    height: 10vw;
}

.checkout-button {
    position: relative;
    width: 6vw;

    background-color: red;
    color: white;
    border-radius: 0.6vw;
    border-style: none;
    font-size: 1vw;
}

.checkout-button:hover {
    background-color: rgb(255, 124, 124);
    color: black;
}

.hero {
    width: 100%;
    aspect-ratio: 3/1;
    display: flex;
}

.hero-1{
    position: relative;
    width: 65%;
    height: 100%;
    overflow: hidden;
}

.hero-1A {
    position: relative;
    top: 0;
    height: 66%;
    width: 100%;
    box-sizing: border-box;
    padding: 3.3vw 4.3vw;
}

.hero-1-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: 110%;
    z-index: -1;
}

.black-border {
    background-color: black;
    height: 7px;
    width: 100%;
}

h1 {
    margin: 0;
    font-size: clamp(0px, 3.3vw, 50px);
}

p {
    font-size: clamp(0px, 1.75vw, 25px);
    margin: 0;
}

.hero-1-heading {
    position: relative;
    color: white;
    opacity: 0.9;
}

.hero-1-paragraph {
    position: relative;
    top: 0.5vw;
    color: white;
    opacity: 0.9;
}

.hero-button-1 {
    position: absolute;
    bottom: 3vw;
    right: 6vw;
    height: 4vw;
    width: 10vw;
    background-color: red;
    color: white;
    border-radius: 1vw;
    border: none;
    font-size: clamp(0px, 1.55vw, 22px);
}

.hero-button-1:hover {
    background-color: rgb(255, 124, 124);
    color: black;
}

.hero-1B {
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.46);
    width: 100%;
    height: 34%;
    box-sizing: border-box;
    padding: 2.7vw 3.5vw;
}

h2 {
    font-size: 2.2vw;
    margin: 0;
}

.hero-1B-heading{
    position: relative;
    color: white;
    opacity: 0.9;
}

.hero-1B-paragraph{
    position: relative;
    top: 0.5vw;
    color: white;
    opacity: 0.9;
}

.hero-2-n-3 {
    position: relative;
    width: 35%;
    height: 100%;
    display: flex;
}

.hero-2{
    position: relative;
    height: 100%;
    width: 50%;
    overflow: hidden;
}

.hero-2A-padding {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    padding: 2.8vw;
}

.hero-2A {
    height: 100%;
    width: 100%;
    position: relative;
    text-align: center;
}

.hero-2-heading {
    position: relative;
    color: black;
    opacity: 0.9;
}

.hero-2-paragraph {
    position: relative;
    top: 0.8vw;
    color: black;
    opacity: 0.9;
}

.hero-button-2{
    position: absolute;
    height: 4vw;
    width: 10vw;
    bottom: 0;
    left: 0.9vw;
    margin: 0 auto;
    background-color: transparent;
    border-style: solid;
    color: rgb(0, 0, 0);
    border-radius: 1vw;
    border-color: red;
    border-width: 3px;
    font-size: clamp(0px, 1.55vw, 22px);
}

.hero-button-2:hover {
    background-color: rgb(255, 0, 0);
}

.hero-2-img {
    position: absolute;
    top: 0;
    width: auto;
    height: 110%;
    z-index: -1;
}

.hero-3{
    position: relative;
    height: 100%;
    width: 50%;
    overflow: hidden;
}

.hero-3-img {
    position: absolute;
    top: 0;
    width: auto;
    height: 110%;
    z-index: -1;
}

.hero-3A-padding {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    padding: 2.8vw;
}

.hero-3A {
    height: 100%;
    width: 100%;
    position: relative;
    text-align: center;
}

.hero-3-heading {
    position: relative;
    color: rgb(255, 255, 255);
    opacity: 0.9;
}

.hero-3-paragraph {
    position: relative;
    top: 0.8vw;
    color: rgb(255, 255, 255);
    opacity: 0.9;
}

.hero-button-3{
    position: absolute;
    height: 4vw;
    width: 10vw;
    bottom: 0;
    left: 0.9vw;
    margin: 0 auto;
    background-color: red;
    color: white;
    border-radius: 1vw;
    border: none;
    font-size: clamp(0px, 1.55vw, 22px);
}

.hero-button-3:hover {
    background-color: rgb(255, 124, 124);
    color: black;
}

.red-border {
    background-color: rgb(255, 0, 0);
    height: 3px;
    width: 100%;
}

.transparent-border {
    background-color: rgb(255, 0, 0, 0);
    height: 3px;
    width: 100%;
}

.no-bank-statement-pages-alert {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);

    background-color: red;
    box-sizing: border-box;
    padding: 2vw 3vw;
    border-radius: 2vw;
    border-width: 0.2vw;
    border-color: black;
    border-style: solid;
    overflow: hidden;

    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;

    animation: fadeInAndOut 5s ease;
}

.no-percentage-OSW-alert {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);

    background-color: red;
    box-sizing: border-box;
    padding: 2vw 3vw;
    border-radius: 2vw;
    border-width: 0.2vw;
    border-color: black;
    border-style: solid;
    overflow: hidden;

    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;

    animation: fadeInAndOut 5s ease;
}

.added-to-cart-alert {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);

    background-color: white;
    box-sizing: border-box;
    padding: 2vw 3vw;
    border-radius: 2vw;
    border-width: 0.2vw;
    border-color: black;
    border-style: solid;
    overflow: hidden;

    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;

    animation: fadeInAndOut 5s ease;
}

@keyframes fadeInAndOut {
    0% {opacity: 0; top: 5%;}
    20% {opacity: 1; top:20%;}
    80% {opacity: 1; top:20%;}
    100% {opacity: 0; top: 5%;}
}

.alert-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.alert-background-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.alert-text {
    font-size: 1.3vw;
    z-index: 3;
}

.our-services {
    position: relative;
    width: 100%;
    height: 120vw;
    box-sizing: border-box;
    padding: 5vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 3vw;
}

.our-services-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.our-services-text {
    position: relative;
    z-index: 3;
    text-align: center;
}

.accounting-services {
    position: relative;
    box-sizing: border-box;
    padding: 4.5vw 5vw;
    padding-top: 3.5vw;
    width: 100%;
    height: 53vw;
    z-index: 3;
    border-radius: 5vw;
    overflow: hidden;
}

.accounting-services-img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    z-index: -1;
}

.accounting-services-text {
    position: relative;
    font-size: 1.8vw;
    position: relative;
    text-align: center;
    z-index: 3;
}

.accounting-services-content {
    position: relative;
    width: 100%;
    height: 67%;
    display: flex;
    top: 3vw;
    z-index: 3;
    gap: 1.7vw;
}

.all-necessary {
    box-sizing: border-box;
    padding: 1.9vw;
    width: 33%;
    height: 29.5vw;
    border-radius: 2vw;
    border-width: 0.2vw;
    border-color: black;
    border-style: solid;
    background-color: rgba(0, 0, 0, 0.358);
    color: white;
}

.all-necessary-with-many-reports {
    width: 26%;
    border-radius: 2vw;
    border-width: 0.2vw;
    border-color: black;
    border-style: solid;
    background-color: rgba(0, 0, 0, 0.358);
    box-sizing: border-box;
    padding: 1.9vw;
    width: 35%;
    height: 38.8vw;
    color: white;
}

.financial-statements {
    width: 17%;
    border-radius: 2vw;
    border-width: 0.2vw;
    border-color: black;
    border-style: solid;
    background-color: rgba(0, 0, 0, 0.358);
    box-sizing: border-box;
    padding: 1.9vw;
    width: 35%;
    height: 15.7vw;
    color: white;
}

.glow {
    animation: glowInAndOut 4s ease;
}

@keyframes glowInAndOut {
    0% {box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0);}
    20% {box-shadow: 0 0 20px 5px rgb(255, 255, 255);}
    80% {box-shadow: 0 0 20px 5px rgb(255, 255, 255);}
    100% {box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0);}
}

.cart-logo {
    width: 2vw;
    height: auto;
    color: white;
}

h4 {
    font-size: 1.4vw;
    margin: 0;
}

h3 {
    font-size: 3.1vw;
    margin: 0;
}

.currency {
    font-size: clamp(0px, 1.45vw, 25px);
}

.amount {
    padding-top: 1vw;
    display: flex;
    gap: 0.4vw;
}

.page-of-bank-statement-inputfield-1 {
    position: relative;
    top: 1vw;
    width: 100%;
    height: 3.6vw;
    border-radius: 0.6vw;
    border-style: solid;
    border-width: 0px;
    background-color: white;
    font-size: 2vw;
    box-sizing: border-box;
    padding: 1vw;
    text-align: center;
}

.all-necessary-paragraph {
    position: relative;
    top: 2vw;
    font-size: 1.3vw;
    text-align: center;
}

.all-necessary-button {
    position: relative;
    height: 3.3vw;
    width: 8vw;
    margin: 0 auto;
    top: 3.8vw;
    left: 5.9vw;
    background-color: red;
    color: white;
    border-radius: 0.7vw;
    border: none;
    font-size: 1.3vw;
}

.all-necessary-button:hover {
    background-color: rgb(255, 124, 124);
    color: black;
}

.page-of-bank-statement-inputfield-2 {
    position: relative;
    top: 1vw;
    width: 100%;
    height: 3.6vw;
    border-radius: 0.6vw;
    border-style: solid;
    border-width: 0px;
    background-color: white;
    font-size: 2vw;
    box-sizing: border-box;
    padding: 1vw;
    text-align: center;
}

.all-necessary-with-many-reports-paragraph {
    position: relative;
    top: 2vw;
    font-size: 1.3vw;
    text-align: center;
}

.all-necessary-with-many-reports-button {
    position: relative;
    height: 3.3vw;
    width: 8vw;
    margin: 0 auto;
    top: 5vw;
    left: 6.7vw;
    background-color: red;
    color: white;
    border-radius: 0.7vw;
    border: none;
    font-size: clamp(0px, 1.55vw, 22px);
    font-size: 1.3vw;
}

.all-necessary-with-many-reports-button:hover {
    background-color: rgb(255, 124, 124);
    color: black;
}

.page-of-bank-statement-2B {
    position: relative;
    top: 3.2vw;
    display: flex;
    gap: 1vw;
}

.page-of-bank-statement-inputfield-2B {
    position: relative;
    width: 48%;
    height: 3.6vw;
    border-radius: 0.6vw;
    border-style: solid;
    border-width: 0px;
    background-color: white;
    font-size: 2vw;
    box-sizing: border-box;
    padding: 1vw;
    text-align: center;
}

.all-necessary-with-many-reports-paragraph-2B {
    text-align: center;
    font-size: 1.3vw;
}

.financial-statements-button {
    position: relative;
    height: 3.3vw;
    width: 8vw;
    margin: 0 auto;
    top: 1.8vw;
    left: 7vw;
    background-color: red;
    color: white;
    border-radius: 0.7vw;
    border: none;
    font-size: 1.3vw;
}

.financial-statements-button:hover {
    background-color: rgb(255, 124, 124);
    color: black;
}

.not-available-stamp-div {
    position: relative;
}

.not-available-stamp {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;

    width: 100%;
    height: auto;

    z-index: 7;
}

.corporate-services {
    position: relative;
    box-sizing: border-box;
    padding: 3.9vw 5vw;
    width: 100%;
    height: 47vw;
    z-index: 3;
    border-radius: 5vw;
    overflow: hidden;
}

.corporate-services-text {
    position: relative;
    z-index: 3;
    text-align: center;
}

.corporate-services-img {
    position: absolute;
    height: 100%;
    width: auto;
    top: 0;
    left: 0;
}

.corporate-services-content-1 {
    position: relative;
    top: 3vw;
    width: 100%;
    height: 41%;
    display: flex;
    z-index: 3;
    gap: 1vw;
}

.corporate-services-content-2 {
    position: relative;
    top: 4vw;
    width: 100%;
    height: 41%;
    display: flex;
    z-index: 3;
    gap: 1vw;
}

.corporate-services-small-box {
    box-sizing: border-box;
    padding: 1.5vw;
    width: 25%;
    height: 90%;
    border-radius: 1.4vw;
    border-width: 0.2vw;
    border-color: black;
    border-style: solid;
    background-color: rgba(0, 0, 0, 0.358);
    color: white;
}

.corporate-services-big-box {
    box-sizing: border-box;
    padding: 1.5vw;
    width: 25%;
    height: 100%;
    border-radius: 1.4vw;
    border-width: 0.2vw;
    border-color: black;
    border-style: solid;
    background-color: rgba(0, 0, 0, 0.358);
    color: white;
}

.corporate-services-button {
    position: relative;
    height: 3.3vw;
    width: 8vw;
    margin: 0 auto;
    top: 1.1vw;
    left: 3.9vw;
    background-color: red;
    color: white;
    border-radius: 0.7vw;
    border: none;
    font-size: 1.3vw;
}

.corporate-services-button-na {
    position: relative;
    height: 3.3vw;
    width: 8vw;
    margin: 0 auto;
    top: 1.1vw;
    left: 3.9vw;
    background-color: red;
    color: white;
    border-radius: 0.7vw;
    border: none;
    font-size: 1.3vw;
}

.corporate-services-button:hover {
    background-color: rgb(255, 124, 124);
    color: black;
}

.about-us {
    position: relative;
    height: 46vw;
}

.about-us-1 {
    position: relative;
    width: 57%;
    height: 52.5%;
    background-color: white;
    box-sizing: border-box;
    padding-top: 3vw;
    padding-left: 5vw;
    padding-bottom: 3vw;
    padding-right: 3vw;
    font-size: 1vw;
}

.if-imperfect-keep-perfecting {
    position: absolute;
    height: 4vw;
    width: auto;
    top: 2.4vw;
    left: 18vw;
}

.about-us-1-inner {
    position: absolute;
    width: 55%;
    left: 8vw;
    top: 7.5vw;
    z-index: 7;
    box-sizing: border-box;
    padding: 2vw;
    overflow: hidden;
}

.about-us-1-inner-inner-paragraph {
    font-family: Calibri;
    position: relative;
    z-index: 3;
}

.about-us-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-us-2 {
    position: relative;
    width: 100%;
    height: 47.5%;
    background-color: #ff2d2d;
    
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.why-choose-us-title {
    z-index: 3;
}

.why-choose-us-text-div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6vw;
    z-index: 3;
}

.bullet-point-text {
    position: relative;
}

.bullet-points {
    position: relative;
    height: clamp(20px, 2vw, 22px);
    width: auto;
}

.about-us-img-2 {
    position: absolute;
    right: 0;
    top: -24vw;
    width: 45%;
    height: 46vw;
    z-index: 5;
}

.about-us-about-us-img {
    position: absolute;
    width: 11%;
    height: auto;
    top: 10.5vw;
    left: 72.5vw;
    z-index: 10;
}

.contact-us-div {
    position: relative;
    background-color: #1c1c1c;
    width: 100%;
    height: 52.7vw;
    display: flex;
    justify-content: space-between;

    box-sizing: border-box;
    padding: 10vw;

    color: white;
}

.contact-details-first-paragraph {
    position: relative;
    top: 3vw;
}

.line-break-paragraph {
    font-size: 1.5vw;
}

.google-map {
    width: 33vw;
    height: 33vw;
}

.footer {
    width: 100%;
    height: 7vw;
    background-color: #ff0000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text {
    position: relative;
}

.resized-financial-statements {
    position: relative;
    top: 0vw;
    width: 48.6%;
    border-radius: 2vw;
    border-width: 0.2vw;
    border-color: black;
    border-style: solid;
    background-color: rgba(0, 0, 0, 0.358);
    box-sizing: border-box;
    padding: 2.85vw;
    height: 22vw;
    color: white;
    display: none;

    z-index: 3;
}

.resized-corporate-services-content-1 {
    position: relative;
    top: 3vw;
    display: none;
    z-index: 3;
    gap: 1.7vw;
}

.resized-corporate-services-small-box {
    box-sizing: border-box;
    padding: 2.85vw;
    width: 50%;
    height: 90%;
    border-radius: 1.4vw;
    border-width: 0.2vw;
    border-color: black;
    border-style: solid;
    background-color: rgba(0, 0, 0, 0.358);
    color: white;
    gap: 1vw;
}

.resized-corporate-services-big-box {
    box-sizing: border-box;
    padding: 2.85vw;
    width: 50%;
    height: 100%;
    border-radius: 1.4vw;
    border-width: 0.2vw;
    border-color: black;
    border-style: solid;
    background-color: rgba(0, 0, 0, 0.358);
    color: white;
    gap: 1vw;
}

.resized-corporate-services-button {
    position: relative;
    margin: 0 auto;
    top: 0.6vw;
    left: 4vw;

    height: 4.95vw;
    width: 12vw;
    background-color: red;
    color: white;
    border: none;
    border-radius: 1.3vw;
    font-size: 2.2vw;
}

.resized-corporate-services-button-na {
    position: relative;
    margin: 0 auto;
    top: 0.6vw;
    left: 4vw;

    height: 4.95vw;
    width: 12vw;
    background-color: red;
    color: white;
    border: none;
    border-radius: 1.3vw;
    font-size: 2.2vw;
}

.resized-corporate-services-button:hover {
    background-color: rgb(255, 124, 124);
    color: black;
}

.resized-corporate-services-content-2 {
    position: relative;
    top: 5vw;
    display: none;
    z-index: 3;
    gap: 1.7vw;
}

.resized-corporate-service-header {
    font-size: 2.1vw;
}

.resized-corporate-services-content-3 {
    position: relative;
    top: 6.9vw;
    display: none;
    z-index: 3;
    gap: 1.7vw;
    justify-content: center;
}

.resized-corporate-services-small-box-2 {
    box-sizing: border-box;
    padding: 2.85vw;
    width: 32.1%;
    height: 90%;
    border-radius: 1.4vw;
    border-width: 0.2vw;
    border-color: black;
    border-style: solid;
    background-color: rgba(0, 0, 0, 0.358);
    color: white;
    gap: 1vw;
}

.resized-corporate-services-big-box-2 {
    box-sizing: border-box;
    padding: 2.85vw;
    width: 32.1%;
    height: 100%;
    border-radius: 1.4vw;
    border-width: 0.2vw;
    border-color: black;
    border-style: solid;
    background-color: rgba(0, 0, 0, 0.358);
    color: white;
    gap: 1vw;
}

@media (max-width: 950px) {
    .tagline {
        display: none;
    }
}


@media (max-width: 670px) {
    .logo {
        height: 18vw;
    }
    nav ol {
        gap: 3vw;
        row-gap: 1vw;
    }
    .logo-and-nav-div{
        gap: 13px;
    }
    header {
        padding-right: 0vw;
        padding-left: 1vw;
        gap: 2.5vw;
    }
    .shopping-cart-and-tagline-div{
        right: 4vw;
    }
    .nav-text {
        font-size: 3vw;
    }
    .down-arrow {
        width: 2.5vw;
    }
    .cart-dropdown {
        height: 65vw;
        width: 70vw;
    }
    .cart-dropdown-footer {
        height: 9.3vw;
        gap: 2vw;
        padding: 1.2vw 3vw;
    }
    .checkout-button {
        width: 13vw;
        height: 80%;
        border-radius: 1.5vw;
        font-size: 2vw;
    }
    h5 {
        font-size: 4.3vw;
    }
    .cart-dropdown-content{
        height: 55.7vw;
    }
    .new-cart-item {
        padding: 4vw;
    }
    .all-neccessary-with-many-reports-NCI {
        height: 29vw;
    }
    .not-all-neccessary-with-many-reports-NCI {
        height: 20vw;
    }
    .new-cart-item-quantity {
        font-size: 2.7vw;
    }
    .hero {
        flex-direction: column;
        aspect-ratio: 1/0.95;
    }
    .hero-1 {
        width: 100%;
        height: 58%;
    }
    .hero-1A {
        padding: 6vw 7.5vw;
    }
    .hero-1-paragraph {
        top: 0.9vw;
    }
    .hero-button-1 {
        bottom: 6vw;
        right: 7vw;
        height: 6vw;
        width: 15vw;
        border-radius: 1.5vw;
        font-size: 2vw;
    }
    .hero-1B {
        position: absolute;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.46);
        width: 100%;
        height: 34%;
        box-sizing: border-box;
        padding: 4.5vw 6vw;
    }
    .hero-1B-paragraph {
        top: 0.9vw;
    }
    .hero-2-n-3 {
        width: 100%;
        height: 42%;
    }
    .hero-2A-padding {
        padding: 5vw;
    }
    .hero-2-paragraph {
        top: 1vw;
    }
    .hero-button-2{
        height: 6vw;
        width: 15vw;
        bottom: 0;
        left: 12vw;
        border-radius: 1vw;
        border-width: 0.5vw;
        border-color: red;
        font-size: 2vw;
    }
    .hero-3A-padding {
        padding: 5vw;
    }
    .hero-3-paragraph {
        top: 1vw;
    }
    .hero-button-3{
        height: 6vw;
        width: 15vw;
        bottom: 0;
        left: 12vw;
        border-radius: 1vw;
        font-size: 2vw;
    }
    h1 {
        font-size: 4.5vw;
    }
    h2 {
        font-size: 3.5vw;
    }
    p {
        font-size: 2.7vw;
    }

    .alert-text {
        font-size: 2.7vw;
    }

    .our-services {
        height: 200vw;
    }

    .accounting-services {
        padding-bottom: 5.8vw;
        height: 80.9vw;
    }

    .accounting-services-text {
        font-size: 2.7vw;
    }

    .all-necessary {
        width: 49.5%;
        height: 43vw;
        padding: 2.85vw;
    }
    .all-necessary-header {
        font-size: 2.1vw;
    }

    .amount {
        top: 1.5vw;
    }

    .amount-amount-1{
        font-size: 4.65vw;
    }

    .currency {
        font-size: 2.175vw;
    }

    .page-of-bank-statement-inputfield-1 {
        height: 5.4vw;
    }

    .all-necessary-paragraph{
        top: 3vw;
        font-size: 1.95vw;
    }

    .all-necessary-button {
        height: 4.95vw;
        width: 12vw;
        top: 5.1vw;
        left: 10.5vw;
        border-radius: 1.3vw;
        font-size: 2.2vw;
    }

    .all-necessary-with-many-reports{
        width: 50%;
        height: 56vw;
        padding: 2.85vw;
    }

    .all-necessary-with-many-reports-header {
        font-size: 2.1vw;
    }

    .amount-amount-2 {
        font-size: 4.65vw;
    }

    .page-of-bank-statement-inputfield-2 {
        height: 5.4vw;
    }

    .page-of-bank-statement-inputfield-2B{
        height: 5.4vw;
    }

    .all-necessary-with-many-reports-paragraph{
        top: 3vw;
        font-size: 1.95vw;
    }

    .all-necessary-with-many-reports-paragraph-2B {
        font-size: 1.95vw;
    }

    .page-of-bank-statement-2B{
        top: 4.8vw;
    }

    .all-necessary-with-many-reports-button {
        height: 4.95vw;
        width: 12vw;
        top: 7.5vw;
        left: 10.5vw;
        border-radius: 1.3vw;
        font-size: 2.2vw;
    }
    
    .financial-statements{
        display: none;
    }

    .glow {
        animation: glowInAndOut 4s ease;
    }

    .resized-financial-statements {
        display: block;
    }

    .financial-statements-header {
        font-size: 2.1vw;
    }

    .amount-amount-3{
        font-size: 4.65vw;
    }

    .financial-statements-button {
        height: 4.95vw;
        width: 12vw;
        top: 1.9vw;
        left: 10.5vw;
        border-radius: 1.3vw;
        font-size: 2.2vw;
    }

    .corporate-services {
        height: 92vw;
    }

    .corporate-services-content-1 {
        display: none;
    }

    .corporate-services-content-2 {
        display: none;
    }

    .resized-corporate-services-content-1 {
        display: flex;
    }

    .resized-corporate-services-content-2 {
        display: flex;
    }

    .resized-corporate-services-content-3 {
        display: flex;
    }
    
    .about-us {
        position: relative;
        height: 94.5vw;
    }

    .about-us-1 {
        position: relative;
        width: 100%;
        height: 50%;
        padding-top: 6vw;
        padding-left: 6vw;
        padding-bottom: 6vw;
        padding-right: 6vw;
        font-size: 1.6vw;
    }

    .if-imperfect-keep-perfecting {
        position: absolute;
        height: 7vw;
        width: auto;
        top: 4.5vw;
        left: 10vw;
    }

    .about-us-1-inner {
        position: absolute;
        width: 60%;
        height: 50vw;
        left: 8vw;
        top: 15vw;
        z-index: 7;
        box-sizing: border-box;
        padding: 3vw;
        overflow: hidden;
    }

    .about-us-1-inner-inner-paragraph {
        font-family: Calibri;
        position: relative;
        z-index: 3;
    }

    .about-us-img-1 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
    }

    .about-us-2 {
        position: relative;
        width: 100%;
        height: 50%;
    }

    .why-choose-us-text-div {
        gap: 2vw;
    }

    .bullet-points {
        height: 5vw;
    }

    .about-us-img-2{
        top: 0;
        height: 100%;
        width: auto;
    }

    .about-us-about-us-img {
        top: 36.5vw;
        z-index: 10;
    }

    .footer-text {
        top: -0.2vw;
    }

}
