/* Header icons */
.icon-home{
  content: url("../images/icons/home_ic.png");
  width: 18px;
  transition: 0.3s;
}
.mainmenu-nav .mainmenu > li > a:hover .icon-home, .mainmenu-nav .mainmenu > li > a.active .icon-home{
  content: url("../images/icons/home_ic_ac.png");
  width: 18px;
}
.icon-facebook{
  content: url("../images/icons/facebook_ic.png");
  width: 11px;
  transition: 0.3s;
}
.icon-facebook:hover, .icon-facebook:active, .icon-facebook:focus{
  content: url("../images/icons/facebook_ic_ac.png");
  width: 11px;
  transition: 0.3s;
}
.icon-linkedin{
  content: url("../images/icons/linke_ic.png");
  width: 20px;
  transition: 0.3s;
}
.icon-linkedin:hover, .icon-linkedin:active, .icon-linkedin:focus{
   content: url("../images/icons/linke_ic_ac.png");
  width: 20px;
  transition: 0.3s;
 }
.icon-instagram{
  content: url("../images/icons/instagram_ic.png");
  width: 20px;
  transition: 0.3s;
}
.icon-instagram:hover, .icon-instagram:active, .icon-instagram:focus{
  content: url("../images/icons/instagram_ic_ac.png");
  width: 20px;
}
.icon-x{
  content: url("../images/icons/x_ic.png");
  width: 20px;
  transition: 0.3s;
}
.icon-x:hover, .icon-x:active, .icon-x:focus{
  content: url("../images/icons/x_ic_ac.png");
  width: 20px;
}
/* footer bg img */
.footer-bg-img{
  background-image: url(../images/footer/footer_bg_img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.footer_logo img{
  width: 200px;
}
.footer_icon_ln{
  content: url("../images/icons/footer_icon_ln.png");
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
.footer_icon_ln:hover{
  content: url("../images/icons/footer_icon_ln_act.png");
  width: 40px;
  height: 40px;
}
.footer_icon_ins{
  content: url("../images/icons/footer_icon_ins.png");
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
.footer_icon_ins:hover{
  content: url("../images/icons/footer_icon_ins_act.png");
  width: 40px;
  height: 40px;
}
.footer_icon_x{
  content: url("../images/icons/footer_icon_x.png");
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
.footer_icon_x:hover{
  content: url("../images/icons/footer_icon_x_act.png");
  width: 40px;
  height: 40px;
}
.footer_icon_fb{
  content: url("../images/icons/footer_icon_fb.png");
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
.footer_icon_fb:hover{
  content: url("../images/icons/footer_icon_fb_act.png");
  width: 40px;
  height: 40px;
}

/* alt page icons */

.t_fans_icon{
  content: url("../images/icons/tennos_fans.png");
  width: 90px;
  height: 90px;
  transition: 0.3s;
}
.t_players_icon{
  content: url("../images/icons/tennos_players.png");
  width: 90px;
  height: 90px;
  transition: 0.3s;
}
.t_market_icon{
  content: url("../images/icons/tennos_market.png");
  width: 90px;
  height: 90px;
  transition: 0.3s;
}
.service-card-4:hover .t_players_icon{
  content: url("../images/icons/tennos_players_hvr.png");
  width: 90px;
  height: 90px;
  transition: 0.3s;
}
.service-card-4:hover .t_market_icon{
  content: url("../images/icons/tennos_market_hvr.png");
  width: 90px;
  height: 90px;
  transition: 0.3s;
}

/* Footer FAQ */
.accordion {
  width: 100%;
  margin: auto;
  padding: 32px 20px;
  background-color: #ffffff33;
  border-radius: 20px;
  box-shadow: 0 0 3px white;
}

.accordion-item {
  border-radius: 20px !important;
  margin-bottom: 16px;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 20px 30px;
  cursor: pointer;
  background-color: #ebebeb;
  font-weight: 500;
  font-size: 18px;
  border-radius: 20px !important;
  color: #000;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: #e1e1e1;
}
.accordion-header.active{
  border-radius: 20px 20px 0 0 !important;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fff;
}

.accordion-header.active + .accordion-content {
  max-height: max-content;
  padding: 15px;
  border-radius: 0 0 20px 20px !important;
}

/* FAQ Detail */
.accordion.faq_detail{
  width: 100%;
  margin: auto;
  padding: 32px 20px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 3px #ababab;
}

.faq_detail .accordion-item {
  border-radius: 20px !important;
  margin-bottom: 16px;
}

.faq_detail .accordion-item:last-child {
  border-bottom: 1px solid rgba(0,0,0,.125);
}

.faq_detail .accordion-header {
  padding: 20px 30px;
  cursor: pointer;
  background-color: #ffe7e7;
  font-weight: 500;
  font-size: 18px;
  border-radius: 20px !important;
  color: #000;
  transition: background-color 0.3s;
}

.faq_detail .accordion-header:hover {
  background-color: #e1e1e1;
}
.faq_detail .accordion-header.active{
  border-radius: 20px 20px 0 0 !important;
}

.faq_detail .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fff;
}

.faq_detail .accordion-header.active + .accordion-content {
  max-height: max-content;
  padding: 15px;
  border-radius: 0 0 20px 20px !important;
}

/* primary btn */
.priv_btn_1{
  background: #00C04D;
  border-radius: 20px;
  border: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
width: fit-content;
}
.priv_btn_1:hover, .priv_btn_1:active, .priv_btn_1:focus{
  background: #42c576;
  color: #fff;
}
/* secondary btn */
.second_btn_1{
  background: #0F5FD0;
  border-radius: 20px;
  border: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  width: fit-content;
}
.second_btn_1:hover, .second_btn_1:active, .second_btn_1:focus{
  background: #2675e3;
  color: #fff;
}
/* Texts */
.txt-b32-ffcf-lh40{
  font-size: 32px;
  color: #960018;
  font-weight: 700;
  line-height: 40px;
  font-style: normal;
}
.txt-b32-3f47-lh40{
  font-size: 32px;
  color: #00C04D;
  font-weight: 700;
  line-height: 40px;
  font-style: normal;
}
.txt-b32-ffff-lh40{
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  line-height: 40px;
  font-style: normal;
}
.txt-b32-0000-lh40{
  font-size: 32px;
  color: #000;
  font-weight: 700;
  line-height: 40px;
  font-style: normal;
}
.txt-b50-3f47-lh60{
  font-size: 50px;
  color: #000;
  font-weight: 700;
  line-height: 60px;
  font-style: normal;
}
.txt-b42-3f47-lh60{
    font-size: 42px;
    color: #000;
    font-weight: 700;
    line-height: 60px;
    font-style: normal;
}
.txt-sb20-3f47-lh30{
  font-size: 20px;
  color: #3F4753;
  font-weight: 600;
  line-height: 30px;
  font-style: normal;
}
.txt-sb26-0f5f-lh30{
  font-size: 26px;
  color: #960018;
  font-weight: 600;
  line-height: 30px;
  font-style: normal;
}
.txt-sb25-ffff-lh30{
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  line-height: 30px;
  font-style: normal;
  font-family: 'Montserrat';
}
.txt-sb25-00C0-lh30{
  font-size: 25px;
  color: #00C04D;
  font-weight: 600;
  line-height: 30px;
  font-style: normal;
}
.txt-b25-ffff-lh30{
  font-size: 25px;
  color: #fff;
  font-weight: 700;
  line-height: 30px;
  font-style: normal;
}
.txt-r26-ffff-lh30{
  font-size: 26px;
  color: #fff;
  font-weight: 400;
  line-height: 30px;
  font-style: normal;
}
.txt-r26-0000-lh30{
  font-size: 26px;
  color: #000;
  font-weight: 400;
  line-height: 30px;
  font-style: normal;
}
.txt-r20-3f47-lh30{
  font-size: 20px;
  color: #000;
  font-weight: 400;
  line-height: 30px;
  font-style: normal;
}
.txt-r22-3f47-lh30{
  font-size: 22px;
  color: #3F4753;
  font-weight: 400;
  line-height: 30px;
  font-style: normal;
}
.txt-b20-3f47-lh30{
  font-size: 20px;
  color: #3F4753;
  font-weight: 700;
  line-height: 30px;
  font-style: normal;
}
.txt-b20-ffff-lh30{
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  line-height: 30px;
  font-style: normal;
}
.txt-b18-23ac-lh30{
  font-size: 18px;
  color: #23ac00;
  font-weight: 700;
  line-height: 30px;
  font-style: normal;
}
.txt-b18-f5bf-lh30{
  font-size: 18px;
  color: #f5bf02;
  font-weight: 700;
  line-height: 30px;
  font-style: normal;
}
.txt-b18-f292-lh30{
  font-size: 18px;
  color: #960018;
  font-weight: 700;
  line-height: 30px;
  font-style: normal;
}
.txt-b18-4d69-lh30{
  font-size: 18px;
  color: #4d69ff;
  font-weight: 700;
  line-height: 30px;
  font-style: normal;
}
.txt-b18-f048-lh30{
  font-size: 18px;
  color: #f04848;
  font-weight: 700;
  line-height: 30px;
  font-style: normal;
}
.txt-b22-f292-lh30{
  font-size: 22px;
  color: #960018;
  font-weight: 700;
  line-height: 30px;
  font-style: normal;
}
.txt-b24-3f47-lh30{
  font-size: 24px;
  color: #3F4753;
  font-weight: 700;
  line-height: 30px;
  font-style: normal;
}
.txt-l20-3f47-lh30{
  font-size: 20px;
  color: #3F4753;
  font-weight: 300;
  line-height: 30px;
  font-style: normal;
}
.txt-l60-012a-lh80{
  font-size: 80px;
  color: #012A47;
  font-weight: 300;
  line-height: 60px;
  font-style: normal;
}
.txt-r20-ffcf-lh30{
  font-size: 20px;
  color: #960018;
  font-weight: 400;
  line-height: 30px;
  font-style: normal;
}
.txt-r20-ffff-lh30-u{
  font-size: 20px;
  color: #fff;
  text-decoration: underline;
  text-underline-position: under;
  font-weight: 400;
  line-height: 30px;
  font-style: normal;
}
.txt-r18-3f47-lh25{
  font-size: 18px;
  color: #3F4753;
  font-weight: 400;
  line-height: 25px;
  font-style: normal;
}
.txt-r28-3f47-lh44{
  font-size: 28px;
  color: #3F4753;
  font-weight: 400;
  line-height: 44px;
  text-align: justify;
  font-family: 'Montserrat';
  font-style: normal;
}
.txt-r24-3f47-lh40{
    font-size: 24px;
    color: #3F4753;
    font-weight: 400;
    line-height: 40px;
    font-family: 'Montserrat';
    font-style: normal;
}
.txt-r18-ffff-lh25{
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  line-height: 25px;
  font-style: normal;
}
.txt-b18-3f47-lh25{
  font-size: 18px;
  color: #3F4753;
  font-weight: 700;
  line-height: 25px;
  font-style: normal;
}
.txt-b18-ffff-lh20{
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  line-height: 20px;
  font-style: normal;
}
.txt-r14-3f47-lh20{
  font-size: 14px;
  color: #3F4753;
  font-weight: 400;
  line-height: 20px;
  font-style: normal;
}
.txt-r16-ffff-lh20{
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 20px;
  font-style: normal;
}
.txt-r14-ffff-lh20{
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  line-height: 20px;
  font-style: normal;
}
.txt-l32-ffcf-lh40{
  font-size: 32px;
  color: #960018;
  font-weight: 300;
  line-height: 40px;
  font-style: normal;
}
/* custom */
.pt-20rem{
  padding-top: 20rem;
}
.pt-6rem{
  padding-top: 6rem;
}
.pt-10rem{
  padding-top: 10rem;
}
.pt-12rem{
  padding-top: 12rem;
}
.pb-10rem{
  padding-bottom: 10rem;
}
.pb-8rem{
  padding-bottom: 8rem;
}
.pb-6rem{
    padding-bottom: 6rem;
}
.embracing_divs{
  border-radius: 20px;
  box-shadow: 0 0 5px #00000025;
  min-height: 590px;
}
.embracing_divs img{
  border-radius: 20px 20px 0 0;
}
.service-card-2 .inner .content .title{
  color: #6D6D6D;
}
.service-card-2 .inner .content .description{
font-size: 13px;
}
.banner-style-5 .banner-image img{
  max-width: 315px;
}
.whocan_list{
  padding: 20px 15px;
  background: #f5f5f5;
  box-shadow: 0 0 5px #d1d1d1;
  border-radius: 12px;
  margin-bottom: 16px;
}
.financial_listdiv{
  padding: 40px 0;
  border-bottom: 0.5px solid #ababab;
}
.home_staygolden_divs{
  background: #ffffffc2;
  box-shadow: 0 0 5px #d1d1d1;
  padding: 40px 20px;
  border-radius: 18px;
  position: relative;
  z-index: 2;
}
.home_stay_pos{
  position: absolute;
  top:0;
  right: 0;
  z-index: 1;
}
.home_tripledivs{
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
.triplediv_txtarea{
  padding: 16px 12px;
  border-radius: 0 0 12px 12px;
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  line-height: 20px;
  font-style: normal;
  font-family: 'Montserrat';
}
.home_tripledivs .img_area_1{
  background-image: url("../images/others/home_img2.png");
  height: 240px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  border-radius: 12px 12px 0 0;
}
.home_tripledivs .img_area_1 .txt_area_1, .home_tripledivs .img_area_2 .txt_area_2, .home_tripledivs .img_area_3 .txt_area_3, .home_tripledivs .img_area_4 .txt_area_4, .home_tripledivs .img_area_5 .txt_area_5{
 position: absolute;
  bottom: 0;
  left: 12px;
}
.home_tripledivs .img_area_2{
  background-image: url("../images/others/home_img3.png");
  height: 240px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  border-radius: 12px 12px 0 0;
}
.home_tripledivs .img_area_3{
  background-image: url("../images/others/home_img4.png");
  height: 240px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  border-radius: 12px 12px 0 0;
}
.home_tripledivs .img_area_4{
  background-image: url("../images/others/home_img5.png");
  height: 240px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  border-radius: 12px 12px 0 0;
}
.home_tripledivs .img_area_5{
  background-image: url("../images/others/home_img6.png");
  height: 240px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  border-radius: 12px 12px 0 0;
}
.border-none{
  border: none !important;
}
.about-feature-list.financial .our-feature .feature-content .feature-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 5px; }
.about-feature-list.financial .our-feature .feature-content .feature-description {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0;
}
.gvps_area .h_md_div{
  min-height: 300px;
}
.gvps_area .h_md_div .step_1, .gvps_area .h_md_div .step_3{
  text-align: right;
}
.gvps_area .gvps_area_img{
  position: absolute;
  left: 0;
  right: -8%;
  top: 37%;
  max-width: 333px;
  margin: 0 auto;
  z-index: -1;
}
.mail_div{
  padding: 12px 16px;
  background: #960018;
  border-radius: 12px;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  line-height: 18px;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_tennos_bnnr{
  border-radius: 20px;
  padding: 20px;
  min-height: 210px;
  background-image: url("../images/others/home_tennos_banner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home_tennos_bnnr .logo{
  width: 200px;
  top: -70px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
}
.home_tennos_bnnr .txt_area{
  position: absolute;
  right: 5%;
  top: 45%;
  font-size: 32px;
}
.home_svg1_pos{
  top: -80px;
  z-index: 1;
}
.place_divs{
  border: 1px solid #000000;
  border-radius: 18px;
}
.place_divs img{
  border-radius: 18px 18px 0 0;
}
.gvps_dag .txt-l32-ffcf-lh40{
  position: absolute;
  left: 2%;
  top: 30%;
}
.gvps_dag .plane-icon_1{
  position: absolute;
  left: 17%;
  top: 30%;
}
.gvps_dag .plane-icon_2{
  position: absolute;
  right: 17%;
  top: 10%;
}
.gvps_dag .logo{
  position: absolute;
  right: 8%;
  width: 100px;
  opacity: 0.5;
  top: 0;
}
.gvps_dag .stp_1, .gvps_dag .stp_2, .gvps_dag .stp_3, .gvps_dag .stp_4{
  position: absolute;
}
.gvps_dag .stp_1{
  left: 26%;
  right: 0;
  top: 35%;
  margin: 0 auto;
}
.gvps_dag .stp_2{
  text-align: center;
  left: 0;
  right: 10%;
  top: 28%;
  margin: 0 auto;
}
.gvps_dag .stp_3{
  text-align: center;
  left: 16%;
  right: 0;
  top: 23%;
  margin: 0 auto;
}
.gvps_dag .stp_4{
  text-align: center;
  left: 40%;
  right: 0;
  top: 17%;
  margin: 0 auto;
}
.gvps_square .square_1, .gvps_square .square_2, .gvps_square .square_3, .gvps_square .square_4, .gvps_square .square_5{
  position: absolute;
}
.gvps_square .square_imgs{
  position: absolute;
  top: -240%;
}
.gvps_square .square_1{
  bottom: 0;
  left: 4%;
  right: auto;
}
.gvps_square .square_2{
  top: 105%;
  left: 21%;
  right: auto;
}
.gvps_square .square_3{
  text-align: center;
  top: 225%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.gvps_square .square_4{
  top: 105%;
  left: auto;
  right: 20%;
}
.gvps_square .square_5{
  top: 35%;
  left: auto;
  right: 4%;
}
.pr-z2{
  position: relative;
  z-index: 2;
}
.cl-0F5FD0{
  color: #0F5FD0;
}
.cl-FFCF48{
  color: #960018;
}
.cl-00C04D{
  color: #00C04D;
}
/* bg-colors */
.bg-F3F9FF{
  background: #F3F9FF;
}
.bg-012A47{
  background: #012A47;
}
.bg-012A47{
  background: #012A47;
}
.bg-960018{
  background: #960018;
}
.bg-00C04D{
  background: #00C04D;
}
.bg-FFEAEA{
  background: #FFEAEA;
}
.bg-F6F0FF{
  background: #F6F0FF;
}
.bg-C1E5FF{
  background: #C1E5FF;
}
.bg-FFEDF0{
  background: #FFEDF0;
}
.bg-FFF5DA{
  background: #FFF5DA;
}
.bg-D9FBEF{
  background: #D9FBEF;
}
.bg-E7FFF3{
  background: #E7FFF3;
}
.bg-F9E8E8{
  background: #F9E8E8;
}
.bg-FFDFD1{
  background: #FFDFD1;
}
.bg-E3F8FF{
  background: #E3F8FF;
}
.bg-FFDBD3{
  background: #FFDBD3;
}
.bg-EFEEFF{
  background: #EFEEFF;
}
.bg-FFC7C7{
  background: #FFC7C7;
}
.bg-B8EFCE{
  background: #B8EFCE;
}
.bg-AFE8C6{
  background: #AFE8C6;
}
.bg-A2EDE8{
  background: #A2EDE8;
}
.bg-E1E7FB{
  background: #E1E7FB;
}
.bg-B1BFEF{
  background: #B1BFEF;
}
.bg-FAD8BF{
  background: #FAD8BF;
}
.bg-EBBEB5{
  background: #EBBEB5;
}
.bg-FECA7D{
  background: #FECA7D;
}

/* Step Page */
.steps-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle {
  width: 100px;
  height: 100px;
  background-color: #960018;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.step_svg{
  left: 30px;
  z-index: -1;
  top: 10px;
}
.md_list{
  background: #960018;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  flex: none;
  margin-right: 7px;
}
.md_list_v2{
  background: #960018;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  flex: none;
  margin-right: 7px;
}

/* Responsives */
@media only screen and (max-width: 1599.92px) {
  .gvps_dag .txt-l32-ffcf-lh40{
    position: absolute;
    left: 4%;
    top: 30%;
    font-size: 28px;
  }
  .gvps_dag .plane-icon_1{
    position: absolute;
    left: 23%;
    top: 36%;
    width: 35px;
  }
  .gvps_dag .plane-icon_2{
    position: absolute;
    right: 9%;
    top: 13%;
    width: 35px;
  }
  .gvps_dag .logo{
    position: absolute;
    right: 2%;
    width: 75px;
    opacity: 0.5;
    top: 2%;
  }
  .gvps_dag .stp_1, .gvps_dag .stp_2, .gvps_dag .stp_3, .gvps_dag .stp_4{
    position: absolute;
    font-size: 18px !important;
  }
  .gvps_dag .stp_1{
    left: 30%;
    right: 0;
    top: 35%;
    margin: 0 auto;
  }
  .gvps_dag .stp_2{
    text-align: center;
    left: 2%;
    right: 0;
    top: 28%;
    margin: 0 auto;
  }
  .gvps_dag .stp_3{
    text-align: start;
    left: auto;
    right: 29%;
    top: 23%;
    margin: 0 auto;
  }
  .gvps_dag .stp_4{
    text-align: start;
    left: auto;
    right: 15%;
    top: 17%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1199.92px) {
  .gvps_dag .stp_1, .gvps_dag .stp_2, .gvps_dag .stp_3, .gvps_dag .stp_4{
    font-size: 16px !important;
  }
  .gvps_dag .plane-icon_1{
    left: 26%;
    top: 28%;
    width: 35px;
  }
  .gvps_dag .plane-icon_2{
    right: 12%;
    top: 10%;
    width: 30px;
  }
  .pt-20rem.gvps{
    padding-top: 10rem;
  }
  .gvps_square .square_1{
    bottom: 30%;
    left: 3%;
  }
  .gvps_square .square_2{
    top: auto;
    bottom: -25%;
    left: 20%;
  }
  .gvps_square .square_3{
    top: 140%;
  }
  .gvps_square .square_4{
    top: 47%;
    left: auto;
    right: 19%;
  }
  .gvps_square .square_5{
    top: auto;
    bottom: 32%;
  }
  .home_svg1_pos{
    top: -55px;
  }
  .icon-home{
    content: url("../images/icons/home_ic_m.png");
    width: 18px;
    transition: 0.3s;
  }
  .home_tennos_bnnr{
      min-height: 160px;
  }
}
@media only screen and (max-width: 992.92px) {
  .gvps_dag .stp_1, .gvps_dag .stp_2, .gvps_dag .stp_3, .gvps_dag .stp_4{
    font-size: 15px !important;
  }
  .pt-20rem.gvps{
    padding-top: 5rem;
  }
  .gvps_dag .txt-l32-ffcf-lh40{
    position: absolute;
    left: 4%;
    top: 30%;
    font-size: 26px;
    line-height: 30px;
  }
  .gvps_dag .plane-icon_1{
    left: 26%;
    top: 28%;
    width: 35px;
  }
  .gvps_dag .plane-icon_2{
    right: 12%;
    top: 10%;
    width: 30px;
  }
  .home_svg1_pos{
    top: -50px;
  }
  .gvps_area .h_md_div{
    min-height: auto;
    padding: 12px 0;
  }
  .gvps_area .h_md_div.last{
    padding-bottom: 12rem;
  }
}
@media only screen and (min-width: 992px) {
  .mt_md--100px{
    margin-top: -100px;
  }
 .fs-md-28px{
   font-size: 28px !important;
 }
}
@media only screen and (max-width: 767.92px) {
  .circle {
    width: 60px;
    height: 60px;
    font-size: 12px;
  }
  .home_svg1_pos{
    top: -25px;
  }
  .place_divs{
    margin-bottom: 12px;
  }
  .home_tennos_bnnr .logo{
    width: 150px;
  }
  .home_tennos_bnnr{
    min-height: 115px;
    background-position: right;
      border-radius: 7px;
  }
    .home_tennos_bnnr .txt_area{
        font-size: 24px;
    }
    .turkish .home_tennos_bnnr .txt_area{
        font-size: 22px;
    }
  .txt-l60-012a-lh80{
    font-size: 40px;
  }
  .txt-b50-3f47-lh60, .txt-b50-3f47-lh60{
    font-size: 36px;
    line-height: 36px;
  }
  .txt-sb26-0f5f-lh30{
    font-size: 20px;
    line-height: 28px;
  }
  .m_effect.edu-section-gap{
    padding: 15px 0 !important;
  }
  .m_effect_pt.pt-10rem, .m_effect_pt.pt-12rem{
    padding-top: 6rem;
  }
  .m_effect_pt.banner-style-7{
    padding: 0;
  }
  #about-us.m_effect_pt.section-gap{
    padding: 140px 0 !important;
  }
  .banner-style-5 .banner-image img{
    max-width: 175px;
  }
  .gvps_dag .stp_1, .gvps_dag .stp_2, .gvps_dag .stp_3, .gvps_dag .stp_4{
    font-size: 10px !important;
  }
  .pt-20rem.gvps{
    padding-top: 5rem;
  }
  .gvps_dag .txt-l32-ffcf-lh40{
    position: absolute;
    left: 4%;
    top: 40%;
    font-size: 12px;
    line-height: 16px;
  }
  .gvps_dag .plane-icon_1{
    left: 25%;
    top: 34%;
    width: 20px;
  }
  .gvps_dag .stp_1{
    left: 30%;
    right: 0;
    top: 42%;
    margin: 0 auto;
  }
  .gvps_dag .stp_2{
    text-align: center;
    left: 2%;
    right: 0;
    top: 36%;
    margin: 0 auto;
  }
  .gvps_dag .stp_3{
    text-align: start;
    left: auto;
    right: 29%;
    top: 30%;
    margin: 0 auto;
  }
  .gvps_dag .stp_4{
    text-align: start;
    left: auto;
    right: 15%;
    top: 24%;
    margin: 0 auto;
  }
  .gvps_dag .logo{
    position: absolute;
    right: 2%;
    width: 50px;
    opacity: 0.5;
    top: 8%;
  }
  .gvps_dag .plane-icon_2{
    right: 16%;
    top: 13%;
    width: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .col-lg-3_5 {
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
}
@media only screen and (max-width: 467.92px) {
  .gvps_dag .plane-icon_1{
    display: none;
  }
  .gvps_dag .plane-icon_2{
    display: none;
  }
  .gvps_dag .stp_1, .gvps_dag .stp_2, .gvps_dag .stp_3, .gvps_dag .stp_4{
    font-size: 9px !important;
  }
  .gvps_dag .txt-l32-ffcf-lh40{
    font-size: 11px;
  }
}

.whocan_list .title{
  color: #cc0828;
}

.mix_blend_lighten {
  background-color: rgba(255, 255, 255, 0.5);
}

@supports (mix-blend-mode: lighten) {
  .mix_blend_lighten {
    mix-blend-mode: lighten;
  }
}
#tennos_benefits_area .left_bgimg{
  position: absolute;
  top: 0;
  left: 0;
}
#tennos_benefits_area .right_bgimg{
  position: absolute;
  top: 0;
  right: 0;
}
.management_txt{
  color: #ffffff;
  font-weight: 700;
  line-height: 20px;
  font-size: 22px;
  text-align: center;
}
#tennos_benefits_area .mng_txt1{
  left: 2%;
  bottom: 38%;
}
#tennos_benefits_area .mng_txt2{
  left: 18%;
  bottom: 22%;
}
#tennos_benefits_area .mng_txt3{
  left: 43%;
  bottom: 16%
}
#tennos_benefits_area .mng_txt4{
  left: 68%;
  bottom: 22%;
}
#tennos_benefits_area .mng_txt5{
  left: 83%;
  bottom: 38%;
}
.tennos_testimonial_div{
  box-shadow: 0 0 4px #00000025;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.tennos_testimonial_div .company_area{
  padding: 10px 0;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.tennos_testimonial_div .itf_logo{
  width: 90px;
}
.tennos_testimonial_div .aat_logo{
  width: 50px;
}
.tennos_testimonial_div .pyramid_logo{
  width: 60px;
}
.w_70px{
  width: 70px;
}
.w_40px{
  width: 40px;
}
.txt-m18-6c6c{
  font-weight: 500;
  line-height: 125%;
  color: #6c6c6c;
  font-size: 18px;
  font-style: normal;
}
.txt-r18-3e3e{
  font-weight: 400;
  line-height: 145%;
  color: #3e3e3e;
  font-size: 18px;
  font-style: normal;
}
.txt-r20-0000{
  font-weight: 400;
  line-height: 145%;
  color: #000;
  font-size: 20px;
  font-style: normal;
}
.txt-sb18-6c6c{
  font-weight: 600;
  line-height: 125%;
  color: #6c6c6c;
  font-size: 18px;
  font-style: normal;
}
#tennos_circle .circle_logo{
  width: 90px;
  transition: 0.3s;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#tennos_circle .circle_logo .txt_area{
  font-weight: 700;
  line-height: 125%;
  color: #000000;
  font-size: 20px;
  white-space: nowrap;
  margin-bottom: 0.5rem;
  font-style: normal;
}
#tennos_circle .circle_logo:hover{
  scale: 1.1;
}
#tennos_circle .circle_logo.mobile{
  left: -3%;
  bottom: -5%;
}
#tennos_circle .circle_logo.message{
  left: 12%;
  bottom: 50%;
}
#tennos_circle .circle_logo.plan{
  left: 46%;
  bottom: 84%;
}
#tennos_circle .circle_logo.play{
  left: 78%;
  bottom: 50%;
}
#tennos_circle .circle_logo.follow{
  left: 93%;
  bottom: -5%;
}
.mt--4y{
  margin-top: -4%;
}

.benef_ul li{
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  color: #000;
  font-weight: 400;
  line-height: 30px;
  font-style: normal;
}

#benefit_clu, #benefit_ref, #benefit_coa, #benefit_pla{
  scroll-margin-top: 10rem;
}
.g_testimonial_div{
  box-shadow: 0 0 4px #00000025;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.t_rotate180{
  transform: rotate(180deg);
}

.case_cards .service-card-4 .inner .content .title {
  font-weight: 700;
  font-size: 55px;
  line-height: 60px;
  margin-bottom: 5px;
  margin-top: 25px;}
.case_cards .service-card-4 .inner .content .title.alt {
  font-size: 22px;
line-height: 28px;
font-weight: 500;}
.case_cards .service-card-4 .inner .content .title a {
  transition: 0.4s;
  color: var(--color-heading); }

.case_cards .service-card-4:hover .inner .content .title, .case_cards .service-card-4:hover .inner .content .title.alt, .case_cards .service-card-4:hover .inner .content .title a{
  color: #fff;
}
.fs-13px{
  font-size: 13px;
}
.phone-frame {
  position: relative;
  width: 360px;
  height: 740px;
  background: url('../images/iphoneframe.png') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
.phone-frame.tr {
    background: url('../images/iphoneframe_tr.png') no-repeat center center;
    background-size: cover;
}

.phone-content {
  position: absolute;
  top: 340px;
  left: 15px;
  right: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.phone-button {
  width: 24%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat';
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  color: #085B43;
  transition: transform 0.2s ease;
  cursor: pointer;
  gap: 5px;
}

.phone-button:hover {
  transform: scale(1.05);
}

#phone-popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#phone-popup .popup-content {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#phone-popup .popup-header,
#phone-popup .popup-footer {
    padding: 8px 16px;
    background: #fff;
    font-family: 'Montserrat';
    z-index: 1;
    text-align: center;
}

#phone-popup .popup-header {
    border-bottom: 1px solid #ddd;
}

#phone-popup .popup-footer {
    border-top: 1px solid #ddd;
}

#phone-popup .popup-body {
    padding: 6px 10px;
    overflow-y: auto;
    flex: 1;
    font-family: 'Montserrat';
    text-align: center;
}

#phone-popup button {
    padding: 10px 20px;
    background: #085B43;
    color: white;
    border: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    font-family: 'Montserrat';
}

#phone-popup #phone-popupTitle{
  margin-bottom: 7px;
  font-size: 26px;
  font-family: 'Montserrat';
}
#phone-popup #phone-popupAltTitle{
  margin-bottom: 0;
  font-size: 16px;
  font-family: 'Montserrat';
}
#phone-popup #phone-popupText{
    text-align: justify;
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 500;
    font-family: 'Montserrat';
}
.phone-frame .phone-content .phone-button img{
  width: 60px;
}
#tennospro_frame{
  scroll-margin-top: 8rem;
}
.benefits_badge{
  position: absolute;
  top: 18px;
  left: -65px;
  background: #000;
  width: 240px;
  padding: 5px 43px;
  transform: rotate(-30deg);
  transition: .3s;
  text-align: center;
}
.home_tripledivs:hover .benefits_badge{
  box-shadow: 0 0 5px #6c6c6c;
}
.benefits_badge span{
  font-size: 14px;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #fff !important;
}
#tennospro_frame .appstore, #tennospro_frame .googleplay{
  display: flex;
  justify-content: flex-start;
}
#tennospro_frame .appstore img, #tennospro_frame .googleplay img{
  border-radius: 7px;
  width: 125px;
  transition: .3s;
  cursor: pointer;
}
#tennospro_frame .appstore img:hover, #tennospro_frame .googleplay img:hover{
  box-shadow: 0 0 5px #6c6c6c;
  scale: 1.1;
}
#aboutproblem_badge{
  background: #00c04e;
  padding: 6px  12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
}
#aboutproblem_badge span{
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 600 !important;
}
.teamtennos .edu-instructor-1 .edu-instructor-info .title{
  font-size: 16px;
}
.teamtennos .edu-instructor-1 .edu-instructor-info .desc{
  font-size: 14px;
  font-weight: 600;
  color: #00c04e;
}
.pb40px-bb{
  border-bottom: 1px solid #b7b7b780;
  padding-bottom: 40px;
}
.case_studie_badge{
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  min-height: 60px;
  border-radius: 7px;
  background: #000;
  color: #fff;
  font-weight: 600;
  transition: .3s;
  scale: 0.9;
}
.case_studie_badge:hover{
  scale: 1;
}
@media only screen and (max-width: 992.92px) {
    .management_txt{
        line-height: 18px;
        font-size: 14px;
    }
    #tennos_benefits_area .mng_txt1{
        left: 0%;
        bottom: 44%;
    }
    #tennos_benefits_area .mng_txt2{
        left: 16%;
        bottom: 30%;
    }
    #tennos_benefits_area .mng_txt3{
        left: 43%;
        bottom: 24%;
    }
    #tennos_benefits_area .mng_txt4{
        left: 72%;
        bottom: 30%;
    }
    #tennos_benefits_area .mng_txt5{
        left: auto;
        right: 0%;
        bottom: 44%;
    }
}
.aboutpage .txt-r20-3f47-lh30, .casepage .txt-r20-3f47-lh30{
    text-align: justify;
}
.m_management_txt{
    color: #ffffff;
    font-weight: 700;
    line-height: 20px;
    font-size: 20px;
    text-align: start;
}
#tennospro_frame .txt-r28-3f47-lh44 strong{
    font-size: 32px;
}
@media only screen and (max-width: 767.92px) {
.m_ptpb.pt-10rem{
    padding-top: 2rem;
}
    .apppage.m_ptpb.pt-10rem{
        padding-top: 6rem;
    }
    #tennospro_frame .txt-r28-3f47-lh44, #tennospro_frame .txt-r28-3f47-lh44 strong{
        font-size: 18px;
        line-height: 26px;
        text-align: start;
    }
    #tennospro_frame #phone-frame-pd{
        padding: 0;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    #phone-popup #phone-popupTitle{
        font-size: 20px;
    }
    #phone-popup #phone-popupAltTitle{
        font-size: 14px;
    }
    #t_benefits.m_ptpb.pt-6rem{
        padding-top: 0;
    }
    #m_teamtennos{
        padding-right: 50px;
        padding-left: 50px;
    }
    .price-box{
        padding: 12px;
        margin-bottom: 12px;
    }
    .homepage.banner-style-3 .content .title{
        font-size: 25px;
    }
    .homepage.banner-style-3 .content .description{
        margin-bottom: 12px;
        font-size: 16px;
        line-height: 25px;
    }
    .priv_btn_1{
        font-size: 12px;
        padding: 12px 10px;
        height: auto;
        min-height: auto;
        line-height: 1;
        border-radius: 7px;
    }
    .aboutpage .txt-r20-3f47-lh30{
        font-size: 18px;
        line-height: 26px;
        text-align: start;
    }
    #benefit_fed .txt-r20-0000, #benefit_ref .txt-r20-0000, #benefit_pla .txt-r20-0000, #benefit_clu .txt-r20-0000, #benefit_coa .txt-r20-0000{
        font-size: 18px;
        line-height: 26px;
        text-align: start;
    }
    .aboutpage .txt-b32-0000-lh40{
        font-size: 22px;
        line-height: 26px;
    }
    #aboutproblem_badge span{
        color: #fff !important;
        font-size: 14px !important;
        line-height: 20px;
    }
    .benef_ul li{
        font-size: 18px;
        line-height: 26px;
    }
    .casepage .txt-sb25-00C0-lh30{
        font-size: 20px;
    }
    .casepage .txt-r20-3f47-lh30{
        font-size: 18px;
        line-height: 26px;
        text-align: start;
    }
    .ttf_logo{
        width: 130px;
    }
    .casepage .txt-r18-3f47-lh25{
        line-height: 26px;
    }
    .casepage.pt-6rem{
        padding-top: 3rem;
    }
    .contactpage.pt-12rem{
    padding-top: 12rem !important;
}
}
footer .appstore img, footer .googleplay img{
    width: 140px;
    margin-top: 15px;
}
#contact_mail p{
   transition: .3s;
}
#contact_mail:hover p{
    color: #06AC48 !important;
}

.price-box {
    padding: 35px 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-box:hover {
    box-shadow: 0 0 10px 5px rgba(186, 255, 195, 0.6);
    transform: translateY(-5px);
}

.price-title {
    font-size: 20px;
    color: #989898;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0;
}

.price-value {
    font-size: 40px;
    color: #065b43;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.price-desc {
    font-size: 16px;
    color: #000;
    margin: 8px 0 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.price-note span{
    font-size: 14px;
    color: #000;
    font-weight: 600;
}
.price-note {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}


.pa_accordion_container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pa_accordion_item {
    border-bottom: 1px solid #ddd;
}

.pa_accordion_header {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.pa_accordion_header:hover {
    background-color: rgba(70, 252, 79, 0.15);
}

.pa_accordion_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.pa_accordion_content p {
    padding: 14px 0;
    font-size: 14px;
    color: #505050;
    margin-bottom: 0;
}

.pa_accordion_header .pa_arrow {
    transition: transform 0.3s ease;
}

.pa_accordion_header.active .pa_arrow {
    transform: rotate(90deg);
}

.pa_accordion_header.active{
    background-color: rgb(0 192 76 / 23%);
}

.feature-table {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 10px 20px;
    color: #212121;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row.header {
    padding-bottom: 15px;
    font-weight: 600;
    color: #6c757d;
    font-size: 16px;
}

.feature-name {
    flex: 2;
    text-align: left;
    font-weight: 500;
    font-size: 15px;
    color: #333333;
}

.feature-tier {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.feature-tier [class^="icon-"] {
    font-size: 22px;
    font-weight: bold;
}
.feature-tier .feature-img img{
    width: 20px;
}
.icon-check {
    color: #4CAF50;
}

.icon-warn {
    color: #FFC107;
}

.icon-cross {
    color: #F44336;
}

.tier-desc {
    font-size: 14px;
    color: #555555;
}

@media (max-width: 576px) {
    .feature-table {
        padding: 5px 12px;
    }
    .feature-row.header {
        font-size: 14px;
    }
    .feature-name {
        font-size: 14px;
    }
    .tier-desc {
        font-size: 12px;
    }
}

.pro_services_card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.pro_services_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pro_services_image_wrapper {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
    background-color: #d0f0e7;
}

.pro_services_img {
    width: 100%;
    object-fit: cover;
    padding: 10px;
}

.pro_services_content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pro_services_title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 0;
}

.pro_services_subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00C04D;
    margin-bottom: 0;
}

.pro_services_text {
    font-size: 1.25rem;
    color: #333;
    flex: 1;
    margin-bottom: 0;
}
.tech{
    font-style: normal;
    color: #bdef86;
}
.icons_s{
    width: 26px;
    margin-right: 7px;
}
.language_drop{
    background: #000;
    color: #fff;
    border: 1px solid #aaaaaa;
    padding: 1px 10px;
    border-radius: 4px;
    height: auto;
    font-size: 14px;
    font-weight: 700;
}

/* tr */
.turkish .banner-style-3 .content .title{
    font-size: 52px;
}
.turkish .management_txt{
    line-height: 26px;
}
.turkish .benefits_badge span{
    font-size: 12px;
}
.turkish .benefits_badge{
    left: -67px;
    padding: 2px 45px;
}
.turkish .home_tripledivs .txt-sb25-ffff-lh30{
    font-size: 18px;
}
.turkish .home_tripledivs .img_area_1 .txt_area_1, .turkish .home_tripledivs .img_area_2 .txt_area_2, .turkish .home_tripledivs .img_area_3 .txt_area_3, .turkish .home_tripledivs .img_area_4 .txt_area_4, .turkish .home_tripledivs .img_area_5 .txt_area_5{
    left: 0;
    padding: 0 12px;
}
.turkish .service-card-4 .inner .content .title.alt{
    font-size: 30px;
}
@media only screen and (max-width: 767.92px) {
    .turkish .homepage.banner-style-3 .content .title{
        font-size: 25px;
    }
}

.boxes_section {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 22px;
    background-color: aliceblue;
    border-radius: 22px;
    margin: 6rem 0 3rem;
}

.box_item {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    padding: 20px 12px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.box_icon {
    font-size: 40px;
    background: #04c04d;
    color: white;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px white, 0 0 0 8px #04c04d;
}

.box_item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #222;
}

.box_item p,
.box_item ul {
    font-size: 16px;
    color: #444;
}

.box_item ul {
    padding-left: 0;
    list-style: none;
    text-align: left;
}

.box_item ul li::before {
    content: "✔️ ";
    margin-right: 8px;
    color: #0F5FD0;
}
.about_content_boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f7faff, #ecf2ff);
    border-radius: 22px;
    margin: 3rem 0;
}

.about_feature_card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 26px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.about_feature_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.feature_icon {
    flex-shrink: 0;
    background: #04c04d;
    color: white;
    font-size: 32px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px white, 0 0 0 8px #04c04d;
}

.feature_content h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 12px;
}

.feature_content p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 0;
}
.turkish .casefor_t .service-card-4 .inner .content .title.alt{
    font-size: 20px;
    margin-top: 14px;
}
@media (max-width: 768px) {
    .about_feature_card {
        flex-direction: column;
        text-align: left;
        align-items: center;
        gap: 12px;
        padding: 12px;
    }
    .about_content_boxes{
        padding: 0;
        background: none;
        gap: 20px;
    }
    .feature_icon {
        display: none;
    }
    .boxes_section .txt-b32-0000-lh40{
        font-size: 20px;
        line-height: 26px;
    }
    .boxes_section{
        padding: 12px;
    }
    .container.pd-0{
        padding: 0;
    }
    .m_benefit_pd.pt-10rem{
        padding-top: 2rem;
    }
    #benefit_fed .txt-b50-3f47-lh60{
        font-size: 32px;
    }
}
