.body-wrapper {
  overflow-x: hidden;
}

section.p-o-hero {
    padding: 74px;
    background: #f5f6f9;
    position: relative;
    z-index: 2;
}

.container-box {
  max-width: 1400px;
  margin: 0 auto;
}

section.p-o-hero::before {
  content: "";
  background: #f5f6f9;
  position: absolute;
  width: 150vw;
  height: 100%;
  top: 0;
  bottom: 0;
  left: -50vw;
  z-index: -1;
}

.p-o-hero-section-st {
    display: flex;
}

.p-o-hero-section-st-center {
  flex-direction: column;
  text-align: center;
}

.p-o-hero-heading {
    min-width: 500px;
}

.p-o-hero-heading > h1 {
    font-size: 65px;
    font-weight: bold;
    color: #0A3B85;
}

.p-o-hero-heading__small {
  flex: 0 0 50%;
}

.p-o-hero-heading__small > h1 {
  font-size: 36px;
  line-height: 1.375;
}

.p-o-hero-section-nd {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
	  margin: 50px 0 0 0;
}

.p-o-hero-section-nd .p-o-hero-grid .hide-arrow {
	display: none;
}

.p-o-hero-grid>h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    position: absolute;
    top: -20px;
    background: black;
    font-size: 15px;
    border-radius: 20px;
    padding: 10px 20px;
    left: 50%;
    transform: translateX(-50%);
}

.p-o-hero-grid .p-o-hero__card-content > p {
    text-align: center;
    border-bottom: 2px solid rgba(255,255,255, 0.25);
	  margin-bottom: 0;
	  padding: 8px 0 10px 0;
  }
}

.p-o-hero-sub {
    text-align: center;
/*     font: normal normal normal 31px/34px Effra; */
    font: normal normal normal 31px/34px Montserrat; 
    letter-spacing: 0px;
    color: #FFFFFF;
}

p.p-o-hero-sub {
    border: none !important;
    text-align: center;
    font: normal normal normal 1.7em Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    height: 180px;
}

.p-o-hero-grid {
    padding: 40px 20px 30px 20px;
    color: white;
    position: relative;
}

.p-o-hero-grid img {
    position: absolute;
    right: -25px;
    top: 20%;
    z-index: 1;
    width: 50px;
}

.p-o-hero-grid:last-child img {
  display: none;
}

p.p-o-hero-sub {
    padding-bottom: 0 !important;
    border: none !important;
}

.p-o-hero__card-tg-icon {
  display: none;
  cursor: pointer;
  width: max-content;
  margin: 0 auto;
}

.p-o-hero__card-tg-icon svg {
  fill: #fff;
  width: 27px;
}

.p-o-hero__section-btn {
  display: block;
  text-align: center;
  padding: 17px;
  border: 2px solid #418FDE;
  border-radius: 10px;
  width: max-content;
  margin: 50px auto 0 auto;
  cursor: pointer;
  text-decoration: none !important;
  transition: 250ms ease-in-out;
}

.p-o-hero__section-btn:hover {
  background: #418FDE;
  color: #fff;
}

@media screen and (max-width: 1023px) {
	.p-o-hero-section-nd {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
	  margin: 50px 0 0 0;
}
	
	.p-o-hero-section-st {
    display: flex;
			flex-direction: column;
	}
}

@media screen and (max-width: 991px) {
  p.p-o-hero-sub {
    height: auto;
  }
		.p-o-hero-section-nd {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
	  margin: 50px 0 0 0;
  }
  
  .p-o-hero-grid:nth-child(2n) img {
    display: none;
  }
}

@media screen and (max-width: 860px) {
		.p-o-hero-heading {
    min-width: unset;
}
	.p-o-hero-heading > h1 {
    font-size: 36px;
    font-weight: bold;
}
  
  .p-o-hero-heading__small > h1{
    font-size: 36px !important;
  }
/* 	.p-o-hero-section-nd {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
	  margin: 50px 0 0 0;
} */
	
	.p-o-hero-section-st {
    display: flex;
			flex-direction: column;
	}
}

@media screen and (max-width: 767px) {
  
  .p-o-hero__card-tg-icon {
    display: block;
  }
  
	.p-o-hero-heading > h1 {
    font-size: 48px;
    font-weight: bold;
}
	.p-o-hero-section-nd {
    display: grid;
    grid-template-columns: repeat(1, minmax(0,1fr));
	  margin: 50px 0 0 0;
    grid-row-gap: 30px;
}
	
	.p-o-hero-section-st {
    display: flex;
			flex-direction: column;
	}
  section.p-o-hero {
    padding: 74px 40px;
    background: #f5f6f9;
  }
  
  .p-o-hero-grid .p-o-hero-sub {
    font-size: 22px !important;
  }
  
    .p-o-hero-grid img {
      display: none;
   }
  
  .p-o-hero__card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: 200ms ease-in-out;
  }
  
  .p-o-hero__card-content.active {
    max-height: 700px;
  }
  
  .p-o-hero__card-tg-icon {
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}
.p-o-hero__card-tg-icon.icon-rotate {
    -moz-transform:rotate(180deg);
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
  }
  
  .p-o-hero-grid .p-o-hero__card-content > p {
      width: 100%;
    }
  }

@media screen and (max-width: 450px) {
  section.p-o-hero {
    padding: 74px 28px;
  }
}


