* {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none !important;
}

.bg-header {
  background-image: url(../images/bg-header2.png);
  background-size: cover;
  background-position-x: 60%;
  background-position-y: bottom;
  position: relative;
}

.bg-header > nav > ul {
  border-radius: 10px;
  list-style: none;
  font-weight: 600;
  font-size: 22px;
}

.bg-header > nav > ul a {
  color: #01ADCB !important;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.bg-header > nav > ul a:hover {
  color: #E60D2C !important;
}

.bg-header > nav > ul .nav-active {
  color: #E60D2C !important;
}

.bg-header .logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 40px;
  -webkit-box-shadow: 0 3px 6px #00000038;
          box-shadow: 0 3px 6px #00000038;
  width: 45%;
}

.bg-header .logo-container .logo-father .logo-img {
  width: 65%;
}

.down-icon {
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: white;
  -webkit-box-shadow: 0px 2px 7px #00000038;
          box-shadow: 0px 2px 7px #00000038;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  z-index: 3;
}

.down-icon i {
  font-size: 50px;
  color: #01ADCB;
}

.about-us {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4dcada), to(#5dcbde));
  background-image: linear-gradient(180deg, #4dcada, #5dcbde);
  position: relative;
  padding: 150px 0px;
}

.about-us .b-img-back1 {
  width: 15%;
  position: absolute;
  right: 10%;
  top: 8%;
  z-index: 1;
}

.about-us .b-img-back2 {
  width: 50%;
  position: absolute;
  right: 0%;
  top: 40%;
  z-index: 1;
}

.about-us .b-img-back2 img {
  width: 100%;
}

.about-us .b-img-back3 {
  width: 15%;
  position: absolute;
  left: 10%;
  top: 70%;
  z-index: 1;
}

.about-circle-small {
  width: 21   0px;
  border-radius: 50%;
  color: #01ADCB;
  position: relative;
  z-index: 3;
}

.about-circle-big {
  width: 100%;
  padding: 20%;
  font-size: 16px;
  border-radius: 50%;
  color: #01ADCB;
  position: relative;
  z-index: 2;
}

.about-circle-big h5 {
  font-size: 25px;
}

.top-child {
  top: -10%;
  left: -28%;
}

.navigation_checkbox {
  display: none;
}

.navigation_button {
  background-color: #fff;
  height: 5rem;
  width: 5rem;
  position: fixed;
  border-radius: 50%;
  top: 2rem;
  right: 1rem;
  z-index: 2000;
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}

.navigation_background {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: fixed;
  top: 2rem;
  right: 1rem;
  background-image: radial-gradient(#01ADCB, #fff);
  z-index: 1000;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.navigation_nav {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navigation_list {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  padding: 0;
}

.navigation_link {
  cursor: pointer;
  padding: 1rem 0;
  background-size: 100%;
  font-size: 2rem;
  font-weight: 300;
  color: #fff !important;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
  background-size: 230%;
  -webkit-transition: all .5s;
  transition: all .5s;
  display: inline-block;
}

.navigation_link:hover, .navigation_link:active {
  background-position: 100%;
  text-decoration: none;
  color: #01ADCB !important;
  -webkit-transform: translateX(-0.3rem);
          transform: translateX(-0.3rem);
}

.navigation_checkbox:checked ~ .navigation_background {
  -webkit-transform: scale(80);
          transform: scale(80);
}

.navigation_checkbox:checked ~ .navigation_nav {
  opacity: 1;
  width: 100%;
}

.navigation_icon {
  -webkit-transition: all .2s;
  transition: all .2s;
  margin-top: 2.5rem;
  position: relative;
}

.navigation_icon, .navigation_icon::before, .navigation_icon::after {
  width: 2.5rem;
  height: 2px;
  background-color: #01ADCB;
  display: inline-block;
}

.navigation_icon::before, .navigation_icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.navigation_icon::before {
  top: -.7rem;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.navigation_icon::after {
  top: .7rem;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.navigation_button:hover .navigation_icon::before {
  top: -1rem;
}

.navigation_button:hover .navigation_icon::after {
  top: 1rem;
}

.navigation_checkbox:checked + .navigation_button .navigation_icon {
  background-color: transparent;
}

.navigation_checkbox:checked + .navigation_button .navigation_icon::before {
  top: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navigation_checkbox:checked + .navigation_button .navigation_icon::after {
  top: 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.identity-father a p {
  padding: 10px;
  font-size: 50px;
  font-weight: 700;
}

.identity-father a:first-child, .identity-father a:last-child {
  color: #01ADCB;
  cursor: pointer;
}

.identity-father a:first-child:hover, .identity-father a:last-child:hover {
  color: #01ADCB;
}

.identity-father a:nth-child(2) {
  color: #E60D2C;
  cursor: pointer;
}

.identity-father a:nth-child(2):hover {
  color: #E60D2C;
}

.identity-father a:first-child {
  color: #01ADCB;
}

.mission {
  background-color: #ef6579;
  color: white;
}

.goals {
  color: #ef6579;
}

.identities-father h1 {
  font-size: 70px;
  text-shadow: 0px 3px 6px #0000002c;
}

.identities-father p {
  padding: 20px 0px;
  font-size: 25px;
  text-shadow: 0px 0px 1px #0000002c;
  padding-left: 10px;
}

.mission-img-father {
  padding: 50px;
}

.red-tail {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

footer h1 {
  color: #ef6579;
  font-size: 60px;
}

.red-footer-p {
  color: #ef6579;
  font-size: 30px;
}

.icon-father {
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.185) 0px 3px 6px;
          box-shadow: rgba(0, 0, 0, 0.185) 0px 3px 6px;
  border-radius: 50%;
  -webkit-transition: all .7s;
  transition: all .7s;
}

.icon-father i {
  font-size: 20px;
  color: #ef6579;
}

.icon-father:hover {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.mission-img-father img {
  opacity: .8;
}

.temmam {
  display: block;
  background-color: #ef6579;
  font-size: 20px;
}

.nav-ul a {
  cursor: pointer;
}

.footer-info {
  font-size: 20px;
  color: #ef6579;
}

.mail-text {
  color: #ef6579 !important;
}

.mail-text:hover {
  color: #cc4c5f !important;
}
/*# sourceMappingURL=style.css.map */