.banner-ce .container {
    width: 1280px;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-image: url('img/ce-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    margin-bottom: 120px;
  }
  
  .banner-ce-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 88px 60px;
  }
  
  .banner-ce-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 60px;
    background-color: #EDF2F6;
  }
  
  .banner-ce-text h2.h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 400;
    margin-bottom: 24px;
    max-width: 350px;
    color: #004975;
  }
  
  .banner-ce-text .text-large {
    max-width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #121316;
  }
  
  .banner-ce-text .text-large:first-of-type {
    margin-bottom: 8px;
  }
  
  .banner-ce-text .btn-main {
    margin-top: 40px;
    height: 52px;
    width: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 74px;
    background-color: #fff;
  }
  .banner-ce-text .btn-main:hover .btn-main-icon{
        background-color: #2B9BD2;
  }

  .banner-ce-text .btn-main:active .btn-main-icon{
    background-color: #006299;
}
  
  .banner-ce-text .btn-main .text-large {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #121316;
    margin-bottom: 0;
  }
  
  .banner-ce-text .btn-main-icon {
    width: 24px;
    height: 24px;
    background-color: #00A0FE;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.3s;
  }
  
  .banner-ce-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid #006299;
    margin-bottom: 16px;
    padding: 6px 8px;
  }
  
  .banner-ce-label .text-small {
    color: #006299;
    font-size: 12px;
    line-height: 20px;
  }
  
  .banner-ce-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }


@media screen and (max-width: 1043px) {
  .banner-ce .container {
    width: 688px;
    background-image: url('img/ce-bg-tablet.png');
  }
  
  .banner-ce-wrapper {
    flex-direction: column;
    gap: 125px;
    padding: 80px 48px;
  }
  
  .banner-ce-text {
    order: 2;
    align-items: center;
  }
  
  .banner-ce-text h2.h2 {
    text-align: center;
  }
  
  .banner-ce-text .text-large {
    text-align: center;
  }
    
  .banner-ce-img {
    order: 1;
  }

  .banner-ce-img img{
    width: 425px;
  }
}

@media screen and (max-width: 767px) {
  .banner-ce .container {
    max-width: calc(100% - 40px);
    background-image: url('img/ce-bg-mobile.png');
  }
  
  .banner-ce-wrapper {
    flex-direction: column;
    gap: 96px;
    padding: 86px 20px;
  }
  
  .banner-ce-text {
    order: 2;
    align-items: center; 
    padding: 48px;
  }
  
  .banner-ce-text h2.h2 {
    text-align: center;
  }
  
  .banner-ce-text .text-large {
    text-align: center;
  }
    
  .banner-ce-img {
    order: 1;
  }

  .banner-ce-img img{
    width: 360px;
  }
  .banner-ce-text .btn-main {
    width: 100%;
    gap: 12px;
  }
}