.detail-banner-section{
  background-color: var(--black);
  color: var(--white);
    padding: 4% 0;
}


.description-one, .description-two{
    font-size: 18px;
    line-height: 35px;
    font-weight: 300;
    color: #d6d6d6;
    width: 100%;
}

.projectbanner-title{
  font-size: 34px;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

/* box-styles */

.See-you-section {
  width: 100%;
  padding: 4% 0;
  color: var(--white);
  background-color: var(--black);
}


.see-you-left-side-inside-div {
  max-width: 300px;
  border: 2px solid var(--darkblue);
  background-color: var(--navyblue);
  height: 300px;
  border-radius: 5px;
  margin: 20px auto;
}

.see-you-icon-div {
  margin-left:10%;
  margin-top: 30px;
 }
 
 .see-you-icon-name {
  font-size: 18px;
  line-height: 24px;
  margin-top: 20px;
  font-weight: 600;
}

.see-you-icon-content {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  width: 80%;
  margin: auto;
  margin-top: 20px;
  color: #d6d6d6;
}

/* why-it-matters-style */

.why-it-matters-section{
  padding: 4% 0;
  background-color:#292929;
  color: var(--black);
}

.why-it-matters-title{
  text-align: center;
  padding-bottom: 4%;
}

.why-it-matters-div{
  border: 1px solid rgb(218, 218, 218);
  padding: 5%;
  height: 200px;
}

.why-it-matters-div {
  padding: 20px 20px;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(to right, rgba(12, 5, 18, 1), rgba(80, 33, 120, 1));
  color: white; 
  z-index: 1;
  overflow: hidden;
}

.whyItMattersPoint{
  font-weight: 600;
  font-size: 18px;
  
}

.whyItMatterContent{
  font-size: 16px;
  line-height: 30px;
}

/* Animated glowing border */
.why-it-matters-div::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 25px;
  background: conic-gradient(from var(--angle), rgba(0, 186, 255, 1), rgba(19, 199, 139, 1));
  z-index: -1;
  animation: spin 6s linear infinite;
}

.why-it-matters-div::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 18px;
  background: linear-gradient(to right, rgba(12, 5, 18, 1), rgba(80, 33, 120, 1));
  z-index: -1; 
  mix-blend-mode: normal; 
}

@keyframes spin {
  0% {
      --angle: 0deg;
  }
  100% {
      --angle: 360deg;
  }
}


#back-service{
  background-color: var(--black);
  color: var(--white);
  padding-bottom: 4%;
}


.bris-h1-h2-h5 {

  line-height: 1.83em;
  letter-spacing: 1;
  font-style: normal;
  padding-top: 6em;
  padding-right: 4em;
  color: white;
 
}

.bris-why {
  font-size: 60px;
  text-align: left;
 
  justify-content: center;
  padding-top: 30px;
  
  margin-right: 20px;
  padding-right: 0px;
  width: 100%;
}


.bris-3-4 {
  color: white;
  font-size: 18px;
  text-align: left;
 
  padding-top: 3%;
  padding-bottom: 15px;
  padding-left: 2%;
  font-weight: 300;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#border{
  border-top: 1px solid white;
}

#border-right{
  border-top: 1px solid white;
}


.bris-33 {
  color: white;
  font-size: 25px;
  text-align: left;
  float: right;

  justify-content: right;
  padding-top: 10%;
  padding-bottom: 15px;
  font-weight: 600;
  width: 100%;
}

.bris-34 {
  font-size: 18px;
  text-align: left;
  float: right;
  color: #d6d6d6;
  justify-content: right;
  padding-top: 6%;
  padding-bottom: 15px;
  padding-left: 15%;
  font-weight: 300;
  width: 100%;
}

/* results-syles */

.results-section{
  background-color: var(--black);
  color: var(--white);
  padding-top: 4%;
  padding-bottom: 2%;
}


.li-point{
  font-size: 18px;
    line-height: 35px;
    font-weight: 300;
  padding: 5px 0;
  padding-left: 15px;
  color: #d6d6d6;
}

/* call-to-action-style */

.call-to-action-section{
   background-color: var(--black);
   color: var(--white);
}


.call-to-action-description{
  font-size: 28px;
  margin-top:30px;
  line-height: 45px;
  font-weight: 300;
  width: 70%;
  color: #d6d6d6;
}

/* resut-section-styles */

.result-section{
  padding: 4% 0;
}

.result-heading{
  font-size: 52px;
  font-weight: 400;
  padding-top: 50px;
  padding-bottom: 20px;
}

.result-content{
  color: #d6d6d6;
  padding-top: 20px;
  padding-bottom: 30px;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid #d6d6d6;
}

.result-img-main-div{
   height: 100%;
   display: flex;
   justify-content: center;
}  

.result-img-div{
  height: 450px;
  width: 500px;
}

.result-img-div>img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 1280px){


  .see-you-left-side-inside-div {
    max-width: 260px;
    height: 260px;
   
  }

  .see-you-icon-div {
    margin:0 20px;
    margin-top: 30px;
   
   }

   .see-you-icon-name {
    font-size: 16px;
    margin: 5px;
    margin-top: 20px;
  }

  .see-you-icon-content {
    font-size: 12px;
    margin-top: 0px;
    height: 150px;
  }
  
/* why-it-matters-styles */

.why-it-matters-section{
  padding-bottom: 40px;
}



.whyItMattersPoint{
  font-weight: 600;
  font-size: 16px;
}

.whyItMatterContent{
  font-size: 14px;
  line-height: 26px;
}

  /* collabratve-style */

.collaborate-heading{
  font-size: 47px;
 
  line-height: 64px;
}

.collaborate-content{
  color: #d6d6d6;
 font-size: 26px;
 letter-spacing: 1px;
 line-height: 45px;
}

.discussion-btn{
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  width: 300px;
  height: 50px;
}

.discussion-btn::after, .discussion-btn::before{
  padding: 26px 151.5px;
}
}





@media screen and (max-width: 800px){

  .detail-banner-section{
 padding-top: 100px;
  }

  .oru-service-heading{
    font-size: 34px;
   }

.our-service-content{
  font-size: 15px; 
   }

   .project-title{
    font-size: 24px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 15px;
}

.description-one, .description-two{
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  width: 100%;
}

/*  */

.See-you-section{
  padding-top: 70px;
}

.see-you-left-side-inside-div {
  max-width: 300px;
  height: 300px;
  margin: 20px auto;
}

.see-you-icon-div {
  margin-top: 30px;
 }
 
 .see-you-icon-name {
  font-size: 18px;
  line-height: 24px;
}

.see-you-icon-content {
  font-size: 14px;
  margin-top: 20px;
}

/* why-it-matters-styles */

.why-it-matters-section{
  padding-bottom: 40px;
}

.why-it-matters-div{
  margin: 19px 0;
  padding: 30px;
}

.why-it-matters-title{
  text-align: center;
  font-size: 25px;
  
}

.whyItMattersPoint{
  font-weight: 600;
  font-size: 16px;
  
}

.whyItMatterContent{
  font-size: 14px;
  line-height: 28px;
}

#back-service{
  padding-bottom: 50px;
}

#border-right{
  border: none;
}

.bris-why {
 padding-top: 0;
  font-size: 30px;
  justify-content: center;
  padding-right: 0px;
  width: 100%;
  margin-bottom: 0px;
  
}

.bris-h1-h2-h5 {
  padding-left: 1em;
    line-height: 4em;
    letter-spacing: 1;
    margin-top: 0px;
    padding-right: 1em;
}


.bris-33 {

  font-size: 20px;
  font-weight: 600;
  width: 100%;
}

.bris-34 {
 line-height: 30px;
  font-size: 16px;
  padding-left: 5%;
  font-weight: 300;
  width: 100%;
}


.results-section{
padding-top: 50px;
padding-bottom: 30px;
}

.results-title{
  margin-bottom: 20px;
  font-size: 28px;
}

.result-content{
  font-size: 17px;
  line-height: 30px;
}


.call-to-action-description{
  width: 100%;
}

.call-to-action-title{
font-size: 30px !important;
} 

/* Discussion-style */

.collabrate-section{
  padding:6% 0;
  padding-top: 25%;
}

.collaborate-heading{
  font-size: 40px;
  line-height: 50px;
width: 100%;
text-align: center;
}

.collaborate-content{
  text-align: center;
  font-size: 18px;
  line-height: 29px;
  margin-top: 30px;
}

.collaborate-content>span{
  display: inline;
}

.discussion-btn-div{
  margin: 50px 0;
  display: flex;
  justify-content: center;
}

.discussion-btn{
  font-size: 14px;
 padding:  0 0;
  width: 190px;
}


.discussion-btn::after, .discussion-btn::before{
  padding:  27px 97px; 
}


}

@media screen and (max-width: 400px){

  
.description-one, .description-two{
  font-size: 14px;
  line-height: 30px;
}

  .result-content{
    font-size: 17px;

    line-height: 30px;
  }

  .bris-34 {
    line-height: 25px;
     font-size: 14px;
     padding-top: 5px;
     padding-bottom: 5px;
   }
}

@media screen and (max-width: 360px){

  .why-briston-img-main-div{
    height: auto;
    max-width: 300px;
    margin: 5% 0;
  }
  
  .why-briston-img-div{
    width: 270px;
    height: 185px;
    margin: auto;
  }

  }