@font-face {
  font-family: "sans-light";
  src: url(../Fonts/open-sans/OpenSans-Light.ttf);
}

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

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

@font-face {
  font-family: "bigilla-bold";
  src: url(../Fonts/begilla/Bigilla-Bold.otf);
}

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

@font-face {
  font-family: "mono-regular";
  src: url(../Fonts/andele-mono/AndaleMono.ttf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  direction: ltr;
}

body {
  background-color: #07070a;
  text-decoration: none;
  font-family: "sans-regular";
}

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

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

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

a {
  color: #000;
  -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 .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.scroll-top-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: linear-gradient(-135deg, #8f9196, #ccc);
  color: #000;
  text-align: center;
  line-height: 50px;
  position: fixed;
  bottom: 0px;
  right: 0px;
  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 i {
  position: relative;
  top: 35px;
  font-size: 25px;
  left: 10px;
}

.scroll-top-btn:hover {
  background: linear-gradient(-135deg, #fff, #fff);
  color: #07070a;
}

.brand-header {
  height: 85vh;
  position: relative;
}

.brand-header .overlay {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .8;
}

.brand-header .text {
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
}

.brand-header .text h1 {
  font-family: "playfair-regular";
  font-size: 75px;
}

.brand-header .text p {
  font-family: "sans-regular";
  font-size: 25px;
  color: #999;
}

/***************************** Animations *****************************/
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/***************************** Nav & Footer *****************************/
.navbar.bg-light {
  background-color: #07070a !important;
}

.navbar .navbar-brand img {
  width: 160px;
}

.navbar .item {
  color: #fff;
  border: 1px solid #ccc;
  padding: .375rem 1.75rem;
  border-radius: 20px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  cursor: pointer;
  margin-left: 5px;
}

.navbar .item .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
  display: inline-block;
}

.navbar .item .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navbar .item .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .item .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navbar .item .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .item .navbar-toggler .navbar-toggler-icon::after, .navbar .item .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .item .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navbar .item .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

.navbar .item:hover, .navbar .item.active {
  background-color: #fff;
  color: #07070a;
}

.navbar .item:hover .navbar-toggler-icon, .navbar .item.active .navbar-toggler-icon {
  background: #07070a;
}

.navbar .item:hover .navbar-toggler-icon::after, .navbar .item:hover .navbar-toggler-icon::before, .navbar .item.active .navbar-toggler-icon::after, .navbar .item.active .navbar-toggler-icon::before {
  background: #07070a;
}

marquee {
  color: #777;
  padding: 5px 0px;
  margin-bottom: -6px;
}

marquee span {
  margin-bottom: 0;
  font-size: 12px;
  margin-right: 10px;
}

.nav-collapse {
  padding: 30px 0px;
  position: absolute;
  width: 100%;
  z-index: 9;
  display: none;
  background-color: #07070a;
}

.nav-collapse .nav-inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.nav-collapse .nav-inner .collapse-item {
  margin: 0px 20px;
}

.nav-collapse .nav-inner .collapse-item a {
  color: #fff;
  font-family: "playfair-regular";
  font-size: 18px;
}

footer {
  height: 40vh;
  position: relative;
  overflow: hidden;
}

footer p {
  color: #fff;
  margin-bottom: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

footer .logo-footer {
  opacity: .7;
  position: absolute;
  right: 0;
  width: 57vw;
  bottom: -100px;
}

footer .icons-content {
  display: inline-block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 25px 0px;
}

footer .icons-content a {
  width: 30px;
  height: 30px;
  background-color: #999;
  color: #07070a;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
  margin: 0px 3px;
}

footer .icons-content a i {
  position: relative;
  top: 3px;
}

footer .icons-content a:hover {
  background-color: #fff;
}

.banners {
  padding: 25px 0px;
}

.banners .image-content {
  width: 100%;
  height: 80vh;
  margin: 50px 0px;
  position: relative;
  overflow: hidden;
}

.banners .image-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
}

.banners .image-content:hover::before {
  -webkit-animation: shine 1.2s;
          animation: shine 1.2s;
}

.banners .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.other-work {
  padding: 100px 0px;
}

.other-work .text h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-family: "bigilla-bold";
  position: relative;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.other-work .text h3::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #555;
  display: block;
  position: absolute;
  left: 0;
  top: 120%;
}

.other-work .card {
  border: none;
  background-color: transparent;
}

.other-work .card .image-content {
  width: 100%;
  height: 350px;
}

.other-work .card .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.other-work .card .card-body h5 {
  font-family: "sans-regular";
  text-transform: capitalize;
  color: #fff;
}

.other-work .card .card-body p {
  text-transform: uppercase;
}

/***************************** Start Edit Home Page *****************************/
/***************************** Start Edit Contact Page *****************************/
.contact {
  padding: 100px 0px;
  overflow: hidden;
}

.contact .text h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-family: "bigilla-bold";
  position: relative;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.contact .text h2::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #555;
  display: block;
  position: absolute;
  left: 0;
  top: 120%;
}

.contact .text h5 {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 3px;
  padding-top: 25px;
}

.contact .text .links a {
  display: flow-root;
  color: #999;
  margin: 5px 0px;
}

.contact .text .links a i {
  margin-right: 10px;
}

.contact .text .links a .phone {
  position: relative;
  top: 15px;
}

.contact .text .links a.anoter-num {
  margin-left: 30px;
}

.contact .text .links a:hover {
  color: #fff;
}

.contact .text .icons-content {
  display: inline-block;
  margin-top: 25px;
}

.contact .text .icons-content a {
  width: 30px;
  height: 30px;
  background-color: #999;
  color: #07070a;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
  margin: 0px 3px;
}

.contact .text .icons-content a i {
  position: relative;
  top: 3px;
}

.contact .text .icons-content a:hover {
  background-color: #fff;
}

.contact .form-container .form-control {
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #999;
  color: #fff;
  margin: 30px 0px;
}

.contact .form-container .form-control::-webkit-input-placeholder {
  color: #999;
}

.contact .form-container .form-control:-ms-input-placeholder {
  color: #999;
}

.contact .form-container .form-control::-ms-input-placeholder {
  color: #999;
}

.contact .form-container .form-control::placeholder {
  color: #999;
}

.contact .form-container .form-control:focus {
  border-bottom: 1px solid #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.contact .form-container .btn-primary {
  width: 100%;
  padding: .7rem 0;
  border: 1px solid #999;
  color: #ccc;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  background-color: transparent;
}

.contact .form-container .btn-primary:hover {
  background-color: #fff;
  color: #07070a;
}

/***************************** Start Edit About Page *****************************/
.about {
  padding: 50px 0px;
}

.about .text h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-family: "bigilla-bold";
  position: relative;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.about .text h2::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #555;
  display: block;
  position: absolute;
  left: 0;
  top: 120%;
}

.about .text h5 {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 3px;
  padding-top: 25px;
}

.about .text p {
  color: #f5f5f5;
  line-height: 1.8rem;
  font-size: 18px;
  font-family: "sans-light";
}

.about .image-content {
  width: 100%;
  height: 60vh;
}

.about .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.leadership {
  padding: 50px 0px;
  overflow: hidden;
}

.leadership .text h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-family: "bigilla-bold";
  position: relative;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.leadership .text h3::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #555;
  display: block;
  position: absolute;
  left: 0;
  top: 120%;
}

.leadership .card {
  border: none;
  background-color: transparent;
}

.leadership .card .image-content {
  width: 100%;
  height: 500px;
}

.leadership .card .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.leadership .card .card-body {
  text-transform: capitalize;
}

.leadership .card .card-body h5 {
  font-family: "sans-regular";
  color: #fff;
}

.partnership {
  padding: 50px 0px;
}

.partnership .text h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-family: "bigilla-bold";
  position: relative;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.partnership .text h3::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #555;
  display: block;
  position: absolute;
  left: 0;
  top: 120%;
}

.partnership img {
  height: 170px;
  -o-object-fit: contain;
     object-fit: contain;
}

.partnership .owl-theme .owl-nav {
  display: none;
}

.partnership .owl-theme .owl-dots .owl-dot.active span,
.partnership .owl-theme .owl-dots .owl-dot:hover span {
  background: #fff;
}

.partnership .owl-theme .owl-dots .owl-dot span {
  background: #999;
}

/***************************** Start Edit Sketch Page *****************************/
.sketch-header {
  background: url(../images/sketch-header.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.main-banner {
  padding: 50px 0px;
}

.main-banner .image-content {
  width: 100%;
  height: 240vh;
}

.main-banner .image-content img {
  width: 100%;
  height: 100%;
}

.sketch-banners .image-content img {
  -o-object-fit: contain;
     object-fit: contain;
}

/***************************** Start Edit Tanami Medical Page *****************************/
.medical-header {
  background: url(../images/medical-header.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/***************************** Start Edit MDR Page *****************************/
.mdr-header {
  background: url(../images/mdr-header.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/***************************** Start Edit ANAN boutique Page *****************************/
.anan-header {
  background: url(../images/anan-header.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/***************************** Start Edit Tashyed Page *****************************/
.tashyed-header {
  background: url(../images/other-work-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/***************************** Start Edit Art & Shapes Page *****************************/
.art-header {
  background: url(../images/other-work-2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/***************************** Start Edit Al youm host Page *****************************/
.alyoum-header {
  background: url(../images/alyoum-header.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/***************************** Start Edit Brandy Page *****************************/
.brandy-header {
  background: url(../images/brandy-header.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/***************************** Start Edit zoom Page *****************************/
.zoom-header {
  background: url(../images/zoom-header.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/***************************** Start Edit diablo Page *****************************/
.diablo-header {
  background: url(../images/diablo-header.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/***************************** Start Edit intellect Page *****************************/
.intellect-header {
  background: url(../images/intellect-banner-4.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/***************************** Start Edit Projects Page *****************************/
.projects-header {
  background-color: #07070a;
  text-transform: uppercase;
  padding: 50px 0px;
}

.projects-header .text-header h5 {
  color: #f4f4f4;
  font-family: "mono-regular";
  font-size: 15px;
}

.projects-header .text-header h2 {
  color: #fff;
  font-family: "playfair-regular";
  line-height: 5rem;
  font-size: 70px;
  -webkit-transition: .5s;
  transition: .5s;
}

.projects-header .text-header .underline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.projects-header .text-header .underline span {
  font-family: "mono-regular";
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
}

.projects-header .text-header .underline span::after {
  content: '';
  height: 2px;
  width: 100%;
  background-color: #999;
  display: block;
  margin-top: -10px;
}

.projects-header .text-header .underline span:first-child {
  margin-right: 20px;
}

.projects-header .text-header .underline span:last-child {
  margin-left: 20px;
}

.projects-header .text-header .right {
  float: right;
}

.our-projects {
  padding: 50px 0px;
  overflow: hidden;
}

.our-projects .card {
  margin: 5px 0px;
  border: none;
  background-color: transparent;
}

.our-projects .card .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.our-projects .card .card-body {
  position: relative;
  padding-right: 50px;
  background-color: #07070a;
}

.our-projects .card .card-body h5 {
  color: #fff;
  text-transform: capitalize;
  font-family: "sans-regular";
}

.our-projects .card .card-body .flag {
  width: 50px;
  position: absolute;
  right: 0;
  top: 1.25rem;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.our-projects .card .card-body p {
  color: #676767;
  text-transform: uppercase;
}
/*# sourceMappingURL=style.css.map */