/*Reset*/
*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

/*Colors*/
:root{
   --color-gray: #fcfcfc;
   --color-gray-2: #f3f0e0;
   --color-blue: #1d4874;
   --color-red: #9d0909;
   --color-red-2: rgba(157, 9, 9, 0.7);
   --color-white: #fff;
}

html{
   font-size: 100%;
}


/*class*/
.text-center{
   text-align: center;
}

.text-uppercase{
   text-transform: uppercase;
}

/*main*/
.main{
   position: relative; 
}

.image_background-desktop {
    position: absolute;  
}

.image_background-desktop,
.image_background-mobile {
    width: 100%;
    object-fit: cover;
    height: 100vh;   
}

.image_background-mobile {
   display: none
}

/*info*/
.info{
   height: 100vh;
   position: relative;
   padding: 0;
   display: flex;
   flex-direction: column;
   justify-content: end;
   align-items: center;
   gap: 44px;
}

.info__h1 {
    color: var(--color-blue);
    font-size: 3.342rem;
    line-height: 0.8;
    margin: 0;
    font-family: 'Ageragothic-Black';
    font-weight: normal;
    -webkit-text-stroke: 3px #fff;
    max-width: 475px;
    text-align: center;
    flex-shrink: 0;
}

.image_title {
   max-width: 100%;
    margin-top: 70px;
}

/*cta*/
.info__cta {
   height: auto;
   /*max-height: calc(100vh - 200px);*/
   padding: 1.75rem 1.5rem;
   width: 100%;
   max-width: 567px;   
   border-radius: 0.625rem 0.625rem 0 0;
   background: var(--color-red-2);
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.cta__h2 {
   color: var(--color-gray-2);
   font-size: 1.963rem;
   font-family: 'Ageragothic-Black';
   font-weight: normal;
   padding: 0 1rem;
   margin: 0;
   flex-shrink: 0;
}

/*cta__box*/
.cta__box {
   flex: 1;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

/*cta__buttons*/
.cta__buttons {
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 0.8vh;
   margin-top: 28px;
}

.cta__buttons-item{
   background-color: var(--color-white);
   font-family: 'Ageragothic-Black';
   font-weight: bold;
   color: var(--color-blue);
   text-decoration: none;
   font-size: 2.469rem;
   width: 100%;
   max-width: 450px;
   margin: 0 auto;
   padding: 1.2vh 1rem;
   min-height: 4.375rem;
   border-radius: 50rem;
   position: relative;
}

.cta__buttons-item:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid var(--color-blue);
    border-radius: 40px;
    pointer-events: none;
    z-index: 0;    
}

.cta__buttons-item span {
    font-size: 0.984rem
}


/*cta__logo*/
.cta__logo{
   text-align: center;
   flex-shrink: 0;
}

.cta__logo-img {
    max-width: 100%;
    height: auto;
    margin-top: 22px
}

.cta__button-site{
   color: var(--color-gray-2);
   font-size: clamp(0.9rem, 1.125rem, 1.2rem);
   border-radius: 1.25rem;
   border: 0.125rem solid var(--color-gray-2);
   padding: 0.5rem 1.875rem;
   font-family: 'Neo Sans Pro';
   font-weight: bold;
   text-decoration: none;
   margin-top: 28px;
   display: inline-block;
}

/*Media querys*/
@media (min-width: 2000px) {
   .image_title {
      width: 500px
   }
}

@media (min-width: 1024px) and (max-width: 1239px) {
   .cta__h2,
   .cta__buttons-item {
      font-size: 1.5rem
   }
   .info__cta {
       max-width: 469px
   }

   .cta__buttons-item span {
      font-size: 0.688rem
   }
   
}


@media screen and (max-width: 991px) {
   body {
      overflow-x: hidden;
      overflow-y: auto;
   }

   .main{
      height: auto;
      min-height: auto; 
      overflow: visible;
      position: relative;
   }

   .image_background-desktop {
      display: none;
   }
   
   .image_background-mobile {
      display: block;
      position: relative;
      width: 100%;
      height: auto;
      object-fit: contain; 
   } 

   .image_title {
      margin-top: 70px;
      width: 640px
   }
   
   .info{
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      height: auto;
      gap: 0;
      justify-content: space-between;
      padding-bottom: 0;
   }
   
   .info__cta {
      max-height: none;
      padding-top: 4rem;
      max-width: 624px;
      padding-bottom: 0;
   }

   .cta__h2,
   .cta__buttons-item  {
      font-size: 2.188rem
   }

   .cta__logo-img {
      width: 448px;
      margin-top: 27px;
   }

   .cta__buttons {
      gap: 22px;
   }
   .cta__button-site {
        margin-bottom: 87px;
        height: 68px;
        width: 310px;
        border-radius: 34px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2.486rem;
   }

   .cta__buttons-item {
      max-width: 590px
   }
}


@media (max-width: 767px) {
   .image_title {
      padding: 0 20px
   }
   .info__cta {
      max-width: 469px
   }
   .cta__h2, .cta__buttons-item, .cta__button-site {
      font-size: 1.563rem
   }
   .cta__logo-img {
      width: 363px
   }
   .cta__buttons-item span {
      font-size: 0.75rem
   }
}

@media (max-width: 480px) {
   .image_title {
      padding: 0 20px;
   }
   .cta__h2, .cta__buttons-item, .cta__button-site {
      font-size: 1rem;
   }
   .info__cta {
      max-width: 346px;
   }
   .cta__button-site {
      height: 53px;
      width: 266px;
   }
   .cta__logo-img {
      max-width: 80%
   }
   .cta__buttons-item span {
      font-size: 0.5rem;
   }
}

@media (max-width: 360px) {
   .info__cta {
      max-width: 256px;
      padding: 10px;
   }
   .cta__button-site {
      width: 190px;
      margin-bottom: 20px;
   }
   .cta__h2, .cta__buttons-item, .cta__button-site {
      font-size: 0.813rem;
   }
   .cta__buttons-item span {
      font-size: 0.438rem;
   }
}
@media (min-width: 992px) and (max-width: 1439px) {
   .image_title {
      max-width: 400px;
      margin-top: 40px;
   }

   .info {
      gap: 20px;
   }

   .info__cta {
      max-width: 428px;
      padding: 1.25rem 1.5rem;
   }

   .cta__h2 {
      font-size: 1.375rem;
      padding: 0 0.5rem;
   }

   .cta__buttons {
      gap: 0.6vh;
      margin-top: 18px;
   }

   .cta__buttons-item {
      font-size: 1.375rem;
      padding: 0.688rem 1rem;
      min-height: 3.5rem;
   }

   .cta__buttons-item span {
      font-size: 0.688rem;
   }

   .cta__logo-img {
      width: 200px;
      margin-top: 15px;
   }

   .cta__button-site {
      margin-top: 15px;
      padding: 0.4rem 1.5rem;
   }
}