


/* .hero-main {
    background: url('../../images/home/hero_bgw.png');
    position: relative;
    min-height: 700px;
    border-radius: 1.25rem !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    max-height: calc(100vw * 0.5625);
    width: 100%;
    left: 0;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fade 5s linear infinite;
    -webkit-animation: fade-In 5s ease-in;
    -moz-animation: fade-In 5s ease-in;
    -o-animation: fade-In 5s ease-in;
    -ms-animation: fade-In 5s ease-in;
    flex-shrink: 0;
} */

.hero-main {
    position: relative;
    min-height: 700px;
    border-radius: 1.25rem !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* background-size: 100% 100%; */
    max-height: calc(100vw * 0.5625);
    width: 100%;
    left: 0;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: imageCrossfade 10s ease-in-out, background-image 4s ease-in-out;
    /* animation: imageCrossfade 104s infinite;
    animation-timing-function: ease-in-out;
    opacity: 0;
    transition: opacity 1s ease-in-out; */
}

/* @keyframes imageCrossfade {
    0%, 7.69% { background-image: url('../../images/canvawebimgs/home1.jpg'); }
    7.70%, 15.38% { background-image: url('../../images/canvawebimgs/home2.jpg'); }
    15.39%, 23.07% { background-image: url('../../images/canvawebimgs/home3.jpg'); }
    23.08%, 30.76% { background-image: url('../../images/canvawebimgs/home4.jpg'); }
    30.77%, 38.46% { background-image: url('../../images/canvawebimgs/home5.jpg'); }
    38.47%, 46.15% { background-image: url('../../images/canvawebimgs/home6.jpg'); }
    46.16%, 53.84% { background-image: url('../../images/canvawebimgs/home7.jpg'); }
    53.85%, 61.53% { background-image: url('../../images/canvawebimgs/home8.jpg'); }
    61.54%, 69.23% { background-image: url('../../images/canvawebimgs/home9.jpg'); }
    69.24%, 76.92% { background-image: url('../../images/canvawebimgs/home10.jpg'); }
    76.93%, 84.61% { background-image: url('../../images/canvawebimgs/home11.jpg'); }
    84.62%, 92.30% { background-image: url('../../images/canvawebimgs/home12.jpg'); }
    92.31%, 100% { background-image: url('../../images/canvawebimgs/home13.jpg'); }
  } */

.hero-main::before,
.hero-main::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50%; /* Adjust this value to control the gradient height */
  z-index: 0;
}

.hero-main::before {
    top: 0;
    border-radius: 1.25rem 1.25rem 0rem 0rem;
    /* background: linear-gradient(174deg, #18214B 0%, rgba(24, 33, 75, 0.10) 50.69%, rgba(24, 33, 75, 0.00) 100%); */
    /* background-image: linear-gradient(180deg, #18214B 0%, rgba(24, 33, 75, 0.10) 50.69%, rgba(24, 33, 75, 0.00) 100%); */
  }
  
  .hero-main::after {
    bottom: 0;
    border-radius: 0rem 0rem 1.25rem 1.25rem;
    /* background: linear-gradient(0deg, #18214B 0%, rgba(24, 33, 75, 0.00) 68.70%, rgba(24, 33, 75, 0.00) 100%); */
    /* background-image: linear-gradient(180deg, #18214B 0%, rgba(24, 33, 75, 0.10) 50.69%, rgba(24, 33, 75, 0.00) 100%); */
  }
  
  .hero-main::before,
  .hero-main::after {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }



.hero-text {
    /* display: block;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */

    color: white;
    z-index: 66;
}

.home_head_1 {
    font-family: var(--coco-gothic); 
    font-size: 1.1rem !important; 
    letter-spacing: 8px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9); */
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}

.home_head_2 {
    font-family: var(--coco-gothic); 
    font-size: 1.4rem; 
    letter-spacing: 11px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9); */
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}

.home_head_3 {
    font-family: var(--glacial-indifference); 
    font-size: 6rem;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9); */
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}

.home_head_4 {
    font-family: var(--coco-gothic-light); 
    font-size: 1.5rem; 
    letter-spacing: 10px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9); */
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}

@media (max-width: 400px) and (min-width: 300px) {
    .home_head_1 {
        font-size: 0.7rem !important; 
    }
    .home_head_2 {
        font-size: 0.9rem !important; 
    }
    .home_head_3 {
        font-size: 3.6rem;
    }
    .home_head_4 {
        font-size: 1rem;
        letter-spacing: 6px;
    }
}
@media (max-width: 620px) and (min-width: 401px) {
    .home_head_1 {
        font-size: 0.8rem !important; 
    }

    .home_head_2 {
        font-size: 1.1rem !important; 
    }
    .home_head_3 {
        font-size: 3.7rem;
    }
    .home_head_4 {
        font-size: 1.2rem;
        letter-spacing: 6px;
    }
}


.hero-bg {
    background: url('../../images/home/hero_bg.png');
    height: 100%;
    min-height: 100vh;
    border-radius: 1.8rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;


    justify-content: center;
    background-size: cover;
    /* flex-direction: row; */
    align-items: center;
    /* display: flex; */
    width: 100%;

    /* height: 810px; */
    /* min-height: 810px; */
    /* min-height: 100vh;
    border-radius: 1.8rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* margin-top: 5rem; */
    position: relative;
    width: 100%;
    left: 0;
    z-index: -1;

    

}


.adventure-img {
    border-radius: 1.25rem;
}


/* .hero-text {
    color: #fff;
    display: block;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */



#home-about {
    /* margin-left: 1rem; */
    /* margin-right: 1rem; */
    position: relative;
    background-image: url('../../images/home/BG.svg');
    background-repeat: no-repeat;
    background-position-y: bottom;
    padding: 0 1rem;

    /* background-position-x: -5%; */

}

.alaska-map-img{
    width: 100%;
    margin-right: 2rem;
}

.button-about-bg {
    /* bottom:6rem; */
    left: 0.5rem;
    position: absolute;
}

.home-about-right {
    border-radius: 2rem;
    /* margin-right: 2rem; */
    max-width: 100%;

}

.image-container {
    position: relative;
    width: 100%;
    height: 40rem;
    /* padding-bottom: 100%; */
    /* padding-bottom: 56.25%; */
    /* Set this to your desired aspect ratio (e.g. for 16:9 aspect ratio, use 56.25%) */
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



#home-about p {
    /* Web/Body/Regular */

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

    
}

.home-start-alaska {
    /* Blue/100 */

    background: rgba(24, 33, 75, 1);
    border-radius: 1.8rem;
    /* height:100vh; */
}

.home-alaska-rows {
    display: flex;flex-direction: column;
}

.home-alaska-description {
    margin-top: auto;margin-bottom:0;color: rgba(255, 255, 255, 0.6);
}

.home-adventure-alaska {
    /* height: 31.25rem; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* height: 100%; */
    border-radius: 1.25rem;
    
}

/* 
#home-aventure a {
    text-decoration: none;
    color: #fff;
    font-family: var(--playfair-display);
    font-weight: var(--font-weight-600);
    font-size: var(--body-font-size-16);
    line-height: var(--line-height-26);

} */

#home-aventure .line {
    /* Line 25 */

/* position: absolute; */
/* width: 376px; */
height: 0px;
/* left: 0px; */
/* top: 1950px; */

border: 1px solid rgba(255, 255, 255, 0.1);

}

#why-us {
    /* Orange/10 */

    background: rgba(248, 102, 49, 0.1);
    border-radius: 20px;
    background-image: url('../../images/home/hero_about_logo.png');
    background-repeat: no-repeat;
    /* background-position: bottom left; */
    background-position-x: -5%;
    background-position-y: bottom;

}

#why-us .why-us-objectives {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 1rem 1rem 1rem 1rem;
  
    
}

#why-us .why-us-circle {
    width: 2rem;
    height: 2rem;
    margin-top:0.5rem;
    margin-left:0.5rem;

    /* margin: 0.5rem 0.5rem 0.5rem 0.5rem; */

    /* Orange/100 */

    background: #F86631;
    border-radius: 2rem;
}

#why-us .why-us-comment {
    margin-top:0.5rem;
    
    /* margin: 0.5rem 0.5rem 0.5rem 0.5rem; */
    color: rgba(24, 33, 75, 0.7);
}

/* media query for smaller screens */
@media (max-width: 768px) {

/* .hero-text {
    color: #fff;
    display: block;
    text-align: center;
    position: relative;
    margin-top: 50%;
} */



#why-us{
    background-image: none;
}

.mx-5 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
}


.home-start-alaska.px-4 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }

#why-alaska .px-4{
    padding-left: 0rem !important;
    padding-right: 0rem !important;
}



#why-us .px-4{
    padding-left: 0rem !important;
    padding-right: 0rem !important;
}

#why-us .why-us-objectives {
    background: #FFFFFF;
    border-radius: 20px;
    /* padding: 0.25rem 0.25rem 0.25rem 0.25rem; */
  
    
}

#why-us .why-us-comment {
    width: 75%;
}

 #home-about .mx-3 {
    margin: 0rem !important;
 }

.mobile_padding {
    padding: 0rem;
}

.mobile_padding2{
    padding: 0rem;
    display: flex;
    justify-content: left;
}

.mobile_padding2 .btn-orange-border{
    padding: 1.125rem 1.344rem 1.125rem 1.344rem;
}

.mobile_padding_hero {
    justify-content: center;
} 
.btn-blue {
    padding:1rem !important;
}

}

@media (max-width:645px) {
    .mobile_padding2{
        justify-content: center;
    }
    .btn-blue{
        width: 50%;
    }
}


  /* Responsive styles for small mobile devices */
  @media (max-height: 480px) {
    
/* .hero-text {
    margin-top: 12%;
} */


  }
  
  /* Responsive styles for medium mobile devices */
  @media (min-height: 481px) and (max-height: 680px) {
    
/* .hero-text {
    margin-top: 28%;
} */
  }
    



  
  /* Responsive styles for small mobile devices */
  @media (max-width: 600px) {
   
#section-hero, .float-end {
    float: none !important;
}

#section-hero .float-start {
    float: none !important;
}
/* 
#home-aventure .btn-blue {
    width: 50%;
} */



  }
  
  .my-image {
    position: relative;
    z-index: 1;
    cursor: pointer;
  }
  
  .my-image.dragging {
    z-index: 2;
  }
  
  .my-image.dragging:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 3;
  }
  
  
  #image1 {
    clip-path: inset(0 75% 0 0);
  }
  
  #image2 {
    clip-path: inset(0% 0% 0% 0%);
  }
  
  #image3 {
    clip-path: inset(0 0 0 75%);
    z-index: 1;
  }
  
  @media (max-width:1214px){
    .button-about-bg{
        position: relative;
        bottom: 0;
    }
  }