/* ---------MAIN WRAPPER--------- */

.cta-n {
    position: relative;
    overflow: hidden;
}
.cta-n .cta-n--wrapper {
  align-items: start;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
  position: relative;
  width 100%;
}
@media (min-width: 1024px) {
  .cta-n .cta-n--wrapper{
   flex-direction: row;
   justify-content: space-between;
   gap: unset;
      width: 100%;
  }
}
@media (max-width: 1023px){
  .cta-n--wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }   
}


/* ---------BACKGROUND  VIDEO--------- */
@media (max-width: 600px) {
  .cta-n--wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    margin: 0 auto;
  }
}
.cta-n .cta-n__bg-video,
.cta-n .cta-n__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.cta-n .cta-n__bg-video {
  display: none;
}
.cta-n .cta-n__bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-n .cta-n__bg-image{
  object-fit: cover;
}
@media (min-width: 1024px){
   .cta-n .cta-n__bg-video {
    display: block;
  } 
  .cta-n .cta-n__bg-image {
    display: none;
  }
}


/* ---------LEFT SECTION CONTAINER--------- */
@media (min-width: 601px) {
  .cta-n--wrapper .cta-n__left--container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 600px) and (max-width: 1023px){
  .cta-n--wrapper .cta-n__left--container {
    text-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .cta-n--wrapper .cta-n__left--container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .cta-n--wrapper .cta-n__left--container {
    width: 60%;   
  }
}



  
/* ---------LEFT SECTION Heading 2--------- */  
.cta-n--wrapper h2 { 
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: unset;      
}
 .cta-n h2 p {
    margin: 0;
    display: inline-block;
    font-family: Roboto;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
     
}
@media (max-width: 1023px){
  .cta-n--wrapper h2 {
    line-height: 1.5;
  }  
}
@media (max-width: 600px) {
  .cta-n--wrapper h2 {
    text-align: center;
  }
   .cta-n h2 p {
    margin: 0;
    display: inline;
    font-family: Roboto;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
     
}
}
@media (max-width: 1023px){
    .cta-n h2 span {
        display: inline-block;
    }
}
/* ---------LEFT SECTION Title animation--------- */
.cta-n__titles-wrapper {
    display: inline-flex;
    flex-direction: column;
    height: 60px;
    overflow: hidden;
}
.cta-n__title-wrapper .cta-n__main-title {
    /* display: unset; */ /* -emoved by Melissa May 15 2025 to center heading on mobile- */
} 
.cta-n__main-title span {
    
}
.cta-n__title-rotate {
  transform: translateY(0);
  transition: all .8s ease;
}
/* @media (max-width: 550px) {
  .cta-n__title-rotate {
    line-height: 50px;
  }
} */


/* ---------LEFT SECTION DESCRIPTION------------ */

.cta-n--description {
  margin-top: 20px;
  font-size: 24px;
  & p {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cta-n--description {
    font-size: 16px;
  }
}
@media (min-width: 601px) {
  .cta-n--description {
    max-width: 370px;
  }
}

/* ---------LEFT SECTION BUTTON--------- */
.cta-n__left--container .cta-n__buttons--container {
  display: flex;
  flex-direction: row;
  gap: 35px;
  justify-content: start;
  margin-top: 35px;
  align-items: flex-start;
}
.cta-n__left--container .cta-n__buttons--container a { 
    max-width: unset;
    padding: 16px 40px;
}
.cta-n__left--container .cta-n__buttons--container .report_cover { 
    max-width: 150px;
}
.cta-n__left--container .cta-n__buttons--container .report_cover_link { 
    padding: 0;
}
.cta-n__left--container .cta-n__buttons--container .report_cover:hover { 
    cursor: pointer;
    transition: transform .2s;
    transform: scale(1.1);
}
@media (max-width: 600px) {
  .cta-n__left--container .cta-n__buttons--container {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 1023px){ 
  .cta-n__left--container .cta-n__buttons--container {
    margin-top: 20px;
    align-items: center;
  }
}
.cta-n__buttons--image img {
  transition: transform 0.2s;
}
.cta-n__buttons--image img:hover {
  transform: scale(1.1);
}



/* ---------RIGHT SECTION CONTAINER--------- */
.cta-n .cta-n__right--container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cta-n--wrapper .cta-n__right--container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
}
@media (min-width: 601px) {
  .cta-n--wrapper .cta-n__right--container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .cta-n--wrapper .cta-n__right--container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .cta-n--wrapper .cta-n__right--container {
    width: 35%;
  }
}
@media (max-width: 1023px){
  .cta-n__right--container {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-n__right--container > img {
    margin: 0 auto;
    max-width: 400px;
  }
}



/* ---------RIGHT SECTION LOGOS------------ */
.cta-n__right--logos-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 20px;
}
.cta-n__right--logo {
 flex-shrink: 0;
}
@media (min-width: 1350px){
  .cta-n .cta-n__right--logos-container{
    flex-wrap: unset;
  }
}
@media (min-width: 1024px) {
  .cta-n--wrapper .cta-n__right--logos-container {
   margin-left: -100px; 
  }
}

/* responsive by Sanh - Jan 13, 2025 */
@media screen and (max-width: 600px) {
  .main-wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .main-wrapper .cta-n--wrapper {
    width: 100%;
  }
  .main-wrapper .cta-n--wrapper .cta-n__right--container {
    width: 100%;
  }
  .main-wrapper .cta-n--wrapper .cta-n__right--container img {
    width: 100%;
  }
  .main-wrapper .cta-n__titles-wrapper {
    height: 40px;
  }
}

