/* #region Primary */

:root{
    --darckFont:#282828;
    --detailsFont:rgba(40, 40, 40);
    --fontActive: #000300;
    --mainBorder: 1px solid rgba(40, 40, 40);
    --boxBorder: 1px solid #E0E0E0;
    --iconinput:#E0E0E0;
    --mainColor:#4AAA97;
    --bgAccent: #C2F0E5 ;
    --accentColor:#3C9FF0;
    --ligth:#ffff;
    --danger: #ff444e;
    --redMain: #DF315D;
    --background : #F9F9F9 ;
    --backgroundLight : #E9E9E9;
    --radius:8px;
    --gray: #28282880;
    --lightGray: #00030080;
    --darkGray: #979797;
    --textGray:#6B6B6B;
    --tran: 0.3s all ease;
}

*
{
    margin: 0;
    padding: 0;
    line-height: 1.5;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 500;
    font-family: 'iranYekan';
}

body {
    background-color:var(--background) ;
    overflow-x: hidden;
    color: var(--darckFont);
}

.wrapper {
    display: flow-root;
    max-width: 1280px;
    padding: 0px 16px;
    margin: 0 auto;
    box-sizing: border-box;
}


a:hover{
    text-decoration: none;
}

.flexCenterBet {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flexCenter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineClamp{
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.num {
  direction: ltr;
}

.vector {
    display: inline-block;
    width: max-content;
    padding: 10px 15px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: var(--tran);
}

.vectorPrimary , .vectorPrimary:before, .vectorPrimary:after{
  background-color: var(--mainColor);
}

.vectorAccent , .vectorAccent:before, .vectorAccent:after  {
  background-color: var(--bgAccent);
}

.vector:before, .vector:after {
    content: '';
    display: flow-root;
    width: 21px;
    height: 85%;
    -webkit-mask-image: url(View/1014/icon/btn-vector-fill.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    position: absolute;
    top: 50%;
    transition: var(--tran);
}

.vector:before {
    left: 5px;
    transform: translate(-100%, -50%);
}

.vector:after {
    transform: translate(100%, -50%) rotate(180deg);
    right: 5px;
}

/* #endregion */

/* #region Fonts */

@font-face {
  font-family: 'iranYekan';
  src: url('View/1014/font/IRANYekanXVFaNumVF.woff2');
}

.peyda400 {
    font-family: 'iranYekan';
    font-weight: 400;
}

.peyda600 {
     font-family: 'iranYekan';
     font-weight: 600;
}

.peyda700 {
    font-family: 'iranYekan';
    font-weight: 700;
}

.peyda800 {
    font-family: 'iranYekan';
     font-weight: 800;
}

.fontTitle {
    font-size: 32px;
}

.fontBig {
    font-size: 28px;
}

.fontHMed {
    font-size: 20px;
}

.fontMed {
    font-size: 18px;
}

.fontSmall {
    font-size: 14px;
}

.fontLight {
    color: var(--ligth);
}

.fontPrimary {
    color: var(--mainColor);
}

.fontDark {
  color: var(--darckFont);
}

.fontGray {
    color: var(--gray);
}

.fontLightGray {
    color: var(--lightGray);
}

.fontDarkGray {
    color: var(--darkGray);
}


/* #endregion */

/* #region Header */

.hamburger {
    width: 50% ;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    background-color: var(--background);
    padding: 10px 34px;
    display: none;
    z-index: 1000;
}

.hamburger .closeIcon{
    content: '';
    -webkit-mask-image: url(View/1014/icon/closeIcon.svg);
    -webkit-mask-position: center;
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    background-color: var(--darckFont);
    width: 12px;
    height: 12px;
    display: flow-root;
    cursor: pointer;
}

.hamburger .links {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 36px;
}

.hamburger.showMenu {
    animation: showMenu 0.5s forwards;
}

.hamburger.hideMenu {
    animation: hideMenu 0.5s forwards;
}

@keyframes showMenu {
    0%{
        right: -100%;
    }
    100%{
        right: 0;
    }
}
@keyframes hideMenu {
    0%{
        right: 0;
    }
    100% {
        right: -100%;
    }
}

backward{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100vh;
    z-index: 999;
}

header {
  background-color: var(--ligth);
}

header .menu {
    background-image: url(View/1014/icon/menu.svg);
    background-size: cover;
    width: 20px;
    height: 16px;
    display: inline-block;
    display: none;
}

header .headerTop {
  background-color: var(--fontActive);
}

header .headerTop .headerNums {
  display: flex;
  gap: 32px;
  color: var(--ligth);
  padding-block: 8px;
  align-items: center;
}

header .headerTop .headerNums .num {
  direction: ltr;
}

header .headerTop .headerNums .num::before {
  content: '';
  width: 17px;
  height: 17px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 16px;
  -webkit-mask-image: url(View/1014/icon/calling.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: var(--ligth);
}

/* header .webbar .logo {
  cursor: pointer;
} */

header .webbar .links {
  display: flex;
  gap: 32px;
}

header .webbar .webbarMenu {
    display: flex;
    align-items: center;
    gap: 18px;
}

header .webbar .links a.active {
  color: var(--fontActive);
}

.logoMenu img {
    width: 68px;
   height: 60px;
}

/* #endregion */

/* #region paging */
paging{
    justify-content: flex-end;
    /* margin-top: 48px; */
    position: relative;
    display: flex;
    direction: ltr;
    align-content: center;
}

paging a{
    display: flex;
    width: 32px !important;
    height: 32px !important;
    line-height: 1;
    margin: 0 4px;
    cursor: pointer;
    /* display: inline-flex; */
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all ease-in-out 0.2s;
    background-color: #FFFFFF;
    /* background-color: #00B38A; */
    color: var(--default);
    font-size: 10pt;
    text-align: center;
    padding: 6px 0;
    align-content: center;
}

paging a.active {
    display: flex;
}

paging a:hover {
    transform: scale(1.2);
}

paging a.Current{
    width: 32px;
    text-decoration: unset;
    font-size: 10pt;
    background: #4AAA97;
    color: white;
    display: block;
    /* background: var(--grdAccent);
    color: var(--light); */
    transform: scale(1.2);
    align-content: center;
}   

list paging {
  width: 100%;
  display: flex;
  /* justify-content: flex-start; می‌فرستش سمت راست */
  order: 999;
  padding-top: 20px;
}

paging a .icon{
    display: block;
    position: absolute;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 24px;
    width: 24px;
    height: 24px;
    /* background: var(--accent); */
    /* background: #00B38A !important; */
    /* background: black; */
    left: 0;
    color: var(--black);
}
/* a.paging.icon{
    background: #00B38A;

} */

paging a.icon img{
      margin-top: 0px !important;
}

.first-page .icon{
    background-image: url('View/1014/icon/First.svg');
    -webkit-mask-image: url('View/1014/icon/First.svg');
    /* background: var(--grdAccent); */
    /* background: #00B38A; */
    background: black;
    top: 0px;
    left: -1px;
}

.icon.prevPage:before{
    -webkit-mask-image: url('View/1014/icon/prev.svg');
    /* -webkit-transform: scaleX(-1); */
    /* transform:rotate(0deg); */
    /* background: #00B38A; */
    /* background: var(--grdAccent); */
    background: black;
    top: 1px;
    left: 0;
}

.icon.firstPage:before , .icon.lastPage:before {
    -webkit-mask-image: url('View/1014/icon/First.svg');
    /* -webkit-transform: scaleX(-1); */
    /* transform:rotate(-180deg); */
    /* background: var(--grdAccent); */
    background: black;
    top: 1px;
    left: 0;
}

.icon.lastPage:before {
    transform: rotate(180deg);
}

.last-page .icon{
    mask-image: url('View/1014/icon/last.svg');
    -webkit-mask-image: url('View/1014/icon/last.svg');
    /* background: var(--grdAccent); */
    background: black;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    width: 100%;
    height: 100%;
    top: 1px;
    left: 1px;
}

.icon.nextPage:before{
    -webkit-mask-image: url('View/1014/icon/next.svg');
    /* transform: rotate(0deg); */
    /* background:#00B38A; */
    /* background: var(--grdAccent); */
    background: black;
    top: 1px;
    left: 1px;
}

page-text {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(4%, 25%);
    font-size: 10pt;
}

/* #endregion */

/* #region Footer */


footer {
  background-color: var(--darckFont);
}

/* footer .footerMain {
  padding-block: 46px 77px ;
} */

footer .footerMain .footerSections {
    gap: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-block: 46px 77px ;
    border-bottom: 1px solid var(--ligth);
}

footer .footerMain .footerSections .footerParent1 {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 90px;
}

footer .footerMain .footerSections .footerParent2 {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 177px;
}

footer .footerMain .footerSections .footerTitle{
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ligth);
}

footer .footerMain .footerSections .footerLabel {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer .footerMain .footerSections .footerSection1 h3 {
  margin-bottom: 30px;
} 

footer .footerMain .footerSections .footerSection2 .footerLabel {
  gap: 10px;
}

footer .footerMain .footerSections .footerSection4 {
  display: flex;
  gap: 26px;
  align-items: end;
  margin-bottom: 10px;
}

footer .footerMain .arrowSection {
  position: relative;
}

footer .footerMain .arrowSection.active img {
    transform: rotate(360deg);
}

footer .footerMain .arrowSection img {
    width: 16px;
    cursor: pointer;
    transition: var(--tran);
    position: absolute;
    left: 0;
    top: 6px;
    display: none;
    transform: rotate(180deg);
}

/* footer .footerMain .footerSections .footerLabel a {
  padding-top: 16px;
} */

footer .footerMain .footerCopyright {
  padding-block: 16px;
}

footer .footerMain .footerCopyright .socialSection {
  display: flex;
  gap: 30px;
}

footer .footerMain .socialIcons {
  display: flex;
  gap: 16px;
}

footer .footerMain .footerSections .socialSection1 {
  display: none;
}

/* #endregion */

 /* require labels */
 .require-lbl::after{
     content: "*";
     position: relative;
    color: red;
    right: 3px;
    top: -2px;
 }@media screen and (min-width: 600px) and (max-width: 1024px) {
.hamburger {
    display: flow-root;
    padding: 0 16px;
}

.authorize {
    margin-left: 12px;
}


header .headerTop {
    display: none;
}

header .webbar .links {
    display: none;
}

header .webbar .menu {
    display: inline-block;
}

header .webbar .logo {
    width: 70px;
    height: 62px;
}

footer .footerMain .footerSections {
    padding: 40px 4px;
}

footer .num {
    place-self: baseline;
}

footer .footerMain .footerSections .socialSection1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

footer .footerMain .socialSection2 {
    display: none!important;
}

footer .footerMain .footerSections .footerParent2 {
    gap: 60px;
}

footer .footerMain .footerSections .footerSection4 {
    justify-content: center;
}

footer .footerMain .arrowSection img {
    display: inline-block;
}

.grid {
    grid-template-columns: 1fr !important;
}

.fontTitle {
    font-size: 28px;
}

.fontBig {
    font-size: 24px;
}

.fontHMed {
    font-size: 19px;
}

.fontMed {
    font-size: 17px;
}

.fontSmall {
    font-size: 14px;
}}@media screen and (min-width: 0) and (max-width: 600px) {
.hamburger {
    display: flow-root;
    padding: 0 16px;
}

.authorize {
    margin-left: 12px;
}

header .headerTop {
    display: none;
}

header .webbar .links {
    display: none;
}

header .webbar .menu {
    display: inline-block;
}

header .webbar .logo {
    width: 56px;
    height: 52px;
}

footer .footerMain .footerSections {
    padding: 40px 4px;
}

footer .num {
    place-self: baseline;
}

footer .footerMain .footerSections .socialSection1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

footer .footerMain .socialSection2 {
    display: none!important;
}

footer .footerMain .footerSections .footerParent2 {
    gap: 60px;
}

footer .footerMain .footerSections .footerSection4 {
    justify-content: center;
}

footer .footerMain .arrowSection img {
    display: inline-block;
}

.grid {
    grid-template-columns: 1fr !important;
}

.fontTitle {
    font-size: 23px;
}

.fontBig {
    font-size: 20px;
}

.fontHMed {
    font-size: 17px;
}

.fontMed {
    font-size: 15px;
}

.fontSmall {
    font-size: 13px;
}}
.section1 .vectorAccent {
    width: 100%;
    margin-top: 16px;
    /* margin-block: 16px; */
    text-align: center;
    cursor: default;
}

.banner-parent{
  position: relative;
}

.banner-parent a{
  position: absolute;
  inset: 0;
  z-index: 10;
}

/* .banner-parent span{
  position: absolute;
  inset: 0;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.300);
  border-radius: 16px;
} */

.section1 .banner {
    height: 350px;
    object-fit: cover;
    width: 100%;
    border-radius: 16px;
    cursor: pointer;
}

.section1 .banners {
    position: relative;
}

.section1 .banners .owl-dots {
    height: 10px;
    padding: 5px;
    position: absolute;
    bottom: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.section1 .banners .owl-dot {
    width: 10px;
    height: 9px;
    margin: 0 2px;
    border-radius: 10px;
    transition: var(--tran);
    background: var(--ligth) !important;
}

.section1 .banners .owl-dot.active {
    width: 56px;
}

.section1 .counter {
    background-color: var(--mainColor);
    padding: 16px 40px;
    border-radius: 16px;
    margin-top: 16px;
}

.section1 .counter .countTitle::before {
    content: '';
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    -webkit-mask-image: url(View/1014/icon/time-quarter.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--ligth);
}

.section1 .counter .counts {
    display: flex;
    gap: 8px;
}

.section1 .counter .counts .count {
    display: flex;
    align-items: center;
    gap: 1px;
    padding: 8px 16px;
    background-color: var(--bgAccent);
    border-radius: 8px;
}

.section2 , .section3 , .section4 , .section5 , .section6, .section7{
    margin-top: 100px;
}

.section2 .sectionTitles {
    margin-top: 12px;
}

.sectionTitles h1 {
    max-width: 500px;
    display: block;
}

.section2 .sectionTitles .seeAll {
  color: var(--darckFont);
}

.section2 .sectionTitles .seeAll::after {
    content: '';
    width: 16px;
    height: 10px;
    margin-top: 1px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    -webkit-mask-image: url(View/1014/icon/arrow-left.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--darckFont);
}

.section2 .newBoxes list {
    margin-top: 44px;
    direction: ltr;
}

 /* News Section */

 .newBoxes list {
   display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 26px;
    grid-row-gap: 14px;
    height: 366px;
 } 

   .newBoxes list > :first-child{ grid-area: 1 / 2 / 3 / 3; }
  .newBoxes list > :nth-child(2) { grid-area: 1 / 1 / 2 / 2; }
  .newBoxes list> :nth-child(3) { grid-area: 2 / 1 / 3 / 2; }

    .newBoxes .new {
      display: flex;
      gap: 24px;
      background-color: var(--background);
      border-radius: 16px;
      box-shadow: 0px 2px 8px 0px #00000005;
      border: 1px solid var(--iconinput);
      overflow: hidden;
      position: relative;
      padding: 22px 16px;
      direction: rtl;
    }

    .newBoxes .new .newImg {
      width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    }

    .newBoxes .new .newImg2 {
      width: 60px;
      height: 60px;
      border-radius: 16px;
    }

    .newBoxes .new h2 {
      margin-block: 20px;
      color: var(--darckFont);
    }

    .newBoxes .new .newDescription {
      -webkit-line-clamp: 5;
    }

    .newBoxes .new .newContent {
      flex-direction: column;
      align-items: inherit;
    }

    .newBoxes .new .newBtns {
      margin-right: 14px;
    }

    .newBoxes .new .newHeader {
      gap: 18px;
      align-items: center;
      justify-content: inherit;
      margin-bottom: 10px;
    }

    .newBoxes list > :first-child .newImg2 {
     display: none;
   }
   .newBoxes list > :nth-child(2) .newImg {
     display: none;
   }
   .newBoxes list > :nth-child(3) .newImg {
     display: none;
   }
   .newBoxes list > :nth-child(2) .newBtns {
     display: none;
   }
   .newBoxes list > :nth-child(3) .newBtns {
     display: none;
   }
   .newBoxes list > :nth-child(2) .newDescription {
     -webkit-line-clamp: 3;
     font-size: 14px;
   }
   .newBoxes list > :nth-child(3) .newDescription {
     -webkit-line-clamp: 3;
     font-size: 14px;
   }
   .newBoxes list > :nth-child(2) h2 {
     -webkit-line-clamp: 2;
     font-size: 16px;
     margin-top: 0;
   }
   .newBoxes list > :nth-child(3) h2 {
     -webkit-line-clamp: 2;
     font-size: 16px;
     margin-top: 0;
   }

  .arrows {
    display: flex;
    gap: 30px;
  }
   
 .arrow{
    width: 13px;
    height: 13px;
    cursor: pointer;
}

.section3 .memorys {
  margin-top: 70px;
}

.section3 .memory {
  padding: 32px 24px;
  background-color: var(--ligth);
  border-radius: 16px;
}

.section3 .memory .memoryHeader {
  margin-bottom: 32px;
}

.section4 .aboutUs {
  text-align: center;
  flex-direction: column;
}

.section4 .aboutUs h2 {
  margin-block: 16px 10px;
}

.section4 .aboutUs .vector {
  margin-block: 64px 140px;
  max-width: 160px;
}

.max-w-600{
  max-width: 600px;
}

.section5 .sectionTitles, .section6 .sectionTitles {
  /* gap: 160px; */
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 60px;
}

 .section6Titles{
  max-width: 400px;
  width: 100%;
}

.section5 .sectionTitles h1, .section6 .sectionTitles h1 , .section6 .sectionTitles span {
  display: block;
  width: 100%;
}

.section5 .sectionVector, .section6 .sectionVector {
  gap: 100px;
}

.section5 .sectionVector .vector, .section6 .sectionVector .vector {
  width: 200px;
  padding: 13px 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.section6 .sectionVector .vector {
  display: inline-block;
}

.section6 .sectionVector .vector {
  width: 310px;
}

.section5 .logBoxes list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.section5 .logBoxes .logBox {
  background-color: var(--ligth);
  border-radius: 16px;
  padding: 20px 30px;
}

.section5 .logBoxes .logBox h3 {
  margin-block: 20px 15px;
}

.section5 .logBoxes .logBox .logBtns {
  margin-top: 30px;
}

.section6 .supports {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 40px 70px;
  border-radius: 16px;
  background-color: #D6F0EA;
  column-gap: 60px;
}

/* .section6 .supports .support h3 {
  margin-block: 30px 14px;
} */

.section6 .supports .supportIcon {
      width: max-content;
    padding: 14px;
    background: var(--ligth);
    border-radius: 16px;
}

.section6 .supports .supportIcon img{
  width: 36px;
  height: 36px;
}


.icon::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  -webkit-mask-image: var(--icon-url);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  background-color: var(--mainColor);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    transition: transform 0.3s ease-in-out;
    width: fit-content;
    max-width: 1280px;
}

.marquee-text.animate {
    animation: marquee 20s linear infinite;
    width: max-content;
}

@keyframes marquee {

    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }

}

.extra-details{
  display: block;
  margin-top: 24px;
}

.section7 .fontTitle {
  white-space: nowrap;
}

.section7 .vector {
  max-width: 160px;
}

/* cards */
.card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--ligth);
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
  /* box-shadow: 0 8px 20px rgba(0,0,0,0.08); */
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  cursor: zoom-in;
}

.card-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.f-caption{
  text-align: right;
}

.owl-stage-outer{
  padding-block: 16px;
}

.section7 .owl-item{
  height: 327px;
}

.section7 .owl-item .card{
  height: 327px;
}

.ltr-text{
  direction: ltr;
}

.clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.flex-icon{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}@media screen and (min-width: 600px) and (max-width: 1024px) {
.section2 , .section3 , .section4 , .section5 , .section6{
    margin-top: 90px;
}

.sectionTitles {
    flex-direction: column !important;
}

.sectionTitles h1 {
    place-self: baseline;
}

.section1 .lineClamp {
    -webkit-line-clamp: 3;
    display: -webkit-box;
}

.section1 .banners .owl-dots {
    justify-content: left;
    left: 26px;
}

.section1 .counter {
    flex-direction: column;
}

.section1 .counter .countTitle {
    text-align: center;
}

.section1 .counter .countTitle::before {
    display: none;
}

.section1 .counter .counts .count {
    padding: 5px 8px;
    margin-top: 18px;
}

.section2 .seeAll {
    place-self: end;
    margin-top: 16px;
}

.newBoxes list{
    display: flex;
    flex-direction: column;
    height: 100%;
}

.newBoxes .new {
    flex-direction: column;
    gap: 16px;
}

.newBoxes .new .newImg {
    width: 100%;
    height: 250px;
}

.newBoxes .new h2 {
    margin-block: 0;
}

.newBoxes .new .newBtns {
    flex-direction: column-reverse;
}

.newBoxes .new .newBtns a {
    text-align: center;
    width: 100%;
}

.newBoxes .newDate {
    place-self: end;
    margin-block: 30px 15px;
}

.section3 .sectionTitles {
    flex-direction: row!important;
    align-items: center;
}

.section3 .memory {
    padding: 24px;
}

.section3 .memory .memoryHeader {
    margin: 0;
}

.section3 .memory .memoryHeader span {
    margin-block: 24px;
}

.section3 .memorys {
    margin-top: 16px;
}

.section4 .aboutUs h2{
    font-size: 17px;
}

.section6 .sectionTitles h1{
    font-size: 21px;
    margin-block: 8px;
}

.section4 .aboutUs .vector {
    margin-block: 64px 80px;
}

.section6 .supports .supportIcon img {
    width: 20px;
    height: 20px;
}

.section6 .supports {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 22px;
}

.section5 .sectionVector , .section6 .sectionTitles{
    flex-direction: column;
    gap: 0;
}

.section5 .sectionTitles , .section6 .sectionVector{
    gap: 0;
    align-items: start;
    flex-direction: column;
}

.section6 .sectionVector {
    align-items: center;
}

.section5 .sectionVector .vector.calender , .section6 .sectionVector .vector {
    width: 92%;
    justify-content: center;
    margin-top: 24px;
}

.section5 .logBoxes list{
    grid-template-columns: 1fr 1fr;
}

.section5 .logBoxes .logBox .logBtns {
    flex-direction: column;
    gap: 8px;
}

.section5 .logBoxes .logBox .logBtns a  {
    width: 100%;
    text-align: center;
}

.section6 .sectionTitles h1 ,  .section6 .sectionTitles span{
    width: 100%;
}

.section6 .section6Titles {
    place-self: baseline;
}

.marquee-text.animate {
    max-width: 100%;
    animation: marquee 15s linear infinite;
}

.mobile-full{
    width: 100%;
}

.section7 .vector {
  max-width: unset;
}

.section4 .aboutUs .vector{
    max-width: unset;
    width: 92%;
}}@media screen and (min-width: 0) and (max-width: 600px) {
*{
    font-size: 14px;
}

.section2 , .section3 , .section4 , .section5 , .section6{
    margin-top: 80px;
}

.sectionTitles {
    flex-direction: column !important;
}

.sectionTitles h1 {
    margin-block: 8px;
}

/* .section1 .lineClamp {
    -webkit-line-clamp: 1;
    display: -webkit-box;
} */

.section1 .banners .owl-dots {
    justify-content: left;
    left: 26px;
}

.section1 .counter {
    flex-direction: column;
}

.section1 .counter .countTitle {
    text-align: center;
}

.section1 .counter .countTitle::before {
    display: none;
}

.section1 .counter .counts .count {
    padding: 5px 8px;
    margin-top: 18px;
}

.section2 .seeAll {
    place-self: end;
    margin-top: 16px;
}

.newBoxes list{
    display: flex;
    flex-direction: column;
    height: 100%;
}

.newBoxes .new {
    flex-direction: column;
    gap: 16px;
}

.newBoxes .new .newImg {
    width: 100%;
    height: 130px;
}

.newBoxes .new h2 {
    margin-block: 0;
}

.newBoxes .new .newBtns {
    flex-direction: column-reverse;
}

.newBoxes .new .newBtns a {
    text-align: center;
    width: 100%;
}

.newBoxes .newDate {
    place-self: end;
    margin-block: 30px 15px;
}

.section3 .memory .memoryHeader {
    flex-direction: column;
}

.section3 .memory .memoryHeader h3 {
    place-self: start;
}

.section3 .memory .memoryHeader {
    margin: 0;
}

.section3 .memory .memoryHeader span {
    place-self: end;
    margin-block: 24px;
}

.section3 .memorys {
    margin-top: 16px;
}

.arrows {
    place-self: end;
}

.section4 .aboutUs h2{
    font-size: 17px;
}

.section6 .sectionTitles h1{
    font-size: 21px;
    margin-block: 8px;
}

.section4 .aboutUs .vector {
    margin-block: 64px 80px;
}

.section6 .supports .supportIcon img {
    width: 20px;
    height: 20px;
}

.section6 .supports {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 22px;
}

.section5 .sectionVector , .section6 .sectionTitles{
    flex-direction: column;
    gap: 0;
}

.section5 .sectionTitles , .section6 .sectionVector{
    gap: 0;
    align-items: start;
    flex-direction: column;
}

.section6 .sectionVector {
    align-items: center;
}

.section5 .sectionVector .vector.calender , .section6 .sectionVector .vector {
    width: 92%;
    justify-content: center;
    margin-top: 24px;
}

.section5 .logBoxes list{
    grid-template-columns: 1fr;
}

.section5 .logBoxes .logBox .logBtns {
    flex-direction: column;
    gap: 8px;
}

.section5 .logBoxes .logBox .logBtns a  {
    width: 100%;
    text-align: center;
}

.section6 .sectionTitles h1 ,  .section6 .sectionTitles span{
    width: 100%;
}

.marquee-text.animate {
    max-width: 100%;
    animation: marquee 10s linear infinite;
}

.mobile-full{
    width: 100%;
}

.section7 .vector {
  max-width: unset;
}

.section4 .aboutUs .vector{
    max-width: unset;
    width: 92%;
}}









