@font-face {
  font-family: "semiBold";
  src: url(../Fonts/cairo/Cairo-SemiBold.ttf);
}

@font-face {
  font-family: "regular";
  src: url(../Fonts/cairo/Cairo-Regular.ttf);
}

@font-face {
  font-family: "bold";
  src: url(../Fonts/cairo/Cairo-Bold.ttf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  direction: ltr;
  text-decoration: none;
  font-family: 'regular';
  scroll-behavior: smooth;
}

/***************************** Global Style *****************************/
h1, h2, h3 {
  font-family: "bold";
}

h4, h5, h6 {
  font-family: "semiBold";
}

p {
  font-size: 12px;
  font-family: 'regular';
  color: #555;
}

a {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  outline: 0;
}

.scroll-top-btn {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: linear-gradient(-135deg, #ff482f, #FF5A3F);
  color: #000;
  text-align: center;
  line-height: 50px;
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  background-color: #000;
  border-radius: 50%;
  color: #fff;
}

.scroll-top-btn i {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  position: relative;
  bottom: 8px;
}

form {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

form .form-group {
  position: relative;
}

form .form-group i {
  position: absolute;
  left: 10px;
  top: 15px;
  color: #555;
}

form .form-group .form-control {
  border-radius: 20px;
  font-size: 12px;
  padding: 1.375rem;
  padding-left: 35px;
}

form .form-group .form-control:focus {
  border: 1px solid #ff482f;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

form .btn-primary {
  background-color: #ff482f;
  color: #fff;
  border: 1px solid #ff482f;
  border-radius: 20px;
  font-size: 13px;
  padding: 0.75rem 1.75rem;
}

form .btn-primary:hover {
  background-color: #fff;
  color: #ff482f;
  border: 1px solid #ff482f;
}

/*************** Animations ****************/
@-webkit-keyframes rotate-s-loader {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-s-loader {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes mover {
  0% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes mover {
  0% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

header {
  background-color: #ff482f;
  padding: 150px 0px;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

header .header-content {
  z-index: 9;
  position: relative;
}

header .header-content h4 {
  color: #fff;
  padding: 20px 0px;
  letter-spacing: 5px;
}

header .top-r {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  width: 300px;
  z-index: 1;
  opacity: .8;
}

.start {
  background-color: #f9f9f9;
  padding-bottom: 50px;
}

.start .center-t {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 320px;
  margin-top: -120px;
  z-index: 9;
}

.start .text-content {
  padding: 20px 0px;
}

.start .text-content .form-group {
  width: 60%;
}

.start .text-content .form-group .form-control {
  width: 100%;
}

.look {
  padding: 50px 0px 100px;
  background-color: #f9f9f9;
  overflow: hidden;
}

.look .rect {
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-animation: mover 7s infinite  alternate;
          animation: mover 7s infinite  alternate;
}

.look .square {
  position: absolute;
  right: 0px;
  height: 350px;
  -webkit-animation-name: rotate-s-loader;
          animation-name: rotate-s-loader;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.look .phone-img {
  z-index: 9;
  position: relative;
  top: 100px;
  left: 30%;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.look .text-content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0px 40px;
}

.look .text-content h4 {
  letter-spacing: 5px;
  margin-bottom: 20px;
  position: relative;
}

.look .text-content h4::after {
  content: '';
  width: 100px;
  height: 3px;
  background-color: #555;
  position: absolute;
  left: 0px;
  top: 115%;
  opacity: .5;
}

.look .text-content p {
  line-height: 1.8rem;
  font-size: 14px;
}

.salon {
  background-color: #f5f5f5;
  padding: 100px 0px 150px;
  overflow: hidden;
}

.salon .polygan {
  position: absolute;
  left: 0px;
  height: 350px;
  -webkit-animation: upDown 1s infinite  alternate;
          animation: upDown 1s infinite  alternate;
}

.salon .rect {
  position: absolute;
  bottom: 0px;
  left: 0px;
  -webkit-animation: mover 7s infinite  alternate;
          animation: mover 7s infinite  alternate;
}

.salon .phone-img {
  z-index: 9;
  position: relative;
  top: 100px;
  left: 30%;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.salon .text-content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0px 40px;
}

.salon .text-content h4 {
  letter-spacing: 5px;
  margin-bottom: 20px;
  position: relative;
}

.salon .text-content h4::after {
  content: '';
  width: 100px;
  height: 3px;
  background-color: #555;
  position: absolute;
  left: 0px;
  top: 115%;
  opacity: .5;
}

.salon .text-content p {
  color: #555;
  line-height: 1.8rem;
  font-size: 14px;
}

.salon .text-content .btn-primary {
  background-color: #ff482f;
  color: #fff;
  border: 1px solid #ff482f;
  border-radius: 20px;
  font-size: 13px;
  padding: .475rem 2.375rem;
}

.salon .text-content .btn-primary:hover {
  background-color: #fff;
  color: #ff482f;
  border: 1px solid #ff482f;
}

.salon .modal-content {
  padding-bottom: 1rem;
  -webkit-box-shadow: 0px 0px 10px #eee;
          box-shadow: 0px 0px 10px #eee;
}

.salon .modal-content .modal-header {
  border-bottom: none;
  padding: 2rem 0rem;
}

.salon .modal-content .modal-header .close {
  position: relative;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #999;
}

.salon .modal-content .modal-header .close span {
  position: relative;
  right: 4px;
  font-size: 30px;
  bottom: 13px;
}

.salon .modal-content .modal-body p {
  font-size: 12px;
  color: #555;
}

.salon .modal-content .modal-body .form-control {
  padding: 1.3rem 0.75rem;
}

.salon .modal-content .modal-body .btn-primary {
  padding: 0.475rem 3.75rem;
}

.app {
  background-color: #ff482f;
  padding: 50px 0px;
}

.app h4 {
  margin-bottom: 0;
  color: #fff;
  letter-spacing: 5px;
}

.app .links {
  padding-top: 15px;
}

.app .links a {
  background-color: #fff;
  border-radius: 5px;
  padding: .75rem 1.75rem 1rem;
  text-align: center;
  margin: 0px 3px;
}

.app .links a:hover {
  background-color: #FF5A3F;
}

footer {
  padding: 50px 0px;
  background-color: #f9f9f9;
}

footer h5 {
  position: relative;
  margin-bottom: 25px;
}

footer h5::after {
  content: '';
  height: 2px;
  width: 70px;
  background-color: #FF5A3F;
  position: absolute;
  top: 142%;
  display: block;
}

footer p {
  font-size: 15px;
}

footer .links a {
  color: #fff;
  background-color: #333;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  display: inline-block;
  margin-right: 3px;
  font-size: 12px;
}

footer .links a i {
  position: relative;
  top: 7px;
}

footer .links a:hover {
  background-color: #FF5A3F;
}
/*# sourceMappingURL=style.css.map */