/* 2024 Lamding Page styles start */

.content-block {
  padding: 0 5px;
}

.ceo-mt {
  margin-top: 60px;
}

.ceo-mb {
  padding-bottom: 35px;
}

.ceo-message-content {
  position: relative;
  background-color: #000;
  border-radius: 20px;

  &::before {

    content: "";
    background-image: url(../images/landing-page-images2024/ceo-bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 39%;
    height: 100%;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    z-index: 9;
    background-position: top left;

  }
}

    .ceo-message-text p:first-child {
        font-size: 26px;
        font-weight: 700;
        line-height: 30px;
        color: #ffcc00;
        margin: 26px 0 20px 0;
    }

.ceo-message-text p:nth-child(2) {
        font-weight: 500;
    }

    .ceo-message-text p:nth-child(3) {
        font-weight: 300;
      
    }

    .ceo-message-text p:nth-child(4) {
        font-weight: 300;
    }

    .ceo-message-text {
      position: relative;
      z-index: 11;
	      padding: 30px;
    }

    .bottom-image {
      width: 100%;
    }

    .ceo-image {
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;
      position: relative;
      z-index: 11;
    }

.our-reporting-suite {
  background-color: #000;
  padding: 40px 20px 0 20px;
}

.divider {
  position: relative;
  border-bottom: 3px solid #FFCC00;

  &::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background-color: #FFCC00;
    width: 15px;
    aspect-ratio: 1/1;
    top: -6px;
    left: -1px;
  }

  &::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background-color: #FFCC00;
    width: 15px;
    aspect-ratio: 1/1;
    top: -6px;
    right: -1px;
  
}
}

.reporting-suite-heading {
  font-size: 42px;
  font-weight: 500;
}

.report-suite-slider {
  position: relative;
}

.ceo-message-img-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.suite-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  gap: 10px;
}

.suite-slider-items {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.suite-slider-item {
  flex: 0 0 auto;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: none;
  cursor: pointer;
}

.suite-slider-item.active {
  opacity: 1;
  display: block;
}

.mtn-group-history {
  background-color: #FFCC00;
  padding: 40px 0;
}

.mtn-group-history-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.mtn-group-history-box h5 {
  font-size: 22px !important;
  font-weight: 500;
  color: #000;
}

.mtn-group-history-box {
  width: 100%;
  min-height: 200px;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 10px;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 35%);
}

.mtn-group-history-box p {
  color: #000;
  font-size: 20px;
  font-weight: 400;
}

.mtn-group-history-box a {
  color: #000 !important;
  text-decoration: none !important;
  font-size: 20px;
  font-weight: 400;

  &:hover {
    text-decoration: underline !important;
  }
}

a.download-report-box {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid #FFCC00;
  border-radius: 10px;
  padding: 10px 46px 10px 10px;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
  text-decoration: none !important;
  cursor: pointer;
  overflow: hidden;

  &:hover {
    scale: 1.02;
    transition: all 0.2s ease;
  }
}

/* Image */
a.download-report-box img {
  width: 120px;
  flex-shrink: 0;
}

/* Arrow Icon */
a.download-report-box::before {
  content: "";
  background-image: url(../images/landing-page-images2024/right-arrow-downloads.svg);
  background-size: 28px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 3;
}

a.download-report-box:hover::before,
a.download-report-box:hover::after {
  width: 8%;
  transition: width 0.2s ease-in;
}

/* Vertical Borders on Text */
a.download-report-box p {
  font-size: 14px;
}

a.download-report-box p::before,
a.download-report-box p::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0%;
  height: 0%;
  opacity: 0;
  z-index: 2;
  transition: width 0.2s ease-in, height 0.15s 0.2s linear, opacity 0s 0.35s;
}

a.download-report-box p::before {
  left: 0;
  border-left: 1px solid #FFCC00;
  border-bottom: 1px solid #FFCC00;
  border-bottom-left-radius: 10px;  
}
a.download-report-box p::after {
  right: 0;
  border-right: 1px solid#FFCC00;
  border-bottom: 1px solid #FFCC00;
  border-bottom-right-radius: 10px;
}

a.download-report-box:hover p::before,
a.download-report-box:hover p::after {
  width: 50%;
  height: 100%;
  opacity: 1;
  transition: height 0.2s 0.2s ease-in, width 0.2s 0.4s linear, opacity 0s 0.2s;
}

.tabs-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 26px 0 65px 0;
}

.tab-item-header {
  padding: 5px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  max-height: 48px;
  width: 260px;
  text-align: center;
}

.tab-item-header.active {
  background-color: #FFCC00;
  color: #000;
  font-weight: 600;
}

.tab-item-header:not(.active) {
  border: 2px solid #000;
  color: #000;

  &:hover {
    background-color: rgba(255, 204, 0, 0.1);
  }
}
.whitelinedbox-div
{
 	border-radius: 30px;
	border-top:10px solid #fff;
	border-left:10px solid #fff;
}
.tab-content-container {
  position: relative;
  border-radius: 30px;
        border: 3px solid #FFCC00;
        border-right: 0;
        border-bottom: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: 0;
  padding: 0px;

  &::before {
           content: "";
           position: absolute;
           border-radius: 50%;
           background-color: #FFCC00;
           width: 15px;
           aspect-ratio: 1/1;
           bottom: 0;
           left: -8px;
        }

        &::after {
          content: "";
          position: absolute;
          border-radius: 50%;
          background-color: #FFCC00;
          width: 15px;
          aspect-ratio: 1/1;
          top: -8px;
          right: 0;
        
        }
}

.tab-item-content {
  display: none;
  min-height: 45vh;
}

.tab-item-content.active {
  display: block;
  min-height: 45vh;
}

.newsletter-preview {
  text-align: center;

  img {
    border-bottom: 2px solid #C2C2C2;
    border-radius: 10px;
  }
}

.newsletter-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
}

a.newsletter-button {
  position: relative;
  padding: 8px 25px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: 2px solid #000;
  min-width: 400px;
  margin: 0 auto;
  color: #000 !important;
  text-align: start;

  img {
    width: 26px;
    height: 26px;
  }

  &:hover {
    scale: 1.02;
    color: #fff;
  }

  &::before {
    content: "";
    background-image: url(../images/landing-page-images2024/arrow-right-black.svg);
    background-size: 28px;
    background-repeat: no-repeat;
    position: absolute;
    top: 8px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

.w-30 {
  width: 95%;
}

.w-33 {
  width: 33%;
}

.mt-30 {
  margin-top: 30px !important;
}

.rep-pb {
  padding-bottom: 100px;
}

/* 2024 Lamding Page styles end */

a.home-btn{ list-style: none; margin-bottom: 35px; padding: 13px 0 13px 15px; font-size:16px; position: relative;display: inline-block; border: 2px solid transparent; width: 270px; margin-right:10px; margin-top: 20px; border-radius:30px;transition: .3s all; background: #fff; position: relative; text-decoration: none!important; border: 3px solid #FFCC00; color: #000!important;}
a.home-btn:hover{background: linear-gradient(0deg, rgba(0,0,0,1) 17%, rgba(255,204,0,1) 100%); color: #fff!important;}
a.home-btn i {float: right;position: relative;right: 15px;-moz-transition: all 0.3s ease;  -o-transition: all 0.3s ease;    -webkit-transition: all 0.3s ease;   transition: all 0.3s ease; top: 3px;color: #000!important;}
a.home-btn:hover i{right: 10px; transition: 0.3s ease-in; color: #fff!important}



ul.home-list{list-style-type:none;padding:0;margin:0;width:90%;margin-top:40px}

ul.home-list a:hover{text-decoration:none !important}

ul.home-list li{border-bottom:1px solid #4A4A4A;color:#fff;position:relative;margin-bottom:10px;font-size:20px !important;padding-bottom:15px}
ul.home-list li:after{content:'\e93c';font-family:'icomoon';position:absolute;right:0;top:0px;color:#ffffff;font-size:20px;transition: all 0.5s ease-in-out;}

ul.home-list li:hover{border-color:#FAD346; transition: all 0.5s ease-in-out;}

ul.home-list a:hover li:after{right:-10px; transition: all 0.5s ease-in-out;  color: #FAD346;}

.home-list a{text-decoration: none !important;}
.home-fin-block{ padding:90px 40px}
.home-downloads-img{ float: right;   margin-top: -135px;}

.home-downloads-block{background: #000; min-height: auto; padding: 0;}

.home-fin-block h4 {
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 25px;
    border-bottom: 1px solid #FFCC00;
}
.mtn-home-banner {
      background-image: url(../images/home-banner.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      object-fit: contain;
    }

    .vertical-white-box {
      background-color: #FFFFFF;
      padding: 70px;
    }

    .align-txt-btm {
      position: absolute;
      bottom: 12%;
    }

    .custom-annual-txt {
      font-size: 65px !important;
      font-weight: bold;
      color: #FFCC00;
      line-height: 0.8 !important;
    }

    .for-the-year {
      font-size: 30px !important;
      color: #000000;
    }
    .custom-mtn-pb{
      padding-bottom: 26%;
    }
	
	.ralphs-block{border:5px solid #FFCC00;min-height:470px;border-radius: 0 100px 0 0; background:#1A1818;background-image:url(../images/home-bg.png);background-repeat: no-repeat;margin:30px 0;position:relative}
.ralphs-block-text{padding:70px 50px 30px 0;color:#fff;font-size:30px}
.intro-white{font-size: 26px !important; color: #fff; line-height: 1.3 !important; text-align: left !important;}
.ralph-img{position:absolute;top:-370px;left: 80px;}
.ralph-img2{display:none}


    @media screen and (max-width:991px) {


a.download-report-box {
         justify-content: start;
      }

      .w-30 {
        width: 30%;
        margin-right: 0;
        margin-bottom: 14px;
    }

    .mtn-group-history-box {
      min-height: unset;
  }
	
	.ralph-img2 {display:block; position: relative; top: 23px;}
.ralph-img{display:none}

      .mtn-home-banner{
        display: none;
      }
      .content-block{
        padding: 0 20px;
      }
      .mobile-home-banner{
      display: block !important;
      
    }
    .vertical-white-box{
     padding: 10px;	 
	 margin-bottom:30px
    }
    .custom-annual-txt {
      text-align: unset !important;
      font-size: 45px !important;
    }
    .for-the-year {
      text-align: unset !important;
      font-size: 25px !important;
    }
    .custom-mtn-pb{
	display:none;
      padding-bottom: 0;
    }
    }

@media screen and (max-width:768px) {

.ralphs-block-text {padding: 60px 50px 30px 30px;}

    .home-fin-block{padding:30px 40px}
    .home-downloads-img{ margin-top: 0px;}  
}