/* about img css */

.image-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 20px;
}

.main-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.small-image {
  position: absolute;
  width: 200px;
  height: 174px;
  left: 250px;
  bottom: -20px;
  border-radius: 10px;
  border: 3px solid white;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.blue-line {
  position: absolute;
  width: 3px;
  height: 300px;
  background: #4285f4;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px;
}

/* Why Study in Russia css */



/* .section-services {
	font-family: "Poppins", sans-serif;
	background-color: #e6edf7;
	color: #202020;
	padding-top: 115px;
    padding-bottom: 120px;
} */

.section-services .header-section {
	margin-bottom: 34px;
}

.section-services .header-section .title {
	position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
	font-weight: 700;
    font-size: 32px;
}

.section-services .header-section .title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background-color: #007ec6;
    border-radius: 3px;
}

.section-services .header-section .title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
    transform: translateX(30px);
	width: 10px;
	height: 3px;
	background-color: #504f93;
    border-radius: 3px;
}

.section-services .header-section .description {
	font-size: 14px;
    color: #282828 !important;
}

.section-services .single-service {
    position: relative;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    overflow: hidden;
    height: 360px;
}

.section-services .single-service .content {
	position: relative;
	z-index: 20;
}

.section-services .single-service .circle-before {
    position: absolute;
    top: 0;
    right: 0px;
    transform: translate(40%, -40%);
    width: 150px;
    height: 150px;
    background-color: #007ec6;
    border: 6px solid #504f93;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 10;
    transition: all .6s;
}

.section-services .single-service:hover .circle-before {
	width: 100%;
	height: 100%;
	transform: none;
	border: 0;
	border-radius: 0;
	opacity: 1;
}

.section-services .single-service .icon {
	display: inline-block;
	margin-bottom: 26px;
    width: 70px;
    height: 70px;
    background-color: #007ec6;
    border-radius: 5px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all .3s;
}

.section-services .single-service:hover .icon {
	background-color: #fff;
	color: #007ec6;
}

.section-services .single-service .title {
    margin-bottom: 18px;
	font-weight: 700;
    font-size: 23px;
    transition: color .3s;
}

.section-services .single-service:hover .title {
	color: #fff;
}

.section-services .single-service .description {
    margin-bottom: 20px;
    font-size: 18px;
    transition: color .3s;
    color: #22262a;
}

.section-services .single-service:hover .description {
	color: #fff;
}

.section-services .single-service a {
	position: relative;
	font-size: 18px;
    color: #202020;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
}

.section-services .single-service:hover a {
	color: #fff;
}

.section-services .single-service a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #007ec6;
	transition: background-color .3s;
}

.section-services .single-service:hover a:after {
	background-color: #fff;
}

.lasttowbox{
    display: flex;
    justify-content: center;
}


/* The Best Course to Study in Russia for Indian Students css */


ol {
  --column-gap: 1rem;
  --row-gap: 2rem;
  --rocket-aspect: calc(134.13/196.24);
  --rocket-width: 3rem;
  --rocket-height: calc(var(--rocket-width) / var(--rocket-aspect));
  --flame-outer-color: #75a7ec;
  --flame-inner-color: #6a9be0d6;
  --number-circle-size: 2.5rem;
  --number-circle-border-size: 0.25rem;
  --number-line-height: 0.125rem;
  --number-line-length: calc(var(--rocket-width) / 2 + var(--column-gap) / 2);
  --number-line-dot-size: 0.25rem;
  padding-bottom: 5rem;
  list-style: none;
  display: grid;
  column-gap: var(--column-gap);
  row-gap: var(--row-gap);
  grid-template-columns: var(--rocket-width) 1fr;
  counter-reset: liCount;
  font-family: system-ui, sans-serif;
  color: white;
  overflow: hidden;
  width: min(45rem, 100%);
  margin-inline: auto;
}
@media (min-width: 30rem){
  wrapper { padding: 2rem }
  ol{ 
    --column-gap: 2rem;
    --rocket-width: 5rem;
    grid-template-columns: 1fr var(--rocket-width) 1fr;
  }
  ol .rocket{ grid-column: 2 !important }
  ol > li { 
    grid-column: 1/-1 !important; 
    width: calc(50% - var(--rocket-width) / 2 - var(--column-gap)) 
  }
  ol > li:nth-of-type(odd) { justify-self: end}
  ol > li:nth-of-type(even) { text-align: right}
  ol > li:nth-of-type(even):after{
    left: unset;
    right: calc(var(--circle-pos-x) * -1);
    --dot_pos_multiplier: -1
  }
  ol > li:nth-of-type(even)::before{
    right: unset;
    left: calc(100% + var(--column-gap) / 2);
    
  }
  
}
ol::after{
  content: "";
  grid-row: 1;
  grid-column: 1/-1;
}
ol .rocket{
  grid-row: 1;
  grid-column: 1;
  position: relative;
  isolation: isolate;
}
ol .rocket svg { width: var(--rocket-width); height: var(--rocket-height)}
ol .rocket::after{
  content: "";
  position: absolute;
  width: 50%;
  height: 200vh;
  top: calc(100% - var(--rocket-height) * .2);
  left: 25%;
  z-index: -1;
  background-image:
    radial-gradient(ellipse at center top, var(--flame-inner-color) 20%,transparent 50%),
    linear-gradient(to right, 
      transparent 20%, 
      var(--flame-outer-color) 40% , 
      var(--flame-inner-color) 50%,
      var(--flame-outer-color) 60%, 
      transparent 80%
    ),
    radial-gradient(ellipse at center top, var(--flame-outer-color) 35%,transparent 65%);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 
    100% calc(var(--rocket-height) * 0.4), 
    100%, 
    100% calc(var(--rocket-height) * 0.4);
}
ol > li {
  counter-increment: liCount;
  grid-column: -2;
  position: relative;
}
ol > li::after{
  content: counter(liCount, decimal-leading-zero);
  width: var(--number-circle-size);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: absolute;
  --circle-pos-x: calc(var(--number-circle-size) / 2 + var(--column-gap) + var(--rocket-width) / 2);
  left: calc(var(--circle-pos-x) * -1);
  top: calc(50% - var(--number-circle-size) / 2);
  background-color: #1075ff;
  font-weight: 600;
  --dot-size: calc(var(--number-circle-size) / -2 + var(--number-line-dot-size));
  box-shadow: inset 0 0 0 var(--number-circle-border-size) currentcolor,
  inset -0.125rem 0.125rem 0.25rem var(--number-circle-border-size) rgb(0 0 0 / .25),
  -0.125rem 0.125rem 0.25rem rgb(0 0 0 / .5),
  calc(var(--number-line-length) * var(--dot_pos_multiplier, 1)) 0 0 var(--dot-size) currentcolor;
}

ol > li::before{
  position: absolute;
  content: "";
  width: var(--number-line-length);
  height: var(--number-line-height);
  background-color: currentcolor;
  right: calc(100% + var(--column-gap) / 2);
  top: calc(50% - var(--number-line-height) / 2);
}

#rockettitles .title{
  font-size: 23px ;
  font-weight: 500 ;
  color: #007ec6;
}

#rockettitles .content{
  font-size: 18px;
}

.aeroplane-img{
  position: relative;
}
.aeroplane-img img{
  position: absolute;
  width: 200px;
  top: -1079px;
  left: 486px;
}



/* Get Admission to Russian Universities css  */

/* @media max-width(760px){
  .title{
    display: block;
    width: 100%
  }
  
} */


.vert-tab > div {
  margin-left: 10px;
  margin-right: 2px;
  width: 20%;
  cursor: pointer;
  height: 360px;
  transition: all 0.5s ease 0s;
  overflow: hidden;
  border-radius: 10px;
}
.recr-content {
  background: #007ec6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #ffffff !important;
  padding: 36px 28px;
  margin-top: 36px;
  border: 1px solid;
  color: #ffffff !important;

}
.recr-content h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #ffffff;
  white-space: nowrap;
  transform: rotate(269deg);
}
.work_items_content {
  display: none;
}
.vert_tab_image_wrrapeer {
  display: flex;
  align-items: center;
}
.vert-tab-content h2 {
  font-size: 74px;
  font-weight: 700;
  line-height: 81px;
  letter-spacing: 0em;
  text-align: left;
  color: #ffffff;
  margin-bottom: 30px;
}
.vert-tab-content h4 {
  font-size: 23px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #ffffff;
  margin-bottom: 20px;
}
.vert-tab-content p {
    /* font-family: "Poppins", sans-serif; */
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: left;
    max-width: 100%;
    color: #ffffff;
    margin-left: 0px;
    margin-right: auto;
}
.recr-content.active {
  width: 100%;
}
.recr-content.active {
  background: #007ec6;
  border-color: #ffffff;
  border-radius: 10px;
}
.recr-content.active h3 {
  display: none;
}
.recr-content.active .work_items_content {
  display: block;
}

.recr-content img {
  max-width: 100%;
  height: 426px;
}
.vert-tab {
  display: flex;
}

.best-course{
  width: 300px;
}
.best-course-title h3{
    font-weight: 700;
    font-size: 23px;
    color: #007ec6;
}

.rigth-arrow{
  position: relative;
}

.rigth-arrow img{
  position: absolute;
  width: 180px;
  left: 271px;
  top: 0px;
}
.rigth-arrow-two{
  position: relative;
}
.rigth-arrow-two img{
  position: absolute;
  width: 155px;
  left: 650px;
  top: 64px;
}

.right-arrow-4{
  position: relative;
}
.right-arrow-4 img{
  position: absolute;
  width: 200px;
  left: 872px;
  top: -66px;
}

.right-arrow-3{
  position: relative;
}

.right-arrow-3 img{
  position: absolute;
  width: 152px;
  left: 482px;
  top: 33px;
}

.right-arrow-5{
  position: relative;
}

.right-arrow-5 img{
  position: absolute;
  width: 190px;
  left: 40px;
  top: 10px;
}

.flexcommonone{
  display: flex;
  justify-content: space-evenly;
}


/* Work Opportunities css */


.service-container {
  width: 100%;
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
}

.service-container .service-box {
  width: 450px;
  text-align: center;
  padding: 0 0 30px 20px;
  position: relative;
}

.service-container .service-box::before {
  content: "";
  border: 3px dotted #007ec6;
  border-top-style: solid;
  border-bottom-style: solid;
  border-right: none;
  position: absolute;
  border-radius: 30px 0 0 30px;
  -webkit-border-radius: 30px 0 0 30px;
  -moz-border-radius: 30px 0 0 30px;
  -ms-border-radius: 30px 0 0 30px;
  -o-border-radius: 30px 0 0 30px;
  width: 35%;
  top: 90px;
  bottom: 7px;
  left: 0;
}

.service-container .service-icon {
  font-size: 40px;
  line-height: 95px;
  font-weight: 700;
  background-color: #fff;
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 5px 5px 10px #0000004d;
  position: relative;
  color: #007ec6;
}

.service-container .service-content {
  background-color: #fff;
  padding: 20px 10px;
  border: 3px solid #007ec6;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 5px 5px 10px #0000004d;
}

.service-container .service-content::before,
.service-container .service-content::after {
  content: "";
  position: absolute;
  background: #007ec6;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  top: 86px;
  left: 35%;
}

.service-container .service-content::after {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  top: auto;
  bottom: 4px;
}

.service-container h3 {
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 10px;
  text-decoration: none;
  color: #007ec6;
}

.service-container p {
  color: #0e0e0e;
  font-size: 18px;
  line-height: 30px;
  margin: 0px;
}

.service-container .service-box.red,
.service-container .service-box.red .service-title a,
.service-container .service-box.red .service-icon {
  color: #007ec6;
}

.service-container .service-box.red::before,
.service-container .service-box.red .service-icon,
.service-container .service-box.red .service-content {
  border-color: #007ec6;
}

.service-container .service-box.red .service-content::after,
.service-container .service-box.red .service-content::before {
  background-color: #007ec6;
}

@media(max-width:768px) {
  .service-container {
    flex-direction: column;
  }

  .service-container .service-box {
    width: 85%;
    margin: auto;
  }
}

.admission-requirment{
  color: #007ec6;
}


/* Language and Cultural Preparation for Study in Russia */

.language-courses-para{
  font-size: 17px;
  color: #0e0e0e;
}
.language-courses-head{
  color: #007ec6 !important;
}

.item__inner .icon img{
  border-radius: 10px;
}

#work-permits h3{
  font-size: 26px;
  font-weight: 600;
  color: #007ec6;
  margin-bottom:10px;
}

#work-permits p{
  font-size: 18px;
}
.last-para-main{
  margin-top: 40px;
  font-size: 18px;
}

.blog-picture img{
  border-radius: 15px;
  border-left: 5px solid #007ec6;
  border-right: 5px solid #007ec6;
  border:2px solid ;
}

.top-universtiy-russia h2{
  font-size: 32px;
  color: #007ec6;
  font-weight: 700;
}

.top-universtiy-russia p{
  font-size: 18px;
}

.top-universtiy-russia img{
  border:2px solid #007ec6;
  border-radius: 15px;
  width: 390px;
}

.top-university-paratwo{
  margin-top: 30px;
}

.shape-img{
  position: relative;
}
.shape-img img{
  position: absolute;
  width: 200px;
  top: -264px;
  left: -83px;
}

.shape-2{
  position: relative;
}

.shape-2 img{
  position: absolute;
  width: 235px;
  left: 971px;
  top: -131px;  
}
.campus-picture img{
  height: 610px;
}

@media (max-width: 575.98px) { 
  .shape-img{
    display: none;
  }
  .shape-2{
    display: none;
  }
  .rigth-arrow{
    display: none;
  }
  .rigth-arrow-two{
    display: none;
  }
  .rigth-arrow-3{
    display: none;
  }
  .rigth-arrow-4{
    display: none;
  }
  .rigth-arrow-5{
    display: none;
  }
  .best-course{
    display: flex !important;
    justify-content: center !important;
    width: 100%;
  }
  .vert-tab {
    display: flex;
    flex-direction: column;
}
.icon img{
  width: 100%;
  height: 100%;
}
.campus-picture img{
  width: 100%;
  height: 100%;
}
.campus-section-six .contents .campus-title, .video_tour-section-six .contents .video-title {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
}
.tag-canvas {
  width: 100% !important;
  max-width: 600px;
  height: 50vh;
  border: 1px solid #007ec6;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  margin-top: 30px !important;
}
.react_featured_online .item__inner .icon img {
  height: 170px;
}
.sno{
  display: none
}
.courses-section-six .coursesSlider-6, .university-table .active-table thead tr th {
  padding: 20px 20px !important;
}
.right-arrow-5{
  display: none;
}
.tag{
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 10px;
  height: 40px;
  font-size: 11px !important;
  text-transform: uppercase;
  color: white;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
.small-image {
  position: absolute;
  width: 150px;
  height: 150px;
  left: 186px;
  bottom: -7px;
  border-radius: 10px;
  border: 3px solid white;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
}


/* Admission Requirements for
Study in Russia */

:root {
  --color-pink: #007ec6;
  --color-orange: #007ec6;
  --color-blue: #007ec6;
  --color-green: #007ec6;
  --color-purple: #007ec6;
  --color-red: #007ec6;
}

/* body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f9fd;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
} */

.tag-canvas {
  width: 90%;
  max-width: 600px;
  height: 50vh;
  border: 1px solid #001d44;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.title-toolbox {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #001d44;
  text-transform: uppercase;
  margin: 0;
}

.tag {
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  height: 40px;
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

/* Custom colors for tags */
.tag:nth-child(2) {
  background-color: var(--color-pink);
}

.tag:nth-child(3) {
  background-color: var(--color-orange);
}

.tag:nth-child(4) {
  background-color: var(--color-blue);
}

.tag:nth-child(5) {
  background-color: var(--color-green);
}

.tag:nth-child(6) {
  background-color: var(--color-purple);
}

.tag:nth-child(7) {
  background-color: var(--color-red);
}

.tag:nth-child(8) {
  background-color: var(--color-green);
}

.admission-requirement-para{
  text-align: left;
  font-size: 18px;
  margin-top: 50px;
  text-align: center;
}
@keyframes shine {
    0% {
        filter: brightness(100%);
    }
    50% {
        filter: brightness(130%);
    }
    100% {
        filter: brightness(100%);
    }
}


.sno{
  display: none;
}


/* hexogen */


/* html {
  font-size: 16px;
}

:root {
  --shadow-color-gray: 0deg 0% 61%;
  --tab-group-br: 0.65rem;
  --tab-group-bs: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  --tab-nav-a-pt-pb: 2rem;
  --tab-panel-c: #686868;

  --shadow-elevation-high: 0.2px 0.9px 0.9px
      hsl(var(--shadow-color-gray) / 0.43),
    0.8px 3.8px 3.9px -0.5px hsl(var(--shadow-color-gray) / 0.41),
    1.5px 7.3px 7.5px -0.9px hsl(var(--shadow-color-gray) / 0.38),
    2.6px 12.9px 13.3px -1.4px hsl(var(--shadow-color-gray) / 0.36),
    4.5px 22px 22.7px -1.9px hsl(var(--shadow-color-gray) / 0.33),
    7.3px 36px 37.2px -2.3px hsl(var(--shadow-color-gray) / 0.31),
    11.5px 56.5px 58.4px -2.8px hsl(var(--shadow-color-gray) / 0.28),
    17.2px 84.9px 87.7px -3.2px hsl(var(--shadow-color-gray) / 0.26);
}

body {
  background-color: #fefefe;
  font-family: system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  padding: 0 0 5rem 0;
  color: #777;
}

*,
*::before,
*::after {
  box-sizing: border-box;
} */



/* GENERAL TAB STYLES */

.tab-group__title {
  text-align: center;
  margin: 0 0 4rem;
  color: #fff;
  mix-blend-mode: soft-light;
}

/* .tab-group {
  padding: 5rem 0;
  overflow-x: hidden;
} */

.hb-tabs {
  width: 95%;
  max-width: 700px;
  margin: 2rem auto;
  box-shadow: var(--tab-group-bs);
  background-color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.hb-tabs__nav {
  display: flex;
  justify-content: space-between;
  gap: 0;
  margin: 0;
  padding: 0;
}

.hb-tabs__nav-list-item {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  font-weight: normal;
  text-align: center;
}

.hb-tabs__nav-list-link {
  color: var(--tab-panel-c);
  padding: 1rem 2rem;
  text-decoration: none;
  display: block;
}

.hb-tabs__nav [aria-selected="true"] {
  position: relative;
}

.hb-tabs__nav [aria-selected="true"] {
  color: #000;
  font-weight: 700;
  background-color: #fff;
}

.hb-tabs__panel {
  padding: 2rem 3rem;
  display: block;
}

.hb-tabs__panel[aria-hidden="true"] {
  display: none;
}

.hb-tabs__panel p {
  color: var(--tab-panel-c);
}


/* TAB GROUP 4 */

/* .tab-group--4 {
  background-image: linear-gradient(to top, #cc208e 0%, #6713d2 100%);
} */

.tab-group--4 .hb-tabs {
  background-color: transparent;
  box-shadow: none;
}

.tab-group--4 .hb-tabs__nav {
  border-radius: 9999px;
  border-bottom: 0;
  padding: 0.5rem;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(
      304deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.14) 50%
    ),
    rgba(255, 255, 255, 0.04) 100%;
  box-shadow: rgba(50, 50, 93, 0.5) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.tab-group--4 .hb-tabs__nav .hb-tabs__nav-list-link {
  padding: 0.75rem 1.5rem;
  color: #fff;
  font-weight: 300;
}

.tab-group--4 .hb-tabs__nav .hb-tabs__nav-list-item {
  flex-grow: 1;
  letter-spacing: 0.5px;
}

.tab-group--4 .hb-tabs__nav .hb-tabs__nav-list-item [aria-selected="true"] {
  border-radius: 9999px;
  color: #6713d2;
  font-weight: 500;
}

.tab-group--4 .hb-tabs__panel[aria-hidden="true"] {
}

.tab-group--4 .hb-tabs__panel {
  padding: 2rem 3rem;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.tab-group--4 .hb-tabs__panel * {
  color: #fff;
}


.honeycomb {
  text-align: center;
}

.hexagon {
  display: inline-block;
  width: 220px; /* Adjust the width as necessary */
  position: relative;
  text-align: center;
  margin-bottom:138px;
}

.hexagon::before {
  content: '';
  display: block;
  padding-bottom: 100%; /* Creates the height of the hexagon */
  background-size: cover;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0% 25%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color:white;

}

.hexagon-content {
  position: absolute;
  width: 100%;
  z-index: 2;
  display: flex;
    flex-direction: row;
    justify-content: center;
}

/* Add styles for your headings here */
.hexagon h2, .hexagon h3 {
  font-size: 18px;
  color: black !important;
  padding: 90px 8px;
  z-index: 2;
  position: relative;
  line-height: 22px;
}
.ending{
  margin-top:50px;
  
}
