@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&display=swap");

@font-face {
  font-family: "NotoKufiArabic";
  src: url(../webfonts/NotoKufiArabic-Regular.ttf);
}

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

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

:root {
  --b-color: #00a0df;
  --g-color: #76bc21;
}

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

img {
  max-width: 100%;
}

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

figure {
  padding: 0;
  margin: 0;
}

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

.btn-site, .tml-button {
  display: block;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  width: 150px;
  transition: 300ms;
  outline: none;
  border-radius: 50px;
  border: 1px solid #8e8e8e;
  color: #000;
}

.tml-button{
  margin:auto;
}

.btn-site:hover {
  background: var(--b-color);
  border-color: transparent;
  color: #fff;
}

.tml-button:hover {
    background: var(--g-color);
    border-color: transparent;
    color: #fff;
}

.tml-links {
    display: grid;
    gap: 10px;
}

.tml-links a:hover {
    color: var(--b-color);
}


#btn-mobile,
.logo-container-mobile,
.overlay {
  display: none;
}

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

.head-title h2 {
  position: relative;
  font-size: 32px;
  font-weight: bold;
  margin-block-end: 30px;
}

.head-title h2::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 1px;
  background: var(--g-color);
  bottom: -15px;
}

.head-title.text-center h2::before {
  left: 0;
  right: 0;
  margin: auto;
}

.head-title h2 > span {
  font-weight: normal;
  color: var(--b-color);
}

.head-title small {
  font-size: 12px;
  color: #000;
}

.card-site {
  margin-block-end: 30px;
}

.card-site > a {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.card-site a.image-card figure {
  height: 320px;
}

.card-site a.image-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 300ms;
}

.card-site .box-caption > a {
  font-size: 18px;
  font-weight: bold;
  color: #282828;
  margin-block: 15px;
  display: block;
}

.card-site > a .text {
  position: absolute;
  z-index: 999;
  inset: 0;
  background-color: #3d7cc9eb;
  overflow: hidden;
  visibility: hidden;
  transition: 300ms;
  transform: translateX(350px);
}

.card-site > a .text img {
  width: 140px;
  object-fit: scale-down;
  margin-inline-start: 120px;
  opacity: 0.5;
}

.card-site > a .text p {
  margin: auto;
  display: block;
  margin-block-start: -20px;
  padding: 0 20px;
  color: #fff;
}

.card-site:hover a .text {
  visibility: visible;
  transform: translateX(0px);
  opacity: 1;
}
/* Start Header */

#masthead .logo-container {
  margin-block: 25px;
}

#masthead a.logo-site {
  display: block;
  height: 63px;
}

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

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

#primary-menu li a {
  font-size: 16px;
  color: #222222;
  font-weight: 400;
}

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

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

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

#masthead .right-top::before {
  content: "";
  position: absolute;
  width: 711px;
  height: 60px;
  background: #3d7cc9;
  left: 0;
  top: 0;
  z-index: -1;
  border-bottom-right-radius: 50px;
}

#masthead .right-top a {
  color: #fff;
  font-size: 15px;
  letter-spacing: 1px;
}

#masthead .right-top ul {
  gap: 30px;
  justify-content: end;
}

#masthead .right-top {
  margin-block-start: -8px;
}
#masthead .right-bottom {
  margin-block: 45px 5px;
  display: flex;
  align-items: center;
  gap: 38px;
  position: relative;
}

#btn-search {
  cursor: pointer;
}

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

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

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

#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;
}
/* End Header */
/* Start Slider */

.main-slider {
  position: relative;
}

.main-slider .item {
  height: 620px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.main-slider .item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-slider .container {
  position: absolute;
  inset: 0;
}

.main-slider .item .caption {
  position: absolute;
  bottom: 180px;
  color: #fff;
}

.main-slider .item .caption h2 {
  font-weight: bold;
  font-size: 60px;
  position: relative;
  font-family: "Kantumruy Pro", sans-serif;
}

.main-slider .item .caption span {
  display: block;
  font-weight: 300;
  font-size: 26px;
  margin-block-start: 15px;
  font-family: "NotoKufiArabic";
}

.swiper-slider {
  position: relative;
}

.swiper-slider .swiper-pagination {
  position: absolute;
  right: 0;
  width: 50px;
  bottom: 130px;
}

.swiper-slider .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.swiper-slider .swiper-pagination-bullet-active {
  background: var(--g-color);
}

.box-slider {
  position: relative;
  width: 65%;
  margin: auto;
  background-color: var(--g-color);
  color: #fff;
  border-radius: 200px;
  padding: 10px 100px 10px 10px;
  margin-block-start: -80px;
  z-index: 2;
}

.box-slider .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box-slider .box .info {
  background: #fff;
  color: #000;
  width: 440px;
  height: 150px;
  display: grid;
  place-content: center;
  place-items: center;
  gap: 20px;
  border-radius: 200px;
}

.box-slider h2 {
  font-size: 32px;
  font-weight: 400;
  margin-block-end: 20px;
}

.box-slider a.btn-site {
  color: #fff;
  border-color: #fff;
  display: block;
  text-align: center;
  width: 150px;
  padding: 10px;
  margin: auto;
}

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

.box-slider .box .info > strong {
  font-size: 18px;
}

.box-slider .box .info span {
  font-size: 13px;
}

.box-slider .box .info span > strong {
  color: var(--b-color);
  font-size: 20px;
}
/* End Slider */

/* Start about */
.about {
  padding-block: 80px;
}

.about .caption {
  padding-inline-end: 100px;
}
.about .head-title {
  margin-block-end: 30px;
}

.about figure {
  height: 500px;
}

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

.about p {
  text-align: justify;
}

.about .btn-site {
  margin-block-start: 30px;
}

/* End about */

/* Start register */

.register {
  background-color: #f8f8f7;
  padding-block: 80px;
}

.card-Subscribe {
  background: #fff;
  padding: 50px 20px;
  border-radius: 20px;
}

.card-Subscribe > h2 {
  text-align: center;
  margin-block-end: 25px;
  font-weight: bold;
  font-size: 25px;
}

.card-Subscribe .nav-tabs .nav-link,
.card-Subscribe .nav-tabs .nav-link.active {
  border: 0 !important;
  background: #f0f0f0;
  border-radius: 20px !important;
  color: #6999d2;
  padding-inline: 16px;
  font-size: 14px;
}

.card-Subscribe .nav-tabs .nav-link.active,
.card-Subscribe .nav-tabs .nav-link:hover {
  background: var(--g-color);
  color: #fff;
}

.card-Subscribe .card-tabs ul.nav-tabs {
  border-bottom: 0;
  justify-content: center;
}

.card-Subscribe .tab-content ul {
  line-height: 2;
  min-height: 200px;
}

.card-Subscribe .tab-content {
  display: grid;
  margin-block: 35px 0;
}

.card-Subscribe .tab-content ul > li {
  position: relative;
  padding-inline-start: 30px;
  margin-inline-start: 20px;
}

.card-Subscribe .tab-content ul > li::before {
  content: "";
  position: absolute;
  background-image: url(../images/true.png);
  background-repeat: no-repeat;
  right: 0;
  width: 15px;
  height: 12px;
  top: 8px;
  background-size: contain;
}

.card-Subscribe .price {
  padding-block: 25px;
  border-top: 1px solid #ebebeb;
  margin-block-start: 20px;
  text-align: center;
}

.card-Subscribe .price span strong {
  font-size: 25px;
  color: var(--b-color);
}

.card-Subscribe a.btn-site {
  margin: auto;
  border-color: var(--g-color);
}

.card-Subscribe a.btn-site:hover {
  border-color: transparent;
}
/* End register */

/* Start service */

body:is(.home) .service {
  padding-block: 90px 60px;
}
/* End service */

/* Start section-site */

.section-diacare {
  padding-block: 80px;
  background-color: #f8f8f7;
}

.section-site.tow {
  margin-block-start: 40px;
}

.section-site .item {
  display: flex;
  gap: 10px;
}

.section-site .item .title {
  background: #6d6e71;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: grid;
  place-content: center;
  place-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-site .item .title::before {
  content: "";
  position: absolute;
  background-image: url(../images/logo-post.png);
  width: 360px;
  height: 240px;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 2px;
  right: -58px;
  opacity: 0.09;
  filter: grayscale(1);
  z-index: 0;
  transform: rotateY(180deg);
}

.section-site .item .text {
  width: 80%;
  background: var(--b-color);
  background-repeat: no-repeat;
  background-position: right;
  border-radius: 200px;
  display: grid;
  place-content: center;
  position: relative;
}

.section-site.tow .item .text {
  background: var(--g-color);
}

.section-site .item .text::before {
  content: "";
  position: absolute;
  background-image: url(../images/bg-section.png);
  width: 390px;
  height: 180px;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-site.tow .item .text::before {
  background-image: url(../images/bg-section-tow.png);
  left: 0;
}

.section-site.tow .item .text .caption {
  padding-inline-start: 0;
  margin-inline-start: -250px;
}
.section-site.tow .item a.btn-site:hover {
  background: var(--b-color);
}
.section-site .item .title h2 {
  font-size: 23px;
  font-weight: bold;
  z-index: 2;
}

.section-site .item .title span {
  font-size: 20px;
  margin-block-end: 8px;
  z-index: 2;
}

.section-site .item .text p {
  color: #fff;
  font-size: 18px;
  z-index: 3;
}

.section-site .item a.btn-site {
  border-color: #fff;
  color: #fff;
}
.section-site .item .text .caption {
  position: relative;
  padding-inline-start: 200px;
}

.section-site .item a.btn-site:hover {
  background: var(--g-color);
}
/* End section-site */

/* Start client */
.client {
  padding-block: 70px 40px;
}

.client .item {
  text-align: center;
  display: grid;
  place-content: center;
  place-items: center;
  margin-block: 10px 20px;
}

.slider-client figure {
  border-radius: 15px;
  width: 200px;
  position: relative;
  display: grid;
  place-content: center;
  place-items: center;
  margin-block-end: 20px;
}

.slider-client figure::before {
  content: "";
  position: absolute;
  width: 196px;
  height: 196px;
  background: #d9d9d9;
  border-radius: 50%;
  z-index: -1;
  bottom: 4px;
}

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

.slider-client {
  position: relative;
}

.client .swiper-pagination {
  position: absolute;
  bottom: -50px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next,
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  width: 45px;
  height: 45px;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0px 4px 24.4px rgba(0, 0, 0, 0.1);
  top: 170px;
}

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

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

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 13px;
}

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

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

.client .item h2 {
  font-size: 18px;
  font-weight: bold;
}

.client .item p {
  color: #00000082;
  font-size: 14px;
  margin-block-start: 10px;
}
/* End client */

/* Start Map */

.map {
  height: 290px;
}

.map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

/* End Map */

/*  Start Footer */
footer .logo-site a {
  width: 210px;
  margin: 35px auto;
  display: block;
}

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

footer h2 {
  font-size: 17px;
  font-weight: bold;
  margin-block-end: 15px;
}

footer ul {
  justify-content: center;
  gap: 97px;
}

footer .info {
  margin-block-end: 20px;
}

footer .copyright {
  color: #fff;
  background-color: var(--b-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-inline: 50px;
  border-radius: 100px;
  margin-block: 25px;
}

footer .copyright span {
  font-size: 14px;
  color: #ffffffbf;
}

ul.socail-m {
  display: flex;
  gap: 15px;
}

ul.socail-m a {
  color: #efefef;
  font-size: 14px;
}
footer {
    background: #f7f7f7;
    padding: 5px 0;
}

body:is(.home) footer {
    background: transparent;
}
/*  End Footer */

/********************************************************************************** Start Syles Pages  **********************************************************************************/
.entry-header {
  display: grid;
  place-content: center;
  min-height: 120px;
  background: #3d7cc9;
  margin-block-end: 30px;
}

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

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

.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;
}

.page-template-template-contact .item {
  border-radius: 10px;
  padding-block: 40px 0;
  padding-inline: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 20px #b9b9b9;
  margin-block-end: 40px;
}

.form-control, .tml-login input , .tml-register input , .tml-lostpassword input {
  background: transparent;
  border: 1px solid #424242;
  direction: rtl !important;
  padding: 12px 25px;
  position: relative;
  font-size: 16px;
  z-index: 9;
  color: #464646;
  transition: 300ms;
  border-radius: 10px;
}

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

.form-control:focus {
  color: #000 !important;
  background-color: transparent;
  border-color: #fff;
}

.form-control:focus {
  color: #000;
  box-shadow: none;
  outline: none;
  border-color: #00000061;
}

.form-control::placeholder {
  color: #878787;
}

.contact .btn-site {
  margin: 35px auto 0;
  background: var(--b-color);
  color: #fff;
  border-color: transparent;
}

.contact .btn-site:hover {
  background-color: #fff;
  color: var(--c-site);
}
.contact .btn-site:hover {
  background: #3d7cc9;
  color: #fff;
}
body:is(.home) main#primary {
  margin-block-end: 60px;
}

.page-id-16 .post-thumbnail img {
  object-fit: contain !important;
}

.search article {
  border: 1px solid #000;
  margin-block-end: 15px;
  padding: 15px;
}

.search article h2 > a {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid var(--b-color);
  padding-block-end: 10px;
  margin-block-end: 5px;
  display: inline-block;
}
.search .entry-footer {
  border-top: 1px solid #0000002b;
  margin-block: 20px 0;
  padding-block-start: 10px;
}

.entry-content .tml-login , .entry-content .tml-register , .entry-content .tml-lostpassword {
    width: 70%;
    margin: auto;
    border-radius: 10px;
    padding-block: 40px;
    padding-inline: 30px;
    box-shadow: 0px 0px 20px #b9b9b9;
    margin-block-end: 40px;
}

.tml-lostpassword .tml-message {
    font-size: 14px;
    margin-block-end: 35px;
}

.tml-lostpassword button.tml-button {
    width: 250px;
}


/************************************************************* New Pages Styles  *************************************************************/

header#masthead {
    box-shadow: 0px 10px 10px #dddddd33;
    padding-block-end: 4px;
}
div#page {
    overflow: hidden;
}

.pages-diacare .head {
  margin-block-start: 60px;
}
.pages-diacare .head a {
  border-color: var(--b-color) !important;
}

.user-diacare .image figure {
  margin: auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-block-end: 40px;
}

.user-diacare .info-user {
  margin-block-end: 25px;
}

.user-diacare .image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-diacare .box-plan {
  padding: 40px;
  border: 1px solid #d0d0d0;
  border-radius: 25px;
  margin-block-end: 50px;
}

.user-diacare .box-plan > span {
  background: #f0f0f0;
  border-radius: 20px !important;
  color: #6999d2;
  padding-inline: 16px;
  margin-block: 20px;
  display: inline-block;
}

.user-diacare .info-plan .item {
  padding: 40px;
  border: 1px solid #d0d0d0;
  border-radius: 25px;
  margin-block-end: 50px;
}

.user-diacare .info-plan .item h2 {
  margin-block-end: 40px;
      font-size: 22px;
    font-weight: bold;
}

.user-diacare .info-plan .item .price {
  margin-block-start: 30px;
  border-top: 1px solid #f5f5f5;
  padding-block-start: 20px;
  font-size: 14px;
}

.user-diacare .info-plan .item .price strong {
  color: var(--b-color);
  font-weight: bold;
      font-size: 23px;
}

.user-diacare .user-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.user-diacare .user-stats svg {
    width: 15px;
    margin-block-end: -10px;
}

.plan-user .data svg {
    width: 15px;
}

.bills .box-bills {
  padding: 40px;
  border: 1px solid #d0d0d0;
  border-radius: 25px;
  margin-block-end: 50px;
  display: grid;
  gap: 20px;
}

.bills .box-bills .price strong {
  color: var(--b-color);
  font-size:19px;
}

.bills .box-bills .date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bills .box-bills a.btn-site {
    border-color: var(--b-color);
}

.bills .box-bills .date svg {
    width: 15px;
}
.box-subscribe .items {
  padding: 10px;
  border: 1px solid #d0d0d0;
  border-radius: 25px;
  margin-block-end: 50px;
  display: flex;
  justify-content: space-between;
}

.box-subscribe .items .right {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 25px;
  padding-inline-end: 120px;
  width: 30%;
}

.box-subscribe .items .right h5 {
  margin-block-end: 20px;
}

.box-subscribe .items .left {
  padding-inline-end: 50px;
  width: 40%;
}

.box-subscribe .items .left .box-price {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #dddddd;
  border-radius: 25px;
  margin-block-end: 25px;
}

.box-subscribe .items .left .box-price strong {
  color: var(--b-color);
}
.box-subscribe .items .left a.btn-site {
  border-color: var(--g-color);
  margin-inline-start: auto;
}

.box-subscribe .card-Subscribe {
  margin-block-start: 20px;
  padding: 0;
  border-radius: 0;
}

.box-subscribe .card-Subscribe .card-tabs ul.nav-tabs {
  display: flex;
  gap: 20px;
}

.user-diacare .user-stats h5 {
    color: red;
    font-size: 16px;
    margin-block-start: 20px;
}

.user-diacare .caption h2 {
    font-size: 18px;
    font-weight: bold;
}

.user-diacare .caption span {
    font-size: 15px;
    color: #858585;
}

.plan-user h2 {
    font-size: 21px;
    font-weight: bold;
}

.plan-user .data {
    font-size: 14px;
    color: #707070;
}
/************************************************************* End Pages Styles  *************************************************************/

/********************************************************************************** End Syles Pages  **********************************************************************************/

@media screen and (min-width: 992px) and (min-width: 1400px) {
  #masthead .right-top::before {
    width: 50%;
  }
  .main-slider .item {
    height: 750px !important;
  }
  .main-slider .item {
    height: 700px;
  }
  .box-slider {
    width: 50%;
  }
}

@media (max-width: 1200px) {
#primary-menu{
  gap:20px
}
#masthead .right-bottom {
    gap: 15px;
}

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

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

/* Start media Styles */

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

  #masthead .logo-container {
    margin-block: 15px;
  }

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

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

  #btn-mobile i {
    font-size: 23px;
  }
  #masthead .right-bottom {
    margin-block: 0;
  }

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

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

  #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: #3d7cc9;
    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);
  }

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

  #primary-menu li.current-menu-item a {
    color: #fff;
  }

  #primary-menu li a:hover,
  #primary-menu li.current-menu-item a {
    color: #fff;
  }
  .logo-container-mobile ul {
    background: var(--b-color);
    justify-content: center;
    gap: 40px;
    padding: 12px 0;
    font-size: 13px;
  }

  #primary-menu li a {
    color: #ffffffcf;
  }
  html,
  p {
    font-size: 13px;
  }
  .logo-container-mobile ul a {
    color: #fff;
  }
  .main-slider .item {
    height: 350px;
  }

  .main-slider .item .caption {
    bottom: 90px;
  }

  .main-slider .item .caption h2 {
    font-size: 30px;
    color: #fff;
    filter: drop-shadow(0px 1px 5px black);
  }

  .main-slider .item .caption span {
    font-size: 14px;
  }
  a .main-slider .item .caption span {
    font-size: 14px;
  }

  .swiper-slider .swiper-pagination {
    bottom: 60px;
  }

  .swiper-slider .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
  .box-slider {
    width: 95%;
    padding: 10px 40px 10px 10px;
    margin-block-start: -50px;
  }

  .box-slider h2 {
    font-size: 15px;
    text-align: center;
    margin-block-end: 15px;
  }

  .box-slider a.btn-site {
    width: 110px;
    font-size: 12px;
  }

  .box-slider .box .info {
    width: 182px;
    height: 90px;
    text-align: center;
    gap: 9px;
  }

  .box-slider .box .info > strong {
    font-size: 13px;
  }

  .box-slider .box .info span > strong {
    font-size: 14px;
  }
  .head-title h2 {
    font-size: 23px;
  }
  .about {
    padding-block: 50px;
  }
  .about .row {
    flex-direction: column-reverse;
  }
  .about figure {
    height: 300px;
    margin-block-end: 40px;
  }

  .about .caption {
    padding-inline-end: 0;
  }
  .about .head-title {
    text-align: center;
  }

  .head-title h2::before {
    left: 0;
    right: 0;
    margin: auto;
  }

  .about p {
    text-align: center;
    font-size: 12px;
  }

  .about .btn-site {
    margin: 30px auto 0;
    font-size: 13px;
  }
  .register {
    padding-block: 40px 20px;
  }

  .card-Subscribe {
    margin-block-end: 30px;
    padding: 35px 10px;
  }

  .card-Subscribe .price span strong {
    font-size: 20px;
  }

  .card-Subscribe a.btn-site {
    font-size: 13px;
  }

  .card-Subscribe > h2 {
    font-size: 19px;
  }
  .card-Subscribe .nav-tabs .nav-link,
  .card-Subscribe .nav-tabs .nav-link.active {
    padding-inline: 21px;
    font-size: 13px;
  }

  .card-Subscribe .tab-content {
    margin-block: 25px 0;
  }

  .card-Subscribe .price {
    padding-block: 15px;
    margin-block-start: 15px;
  }

  .card-Subscribe .tab-content ul {
    min-height: auto;
  }
  .card-site a.image-card figure {
    height: 200px;
  }
  .card-site > a .text img {
    display: none;
  }

  .service {
    padding-block: 40px 20px !important;
  }
  .card-site > a .text {
    display: grid;
    place-content: center;
  }
  .section-site .item {
    display: block;
    position: relative;
  }

  .card-site .box-caption > a {
    font-size: 14px;
  }
  .section-site .item .text {
    width: 100%;
    border-radius: 0;
    padding-block: 85px 19px;
    display: block;
    text-align: center;
  }

  .section-site .item .title {
    position: absolute;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 70px;
    border-radius: 0;
    display: inline-flex;
    gap: 5px;
  }

  .section-site .item .text::before {
    display: none;
  }

  .section-site .item .text .caption {
    padding-inline-start: 0;
  }

  .section-site.tow .item .text .caption {
    margin-inline-start: 0;
  }
  .section-site .item .title::before {
    top: -40px;
    margin: auto;
    width: 160px;
    height: 101px;
    left: 210px;
  }

  .section-site .item .title span {
    font-size: 18px;
    font-weight: bold;
  }

  .section-diacare {
    padding-block: 40px;
  }

  .section-site .item .title h2 {
    font-size: 18px;
  }
  .section-site.tow {
    margin-block-start: 20px;
  }
  .section-site .item a.btn-site {
    margin: 20px auto 0;
    font-size: 13px;
  }
  .section-site .item .text p {
    font-size: 14px;
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 20px;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 20px;
  }
  .client .item h2 {
    font-size: 16px;
  }
  .map {
    height: 220px;
  }
	.entry-header {
    min-height: 80px;
}

.entry-header .entry-title {
    font-size: 20px !important;
}
  footer ul {
    gap: 15px;
  }

  footer .gap-3 {
    gap: 6px !important;
    font-size: 13px;
  }
  footer h2 {
    font-size: 14px;
  }

  footer .info {
    font-size: 13px;
  }

  footer .logo-site figure {
    height: 120px;
  }

  footer .logo-site a {
    width: 150px;
  }
  footer .copyright {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding-block: 15px;
    gap: 10px;
  }

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

  footer .copyright a {
    height: 30px;
  }

  footer .copyright a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .socail {
    display: none;
  }
  .entry-content .tml-login, .entry-content .tml-register, .entry-content .tml-lostpassword{
width:100%;
  }
  .tml-lostpassword .tml-message {
    font-size: 13px;
}

.tml-button {
    font-size: 13px;
}
}
