@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}
:root {
    --blue1: #2A6BC6;
    --blue2: #4780D1;
    --dblue1: #51577C;
    --dblue2: #313866;
    --lblue: #6B9BDF;
}
@media only screen and (max-width: 600px) {
    #header {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        background-color: white;
        width: 100;
        height: 8vh;
        box-shadow: rgb(168, 168, 168) 0px 2px 5px 0px;
        z-index: 2;
    }
    #mini-logo-div {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    #mini-logo {
        height: 6vh;
    }
    #lang {
        font-family: Inter;
        margin-left: auto;
        padding-right: 8vw;
        font-size: 20px;
        color: black;
        text-decoration: none;
    }
    #intro {
        display: grid;
        grid-template-columns: 35% 65%;
    }
    #logo-div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #logo {
        width: 60vw;
        height: auto;
    }
    #contact-us {
        font-family: Rubik;
        text-align: center;
        border: var(--blue1) 2px solid;
        width: fit-content;
        padding: 5px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        margin-left: 27vw;
        color: var(--blue1);
    }
    #background-div {
        display: flex;
        justify-content: left;
    }
    #bg-banner {
        height: 30vh;
        -webkit-transform: scaleX(-1);
        transform: scale(-1, 1);
    }
    #overview {
        padding: 4vw;
    }
    #o-title {
        font-family: Rubik;
        background: white;
        width: 130px;
        text-align: center;
        padding: 10px;
        transform: translate(55vw, 25px);
        font-size: 20px;
    }
    #outline {
        border: var(--blue1) 2px solid;
        padding: 5vw;
    }
    #overview-text {
        font-family: Rubik;
        font-size: 14px;
        padding: 1vh;
        text-align: right;
    }
    #img-div {
        margin-top: 5vh;
    }
    #business-img {
        width: 100vw;
        height: auto;
    }
    #our-services {
        font-family: Rubik;
        text-align: center;
        padding: 3vh;
        font-size: 24px;
    }
    #services-div {
        display: grid;
        grid-template-columns: 50% 50%;
    }
    #service {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 4vh;
        gap: 2vh;
    }
    #circle {
        width: 40px;
        height: 40px;
        border-radius: 100%;
        background: var(--blue1);
    }
    #service-text {
        font-family: Rubik;
        font-weight: 600;
        font-size: 14px;
        text-align: center;
    }
    #more-div {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #learn-more {
        font-family: Rubik;
        text-align: center;
        color: var(--blue2);
        padding: 5px;
        border-radius: 3px;
        font-weight: 600;
        border: 2px solid var(--blue2);
        font-size: 15px;
    }
    #vision-div {
        display: flex;
        margin-top: 10vh;
        justify-content: center;
        align-items: center;
        width: fit-content;
        transform: translateX(4vh);
        padding: 4vh;
    }
    #v1 {
        width: 60vw;
        height: 22vh;
        transform: translate(2vh, -2vh);
        background-color: var(--blue1);
    }
    #v2 {
        width: 60vw;
        height: 22vh;
        transform: translate(2vh, -2vh);
        background-color: var(--blue2);
    }
    #v3 {
        display: flex;
        flex-direction: column;
        justify-content: right;
        align-items: right;
        width: 60vw;
        height: 22vh;
        transform: translate(2vh, -2vh);
        background-color: var(--lblue);
    }
    #v-title {
        font-family: Rubik;
        color: white;
        text-align: right;
        font-size: 22px;
        padding: 2vh;
    }
    #v-text {
        font-family: Rubik;
        color: white;
        font-size: 13px;
        text-align: right;
        padding-left: 1vh;
        padding-right: 2vh;
    }
    #bg-banner-reverse {
        height: 30vh;
        -webkit-transform: scaleY(-1);
        transform: scale(-1, -1);
        margin: 0;
    }
    #contact-div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        box-shadow: var(--dblue2) 0px -2px 0px 3px;
        background-color: var(--dblue2);
    }
    #contact-title {
        font-family: Rubik;
        color: white;
        font-size: 20px;
        padding: 4vh;
    }
    #contact-info {
        display: flex;
    }
    #info {
        display: flex;
        align-items: center;
        gap: 1vw;
        padding: 1vh;
    }
    #icon {
        width: 40px;
    }
    #info-text {
        font-family: Poppins;
        font-size: 15px;
        color: white;
        text-decoration: none;
    }
    #divider {
        width: 70vw;
    }
    #trademark {
        font-family: Poppins;
        font-size: 12px;
        padding: 3vh;
        color: var(--blue2);
    }
}
@media only screen and (min-width: 700px) {
    #header {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        background-color: white;
        width: 100;
        height: 11vh;
        box-shadow: rgb(168, 168, 168) 0px 2px 5px 0px;
        z-index: 2;
    }
    #mini-logo-div {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    #mini-logo {
        height: 7vh;
    }
    #lang {
        font-family: Inter;
        margin-left: auto;
        padding-right: 8vw;
        font-size: 20px;
        color: black;
        text-decoration: none;
    }
    #intro {
        display: grid;
        grid-template-columns: 35% 65%;
    }
    #logo-div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2vw;
    }
    #logo {
        width: 45vw;
        height: auto;
    }
    #contact-us {
        font-family: Rubik;
        text-align: center;
        border: var(--blue1) 2px solid;
        width: fit-content;
        padding: 5px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 20px;
        font-weight: 600;
        margin-left: 23vw;
        color: var(--blue1);
    }
    #background-div {
        display: flex;
        justify-content: left;
    }
    #bg-banner {
        height: 70vh;
        -webkit-transform: scaleX(-1);
        transform: scale(-1, 1);
    }
    #overview {
        padding: 2vw;
        padding-left: 15vw;
        padding-right: 15vw;
    }
    #o-title {
        font-family: Rubik;
        background: white;
        width: 170px;
        text-align: center;
        padding: 10px;
        transform: translate(52vw, 25px);
        font-size: 25px;
    }
    #outline {
        border: var(--blue1) 2px solid;
        padding: 5vw;
    }
    #overview-text {
        font-family: Rubik;
        font-size: 18px;
        padding: 1vh;
        text-align: right;
        line-height: 30px;
    }
    #img-div {
        margin-top: 5vh;
    }
    #business-img {
        width: 100%;
        height: 70vh;
        object-fit: cover;
    }
    #our-services {
        font-family: Rubik;
        text-align: center;
        padding: 6vh;
        font-size: 28px;
    }
    #services-div {
        display: grid;
        grid-template-columns: auto auto auto;
        margin-left: 20vw;
        margin-right: 20vw;
    }
    #service {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 4vh;
        gap: 2vh;
    }
    #circle {
        width: 40px;
        height: 40px;
        border-radius: 100%;
        background: var(--blue1);
    }
    #service-text {
        font-family: Rubik;
        font-weight: 600;
        width: 140px;
        line-height: 25px;
        font-size: 16px;
        text-align: center;
    }
    #more-div {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 4vh;
    }
    #learn-more {
        font-family: Rubik;
        text-align: center;
        color: var(--blue2);
        padding: 5px;
        border-radius: 3px;
        font-weight: 600;
        border: 2px solid var(--blue2);
        font-size: 20px;
    }
    #vision-div {
        display: flex;
        margin-top: 20vh;
        justify-content: center;
        align-items: center;
        width: fit-content;
        transform: translateX(50vh);
        padding: 4vh;
    }
    #v1 {
        width: 40vw;
        height: 50vh;
        transform: translate(4vh, -4vh);
        background-color: var(--blue1);
    }
    #v2 {
        width: 40vw;
        height: 50vh;
        transform: translate(4vh, -4vh);
        background-color: var(--blue2);
    }
    #v3 {
        display: flex;
        flex-direction: column;
        justify-content: right;
        align-items: right;
        width: 40vw;
        height: 50vh;
        transform: translate(4vh, -4vh);
        background-color: var(--lblue);
    }
    #v-title {
        font-family: Rubik;
        color: white;
        text-align: right;
        font-size: 30px;
        padding: 3vh;
    }
    #v-text {
        font-family: Rubik;
        color: white;
        font-size: 20px;
        text-align: right;
        line-height: 30px;
        padding-left: 5vh;
        padding-right: 5vh;
    }
    #bg-banner-reverse {
        height: 70vh;
        -webkit-transform: scaleY(-1);
        transform: scale(-1, -1);
        margin: 0;
    }
    #contact-div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        box-shadow: var(--dblue2) 0px -2px 0px 2px;
        background-color: var(--dblue2);
    }
    #contact-title {
        font-family: Rubik;
        color: white;
        font-size: 20px;
        padding: 4vh;
    }
    #contact-info {
        display: flex;
    }
    #info {
        display: flex;
        align-items: center;
        gap: 1vw;
        padding: 1vh;
    }
    #icon {
        width: 40px;
    }
    #info-text {
        font-family: Poppins;
        font-size: 15px;
        color: white;
        text-decoration: none;
    }
    #divider {
        width: 70vw;
    }
    #trademark {
        font-family: Poppins;
        font-size: 12px;
        padding: 3vh;
        color: var(--blue2);
    }
}