:root {
    --gradient: rgba(56, 56, 56, 0.8);
    --gradient2: rgba(56, 56, 56, 0.8);
    --corporatered: #d11c25;
    --corporateyellow: #F9C310;
    --navbargray: rgba(78, 78, 78, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::after,::before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sen', sans-serif;
}

#index {
    display: grid;
    height: 100vh;
    background: linear-gradient(var(--gradient) 0%, var(--gradient2) 100%), url("../images/supplies.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#navbar {
    display: flex;
    height: 60px;
    grid-template-columns: max-content 1fr;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    align-items: center;
    transition-property: background-color, box-shadow;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    transition-delay: 0s;
    z-index: 1000;
}

#navbar > ul {
    display: flex;
    height: 50px;
    width: 100%;
    align-items: center;
    font-weight: bold;
}

#navbar > ul > li {
    list-style: none;
}

/* Navigation bar is visible, text hover color becomes red */
#navbar[data-toggle="on"] .navbutton:hover {
    color: var(--corporatered);
}

/* Navigation bar is transparent, text hover color becomes white */
#navbar[data-toggle="off"] .navbutton:hover {
    color: white;
}

#navbar img {
    max-width: 48px;
    max-height: 45px;
}

.navbutton {
    margin-right: 10px;
    transition: color 0.3s ease-in-out;
}

.navbutton:hover {
    text-decoration: none;
}

.navbutton::after {
    display: block;
    content: '';
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}

.navbutton:hover::after {
    transform: scaleX(1);
}

.navbutton a {
    text-decoration: none;
    color: inherit;
}

.header {
    display: grid;
    margin: auto;
    grid-template-rows: 1fr;
    justify-items: center;
}

.header > h1 {
    margin-top: 20px;
    font-weight: 800;
    color: var(--corporateyellow);
}

.header > p {
    color: var(--corporateyellow);
    margin-top: 10px;
}

#about {
    display: grid;
    width: 100%;
    margin: auto;
}

.aboutContent {
    display: grid;
    width: 100%;
    background: linear-gradient(0deg, #d11c25 0%, #880d13 100%, transparent 100%);
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.aboutContent > .container-left {
    display: grid;
    width: 90%;
    height: max-content;
    grid-template-rows: repeat(4, minmax(min-content, max-content));
    grid-gap: 30px;
    justify-items: center;
    text-align: center;
}

.aboutContent > .container-left > h2 {
    height: max-content;
    font-size: 30px;
    color: white; 
    font-weight: bolder; 
    text-shadow: 1px 1px black;
}

.aboutContent > .container-left > p {
    height: max-content;
    font-size: 18px;
    color: whitesmoke;
}

.startbutton {
    width: max-content;
    padding: 20px;
    background-color: white;
    border: none;
    border-radius: 2px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    color: black;
}

.startbutton:hover {
    background-color: lightgray;
}

.aboutContent > .container-right {
    display: grid;
    background: linear-gradient(#facf3f 0%, #F9C310 100%);
    border-radius: 2px;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 6px black;
}

.aboutContent > .container-right > ul {
    display: grid;
    grid-gap: 10px;
    width: 175px;
    padding: 0;
    margin-left: 25px;
    list-style: square;
    text-align: left;
}

#services {
    display: grid;
    width: 100%;
    margin: auto;
    justify-items: center;
    background: linear-gradient(#facf3f 0%, #F9C310 100%);
}

.servicesContent {
    display: grid;
    grid-column-gap: 20px;
}

.servicesContent > .container-left {
    display: grid;
    grid-template-rows: max-content;
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    justify-items: center;
}

.servicesContent > .container-left > h2 {
    font-size: 30px;
    color: white;
    font-weight: bolder; 
    text-shadow: 1px 1px 1px black;
    text-align: center;
}

.portfolio {
    display: grid;
    text-align: center;
    border-radius: 2px;
}

.portfolio .box {
    display: grid;
    background: white;
    align-items: center;
    justify-content: center;
    justify-items: center;
    border-radius: 2px;
}

.servicesContent > .container-right {
    display: grid;
    grid-template-rows: 36px 1fr;
    justify-items: center;
    align-content: center;
}

.salespoint {
    display: grid;
    grid-row: 2;
    grid-row-gap: 10px;
    align-content: center;
}

.servicesContent > .container-right > .salespoint > h3 {
    font-weight: bolder;
    text-align: center;
    color: #583c00;
}

.servicesContent > .container-right > .salespoint > p {
    font-weight: 100;
    text-align: center;
    color: #583c00;
}

#packages {
    display: grid;
    width: 100%;
    align-items: center;
    justify-items: center;
    background: linear-gradient(9deg, #facf3f 0%, #facf3f 50%, transparent 50%);
}

.planContent {
    display: grid;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: linear-gradient(#d11c25 0%, #880d13 100%);
}

.dropdown {
    text-align: center;
    border-radius: 2px;
    border: 0;
    box-shadow: 1px 1px 1px black;
}

.plansBG {
    display: grid;
}

.plan {
    display: grid;
    border-radius: 2px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    box-shadow: 1px 1px 1px black;
    border: 2px solid transparent;
    background-color: white;
}

.plan:hover {
    border-color: rgb(65, 204, 65);
    box-shadow: 0 0 0 transparent;
    cursor: pointer;
}

.divider {
    border-bottom: 1px solid var(--navbargray);
}

.checkbox {
    position: relative;
    background-color: white;
}

.checkmark {
    display: block;
    position: absolute;
    border-style: solid;
    border-color: white;
}

.plan > ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.plan h3 {
    text-align: center;
    color: var(--corporatered);
}

.plan > p {
    text-align: center;
    color: black;
}

.hirebutton {
    display: flex;
    border-radius: 2px;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 1px 1px 1px black;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
    color: black;
}

.hirebutton:hover {
    background-color: rgb(65, 204, 65);
}

#contact {
    display: grid;
    justify-items: center;
    margin: auto;
}

.contactContent {
    display: grid;
    justify-content: center;
    align-items: center;
    background: whitesmoke;
    border-radius: 2px;
}

.contactContent > h3 {
    text-align: center;
    color: var(--corporatered);
    text-shadow: 1px 1px black;
}

.contactContent > p {
    margin: auto;
    text-align: center;
}

.container {
    display: grid; 
    justify-items: center;
}

form {
    display: grid;
    align-content: center;
}

input[type=text], input[type=email], input[type=tel] {
    border-radius: 2px;
    border: 1px solid #bebebe;
    transition-property: border, box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
}

input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus {
    border: 1px solid var(--corporateyellow);
    box-shadow: 0 0 4px var(--corporateyellow);
}

input[type=text]:hover, input[type=email]:hover, input[type=tel]:hover {
    border: 1px solid var(--corporateyellow);
}

input[type=submit] {
    border-radius: 2px;
    border: 0;
    background-color: rgb(49, 146, 49);
    color: white;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: rgb(36, 107, 36);
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.statusmessage {
    display: none;
    border-radius: 2px;
    align-items: center;
    text-align: center;
}

.success {
    display: grid;
    border: 1px solid #d6e9c6;
    background-color: #dff0d8;
    color: #3c763d;
}

.error {
    display: grid;
    border: 1px solid #ebccd1;
    background-color: #f2dede;
    color: #a94442;
}

.message {
    border: 1px solid #bebebe;
    transition-property: border, box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
    font-family: 'Calibri', sans-serif;
    resize: none;
}

.message:focus {
    border: 1px solid var(--corporateyellow);
    box-shadow: 0 0 4px var(--corporateyellow);
}

.message:hover {
    border: 1px solid var(--corporateyellow);
}

.socials {
    display: grid;
    justify-items: center;
}

.info {
    display: grid;
}

.info .phone, .email {
    display: grid;
}

.info img {
    margin: auto;
}

.info p {
    margin-bottom: auto;
    margin-top: auto;
}

#footer {
    background: whitesmoke;
}

 /* Extra small devices (phones, 600px and down) */
 @media only screen and (max-width: 600px) {
    #navbar {
        width: 100vw;
    }

    #navbar img {
        width: 40px;
        height: 37px;
    }

    .navbutton {
        font-size: 16px;
    }

    .header {
        margin-top: 100px;
    }

    .header img {
        width: 119px; 
        height: 110px;
    }

    .header h1 {
        font-size: 30px;
        text-align: center;
    }

    .header p {
        font-size: 24px;
    }

    #about {
        height: max-content;
    }

    .aboutContent {
        height: max-content;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, max-content);
        justify-items: center;
    }

    .aboutContent > .container-left {
        margin-top: 100px;
    }

    .aboutContent > .container-right {
        height: 400px;
        width: 220px;
        font-size: 16px;
    }

    .startbutton {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    #services {
        height: max-content;
    }

    .servicesContent {
        height: max-content;
        width: 95%;
        grid-template-columns: 1fr;
        margin-top: 80px;
    }

    .portfolio {
        width: max-content;
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
        grid-column-gap: 20px;
    }
    
    .portfolio .box {
        height: 120px;
        width: 180px;
        box-shadow: 1px 1px 4px black;
    }

    .portfolio h3 {
        width: 100%;
        height: max-content;
        font-size: 16px;
        font-weight: 500;
    }

    .portfolio img {
        width: 70px;
        height: 70px;
    }

    .servicesContent > .container-right {
        width: 100%;
        margin-bottom: 30px;
    }

    .servicesContent > .container-right > .salespoint > h3 {
        padding: 10px;
        font-size: 22px;
    }
    
    .servicesContent > .container-right > .salespoint > p {
        font-size: 18px;
    }

    #packages {
        height: 100%;
    }
    
    .planContent {
        height: max-content;
        width: 90%;
        margin-top: 90px;
        grid-template-rows: 1fr max-content 1fr;
    }
    
    .dropdown {
        width: 30%;
        height: 30px;
        margin-top: 10px;
    }
    
    .plansBG {
        grid-template-rows: repeat(3, 1fr);
        grid-row-gap: 20px;
    }
    
    .plan {
        height: 240px;
        width: 85%;
        grid-template-rows: repeat(4, minmax(min-content, max-content));
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    
    .divider {
        width: 80%;
        margin: auto;
    }
    
    .checkbox {
        width: 25px;
        height: 25px;
    }
    
    .checkmark {
        top: -1px;
        left: 6px;
        width: 12px;
        height: 23px;
        border-width: 0 4px 4px 0;
        transform: rotate(40deg);
    }
    
    .plan .staffAmount {
        font-size: 48px;
    }
    
    .plan h3 {
        width: 100%;
        height: max-content;
        margin-top: 10px;
        font-size: 22px;
    }
    
    .plan > p {
        width: 100%;
        height: max-content;
        font-size: 16px;
    }
    
    .priceCol {
        font-size: 26px;
        margin-top: 10px;
    }
    
    .hirebutton {
        width: 185px;
        height: 50px;
        padding: 10px;
        font-size: 18px;
    }

    #contact {
        height: 100%;
        width: 100%;
    }
    
    .contactContent {
        height: max-content;
        width: 90%;
        margin-top: 90px;
        grid-template-rows: max-content max-content 1fr;
        grid-template-columns: 1fr;
    }
    
    .contactContent > h3 {
        margin-top: 20px;
        font-size: 30px;
    }
    
    .contactContent > p {
        width: 80%;
        font-size: 16px;
    }

    .container {
        grid-template-columns: 1fr; 
        margin-top: 20px;
    }
    
    form {
        grid-row-gap: 4px;
    }
    
    label {
        font-size: 14px;
    }
    
    input[type=text], input[type=email], input[type=tel] {
        padding: 5px;
        margin-bottom: 5px;
    }
    
    input[type=submit] {
        padding: 6px;
        margin-top: 5px;
        font-size: 16px;
    }
    
    .statusmessage {
        height: 24px;
        width: 100%;
        font-size: 14px;
    }
    
    .message {
        height: 100px;
        padding: 5px;
        font-size: 14px;
    }
    
    .socials {
        width: 100%;
        height: 100%;
        grid-template-rows: repeat(4, max-content);
    }
    
    .info {
        grid-auto-rows: max-content;
        grid-row-gap: 20px;
        margin-top: 75px;
    }
    
    .info .phone, .email {
        grid-template-columns: 29px 1fr;
        grid-auto-rows: max-content;
        grid-row-gap: 5px;
        grid-column-gap: 20px;
    }
    
    .info p {
        grid-column: 2;
    }
    
    #footer {
        margin-top: 20px;
    }
}

 /* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    #navbar {
        width: 100%;
    }

    .header {
        margin-top: 100px;
    }

    .header img {
        width: 119px; 
        height: 110px;
    }

    .header h1 {
        font-size: 30px;
        text-align: center;
    }

    .header p {
        font-size: 24px;
    }

    #about {
        height: max-content;
    }

    .aboutContent {
        height: max-content;
        grid-template-columns: 1fr;
        grid-template-rows: 400px max-content max-content;
        justify-items: center;
    }

    .aboutContent > .container-left {
        margin-top: 100px;
    }

    .aboutContent > .container-right {
        height: 400px;
        width: 220px;
        font-size: 16px;
    }

    .startbutton {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    #services {
        height: max-content;
    }

    .servicesContent {
        height: max-content;
        width: 95%;
        grid-template-columns: 1fr 1fr;
        margin-top: 80px;
        margin-bottom: 30px;
    }

    .portfolio {
        width: max-content;
        grid-template-columns: repeat(2, max-content);
        grid-template-rows: repeat(3, max-content);
        grid-row-gap: 20px;
        grid-column-gap: 20px;
        background: white;
        box-shadow: 1px 1px 4px black;
    }
    
    .portfolio .box {
        height: 120px;
        width: 180px;
    }

    .portfolio h3 {
        width: 100%;
        height: max-content;
        font-size: 16px;
        font-weight: 500;
    }

    .portfolio img {
        width: 70px;
        height: 70px;
    }

    .servicesContent > .container-right {
        width: 100%;
    }

    .servicesContent > .container-right > .salespoint > h3 {
        padding: 10px;
        font-size: 22px;
    }
    
    .servicesContent > .container-right > .salespoint > p {
        font-size: 18px;
    }

    #packages {
        height: max-content;
    }
    
    .planContent {
        height: 510px;
        width: 90%;
        margin-top: 50px;
        grid-template-rows: 1fr max-content 1fr;
    }
    
    .dropdown {
        width: 10%;
        height: 30px;
        margin-top: 10px;
    }
    
    .plansBG {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .plan {
        height: 240px;
        width: 85%;
        grid-template-rows: repeat(4, minmax(min-content, max-content));
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    
    .divider {
        width: 80%;
        margin: auto;
    }
    
    .checkbox {
        width: 25px;
        height: 25px;
    }
    
    .checkmark {
        top: -1px;
        left: 6px;
        width: 12px;
        height: 23px;
        border-width: 0 4px 4px 0;
        transform: rotate(40deg);
    }
    
    .plan .staffAmount {
        font-size: 48px;
    }
    
    .plan h3 {
        width: 100%;
        height: max-content;
        margin-top: 10px;
        font-size: 22px;
    }
    
    .plan > p {
        width: 100%;
        height: max-content;
        font-size: 16px;
    }
    
    .priceCol {
        font-size: 26px;
        margin-top: 10px;
    }
    
    .hirebutton {
        width: 160px;
        height: 50px;
        padding: 10px;
        font-size: 18px;
    }

    #contact {
        height: max-content;
        width: 100%;
    }
    
    .contactContent {
        width: 90%;
        margin-top: 90px;
        grid-template-rows: max-content max-content 1fr;
        grid-template-columns: 1fr;
    }
    
    .contactContent > h3 {
        margin-top: 20px;
        font-size: 30px;
    }
    
    .contactContent > p {
        width: 80%;
        font-size: 17px;
    }

    .container {
        grid-template-columns: 1fr 1fr; 
        margin-top: 10px;
    }
    
    form {
        grid-row-gap: 4px;
    }
    
    label {
        font-size: 14px;
    }
    
    input[type=text], input[type=email], input[type=tel] {
        padding: 5px;
        margin-bottom: 5px;
    }
    
    input[type=submit] {
        padding: 6px;
        margin-top: 5px;
        font-size: 16px;
    }
    
    .statusmessage {
        height: 24px;
        width: 100%;
        font-size: 14px;
    }
    
    .message {
        height: 100px;
        padding: 5px;
        font-size: 14px;
    }
    
    .socials {
        width: 100%;
        height: 100%;
        grid-template-rows: repeat(4, max-content);
    }
    
    .info {
        grid-auto-rows: max-content;
        grid-row-gap: 20px;
        margin-top: 75px;
    }
    
    .info .phone, .email {
        grid-template-columns: 29px 1fr; 
        grid-auto-rows: max-content;
        grid-row-gap: 5px;
        grid-column-gap: 20px;
    }
    
    .info p {
        grid-column: 2;
    }
    
    #footer {
        margin-top: 20px;
    }
}
 
 /* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    #navbar {
        width: 100%;
    }
    
    .header {
        margin-top: 100px;
    }

    #about {
        height: max-content;
    }
    
    .aboutContent {
        height: max-content;
        grid-template-columns: 4fr 1fr;
        grid-template-rows: 400px max-content max-content;
        justify-items: center;
    }

    .aboutContent > .container-left {
        grid-column: 1;
        grid-row: 1;
        margin-top: 100px;
    }

    .aboutContent > .container-right {
        height: 400px;
        width: 220px;
        grid-column: 2;
        grid-row: 1;
        margin-top: 110px;
        font-size: 16px;
    }

    .startbutton {
        grid-column: 1;
        grid-row: 2;
    }

    #services {
        height: max-content;
    }

    .servicesContent {
        height: max-content;
        width: 95%;
        grid-template-columns: 1fr 1fr;
        margin-top: 80px;
    }

    .portfolio {
        width: max-content;
        grid-template-columns: repeat(2, max-content);
        grid-template-rows: repeat(3, max-content);
        grid-row-gap: 20px;
        grid-column-gap: 20px;
        background: white;
        box-shadow: 1px 1px 4px black;
    }
    
    .portfolio .box {
        height: 120px;
        width: 180px;
    }

    .portfolio h3 {
        width: 100%;
        height: max-content;
        font-size: 16px;
        font-weight: 500;
    }

    .portfolio img {
        width: 70px;
        height: 70px;
    }

    .servicesContent > .container-right {
        width: 100%;
    }

    .servicesContent > .container-right > .salespoint > h3 {
        padding: 10px;
        font-size: 22px;
    }
    
    .servicesContent > .container-right > .salespoint > p {
        font-size: 18px;
    }

    #packages {
        height: max-content;
    }
    
    .planContent {
        height: 510px;
        width: 90%;
        margin-top: 50px;
        grid-template-rows: 1fr max-content 1fr;
    }
    
    .dropdown {
        width: 10%;
        height: 30px;
        margin-top: 10px;
    }
    
    .plansBG {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .plan {
        height: 250px;
        width: 90%;
        grid-template-rows: repeat(4, minmax(min-content, max-content));
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    
    .divider {
        width: 80%;
        margin: auto;
    }
    
    .checkbox {
        width: 25px;
        height: 25px;
    }
    
    .checkmark {
        top: -1px;
        left: 6px;
        width: 12px;
        height: 23px;
        border-width: 0 4px 4px 0;
        transform: rotate(40deg);
    }
    
    .plan .staffAmount {
        font-size: 48px;
    }
    
    .plan h3 {
        width: 100%;
        height: max-content;
        margin-top: 10px;
        font-size: 24px;
    }
    
    .plan > p {
        width: 100%;
        height: max-content;
        font-size: 18px;
    }
    
    .priceCol {
        font-size: 32px;
        margin-top: 10px;
    }
    
    .hirebutton {
        width: 200px;
        height: 50px;
        padding: 10px;
        font-size: 20px;
    }

    #contact {
        height: max-content;
        width: 100%;
    }
    
    .contactContent {
        width: 90%;
        margin-top: 90px;
        grid-template-rows: max-content max-content 1fr;
        grid-template-columns: 1fr;
    }
    
    .contactContent > h3 {
        margin-top: 20px;
        font-size: 30px;
    }
    
    .contactContent > p {
        width: 80%;
        font-size: 17px;
    }

    .container {
        grid-template-columns: 1fr 1fr; 
        margin-top: 10px;
    }
    
    form {
        width: 70%;
        grid-row-gap: 4px;
    }
    
    label {
        font-size: 14px;
    }
    
    input[type=text], input[type=email], input[type=tel] {
        padding: 5px;
        margin-bottom: 5px;
    }
    
    input[type=submit] {
        padding: 6px;
        margin-top: 5px;
        font-size: 16px;
    }
    
    .statusmessage {
        height: 24px;
        width: 100%;
        font-size: 14px;
    }
    
    .message {
        height: 100px;
        padding: 5px;
        font-size: 14px;
    }
    
    .socials {
        width: 100%;
        height: 100%;
        grid-template-rows: repeat(4, max-content);
    }
    
    .info {
        grid-auto-rows: max-content;
        grid-row-gap: 20px;
        margin-top: 75px;
    }
    
    .info .phone, .email {
        grid-template-columns: 29px 1fr; 
        grid-auto-rows: max-content;
        grid-row-gap: 5px;
        grid-column-gap: 20px;
    }
    
    .info p {
        grid-column: 2;
    }
}
 
 /* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    #navbar {
        width: 100%;
    }

    #navbar img {
        width: 48px;
        height: 45px;
    }

    .navbutton {
        font-size: 20px;
    }

    .header {
        margin-top: 100px;
    }

    .header img {
        width: 159px; 
        height: 150px;
    }

    .header h1 {
        font-size: 50px;
    }

    .header p {
        font-size: 28px;
    }

    #about {
        height: 100vh;
    }

    .aboutContent {
        height: 90vh;
        grid-template-columns: 4fr 1fr;
        grid-template-rows: 350px max-content;
        justify-items: center;
    }

    .aboutContent > .container-left {
        grid-column: 1;
        grid-row: 1;
        margin-top: 100px;
    }

    .aboutContent > .container-right {
        height: 500px;
        width: 250px;
        grid-column: 2;
        grid-row: 1;
        margin-top: 75px;
        font-size: 18px;
    }

    .startbutton {
        grid-column: 1;
        grid-row: 2;
    }

    #services {
        height: 90vh;
    }

    .servicesContent {
        height: max-content;
        width: 95%;
        grid-template-columns: 2fr 1fr;
        margin-top: 140px;
    }

    .portfolio {
        width: max-content;
        grid-template-columns: repeat(3, max-content);
        grid-template-rows: max-content max-content;
        grid-row-gap: 10px;
        grid-column-gap: 10px;
        background: white;
        box-shadow: 1px 1px 4px black;
    }
    
    .portfolio .box {
        height: 120px;
        width: 180px;
    }

    .portfolio h3 {
        width: 100%;
        height: max-content;
        font-size: 16px;
        font-weight: 500;
    }

    .portfolio img {
        width: 70px;
        height: 70px;
    }

    .servicesContent > .container-right > .salespoint > h3 {
        padding: 10px;
        font-size: 22px;
    }
    
    .servicesContent > .container-right > .salespoint > p {
        font-size: 18px;
    }

    #packages {
        height: 100vh;
    }
    
    .planContent {
        height: 510px;
        width: 831.25px;
        margin-top: 50px;
        grid-template-rows: 1fr max-content 1fr;
    }
    
    .dropdown {
        width: 10%;
        height: 30px;
        margin-top: 10px;
    }
    
    .plansBG {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .plan {
        height: 250px;
        width: 90%;
        grid-template-rows: repeat(4, minmax(min-content, max-content));
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    
    .divider {
        width: 80%;
        margin: auto;
    }
    
    .checkbox {
        width: 25px;
        height: 25px;
    }
    
    .checkmark {
        top: -1px;
        left: 6px;
        width: 12px;
        height: 23px;
        border-width: 0 4px 4px 0;
        transform: rotate(40deg);
    }
    
    .plan .staffAmount {
        font-size: 48px;
    }
    
    .plan h3 {
        width: 100%;
        height: max-content;
        margin-top: 10px;
        font-size: 24px;
    }
    
    .plan > p {
        width: 100%;
        height: max-content;
        font-size: 18px;
    }
    
    .priceCol {
        font-size: 32px;
        margin-top: 10px;
    }
    
    .hirebutton {
        width: 200px;
        height: 50px;
        padding: 10px;
        font-size: 20px;
    }

    #contact {
        height: 100vh;
        width: 100%;
    }
    
    .contactContent {
        width: 90%;
        margin-top: 90px;
        grid-template-rows: max-content max-content 1fr;
        grid-template-columns: 1fr;
    }
    
    .contactContent > h3 {
        margin-top: 20px;
        font-size: 30px;
    }
    
    .contactContent > p {
        width: 65%;
        font-size: 17px;
    }

    .container {
        grid-template-columns: 1fr 1fr; 
        margin-top: 10px;
    }
    
    form {
        width: 70%;
        grid-row-gap: 4px;
    }
    
    label {
        font-size: 14px;
    }
    
    input[type=text], input[type=email], input[type=tel] {
        padding: 5px;
        margin-bottom: 5px;
    }
    
    input[type=submit] {
        padding: 6px;
        margin-top: 5px;
        font-size: 16px;
    }
    
    .statusmessage {
        height: 24px;
        width: 100%;
        font-size: 14px;
    }
    
    .message {
        height: 100px;
        padding: 5px;
        font-size: 14px;
    }
    
    .socials {
        width: 100%;
        height: 100%;
        grid-template-rows: repeat(4, max-content);
    }
    
    .info {
        grid-auto-rows: max-content;
        grid-row-gap: 20px;
        margin-top: 75px;
    }
    
    .info .phone, .email {
        grid-template-columns: 29px 1fr; 
        grid-auto-rows: max-content;
        grid-row-gap: 5px;
        grid-column-gap: 20px;
    }
    
    .info p {
        grid-column: 2;
    }
}
 
 /* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    #navbar {
        width: 100%;
    }

    #navbar img {
        width: 48px;
        height: 45px;
    }

    .navbutton {
        font-size: 20px;
    }

    .header {
        margin-top: 100px;
    }

    .header img {
        width: 159px; 
        height: 150px;
    }

    .header h1 {
        font-size: 50px;
    }

    .header p {
        font-size: 28px;
    }

    #about {
        height: 100vh;
    }

    .aboutContent {
        height: 90vh;
        grid-template-columns: 4fr 1fr;
        grid-template-rows: 350px max-content;
        justify-items: center;
    }

    .aboutContent > .container-left {
        grid-column: 1;
        grid-row: 1;
        margin-top: 100px;
    }

    .aboutContent > .container-right {
        height: 500px;
        width: 250px;
        grid-column: 2;
        grid-row: 1;
        margin-top: 75px;
        font-size: 18px;
    }

    .startbutton {
        grid-column: 1;
        grid-row: 2;
    }

    #services {
        height: 90vh;
    }

    .servicesContent {
        height: max-content;
        width: 90%;
        grid-template-columns: 2fr 1fr;
        margin-top: 100px;
    }

    .portfolio {
        width: max-content;
        grid-template-columns: repeat(3, max-content);
        grid-template-rows: max-content max-content;
        grid-row-gap: 40px;
        grid-column-gap: 40px;
        background: white;
        box-shadow: 1px 1px 4px black;
    }
    
    .portfolio .box {
        height: 150px;
        width: 230px;
    }

    .portfolio h3 {
        width: 100%;
        height: max-content;
        font-size: 17px;
        font-weight: 500;
        text-align: center;
    }

    .portfolio img {
        width: 80px;
        height: 80px;
    }

    .servicesContent > .container-right > .salespoint > h3 {
        padding: 10px;
        font-size: 24px;
    }
    
    .servicesContent > .container-right > .salespoint > p {
        font-size: 19px;
    }

    #packages {
        height: 100vh;
    }
    
    .planContent {
        height: 510px;
        width: 831.25px;
        margin-top: 50px;
        grid-template-rows: 1fr max-content 1fr;
    }
    
    .dropdown {
        width: 10%;
        height: 30px;
        margin-top: 10px;
    }
    
    .plansBG {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .plan {
        height: 250px;
        width: 90%;
        grid-template-rows: repeat(4, minmax(min-content, max-content));
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    
    .divider {
        width: 80%;
        margin: auto;
    }
    
    .checkbox {
        width: 25px;
        height: 25px;
    }
    
    .checkmark {
        top: -1px;
        left: 6px;
        width: 12px;
        height: 23px;
        border-width: 0 4px 4px 0;
        transform: rotate(40deg);
    }
    
    .plan .staffAmount {
        font-size: 48px;
    }
    
    .plan h3 {
        width: 100%;
        height: max-content;
        margin-top: 10px;
        font-size: 24px;
    }
    
    .plan > p {
        width: 100%;
        height: max-content;
        font-size: 18px;
    }
    
    .priceCol {
        font-size: 32px;
        margin-top: 10px;
    }
    
    .hirebutton {
        width: 200px;
        height: 50px;
        padding: 10px;
        font-size: 20px;
    }

    #contact {
        height: 100vh;
        width: 100%;
    }
    
    .contactContent {
        width: 90%;
        margin-top: 90px;
        grid-template-rows: max-content max-content 1fr;
        grid-template-columns: 1fr;
    }
    
    .contactContent > h3 {
        margin-top: 20px;
        font-size: 30px;
    }
    
    .contactContent > p {
        width: 65%;
        font-size: 17px;
    }

    .container {
        grid-template-columns: 1fr 1fr; 
        margin-top: 10px;
    }
    
    form {
        width: 70%;
        grid-row-gap: 4px;
    }
    
    label {
        font-size: 14px;
    }
    
    input[type=text], input[type=email], input[type=tel] {
        padding: 5px;
        margin-bottom: 5px;
    }
    
    input[type=submit] {
        padding: 6px;
        margin-top: 5px;
        font-size: 16px;
    }
    
    .statusmessage {
        height: 24px;
        width: 100%;
        font-size: 14px;
    }
    
    .message {
        height: 100px;
        padding: 5px;
        font-size: 14px;
    }
    
    .socials {
        width: 100%;
        height: 100%;
        grid-template-rows: repeat(4, max-content);
    }
    
    .info {
        grid-auto-rows: max-content;
        grid-row-gap: 20px;
        margin-top: 75px;
    }
    
    .info .phone, .email {
        grid-template-columns: 29px 1fr; 
        grid-auto-rows: max-content;
        grid-row-gap: 5px;
        grid-column-gap: 20px;
    }
    
    .info p {
        grid-column: 2;
    }

    #footer {
        margin-top: 0;
    }
}

/* Extra large devices (large laptops and desktops, 1440px and up) */
@media only screen and (min-width: 1440px) {
    #index {
        align-content: center;
    }

    .header {
        margin-top: 0;
    }

    .aboutContent {
        align-content: center;
    }

    .aboutContent > .container-right {
        margin-top: 0;
    }

    .aboutContent > .container-left {
        margin-top: auto;
        margin-bottom: auto;
    }

    #services {
        align-content: center;
    }

    .servicesContent {
        margin-top: 0;
    }

    .contactContent > h3 {
        margin-top: 80px;
    }

    .contactContent > .container {
        margin-top: 0;
    }

    #footer {
        margin-top: 0;
    }
}
