.banner-home-outer{
  position:relative;
  overflow:hidden;
}
.banner-home-outer .banner-home-section{
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
  min-height:700px;
}
.banner-home-outer .content-wrapper{
  max-width:1280px;
  margin:0 auto;
  width:100%;
  position:relative;
  z-index:2;
}
.banner-home-outer .right-section {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1;
}
.banner-home-outer .left-section {
  width:100%;
  text-align:center;
  padding:120px 20px 80px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.banner-home-outer .right-image {
  width:100%;
  height:100%;
  position:relative;
}
.banner-home-outer .right-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  mix-blend-mode:normal;
}
.banner-home-outer .right-image::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(10,14,24,0) 0%, rgba(10,14,24,0.08) 25%, rgba(10,14,24,0.08) 75%, rgba(10,14,24,0) 100%),
    linear-gradient(180deg, rgba(10,14,24,0.45) 0%, rgba(10,14,24,0.15) 30%, rgba(10,14,24,0.3) 55%, rgba(10,14,24,0.45) 85%, rgba(10,14,24,0.55) 100%);
  z-index:1;
}
.banner-home-outer .right-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 90% 100% at 50% 45%, rgba(10,14,24,0) 0%, rgba(10,14,24,0.25) 100%);
  z-index:1;
}
.banner-home-outer .banner-cta {
  display:flex;
  gap:21px;
  justify-content:center;
}
.banner-home-outer .top-banner-text{
  color:#677489;
  font-family:Hind;
  font-size:16px;
  font-style:normal;
  font-weight:700;
  line-height:26px;
  margin-bottom:10px;
  text-align:center;
}
.banner-home-outer .banner-title h1{
  background:linear-gradient(90deg,#7d8da6 0%, #ffffff 35%, #ffffff 65%, #7d8da6 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  font-family:Montserrat;
  font-size:60px;
  font-style:normal;
  font-weight:700;
  line-height:66px;
  margin-bottom:17px;
  text-align:center;
}
.banner-home-outer .banner-title h2{
  background:linear-gradient(90deg,#7d8da6 0%, #ffffff 35%, #ffffff 65%, #7d8da6 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  font-family:Montserrat;
  font-size:45px;
  font-style:normal;
  font-weight:700;
  line-height:53px;
  margin-bottom:19px;
  text-align:center;
}
.banner-home-outer .banner-description p{
  color:#cdd4e0;
  font-family:Hind;
  font-size:20px;
  font-style:normal;
  font-weight:400;
  line-height:26px;
  margin-bottom:30px;
  text-align:center;
  max-width:780px;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-home-outer .top-banner-text,
.banner-home-outer .banner-title,
.banner-home-outer .banner-description,
.banner-home-outer .banner-cta {
  animation: reveal-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 50%;
}

.banner-home-outer .top-banner-text {
  animation-range: entry 0% entry 35%;
}
.banner-home-outer .banner-title {
  animation-range: entry 5% entry 45%;
}
.banner-home-outer .banner-description {
  animation-range: entry 10% entry 55%;
}
.banner-home-outer .banner-cta {
  animation-range: entry 15% entry 65%;
}

@supports not (animation-timeline: view()) {
  .banner-home-outer .top-banner-text,
  .banner-home-outer .banner-title,
  .banner-home-outer .banner-description,
  .banner-home-outer .banner-cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/*************Responsive Styles*****************/
/***************iPhone Portrait**************/
@media only screen and (max-width:767px) and (min-width:220px){
  .banner-home-outer .left-section {
    padding:80px 15px 60px 15px;
  }
  .banner-home-outer .banner-home-section{
    display:block;
    min-height:auto;
  }
  .banner-home-outer .right-section {
    width:100%;
  }
  .banner-home-outer .banner-cta {
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  .banner-home-outer .left-cta {
    margin-bottom:26px;
  }
  .banner-home-outer .banner-title h1{
    font-size:40px;
    font-style:normal;
    font-weight:700;
    line-height:50px;
    margin-bottom:17px;
  }
  .banner-home-outer .banner-description p{
    margin-bottom:26px;
  }
  .banner-home-outer .cta_button {
    display:block;
  }
  .banner-home-outer .white-button {
    background-color:#FFFFFF80;
    border:1px solid #F59C00;
    border-radius:10px;
    color:#143041;
    font-family:Montserrat, sans-serif;
    font-size:18px;
    font-style:normal;
    font-weight:600;
    padding:20px 30px;
    text-decoration:none;
    text-transform:none;
    line-height:19.8px;
    display:block;
    text-align:center;
  }
}
/**********************iPhone Landscape*************/
@media only screen and (max-width:767px) and (min-width:480px){
  .banner-home-outer .right-image img {
    width:100%;
    margin:auto;
  }
}
@media only screen and (max-width:920px) and (min-width:767px){
  .banner-home-outer .banner-title h1 {
    font-size:48px;
    font-style:normal;
    font-weight:700;
    line-height:58px;
    margin-bottom:17px;
  }
  .banner-home-outer .left-section {
    padding-top:60px;
    padding-bottom:60px;
  }
}
@media only screen and (max-width:1269px) and (min-width:480px){
  .banner-home-outer .banner-cta {
    display:flex;
    flex-direction:column;
    gap:20px;
  }
}
@media only screen and (max-width:1350px) and (min-width:768px){
  .banner-home-outer .banner-home-section{
    padding:0px 15px;
  }
}
@media only screen and (max-width:1269px) and (min-width:968px){
  .banner-home-outer .banner-home-section{
    padding:0px 15px;
  }
}