/*
Theme Name: limancare
Theme URI: https://#.com/
Author: insanustu
Author URI: https://www.insanustu.co/
Description: this in exclusive for insanustu
Version: 1.0
*/
/*********************
START: PUBLIC
*********************/
@import url(assets/css/fonts.css);

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

button,
input,
textarea,
a {
  cursor: pointer;
  outline: none !important;
  background: 0 0;
  text-decoration: none;
  box-shadow: none !important;
}

button:focus,
input:focus,
textarea:focus,
a:focus,
input::placeholder,
textarea::placeholder {
  outline: none !important;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

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

img {
  vertical-align: middle;
}

:root {
  --direction: ltr;
  --font-family-Nunito: "Nunito Sans", sans-serif;
  --font-family-Plus: "Plus Jakarta Sans", sans-serif;

  --baseLight-color: #fff;
  --baseDark-color: #000;

  --bg-color: #FCFAF7;

  --title-color-1: #0E0F0E;
  --title-color-2: #262626;
  --title-color-3: #343434;

  --text-color-1: #646464;
  --text-color-2: #505050;

  --border-color-1: #C0C0C0;

  --border-radius10: 10px;
  --border-radius36: 36px;

  --space-section: 200px;


  /* font-size */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 1.875rem;
  /* 30px */
  --text-4xl: 2.25rem;
  /* 36px */
  --text-5xl: 3rem;
  /* 48px */
  --text-6xl: 3.5rem;
  /* 56px */
  --text-7xl: 4rem;
  /* 64px */
  --text-8xl: 4.375rem;
  /* 70px */
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-Nunito);
  direction: var(--direction);
  overflow-x: hidden !important;
  position: relative;
  background-color: var(--bg-color);
}


/* button */
/* bnt-public */
.btn {
  cursor: pointer;
  overflow: hidden;
  transition: all .3s ease;
  border-radius: var(--border-radius10);
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  text-align: center;
  position: relative;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
}

.btn--icon {
  margin-inline-start: 0.5rem;
  transition: all .3s ease;
}

.btn--rounded {
  border-radius: var(--border-radius36);
}

.btn--primary {
  background-color: var(--title-color-2);
  border: 1px solid var(--title-color-2);
  color: var(--baseLight-color);
}

.btn--primary:hover {
  background-color: var(--baseLight-color);
  color: var(--title-color-2);
}

.btn--primary:hover .btn--icon {
  filter: brightness(0.2);
}

/* bnt-public */


.center {
  text-align: center;
}

/* pagination */
.pagination{
	margin-block-start: 2rem;
}

.pagination ul{
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 0.5rem;
}

.pagination ul li{
	display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
	width: 3rem;
	height: 3rem;
}

.pagination ul li:first-child,
.pagination ul li:last-child{
	width: 7rem;
}

/* breadcrumb */
.breadcrumb--content {
  /* margin-block-start: 5rem;
  padding-inline-end: 3rem; */
  position: relative;
  z-index: 0;
  padding-block: 2rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  row-gap: 0.5rem;
  color: var(--baseLight-color);
}

.breadcrumb li>* {
  display: flex;
  align-items: center;
  color: var(--baseLight-color);
}

.breadcrumb li:not(:last-child) {
  font-weight: 400;
}

.breadcrumb li {
  margin-inline-end: 0.75rem;
}

.breadcrumb li:not(:first-child){
  margin-inline-start: 0.75rem;
}

.breadcrumb li>span {
  font-weight: 7600;

}

/* breadcrumb */

/* swiper--navigation */
.swiper--navigation {
  display: flex;
  align-items: center;
  row-gap: 1rem;
}

.swiper--navigation .swiper-button-next,
.swiper--navigation .swiper-button-prev {
  position: relative;
  right: unset;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  top: unset;
  background-color: #5D5C5C;
  margin-top: 0;
}

.swiper--navigation .swiper-button-prev {
  left: -16px;
}

.swiper--navigation .swiper-button-next::after,
.swiper--navigation .swiper-button-prev::after {
  content: unset;
}

.swiper--navigation .swiper-button-next img,
.swiper--navigation .swiper-button-prev img {
  filter: brightness(0) invert(1)
}

/* swiper--navigation */

/* heroInner */
.hero--title {
  color: var(--title-color-1);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.hero--text {
  color: var(--title-color-1);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-block: 1rem 1.25rem;
}

.heroInner--text {
  padding-block-start: 11rem;
  margin-block-end: var(--space-section);
}

/* heroInner */


/* ready */
.ready {
  position: relative;
}

.ready::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 350px);
  bottom: 0;
  left: 0;
  background-color: var(--title-color-2);
}

.ready--content {
  background-color: var(--baseLight-color);
  width: 90%;
  margin-inline: auto;
  border-radius: var(--border-radius10);
  min-height: 464px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 100px;
  padding-inline: 1rem;
  position: relative;
}

.ready--content h6 {
  color: var(--title-color-1);
  text-align: center;
  font-family: var(--font-family-Nunito);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.ready--content p {
  color: var(--title-color-1);
  text-align: center;
  font-family: var(--font-family-Nunito);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-block: 2rem 2.5rem;
}

/* ready */

/*********************
END: PUBLIC
*********************/

/*********************
START: HEADER
*********************/

header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--baseLight-color);
  transition: all 0.5s;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.12);
}

.header--logo{
	max-width: 170px;
}

.header--logo img{
	width: 100%;
}

/* header--content */
.header--content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.darkPage {
  background-color: rgba(38, 38, 38, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  transition: opacity 1s linear;
}

/* header--logo */

/* header--menu */
.header--menu {
  display: flex;
  align-items: center;
  column-gap: 2.5rem;
}

.nav-icon {
  position: absolute;
  display: inline-block;
  right: 15px;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.5s;
  display: none;
}

.nav-icon:after,
.nav-icon:before,
.nav-icon div {
  background-color: var(--text-color-1);
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 5px 0;
  transition: all 0.2s ease-in-out;
}

.nav-icon:after,
.nav-icon:before,
.nav-icon div {
  background-color: var(--text-color-1);
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 5px 0;
  transition: all 0.2s ease-in-out;
}

.nav-icon.open:before {
  transform: translateY(6px) rotate(135deg);
}

.nav-icon.open div {
  transform: scale(0);
}

.nav-icon.open:after {
  transform: translateY(-8px) rotate(-135deg);
}

.header--menu nav>ul {
  display: flex;
  align-items: center;
  column-gap: 3.75rem;
}

.header--menu nav>ul>li>a {
  display: block;
  width: 100%;
  color: #001B03;
  font-family: var(--font-family-Nunito);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/*********************
END: HEADER
*********************/

/*********************
START: FOOTER
*********************/
footer {
  padding-block-start: 7rem;
  background-color: var(--title-color-2);
}

/* footer--up */
.footer--up>ul {
  display: flex;
  justify-content: space-between;
}

.footer--up>ul>li .headerWiget {
  margin-block-end: 1.5rem;
}

.footer--up>ul>li .headerWiget h3 {
  color: var(--baseLight-color);
  font-family: var(--font-family-Nunito);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.footer--up>ul>li:is(:nth-child(1), :nth-child(4)) {
  width: 26%;
}

.footer--up>ul>li:first-child .headerWiget h3 {
  font-size: 50px;
  font-weight: 600;
}

.footer--up>ul>li .bodywidget p,
.footer--up>ul>li .bodywidget a {
  color: rgba(255, 255, 255, 0.80);
  font-family: var(--font-family-Nunito);
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}

.footer--up>ul>li:first-child .bodywidget p {
  color: var(--baseLight-color);
  line-height: 140%;
  padding-inline-end: 5rem;
  margin-block-end: 2rem;
}

.footer--up>ul>li .bodywidget>ul li {
  margin-block-end: 1.5rem;
}

.footer--up>ul>li:last-child .bodywidget form {
  display: flex;
  flex-direction: column;
}

.footer--up>ul>li:last-child .bodywidget .gform_heading{
	display: none;
}

.footer--up>ul>li:last-child .bodywidget form input[type="email"] {
  border-radius: 60px;
  border: 1px solid #555658;
  padding: 0.75rem 1.25rem;
  margin-block: 1rem 0.75rem;
  color: var(--baseLight-color);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: transparent !important;
}

.footer--up>ul>li:last-child .bodywidget form input[type="submit"] {
  border-radius: 60px !important;
  background: #131313 !important;
  padding-block: 0.75rem !important;
  border: 1px solid #131313;
  color: #B0B0B0 !important;
  font-family: var(--font-family-Nunito) !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: normal !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  margin-block-start: 0 !important;
}

.footer--up>ul>li:last-child .bodywidget form input[type="submit"]:hover {
  background: #B0B0B0 !important;
  color: #131313 !important;
  border: 1px solid #B0B0B0 !important;
}


/* footer--down */
.footer--down {
  padding-block: 2rem;
  border-top: 1px solid rgba(192, 192, 192, 0.40);
  color: rgba(255, 255, 255, 0.60);
  text-align: center;
  font-family: var(--font-family-Nunito);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-block-start: 2.5rem;
}

.footer--down ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
  margin-block-start: 0.5rem;
}

/*********************
END: FOOTER
*********************/
div#gform_confirmation_message_2 {
    color: white;
}
/*********************
START: container and its media
*********************/
/* container  */
.container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1320px 1fr;
  grid-template-areas: ". content .";
}

.container>* {
  grid-area: content;
}

@media screen and (min-width: 1920px) {
  .container {
    grid-template-columns: 1fr 1400px 1fr;
  }

  .consultation {
    width: 1500px;
    margin-inline: auto;
    border-radius: var(--border-radius15);
  }
}

@media screen and (min-width: 1440px) and (max-width: 1919px) {
  .container {
    grid-template-columns: 1fr 1330px 1fr;
  }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
  .container {
    grid-template-columns: 1fr 1310px 1fr;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1319px) {
  .container {
    grid-template-columns: 1fr 1140px 1fr;
  }
}

@media screen and (min-width: 993px) and (max-width: 1199px) {
  .container {
    grid-template-columns: 1fr 970px 1fr;
  }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  .container {
    grid-template-columns: 1fr 750px 1fr;
  }
}

@media screen and (max-width: 768px) {
  .container {
    grid-template-columns: 1fr 95% 1fr;
  }
}

/*********************
END: container and its media
*********************/

/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {
  .btn {
    font-size: var(--text-lg);
  }

  .breadcrumb li :is(a, span) {
    font-size: var(--text-lg);
  }

  .hero--title {
    font-size: 60px;
  }

  .ready--content h6 {
    font-size: 55px;
  }

  .ready--content p {
    font-size: var(--text-3xl);
  }

  .hero--text {
    font-size: 28px;
  }

  .footer--up>ul>li .headerWiget h3 {
    font-size: var(--text-3xl);
  }

  .footer--up>ul>li:first-child .headerWiget h3 {
    font-size: var(--text-5xl);
  }

  .footer--up>ul>li:first-child .bodywidget p,
  .footer--up>ul>li .bodywidget p,
  .footer--up>ul>li .bodywidget a {
    font-size: var(--text-lg);
  }

  .footer--down {
    font-size: var(--text-lg);
  }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
  .btn {
    font-size: var(--text-lg);
  }

  .hero--title {
    font-size: var(--text-5xl);
  }

  .hero--text {
    font-size: var(--text-2xl);
  }

  .ready--content h6 {
    font-size: var(--text-5xl);
  }

  .ready--content p {
    font-size: var(--text-2xl);
  }

  .footer--up>ul>li .headerWiget h3 {
    font-size: var(--text-2xl);
  }

  .footer--up>ul>li:first-child .headerWiget h3 {
    font-size: var(--text-4xl);
  }
}

@media screen and (max-width: 1319px) {
  .hero--title {
    font-size: var(--text-5xl);
  }

  .hero--text {
    font-size: var(--text-2xl);
  }

  .ready--content h6 {
    font-size: var(--text-4xl);
  }

  .ready--content p {
    font-size: var(--text-xl);
  }

  .header--menu nav>ul {
    column-gap: 2rem;
  }

  .footer--up>ul>li .headerWiget h3 {
    font-size: var(--text-xl);
  }

  .footer--up>ul>li:first-child .headerWiget h3 {
    font-size: var(--text-3xl);
  }

  .footer--up>ul>li:first-child .bodywidget p {
    padding-inline-end: 2rem;
  }

  .footer--up>ul>li:is(:nth-child(1), :nth-child(4)) {
    width: 28%;
  }
}

@media screen and (max-width: 1200px) {

  .hero--title {
    font-size: var(--text-4xl);
  }

  .hero--text {
    font-size: var(--text-xl);
  }

  .ready--content {
    width: 95%;
  }

  .ready--content p {
    font-size: var(--text-xl);
  }

  .header--menu,
  .header--menu nav>ul {
    column-gap: 1rem;
  }

  .header--logo picture img {
    width: 190px;
  }

  .footer--up>ul>li:first-child .headerWiget h3 {
    font-size: var(--text-2xl);
  }

  .footer--up>ul>li:first-child .bodywidget p {
    padding-inline-end: 0;
  }

  .footer--down {
    font-size: var(--text-sm);
  }

}

@media screen and (max-width: 992px) {
  :root {
    --space-section: 100px
  }

  .hero--title {
    font-size: var(--text-3xl);
  }

  .hero--text {
    font-size: var(--text-lg);
  }

  .ready--content h6 {
    font-size: var(--text-3xl);
  }

  .header--menu,
  .header--menu nav>ul {
    column-gap: 1rem;
  }

  .header--menu a.btn {
    padding: 0.8rem;
    font-size: var(--text-sm);
  }

  .header--menu nav>ul>li>a {
    font-size: var(--text-xs);
  }

  .header--logo picture img {
    width: 130px;
  }

  .footer--up>ul {
    flex-wrap: wrap;
  }

  .footer--up>ul>li {
    width: 48.5% !important;
    margin-block-end: 1.5rem;
    border-radius: var(--border-radius10);
    border: 1px solid var(--border-color-1);
  }

  .footer--up>ul>li .headerWiget {
    background-color: var(--text-color-1);
    padding: 1rem;
    border-top-right-radius: 9px;
    border-top-left-radius: 9px;
  }

  .footer--up>ul>li .bodywidget {
    padding-inline: 1rem;
  }

  .footer--up>ul>li:last-child .bodywidget form button {
    margin-block-end: 2rem;
  }
}

@media screen and (max-width: 768px) {

  .swiper--navigation .swiper-button-next,
  .swiper--navigation .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .nav-icon {
    display: block;
  }

  .header--logo picture img {
    width: 180px;
  }

  .header--menu nav>ul>li>a {
    font-size: var(--text-lg);
  }

  .header--menu a.btn {
    margin-inline-end: 2.5rem;
  }

  .darkPage.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s linear;
  }

  .header--menu nav {
    position: fixed;
    display: block;
    min-width: 300px;
    right: -100%;
    background: var(--bg-color);
    top: 0;
    padding: 30px;
    height: 100%;
    transition: all 0.5s;
    visibility: hidden;
    transition-property: right, visibility;
    overflow-y: auto;
    z-index: 2;
  }

  .header--menu nav.active {
    right: 0;
    visibility: visible;
  }

  .header--menu nav>ul {
    flex-direction: column;
    row-gap: 2rem;
    margin-block-start: 5rem
  }
}

@media screen and (max-width: 576px) {
  :root {
    --space-section: 80px
  }

  .swiper--navigation .swiper-button-next,
  .swiper--navigation .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .swiper--navigation .swiper-button-prev {
    left: -13px;
  }

  .ready--content p {
    font-size: var(--text-lg);
  }

  .ready--content p br {
    display: none;
  }

  .header--logo picture img {
    width: 170px;
  }

  .footer--up>ul>li {
    width: 100% !important;
  }
}

@media screen and (max-width: 425px) {

  .swiper--navigation .swiper-button-next,
  .swiper--navigation .swiper-button-prev {
    width: 30px;
    height: 30px;
  }

  .swiper--navigation .swiper-button-prev {
    left: -10px;
  }

  .hero--text {
    font-size: var(--text-base);
  }

  .ready--content h6 {
    font-size: var(--text-2xl);
  }

  .header--logo picture img {
    width: 155px;
  }

  .header--menu a.btn {
    padding: 0.8rem;
    font-size: var(--text-xs);
  }

  .header--menu nav {
    min-width: 250px;
  }

  .footer--down ul {
    column-gap: 1rem;
  }
}

@media screen and (max-width: 375px) {
  .ready--content h6 {
    font-size: var(--text-xl);
  }

  .header--logo picture img {
    width: 140px;
  }

  .header--menu nav>ul>li>a {
    font-size: var(--text-base);
  }

  .footer--down ul li a {
    font-size: var(--text-xs)
  }
}

/*********************
END: MEDIA
*********************/