.main 
{
  position: relative;
  background: linear-gradient(120deg,#fff,#fff 62%,#FF725E  62%,#FF725E  100%);
  /* min-height: 100vh; */
  height: 100vh;
  display: flex;
  align-items: center;

  padding-right: 100px;
  padding-left: 100px;
  /* padding-top: 50px; */
}

.contentBx 
{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contentBx .text
{
  max-width: 800px;
}
.contentBx .text h2 
{
  color: var(--special-red);
  font-size: 6em;
}
.contentBx .text p 
{
  color: #333;
  font-size: 1.1em;
  line-height: 1.8em;
  /* text-align: justify; */
}

.imgBx img 
{
margin-right: 10px;
/* margin-left: 50px; */
max-width: 500px;
/* max-width: 300px; */
display: none;
}

.imgBx-mobile img 
{
margin-right: 10px;
margin-left: 50px;
max-width: 500px;
/* max-width: 300px; */
display: none;
}


.imgBx img.active 
{
display: block;
}


.dots 
{
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}
.dots span 
{
  position: relative;
  width: 10px;
  height: 30px;
  margin: 5px;
  cursor: pointer;
  display: inline-flex;
  background: rgba(255,255,255,0.25);
}
.dots span.active 
{
  background: #fff;
}


/* https://www.florin-pop.com/blog/2019/03/css-pulse-effect/ */
.blob {
	/* border-radius: 50%; */
	/* margin: 10px; */
	height: 20px;
	width: 20px;
	transform: scale(1);
}


.blob.red {
	background: rgba(255, 114, 94 );
	box-shadow: 0 0 0 0 rgba(255, 82, 82, 1);
	animation: pulse-red 2s infinite;
}

.blod.red:hover{
  background: #fff;
}

@keyframes pulse-red {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
	}
	
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
	}
	
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
	}
}

/* https://www.florin-pop.com/blog/2019/03/css-pulse-effect/ */


@media (max-width:991px){
  .main 
  {
    padding: 30px;
    background: #fff; 
    height: auto;     
  }

  .btn-nav {
    background-color: #FF725E !important;
    color:white;
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    font-weight: var(--font-semi-bold);
    transition: .3s;
  }

  .btn-nav:hover{
      background-color: #fff !important;
      color: #FF725E !important;
      box-shadow: 2px 2px 30px rgb(0 0 0 / 20%) !important;
  }

  .app 
  {
    display: none;
  }
  .contentBx 
  {
    /* margin: 100px 0; */
    flex-direction: column-reverse;
  }

  /* .imgBx{
    display: none;
  } */

  
  .imgBx-mobile img.active{
    display: block;
  }

  
  .imgBx-mobile img.active{
    margin: 0;
  }

  .imgBx img
  {
    margin: 0;
  }

  .dots
  {
    position: relative;
    flex-direction: row;
    top: initial;
    right: initial;
    transform: none;
    margin-top: 20px;
  }
  .dots span
  {
    background: #FF725E ;
    opacity: 0.2;
    width: 25px;
    height: 10px;
  }
  .dots span.active
  {
    background: #FF725E ;
    opacity: 1;
  }

  .contentBx .text
  {
    text-align: center;
  }
  .contentBx .text h2
  {
    font-size: 3em;
  } 
  .sci
  {
    position: absolute;
    bottom: 30px;
    display: flex;
    left: 50%;
    transform: translateX(-50%);
  }
}

.type{
    color:black;
    font-size: 3rem;
  }
  
  @media (max-width:600px) {

    .imgBx img{
      max-width: 360px;
      /* max-width: 235px; */
    }

    .imgBx-mobile img{
      max-width: 360px;
      /* max-width: 235px; */
    }

    .main{
      height: auto;
    }
  
    .contentBx .text h2{
      font-size:2em;
    }
    .type{
      font-size: 1.5rem;
    }
  }

  /* @media (max-width:600px) {

    .main{
      height: auto;
    }

  } */
  
  
  @media (max-width:1200px) {
    .contentBx .text h2{
      font-size:2em;
    }
    .type{
      font-size: 1.5rem;
    }
  }

  @media (min-width:767px){
    .contentBx 
    {
      margin: 35px 0;
    }
} 

@media screen and (max-width: 330px) {

  .imgBx img{
    max-width: 315px;
  }

}

