.cta-main {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background: #ebf3f7;
  padding: 80px 20px 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-main .overlay {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: all .4s ease;
}

.cta-main .cta-content { 
  z-index: 2;
  text-align: left;
  width: 100%;
  max-width: 1080px;

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.cta-main .cta-title{
  color: #093b6c;
  font-size: 24px;
  line-height: 40px;
  margin-bottom: 30px;
}

.cta-main .cta-sub-title{
  margin-top: 20px;
}

.cta-main .cta-sub-title *{
  margin: 0;
  color: #000000;
  font-size: 30px;
  line-height: 50px;
}

.cta-main .cta-description{
  margin-top: 20px;
}

.cta-main .cta-description *{
  margin-top: 20px;
  color: #000000;
  font-size: 16px;
  line-height: 30px;
}

.cta-main .cta-content__text{
  flex: 1;
}

.cta-main .cta-content__actions{
  text-align: right;
  width: 100%;
  margin: 0 auto;
  max-width: 340px;
}

{# Button #}
.cta-main .btn-group .button.uk-button-large{
  min-width: 340px;
}

.cta-main .btn-group .button:not(:first-child){
  margin-top: 30px;
}

.cta-main .main-image-wrapper ~ .btn-group .button{
  margin-top: 30px;
}

.cta-main .button--e-note{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 10px;
  padding: 15px 20px;
}
.cta-main .button--e-note .image-content {
  position: relative;
}
.cta-main .button--e-note .image-content img{
  width: 48px;
  height: 48px;
  margin: 0;
  opacity: 1;
}
.cta-main .button--e-note .image-content img.hover{
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.cta-main .button--e-note:hover .image-content img:not(.hover){
  opacity: 0;
}
.cta-main .button--e-note:hover .image-content img.hover{
  opacity: 1;
}

.cta-main .button--e-note .text-content{
  text-align: left;
}
.cta-main .button--e-note .text-content__title{
  display: block;
  color: #000000;
  font-size: 18px;
  line-height: 25px;
}
.cta-main .button--e-note:hover .text-content__title {
  color: #FFFFFF;
}
.cta-main .button--e-note .text-content__description{
  display: block;
  font-size: 16px;
  line-height: 20px;
}

.cta-main .button--e-note:hover svg path {
  fill: #FFFFFF !important;
}

{# Responsive CSS #}
@media only screen and (max-width: 767px) {
  .cta-main {
    padding: 40px 20px 40px 20px ;
  }
  .cta-main .cta-content {
    flex-direction: column;
  }
  .cta-main .cta-title{
    margin-bottom: 20px;
  }
  .cta-main .cta-sub-title *{
    font-size: 20px;
    margin-top: 0;
    line-height: 1.4;
  }
  .cta-main .btn-group .button.uk-button-large{
    min-width: 100%;
  }
}



