body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
/* .sticky {
    position: fixed;
    top: 5%;
    width: 100%;
    z-index: 1000000000;
} */
.main-logo {
    width: auto;
    height: auto;
    max-width: 100%;
}
.logo-container {
    display: flex;
    justify-content: center;   
}
.logo {
    max-width: 100%;       
    height: auto;       
}
header {
    background-color: white;
    height: 160px;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100%;
    gap: 0
}
.grid-item {
    background-color: #f0f0f0;                
    text-align: center; 
    margin: 0;
    padding: 0;          
}

.top-border-color-1 {
    height: 7px;
    background-color: #349bbf;
}
.top-border-color-2 {
    height: 7px;
    background-color: #c3539d;
}
.top-border-color-3 {
    height: 7px;
    background-color: #fcdd79;
}
.landing-image {
    display: block;
    height: 100%;
    width: 100%;  
}
.top-title {
    position: relative;
    background-color: #349bbf;
    color: white;
    width: auto;
}
.top-title h1 {
    text-align: center;
    font-family: sans-serif;
}
.purple .top-title {
    background-color: #c3539d;
    height: 50px;
    top: -21px;
    line-height: 50px;
}
.blue .top-title {
    background-color: #349bbf;
    height: 50px;
    top: -21px;
    line-height: 50px;
}
.yellow .top-title {
    background-color: #dec164;
    height: 50px;
    top: -21px;
    line-height: 50px;
}
.image-container.blue {
    background-color: #e6e6e6;
    border: 1px solid white;
}
.image-container.purple {
    background-color: #d9d9d9;
    border: 1px solid white;
}
.image-container.yellow {
    background-color: #d4d4d4;
    border: 1px solid white;
}
.image-logo {
    margin-top: 15px;
    z-index: 99999;
}
.image-icon {
    position: relative;
    transform: translate(76%, 40%);
}
.image-text {
    position: relative;
    font-family: sans-serif;
    font-size: 25px;
    margin-bottom: 10px;
    z-index: 99999;
    top: 18%;
    text-align: center;
}
.title {
    color: white;
    line-height: 33px;
    margin-top: 310px;
    margin-bottom: 20px;
}
.sub-heading {
    font-size: 26px;
    line-height: 33px;
    text-transform: uppercase;
    color: #000000;
    margin: auto;
    width: 80%;
}
button {
    width: 230px;
    height: 50px;
    margin: 20px;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-shadow: 1px 2px #0000007a;
    text-transform: uppercase;
    background-color: black !important;
}
.cta-button_01 {
    background-color: #187ca1;
}
.cta-button_02 {
    background-color: #9b4a7f;
}
.cta-button_03 {
    background-color: #dec164;
}
.grid-container.content {
    height: 78vh;
}
footer {
    height: 70px;
    width: 100%;
    background: rgb(255, 255, 255);
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    background-color: #ffffff;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
}

.copyrights {
    grid-column: 1;
    font-family: sans-serif;
    font-size: 13px;
    color: #5d5d5d;
}

.website-design-by {
    grid-column: 2;
    text-align: right;
    font-family: sans-serif;
    font-size: 13px;
    color: #5d5d5d;
}
.website-title {
    display: none;
}
a {
    color: #000000;
    text-decoration: none;
}
@media only screen and (max-width: 1440px) {
    .main-logo {
        width: 35%;
        height: auto;
        max-width: 100%;
    }
    header {
        background-color: white;
        height: 140px;
    }
    .image-icon {
        position: relative;
        transform: translate(40%, 40%);
    }
    .sub-heading {
        font-size: 22px;
    }
    .image-logo {
        width: 100px;
        height: auto;
    }
    .image-icon { 
        height: auto;
    }
    .title {
        font-size: 35px;
    }
    .sub-heading {
        width: 90%;
    }
}
@media only screen and (max-width: 1024px) {
    .image-icon {
        height: auto;
        width: 60%;
    }
}
@media only screen and (max-width: 768px)  {
    .image-container.purple,
    .image-container.blue,
    .image-container.yellow {
        border: 0;
    }
    button {
        display: none;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }

    .footer-container .copyrights, 
    .footer-container .website-design-by {
        margin-bottom: 0;
        line-height: 0;
        margin-top: 0;
    }
    .website-title {
        display: block;
        font-size: 20px;
        text-transform: uppercase;
    }
    .top-title {
        display: none;
    }
    .grid-container.content {
        height: 80vh;
    }
    .sub-heading {
        font-size: 18px;
        line-height: 14px;
        text-transform: uppercase;
    }
    .image-icon {
        transform: translate(200%, 7%);
    }
    .image-text {
        top: 0;
    }
    .top-title h1 {
        text-align: center;
        font-family: sans-serif;
        font-size: 1.25rem;
    }
    header {
        background-color: white;
        height: 90px;
    }
    .top-title {
        position: relative;
        background-color: #349bbf;
        color: white;
        padding: 10px;
        width: auto;
        top: 0;
    }
    /* .sticky {
        top: 0;
        background-color: #ffffff;
        height: 90px;
    } */
    body {
        overflow: scroll;
    }
    .main-logo {
        max-width: 60%;
        margin: auto;
        margin-top: 6px;
    }
    .title {
        width: auto;
    }
    .image-text {
        position: relative;
        font-family: sans-serif;
        font-size: 25px;
        margin-bottom: 10px;
        margin-top: 0;
    }
    .image-icon {
        height: auto;
        width: 20%;
    }
    .title {
        color: white;
        line-height: 33px;
        margin-bottom: 0;
        margin-top: 40px;
        font-size: 32px;
    }
    .image-logo {
        width: 50%;
        height: auto;
        margin-top: 15px;
    }
    .grid-container {
        grid-template-columns: 1fr;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .main-logo {
        width: 40%;
    }
}
@media only screen and (max-width: 576px)  {
      .grid-container.content {
        height: 74vh;
    }
    .footer-container {
        margin-top: 10px !important;
    }
    .footer-container .copyrights, .footer-container .website-design-by {
        margin-bottom: 0;
    }
    /* .sticky {
        height: 50px;
    } */
    .website-title {
        display: block;
        font-size: 18px;
        text-transform: uppercase;
        margin-bottom: 5px;
    }
    .image-text {
        position: relative;
        font-family: sans-serif;
        font-size: 14px;
        margin-bottom: 10px;
        z-index: 99999;
        top: 0;
        text-align: center;
    }
    .image-icon {
        width: 24%;
        transform: translate(158%, 20%);
    }
    .image-text {
        top: 7%;
    }
    .main-logo {
        width: 55%;
    }
    header {
        background-color: white;
        height: 70px;
    }
    /* .sticky .main-logo {
        max-width: 50%;
    } */
    .title {
        margin-top: 70px;
    }
    .sub-heading {
        font-size: 13px;
        width: 90%;
        margin: auto;
        font-weight: 500;
    }
    button {
        display: none;
    }
}
@media only screen and (max-width: 400px) {
    .grid-container.content {
        height: 80vh;
    }
}
@media only screen and (max-width: 320px)  {
.grid-container.content {
    height: 100vh;
}
}