@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Cairo", sans-serif;
  font-style: normal;
}

:root {
  --c-site-color: #d9559b;
  --b-site-color: #016684;
  --g-site-color: #7eb65e;
}

a {
  text-decoration: none;
  transition: all 300ms ease-in-out;
  color: #4b4b4b;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

figure {
  padding: 0;
  margin: 0;
}

.vh-100{
  height:100vh;
}

p {
  color: #282828;
  font-size: 15px;
  line-height: 2;
}

div#page {
  overflow: hidden;
}

.btn-site,
.lang li a,
.news .nav-link {
  display: block;
  font-size: 16px;
  text-align: center;
  width: 150px;
  height: 43px;
  line-height: 43px;
  transition: 300ms;
  outline: none;
  border-radius: 50px;
  border: 1px solid var(--g-site-color);
  color: #1c1c1c;
}

.news .nav-link:hover,
.btn-site:hover {
  background: var(--g-site-color);
  border-color: transparent;
  color: #fff;
}

.lang li a {
  background-color: var(--b-site-color) !important;
  border: 1px solid var(--b-site-color);
  width: 82px;
  text-transform: capitalize;
  color: #fff;
}

.lang li a:hover {
  background-color: #fff !important;
  color: #000;
  border-color: #000;
}
#btn-mobile,
.logo-container-mobile,
.overlay {
  display: none;
}

.p-50 {
  padding-block: 5vh;
}

.section-site-high{
  display:grid;
  place-items:center;
}
.image-site {
  position: relative;
  z-index: 9;
}

.image-site::before,
.image-site::after {
  content: "";
  position: absolute;
  width: 237px;
  height: 260px;
  border: 2px solid;
  z-index: -1;
}

.image-site::before {
  inset-inline-start: -20px;
  inset-block-start: -20px;
  border-radius: 20px;
  border-color: var(--g-site-color);
}

.image-site::after {
  inset-inline-end: -20px;
  inset-block-end: -20px;
  border-radius: 20px;
  border-color: var(--c-site-color);
}

.image-site figure {
  height: 513px;
  position: relative;
}

.image-site figure::before,
.image-site figure::after {
  content: "";
  position: absolute;
  background-image: url(../images/sap-site.png);
  height: 177px;
  width: 96px;
  z-index: -2;
}

.image-site figure::before {
  inset-inline-start: -57px;
  inset-block-start: 10px;
}

.image-site figure::after {
  inset-inline-end: 20px;
  inset-block-end: -69px;
}

.image-site figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 100px 20px;
}

.head-title small {
  font-size: 16px;
}

.head-title {
  display: grid;
  gap: 8px;
  margin-block-end: 30px;
}

.head-title .title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.head-title .title h2 {
  font-size: 55px;
  font-weight: bold;
  color: var(--b-site-color);
}

.head-title .title span {
  font-size: 40px;
  color: var(--c-site-color);
  margin-block-start: 15px;
}
.head-section {
  margin-block-end: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.head-section h2 {
  font-size: 50px;
  font-weight: bold;
  color: var(--c-site-color);
}

.head-section span {
  font-size: 15px;
}

.card-site {
  position: relative;
  background: #f3f3f3;
}

.card-site figure {
  position: relative;
  height: 270px;
  overflow: hidden;
  margin: 0;
}

.card-site figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-site .box-caption {
  padding: 30px 20px;
  line-height: 1.7;
  display: grid;
  gap: 15px;
  background: #fff;
  box-shadow: 0px 4px 89.9px -34px rgba(0, 0, 0, 0.19);
}
.card-site .box-caption h2,
.card-site .box-caption a.title-post {
  font-weight: bold;
  font-size: 20px;
}

.card-site .box-caption p {
  color: #9e9e9e;
  border-bottom: 1px solid #0000002e;
  padding-block-end: 20px;
}

.card-site .box-caption a:not(a.title-post) {
  color: var(--g-site-color);
}
.card-site svg {
  transition: 300ms;
}

html[lang="en-US"] .card-site .box-caption a svg:not(.svg-admin) {
  transform: rotate(180deg);
}



.card-site:hover svg:not(.svg-admin) {
  margin-inline-start: 8px;
}

.card-site:hover a.title-post {
  color: var(--b-site-color);
}



.card-site .date-post {
  display: grid;
  place-items: center;
  position: absolute;
  inset-inline-end: 20px;
  inset-block-end: 209px;
  background: linear-gradient(20.27deg, #016684 13.48%, #d9559b 101.52%);
  border-radius: 10px;
  color: #fff;
  width: 72px;
  height: 76px;
}

.card-site .date-post span:first-child {
  font-size: 29px;
  font-weight: bold;
}

.card-site .date-post span:last-child {
  font-size: 14px;
  margin-block-start: -20px;
  margin-block-end: 5px;
}

.accordion-button:not(.collapsed){
  background:var(--c-site-color);
  color:#fff;
}

.page-template .entry-header p{
  max-width:70%;
  margin:auto;
}
.page-template-template-Join-us .text-site ul,
.page-template-template-academy .text-site ul {
    margin-block-end: 30px;
}

.page-template-template-academy .entry-header a{
  margin: auto;
  color: #fff;
}

.page-template-template-contact .contact {
  background: transparent;
    padding: 0;
    margin-block: 60px;
}

.page-template-template-contact .map{
      margin-block-start: 20px;
}

.page-template-template-about .sction-about.about{
  padding:0;
}

.page-template-template-about .about .items{
    display: flex;

}

.page-template-template-about .about .items .item {
    width: 33%;
}
.page-template-template-about .about .items .item .title{
  display:flex;
    align-items: center;
    gap: 15px;
}
.page-template-template-about .about .item h2:before{
      inset-inline-start: -38px;
}

.page-template-template-about .item-section h2:before {
    display: none;
}

.page-template-template-about .item-section{
  display:grid;
  gap:50px;
}
/* Start Header */

#masthead {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

#masthead .logo-container {
  margin-block: 25px;
  background-color: #fff;
  padding-block: 10px;
  padding-inline: 50px;
  border-radius: 50px;
  position: relative;
}

#primary-menu {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
  align-items: center;
}

#primary-menu li a {
  font-size: 16px;
}

#primary-menu li.current-menu-item a {
  color: var(--c-site-color);
  font-weight: bold;
}

#primary-menu li.current-menu-item a:hover {
  color: var(--c-site-color) !important;
}

#primary-menu li a:hover,
#primary-menu li.current-menu-item a:hover {
  color: var(--c-site-color);
}

#btn-search {
  cursor: pointer;
}

#forms-search {
  position: absolute;
  top: 60px;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
  left: 30px;
  z-index: 99;
}

#forms-search.active {
  top: 63px;
  transform: translateY(40px);
  opacity: 1;
  visibility: visible;
}

#masthead form.search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--bs-code-color);
  gap: 10px;
  border-radius: 50px;
}

#masthead input.search-field {
  background-color: transparent;
  border: 1px solid #fff;
  outline: none;
  padding: 4px 14px 6px;
  font-size: 15px;
  height: 32px;
  color: #fff;
}

#masthead input.search-submit {
  padding: 3px 20px 27px;
  border: none;
  font-size: 15px;
  height: 30px;
  display: block;
}

input.search-field::placeholder {
  color: #fff;
}

/* Start Slider */

.main-slider {
height: 850px;
    background-repeat: no-repeat;
    background-size: cover;
    place-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;

}

.main-slider video{
position: absolute;
    inset: 0;
    width: 100%;
    opacity: .2;
	    pointer-events: none;
}
.main-slider .caption {
    position: relative;
}
.main-slider .item {
  margin-block-start: 300px;
}

.main-slider .item small {
  font-size: 32px;
}

.main-slider .item h2 {
  font-size: 80px;
  font-weight: bold;
}

.main-slider .item span {
  font-size: 32px;
  color: var(--c-site-color);
  margin-block-start: -20px;
  display: block;
}
.main-slider .item .content p {
  color: #fff;
    margin: 0;
    margin-block-start: 40px;
    max-width: 480px;
    font-size: 17px;
}

.main-slider a.btn-site {
  border-color: #fff;
  color: #fff;
  margin-block-start: 30px;
}

.main-slider a.btn-site:hover {
  border-color: transparent;
}

/* Start About */

.about {
  padding-block: 80px;
}
.about .caption {
  padding-inline-start: 50px;
}

.about .items p {
  margin-block-start: 20px;
  margin-block-end: 0;
}

.about .items {
  margin-block-start: 40px;
  display: grid;
  gap: 33px;
}

.about .item h2 {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  color: var(--c-site-color);
}

.about .item h2:before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: #d9d9d94d;
  border-radius: 50px;
  z-index: -1;
  inset-inline-start: -20px;
  inset-block-start: -15px;
}

.about
  > .container
  > .row
  > .col-lg-6
  > .caption
  > .items
  > .item:nth-child(2)
  > h2:before {
  inset-inline-start: 25px;
}

.about
  > .container
  > .row
  > .col-lg-6
  > .caption
  > .items
  > .item:nth-child(even)
  > h2 {
  color: var(--g-site-color);
}

/* Start why-fiptness */

.why-fiptness {
  padding-block: 80px;
  background-color: #fafafa;
}

.why-fiptness .head-title .title h2 {
  color: var(--g-site-color) !important;
}

.why-fiptness ul {
  display: grid;
  gap: 18px;
}

.why-fiptness ul li , .text-site ul li {
  padding-inline-start: 30px;
  position: relative;
}

.why-fiptness ul li::before , .text-site ul li:before{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--g-site-color);
  border-radius: 50px;
  inset-inline-start: 0;
  inset-block-start: 9px;
}

.why-fiptness .image-site::before {
  border-color: var(--c-site-color);
}

.why-fiptness .image-site::after {
  border-color: var(--g-site-color);
}

.image-site figure::before {
  transform: rotate(90deg);
  inset-inline-start: -40px;
}

/* End why-fiptness */

/* Start Service */

.service .head-section {
  display: block;
}

.service .head-section{
  text-align: center;
}

.service .item {
    min-height: 250px;
    display: grid;
    text-align: center;
    background: #f5f5f5;
    margin-block-end: 20px;
    border-radius: 15px;
    padding-block-end: 20px;
}


.service .item .content {
    gap: 5px;
    display: grid;
    place-items: center;
    position: relative;
}

.service .item .content a {
  position: absolute;
  inset: 0;
}

.service .item .content h5 {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 0;
}



.page-template-template-service .service .item{
    background: transparent;
}

.page-template-template-service .service .item .content {
    background: #f5f5f5;
    min-height: 190px;
    padding-block-end: 20px;
}

.page-template-template-service .text-ser{
    margin-block-start: 20px;
    padding-inline: 40px;
    text-align: center;
    line-height: 1.8;

}

.page-template-template-service .text-ser strong{
color: var(--c-site-color);
    font-size: 15px;
}
/* End Service */

/* Start testimonial */
.testimonial {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 550px;
  display: grid;
  place-content: center;
}

.testimonial .item {
  background: #fff;
  display: grid;
  place-items: center;
  padding-block: 30px;
  padding-inline: 100px;
  text-align: center;
  gap: 7px;
  border-radius: 15px;
  position: relative;
  margin-block-start: 50px;
  padding-block-start: 60px;
}

.testimonial .item::before {
  content: "";
  position: absolute;
  background-image: url(../images/qout.png);
  width: 60px;
  height: 90px;
  background-repeat: no-repeat;
  inset-inline-start: 120px;
}

.testimonial small {
  color: #fff;
}

.testimonial h2 {
  color: #98e36d !important;
}

.testimonial .item figure {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #fff;
  position: absolute;
  top: -45px;
}

.testimonial .item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial .item h5 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.testimonial .item span {
  font-size: 13px;
  color: #787878;
  margin-block-end: 5px;
}
.slider-store,
.slider-testimonial {
  position: relative;
}


.slider-store .swiper-button-next:after,
.slider-store .swiper-rtl .swiper-button-prev:after,
.slider-store .swiper-button-prev:after,
.slider-store .swiper-rtl .swiper-button-next:after {
      filter: invert(1);
}

.slider-store .swiper-button-prev,
.slider-store .swiper-rtl .swiper-button-next {
  left: -50px;
}

.slider-store .swiper-button-next,
.slider-store .swiper-rtl .swiper-button-prev {
  right: -50px;
}
.page-template-template-store .card-site .box-caption{
    box-shadow: 0px -25px 69.9px -28px rgba(0, 0, 0, 0.19);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: -90px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: -90px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
  position: absolute;
  width: 52px;
  height: 33px;
  background-repeat: no-repeat;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next,
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  top: 160px;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  background-image: url(../images/arrow-R.svg);
  background-repeat: no-repeat;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  background-image: url(../images/arrow-L.svg);
}
.swiper-button-next svg,
.swiper-button-prev svg {
  display: none;
}

.testimonial .swiper-pagination {
  position: absolute;
  bottom: -26px;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  transition: 300ms;
}

.swiper-pagination-bullet-active {
  background: #98e36d;
  width: 20px;
  border-radius: 22px;
}

/* Start testimonial */

/* Start gallary */
.gallary {
  background: #fafafa;
}

.gallary .head-section h2, .section-site .text-site h2 {
  color: var(--b-site-color);
  margin-block-start: 12px;
}

.gallary .photo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-block-start: 50px;
  position: relative;
}

.gallary .photo a {
  display: block;
  height: 341px;
  position: relative;
}

.gallary .photo a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallary .photo a .overlay-icon {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  background: #01668485;
  font-size: 25px;
  color: #fff;
  transition: 300ms;
  opacity: 0;
}
.gallary .photo a:hover .overlay-icon {
  opacity: 1;
}
/* End gallary */

/* Start News */

.news {
  position: relative;
}

.news .links {
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  bottom: -55px;
}

.news .head-section {
  position: relative;
  display: block;
  top: -29px;
  pointer-events: none;
}

.news .nav-tabs {
  border-bottom: 0;
  display: flex;
  gap: 10px;
}

.news .nav-link {
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: center;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--g-site-color);
  color: #fff;
  border-color: transparent;
}

.news .btn-site {
  margin: 30px auto;
}

/* End News */

/* Start contact */

.contact {
  background-color: #d9d9d924;
  position: relative;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  background-image: url(../images/sap-site.png);
  height: 177px;
  width: 96px;
  z-index: -2;
}

.contact::before {
  inset-inline-start: 30px;
  inset-block-end: 70px;
}

.contact::after {
  inset-inline-end: 20px;
  inset-block-start: 41px;
}

.contact .head-title h2 {
  color: var(--g-site-color);
}

.contact .wpcf7-form {
  margin-block-start: 30px;
}

.form-control {
  background: #d9d9d940;
  border: 1px solid transparent;
  direction: rtl !important;
  padding: 12px 25px;
  position: relative;
  font-size: 16px;
  z-index: 9;
  color: #00000073;
  transition: 300ms;
  border-radius: 30px;
}

html[lang="en-US"] .form-control {
  direction: ltr !important;
}

.form-control:focus {
  box-shadow: none;
  border: 1px solid #cfcfcf;
  outline: none;
  color: #00000073 !important;
  background: #ffffff;
}

.form-control::placeholder {
  color: #00000073 !important;
}

textarea.form-control {
  height: 130px;
}

.contact .wpcf7-form .btn-site {
  border-color: #bebebe;
  background: #fff;
  margin-inline-start: auto;
}

.contact .wpcf7-form .btn-site:hover {
  background: var(--g-site-color);
  border-color: transparent;
}

.map {
  position: relative;
  height: 455px;
  margin-block-start: 149px;
}

.map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  border-radius: 54px;
}


.page-template-template-contact .contact .head-title {
    place-content: center;
    place-items: center;
}

.page-template-template-contact .contact .head-title small{
      font-size: 32px;
    font-weight: bold;
    color: var(--b-site-color);
}



/* End contact */

/* Start Footer */
footer.site-footer {
  color: #fff;
}

footer.site-footer .top {
  background: linear-gradient(45deg, #016683, #01303d);
  padding-block: 70px;
}

footer.site-footer h2 {
  font-size: 20px;
  font-weight: bold;
  margin-block-end: 30px;
}

footer.site-footer ul {
  line-height: 2;
}

footer.site-footer ul li {
  display: flex;
  gap: 10px;
}

footer.site-footer ul.menu {
  flex-wrap: wrap;
  display: flex;
  max-width: 220px;
  column-gap: 25px;
  row-gap: 9px;
}


footer.site-footer ul li svg {
  margin-block-start: 5px;
      width: 22px;

}

footer.site-footer ul li a:not(.socail-m a) {
  color: #ffffff;
  width: 90px;
}

footer.site-footer ul li a:hover{
  color:var(--g-site-color);
}

.widget_media_image a {
  display: block;
    margin-block-start: -5px;
    padding-inline-end: 10px;
    height: 190px;
}

.widget_media_image a img{
  width: 100%;
    height: 100% !important;
    object-fit: scale-down;
}

footer.site-footer .bottom {
  background: var(--g-site-color);
  padding-block: 20px;
}
footer.site-footer .bottom .left {
  gap: 160px;
}

footer.site-footer .bottom ul.socail-m a {
  color: #fff;
  font-size: 14px;
}

footer.site-footer .bottom ul.socail-m a:hover {
  color: var(--b-site-color);
}
footer.site-footer .bottom span {
  font-size: 14px;
}

html[lang="en-US"] footer.site-footer ul li a:not(.socail-m a){
	width: 95px;
}
/* End Footer */

/********************************************************************************** Start Syles Pages  **********************************************************************************/

.entry-header {
  display: grid;
  place-content: center;
  min-height: 250px;
  background: var(--b-site-color);
  margin-block-end: 30px;
}

.entry-header .entry-title {
  color: #fff;
  margin-block-start: 130px;
  font-size: 28px;
  font-weight: bold;
}

.entry-content {
  min-height: 300px;
  text-align: center;
}

.post-thumbnail {
  max-width: 800px;
  aspect-ratio: 3 / 2;
  margin-inline: auto;
  margin-block-end: 30px;
}

.post-thumbnail
  img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-template-default .post-thumbnail {
  display: none;
}

.section-site.high-sectino {
    min-height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    place-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-block-end: 40px;
}

.section-site.high-sectino h2 {
    color: #fff;
}

.section-site.high-sectino p {
    color: #fff;
}

.page-template-template-store .section-site {
    text-align: center;
    margin-block-end:0;
}

.page-template-template-store .section-site .text-site ul li:before {
  margin: auto;
  inset-inline-start: 10px;
}
.page-template-template-store .section-site ul {
    width: 50%;
    margin: auto;
}

.page-template-template-store .section-site .text-site ul li 
{
  width: fit-content;
  line-height: 2;
  }

.page-template-template-store .card-site .box-caption {
    text-align: center;
}


.page-template-template-sport-bungee .high-sectino .btn-site,
.page-template-template-store .high-sectino .btn-site{
      margin: 20px auto;
      color:#000;
      border-color:#FFf;
      background-color:#fff;
          font-size: 18px;
}

.page-template-template-sport-bungee .high-sectino .btn-site:hover,
.page-template-template-store .high-sectino .btn-site:hover{
      background-color:var(--b-site-color);
      border-color:transparent;
      color:#FFf;
}
/* Start media */
@media screen and (min-width: 992px) and (max-width: 1400px) {
  #primary-menu {
    gap: 16px;
  }
  #masthead .btn-site {
    width: 130px;
  }
  #masthead .logo-container {
    padding-inline: 20px;
  }

  #masthead .logo-container a.logo-site {
    height: 65px;
  }
  #masthead .logo-container a img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #primary-menu {
    gap: 15px;
  }
    #masthead .btn-site {
    width: 130px;
  }
  .menu-list-site {
    gap: 10px !important;
}
#primary-menu li a {
    font-size: 15px;
}
}

@media (max-width: 992px) {
  #btn-mobile,
  .logo-container-mobile {
    display: block;
  }
  .search,
  .right-top {
    display: none;
  }
  #masthead .logo-container {
    margin-block: 15px;
    padding-inline: 10px;
  }

  #btn-mobile {
    cursor: pointer;
    color: var(--c-site-color);
    font-size: 27px;
    width: 23px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #masthead a.logo-site {
    height: 40px;
  }

  #masthead a.logo-site img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
  }

  #btn-mobile i {
    font-size: 23px;
  }

  .lang li a {
    width: 40px;

    height: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;
  }
  #primary-menu {
    margin-block-start: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: unset;
  }

  #navbar-site {
    position: fixed;
    inset-inline-start: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    background-color: var(--b-site-color);
    z-index: 999;
    transform: translateX(100%);
    transition: 300ms;
    display: block;
    padding-block-start: 7px;
    text-align: center;
    padding-block: 0;
  }

  #navbar-site.active {
    transform: none;
    opacity: 1;
  }

  #button-close {
    width: 50px;
    height: 50px;
    color: #fff;
    display: grid;
    place-content: center;
    cursor: pointer;
    margin: auto;
    border: 1px solid #fff;
    border-radius: 50px;
    margin-block: 20px;
    transition: 300ms;
  }

  #button-close:hover {
    background: #fff;
    color: var(--c-site-color);
  }

  #primary-menu li a {
    font-size: 15px;
    color: #fff;
  }

  .logo-container-mobile ul {
    background: var(--b-color);
    justify-content: center;
    gap: 40px;
    padding: 12px 0;
    font-size: 13px;
  }
  #masthead .btn-site {
    display: none;
  }

  .main-slider {
    height: 100vh !important;
  }
.main-slider video{
  width: 100%;
  height: 100%;
  object-fit:cover;
}
  .main-slider .item {
    margin-block-start: 90px;
  }
  .main-slider .item h2 {
    font-size: 35px;
    margin-block: 5px 20px;
  }

  .main-slider .item small {
    font-size: 15px;
  }

  .main-slider .item span {
    font-size: 25px;
  }

  .main-slider .item .content p {
    font-size: 13px;
    margin-block-start: 20px;
    max-width: max-content;
  }
  .btn-site,
  .news .nav-link {
    width: 130px;
    font-size: 14px;
  }
  .image-site {
    margin-inline: 21px;
  }

  .contact::before,
  .contact::after,
  .image-site figure::before,
  .image-site figure::after {
    display: none;
  }

  .image-site figure {
    height: 250px;
  }

  .image-site::before,
  .image-site::after {
    width: 150px;
    height: 150px;
  }
  .about {
    padding-block: 50px;
  }
  .about .caption {
    padding-inline-start: 0;
    margin-block-start: 35px;
  }

  .head-title small {
    font-size: 13px;
  }

  .head-title .title h2 {
    font-size: 35px;
  }

  .head-title .title span {
    font-size: 20px;
    margin-block-start: 10px;
  }

  .head-title {
    margin-block-end: 20px;
  }

  p {
    font-size: 13px;
  }

  .about .item h2 {
    font-size: 17px;
  }

  .about .items {
    margin-block-start: 25px;
  }

  .page-template-template-about .about .items .item{
    width:100%;
  }

.page-template-template-about .about .items{
  display:grid;
  gap:30px;
}
  .about .item h2:before {
    width: 30px;
    height: 30px;
    inset-inline-start: -10px;
    inset-block-start: -6px;
  }

  .about .items p {
    margin-block-start: 10px;
  }
  .why-fiptness {
    padding-block: 20px 50px;
  }
  .why-fiptness ul li {
    font-size: 14px;
    line-height: 1.8;
    padding-inline-start: 20px;
  }

  .why-fiptness ul {
    margin-block-end: 50px;
  }
  .head-section h2 {
    font-size: 28px;
  }

  .head-section small {
    font-size: 13px;
  }

  .head-section span {
    font-size: 13px;
  }
  .service .item {
        min-height: 150px;
        padding-inline: 5px;
        padding-block-end: 30px;
  }

  .service .item figure {
    height: 50px;
  }

  .service .item figure img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
  }

  .service .item ul {
    font-size: 13px;
  }

  .service .item .content h5 {
    font-size: 15px;
  }
  .service .item .content p{
    margin:0px;
  }
  .testimonial {
    display: block;
    min-height: 459px;
    padding-block-end: 30px;
  }

  .testimonial .item {
    padding-inline: 20px;
    padding-block: 58px 5px;
  }

  .testimonial .item::before {
    inset-inline-start: 40px;
    width: 30px;
    height: 40px;
    background-size: contain;
    inset-block-start: 80px;
  }
  .slider-testimonial .buttons {
    display: none;
  }
  .gallary .photo {
    grid-template-columns: repeat(2, 1fr);
  }

  .entry-header {
    min-height: 150px;
  }

  .entry-header .entry-title {
    margin-block-start: 90px;
    font-size: 18px;
  }

  .page-template-default strong {
    font-size: 18px;
  }
  .gallary .photo a {
    height: 160px;
  }
  .news {
    padding: 0;
  }
  .news .nav-link {
    width: 100px;
    font-size: 13px;
  }

  .news .head-section {
    top: -2px;
  }
  .card-site figure {
    height: 200px;
  }

  .card-site .box-caption {
    padding: 15px 13px;
  }

  .card-site .date-post {
    inset-block-end: 163px;
  }

 .card-site .box-caption h2,
  .card-site .box-caption a.title-post {
    font-size: 18px;
  }

  .card-site .box-caption a:not(a.title-post) {
    margin-block-start: -17px;
    padding-block-end: 5px;
  }
  .head-title span {
    font-size: 13px;
    line-height: 1.8;
  }
  .map {
    margin-block-start: 0;
    height: 200px;
  }
  .contact .wpcf7-form .btn-site {
    margin: auto;
  }
  .widget_media_image a {
    height: 120px;
    margin-block-end: 25px;
  }

  .widget_media_image a img {
    width: 100%;
    height: 100% !important;
    object-fit: scale-down;
  }
  footer.site-footer .top {
    text-align: center;
    padding-block: 60px30px;
  }

  footer.site-footer ul.menu {
    align-items: center;
    margin: auto;
    flex-direction: column;
    margin-block-end: 30px;
  }

  footer.site-footer ul.menu li a {
    width: fit-content;
  }
  footer.site-footer h2 {
    margin-block-end: 15px;
    font-size: 18px;
  }
  .socail {
    display: none;
  }
  footer.site-footer .bottom .copyright {
    flex-direction: column;
    gap: 10px;
  }

  footer.site-footer .bottom span {
    font-size: 12px;
  }

  footer.site-footer .bottom {
    padding-block: 5px;
  }
  footer.site-footer ul {
    display: grid;
    place-items: center;
  }
  .vh-100{
    height:auto !important;
  }
  .page-template-template-store .section-site ul{
    width:100%;
  }
}
