.cta-section {
    background-color: var(--MainLightGrey);
    padding: 80px 0;
}

.cta-container{
    min-height: 516px;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cta-img-container{
    background-image:url(../images/cta-background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.cta-card{
    background-color: #01306B;
    width: 100%;
    display: flex;
    flex-direction: initial;
    justify-content: center;
    align-items: center;
}

.cta-card-container {
    width: 80%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-text-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 600px;
}

.cta-title {
    color: #FFF;
    font-size: 36px;
    font-weight: 600;
}

.cta-title span{
    color: #00AEE3;
}

.cta-paragraph {
    color: #FFF;
    font-size:16px;
    font-style: normal;
    font-weight: 500;
    line-height: 143%;
    max-width: 495px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
}

.cta-button{
  height: fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: 2px solid var(--MainGrey);
  transition: .3s ease-in-out;
}

.cta-button path{
    transition: .3s ease-in-out;
}

.cta-button:hover{
    border-color: var(--MainColor);
    color: var(--MainColor);
}

.cta-button:hover path{
    fill: var(--MainColor);
}

@media only screen and (max-width: 850px) {
    .cta-card-container {
        width: 90%;
    }
    
    .cta-container{
        width: 90%;
    }

    .cta-img-container{
        background-position: left;
        min-height: 300px;
    }
}

@media only screen and (max-width: 800px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .main-product-title {
        font-size: 20px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 750px) {

    .cta-title {
        font-size: 32px;
        font-weight: 600;
        line-height: 40px;
    }

    .cta-container{
        width: 95%;
        grid-template-columns: 1fr;
    }

    .cta-card{
    padding: 40px 0;
    }

    .cta-card-container {
        gap: 16px;
    }
}