:root {
  --water: #1699bd;
  --sea: #364272;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  font-family: "Work Sans", sans-serif;
}
header {
  width: 100%;
  height: 60px;
}
/* header */
.header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 60px;
}
.header__container .left__container {
  width: 25%;
  display: flex;
  justify-content: space-around;
}
/* nav */
.nav__container {
  display: flex;
  justify-content: space-around;
  width: 25%;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
}

.menu__desktop__container {
  display: none;
}

.menuToggle {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

.menuToggle input {
  display: flex;
  width: 35px;
  height: 25px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

.menuToggle span {
  display: flex;
  width: 29px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: var(--sea);
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

.menuToggle span:first-child {
  transform-origin: 0% 0%;
}

.menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

.menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-3px, -1px);
  background: var(--sea);
}
.menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

.menu__mobile {
  position: absolute;
  width: 180px;
  height: 250px;
  box-shadow: 0 0 10px #85888c;
  margin: -50px 0 0 -50px;
  padding: 50px;
  padding-top: 70px;
  background-color: #f5f6fa;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.menu__mobile li {
  padding: 0;
  list-style-type: none;
  padding: 10px 0;
  transition-delay: 2s;
}

.menu__mobile li a {
  text-decoration: none;
  color: var(--gray-dark);
  opacity: 1;
  font-family: "work sans", sans serif;
  font-size: 1.5em;
  font-weight: 400;
  transition: 200ms;
}
.menu__mobile li a:hover {
  opacity: 0.5;
}

.menuToggle input:checked ~ ul {
  transform: none;
}
/* nav end */
.right__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 75%;
}
/* Logo */
.logo__container {
  display: flex;
  justify-content: center;
  width: 70%;
}
.logo {
  display: flex;
  align-items: center;
  padding: 0 5px;
}
.logo img {
  width: 40px;
  padding-right: 5px;
}
.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--water);
}
/* logo end */

/* phone */
.phone__container {
  display: flex;
  justify-content: center;
  width: 25%;
}
.phone {
  display: flex;
  align-items: center;
  height: 50px;
}
.fa-phone {
  text-decoration: none;
  color: var(--sea);
}
/* phone end */
/* --header end-- */

main {
  width: 100%;
}
/* slider */
.slider {
  width: 100%;
  height: 100%;
}
.container-slider {
  position: relative;
}

.pic1 {
  width: 100%;
  height: 100%;
  background-image: url("../assets/img/slider-mobile-photo.jpg");
}
.pic2 {
  width: 100%;
  height: 100%;
  background-image: url("../assets/img/slider-mobile-photo2.jpg");
}
.pic3 {
  width: 100%;
  height: 100%;
  background-image: url("../assets/img/slider-mobile-photo3.jpg");
}
/* separator */
.separator {
  position:relative;
  top: -20px;
  width: 100%;
  height: 25px;
  background-image: url("../assets/icons/separator-wave.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 10;
}
/* separator end */
/* slider end */

/*about-us*/
.about-us {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 540px;
  background-color: var(--white);
}
.about__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 80%;
  height: 540px;
  color: var(--gray-dark);
}
.about__container h1 {
  font-size: 2.2rem;
  font-weight: 300;
  text-align: center;
}
.about__container p {
  padding-top: 30px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 2rem;
  font-weight: 300;
  word-spacing: 0.5rem;
}
.about__container span {
  width: 100px;
  height: 50px;
  background-color: #364272;
}
.about_button {
  width: 229px;
  height: 48px;
  padding: 15px;
  margin: 20px;
  border-radius: 4px;
  background-color: var(--sea);
  color: var(--white);
  box-shadow: 0px 4px 8px rgba(89, 73, 30, 0.16);
  text-align: center;
  text-decoration: none;
}
.about_button p {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0;
}
.about__container img {
  width: 100%;
  height: 250px;
  border-radius: 4px;
}
/* about end */
/* process */
.process {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 600px;
  margin: 20px 0;
}
.process__container {
  width: 90%;
  height: 600px;
  padding: 0;
  margin: 0;
  margin-left: 0px;
  margin-right: 0px;
}
.process__card {
  max-width: 360px;
  height: 150px;
  display: flex;

  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.card__icon {
  position: relative;
  top: 4px;
  min-width: 26px;
  font-size: 1.5rem;
  line-height: 1;
  width: 35px;
  margin-right: 10px;
}

.process__card i {
  color: var(--sea);
}
.card__text h4 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}
.card__text p {
  color: rgba(21, 21, 21, 0.486);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  word-spacing: 0.2rem;
}
/*process end*/

/*facilites*/

.facilities {
  width: 100%;
}
.facilities__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.container__title {
  width: 80%;
  height: 130px;
  text-align: center;
}
.container__title h1 {
  font-size: 2.2rem;
  font-weight: 300;
  text-align: center;
}
.container__title p {
  padding: 10px 0;
  font-size: 1.7rem;
  text-align: center;
  line-height: 2rem;
  font-weight: 300;
  word-spacing: 0.5rem;
}
.facilities__separate_drop {
  display: flex;
  place-content: center;
  width: 100%;
  height: 30px;
  margin: 10px 0;
}
.facilities__separate_wave {
  width: 100%;
  height: 30px;
  display: flex;
  place-content: center;
}
.facilities__separate_wave img {
  width: 25%;
}
.facilities__card h2 {
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  margin: 10px 0;
}
.facilities__card picture {
  width: 100%;
  min-width: 320px;
}
.facilities__card picture img {
  width: 100%;
  height: 250px;
}
.facilities__card p {
  padding: 10px 10px;
  font-size: 1.5rem;
  text-align: center;

  font-weight: 300;
}
/*facilites end*/

/*footer*/
footer {
  width: 100%;
  background-color: var(--water);
  color: var(--white);
}
.footer__container {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: row;
}
.footer__left {
  width: 50%;
  align-self: center;
}
.footer__left img {
  width: 100%;
  padding: 15px;
}
.footer__right {
  width: 50%;
  padding: 15px 5px;
  font-size: 1rem;
  text-align: center;
}
.footer__right p {
  padding: 2.5px 0;
}
