@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");

*,
* button:focus {
  outline: 0;
}

.main_color {
  color: #e99105 !important;
}

.main_back {
  background-color: #e99105 !important;
}

.sub_color {
  color: #253745 !important;
}

.sub_back {
  background-color: #253745 !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

iframe::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

iframe::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

iframe::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

[type="email"],
[type="number"],
[type="tel"],
[type="url"] {
  direction: inherit;
}

body {
  font-family: "Rubik", sans-serif;
  font-display: swap;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  color: #2c2828;
}

body p {
  font-size: 16px;
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 700;
  margin: 0;
  font-display: swap;
}

h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
  font-display: swap;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

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

.form-control,
.form-select {
  min-height: 50px;
  background-color: #f8f8f8;
  border: 0;
  padding: 5px 15px;
  width: 100%;
  border-radius: 5px;
  font-size: 14px;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 16px;
  line-height: 2;
  color: #1b1b1b;
}

small.text {
  font-size: 12px;
}

.bg_gray {
  background-color: #f5f6f8;
}

.section_padding {
  padding: 80px 0;
}

.section_head {
  margin-bottom: 40px;
}

.section_head h2 {
  color: #133159;
  font-weight: 500;
}

.section_head h2 span {
  color: #e99105;
}

.ob_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ob_cont {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background-color: #253745;
  width: 20px;
  border-radius: 5px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: #e99105;
  font-size: 25px;
  font-weight: bold;
}

.butn {
  border: 1px solid #253745;
  padding: 10px 30px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.butn span {
  color: #253745;
  position: relative;
  z-index: 2;
}

.butn i {
  position: relative;
  top: 2px;
  color: #253745;
}

.butn.light {
  border: 1px solid #fff;
}

.butn.light span {
  color: #fff;
}

.butn.light i {
  color: #fff;
}

.butn.sub_color {
  background-color: #253745;
  border: 1px solid #253745;
}

.butn.sub_color span,
.butn.sub_color i {
  color: #fff;
}

.butn.main_color {
  background-color: #e99105;
  border: 1px solid #e99105;
}

.butn.main_color span,
.butn.main_color i {
  color: #fff;
}

.butn::before {
  position: absolute;
  content: "";
  left: -25%;
  top: 0;
  width: 150%;
  height: 100%;
  background: linear-gradient(45deg, #e99105, #253745);
  opacity: 0;
  -webkit-clip-path: polygon(100% 100%, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(100% 100%, 100% 0, 100% 100%, 0% 100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.butn:hover::before {
  opacity: 1;
  -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0% 100%);
  clip-path: polygon(100% 100%, 100% 0, 0 0, 0% 100%);
}

.top_nav {
  padding: 15px;
  background-color: #253745;
}

.dropdown-toggle::after {
  position: relative;
  top: 5px;
  opacity: 0.5;
}

.dropdown-menu {
  min-width: 170px;
  padding: 10px 0;
  border-radius: 15px;
  border: 0;
  -webkit-box-shadow: 0 0 20px #0001;
  box-shadow: 0 0 20px #0001;
  top: calc(100% + 10px);
}

.dropdown-menu .dropdown-item {
  padding: 6px 20px;
  font-size: 13px;
}

.navbar {
  padding: 0;
}

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

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 45px 12px;
  color: #000;
  /*min-width: 80px;*/
  text-align: center;
}

.navbar .navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 0.0001%;
  background-color: #253745;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navbar .navbar-nav .nav-item .nav-link span {
  position: relative;
  z-index: 2;
}

.navbar .navbar-nav .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #e99105;
}

.navbar .navbar-nav .nav-item .nav-link.active::before,
.navbar .navbar-nav .nav-item .nav-link:hover::before {
  height: 100%;
}

.navbar .navbar-nav .nav-item .nav-link.nav_req {
  background-color: #e99105;
  color: #fff;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  padding: 35px 20px 35px 50px;
  width: 200px;
  margin-top: 10px;
}

.navbar .navbar-nav .nav-item .nav-link.nav_blog {
  background-color: #253745;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  padding: 35px 50px 35px 20px;
  margin-right: -48px;
  width: 200px;
  margin-top: 10px;
  margin-left: 30px;
}

.navbar .navbar-nav .nav-item .nav-link.nav_req::before,
.navbar .navbar-nav .nav-item .nav-link.nav_blog::before {
  display: none;
}

.navbar .dropdown-menu {
  border-radius: 0;
  top: calc(100% - 2px) !important;
}

.navbar .dropdown-toggle::after {
  display: none;
}

.nav-scroll {
  background: #fff;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0;
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  z-index: 99;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* -------------------- header ------------------- */
header {
  position: relative;
}

/*header::after {*/
/*  position: absolute;*/
/*  content: "";*/
/*  left: 0;*/
/*  top: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background-color: #000;*/
/*  opacity: 0.5;*/
/*}*/

header .main_img {
  height: 550px;
}

header .main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

header .info {
  background: linear-gradient(to right, #253745, transparent);
  padding: 30px;
}

header .head_slider {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  position: relative;
  padding: 100px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/*header .swiper-slide::after {*/
/*  position: absolute;*/
/*  content: "";*/
/*  left: 0;*/
/*  top: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background-color: #000;*/
/*  opacity: 0.6;*/
/*}*/

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

header .content .info h6 {
  margin-bottom: 10px;
  -webkit-transform: translateX(20px) scale(0.5);
  transform: translateX(20px) scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
  color: #fff;
  font-weight: 400;
}

header .content .info h2 {
  font-size: calc(2vw + 21px);
  margin-bottom: 20px;
  -webkit-transform: translateX(20px) scale(0.5);
  transform: translateX(20px) scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  color: #fff;
  font-weight: 500;
}

header .content .info h3 {
  font-size: calc(2vw + 15px);
  -webkit-transform: translateX(20px) scale(0.5);
  transform: translateX(20px) scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
  color: #fff;
  font-weight: 500;
}

header .content .info .text {
  font-size: 17px;
  margin-bottom: 30px;
  -webkit-transform: translateX(20px) scale(0.5);
  transform: translateX(20px) scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

header .content .info .butn {
  margin-top: 30px;
  -webkit-transform: translateX(20px) scale(0.5);
  transform: translateX(20px) scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

header .content .img img {
  -webkit-transform: translateX(20px) scale(0.5);
  transform: translateX(20px) scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}

header .swiper-slide-active .content .info h6,
header .swiper-slide-active .content .info h2,
header .swiper-slide-active .content .info h3,
header .swiper-slide-active .content .info .text,
header .swiper-slide-active .content .info .butn {
  opacity: 1;
  -webkit-transform: translateX(0) scale(1);
  transform: translateX(0) scale(1);
}

header .swiper-slide-active .content .img img {
  opacity: 1;
  -webkit-transform: translateX(0) scale(1);
  transform: translateX(0) scale(1);
}

header .swiper-pagination {
  text-align: left;
  padding: 0 8vw;
  bottom: 50px !important;
}

header .swiper-pagination-bullet-active {
  background-color: #fff;
}

/* -------------------- about ------------------------- */
.form-check-input:checked {
  background-color: #e99105;
  border-color: #e99105;
}

/* ---------- about ----------- */
.about {
  background-color: #e99105;
  padding: 50px 0 85px;
  position: relative;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about .about_title {
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  border-bottom: 1px solid #fff;
  padding-bottom: 30px;
}

.about .about_title h2 {
  color: #fff;
  position: relative;
}

.about .about_title .tit_shap {
  position: absolute;
  left: 50%;
  bottom: -25px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #e99105;
  padding: 5px;
}

.about .info {
  position: relative;
  z-index: 5;
}

.about .info .cont {
  background-color: #e99105;
  padding: 30px;
  border-radius: 50px;
  padding-left: 0;
}

.about .info .text {
  color: #fff;
  line-height: 1.7;
  font-size: 14px;
}

.about .info .img_items {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about .info .img_items .icon img {
  width: 50px;
  margin-right: 20px;
}

.about .info .img_items .cont {
  width: calc(100% - 70px);
}

.about .info .img_items .cont h6 {
  color: #fff;
}

.about .info a {
  color: #fff;
  margin-top: 40px;
}

.about .img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-color: transparent;
  min-height: 100%;
  /*background: url(../images/about.png);*/
  background-size: cover !important;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: left;
}

.about .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- services ----------- */
.services {
  position: relative;
  background-color: #253745;
}

.services::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35%;
  background-color: #fff;
}

.services .container {
  position: relative;
  z-index: 5;
}

.services .serv_title {
  margin-bottom: 40px;
}

.services .serv_title h6 {
  color: #e99105;
  margin-bottom: 15px;
}

.services .serv_title h2 {
  color: #fff;
}

.services .serv_box {
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  -webkit-box-shadow: 0 0 20px #0001;
  box-shadow: 0 0 20px #0001;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.services .serv_box .img {
  height: 400px;
  overflow: hidden;
}

.services .serv_box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 15s ease;
  transition: all 15s ease;
}

.services .serv_box .info {
  text-align: center;
  padding: 40px 15px 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #e99105, #e9910590, #253745d0, #25374590);
  -webkit-transform: scale(2);
  transform: scale(2);
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.services .serv_box .info.animated {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.services .serv_box .info h2 {
  line-height: 1.5;
  color: #fff;
}

.services .serv_box .info a {
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #253745;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  border-radius: 50%;
  font-size: 21px;
  border: 1px solid #253745;
}

.services .serv_box .info a:hover {
  background-color: #fff;
  color: #253745;
}

.services .serv_box:hover .img img {
  -webkit-transform: scale(2) rotate(-20deg);
  transform: scale(2) rotate(-20deg);
}

.services .serv_link {
  display: block;
}

.services .serv_link h6 {
  color: #e99105;
  font-size: 30px;
  font-weight: bold;
  padding: 0;
  display: inline-block;
  border-bottom: 1px solid #e99105;
}

/* ------------ numbers ------------- */
.numbers {
  padding-top: 50px;
}

.numbers .numbers_title {
  display: inline-block;
}

.numbers .numbers_title h5 {
  color: #e99105;
  padding: 10px 0;
  margin-bottom: 15px;
  border-top: 1px solid #e99105;
  display: inline-block;
  position: relative;
  font-size: 25px;
}

.numbers .numbers_title h5::after {
  position: absolute;
  content: "";
  left: 50%;
  top: -10px;
  width: 20px;
  height: 20px;
  background: url(../images/logo_shap1.svg) #253745;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.numbers .numbers_title h2 {
  color: #fff;
  font-size: 55px;
}

.numbers .content {
  padding: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px #0002;
  box-shadow: 0 0 30px #0002;
  position: relative;
  z-index: 1;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}

.numbers .content .num_box {
  text-align: center;
  padding: 15px;
}

.numbers .content .num_box .icon {
  margin-bottom: 20px;
}

.numbers .content .num_box .icon img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}

.numbers .content .num_box p {
  margin-bottom: 5px;
}

.numbers .content .num_box h2 {
  color: #000;
}

/* ------------ achievments ------------- */
.achievments {
  background-color: #f9f9f9;
}

.achievments .achiev_title {
  display: inline-block;
  margin-top: 50px;
  margin-bottom: 40px;
}

.achievments .achiev_title h5 {
  color: #e99105;
  padding: 10px 0;
  border-top: 1px solid #e99105;
  display: inline-block;
  position: relative;
  font-size: 25px;
  margin-bottom: 10px;
}

.achievments .achiev_title h5::after {
  position: absolute;
  content: "";
  left: 50%;
  top: -10px;
  width: 20px;
  height: 20px;
  background: url(../images/logo_shap1.svg) #fff;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.achievments .content .ach_box {
  display: block;
  padding: 20px;
  border: 2px solid #9992;
  margin: 12px 0;
}

.achievments .content .ach_box:hover {
  border-color: transparent;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px #0001;
  box-shadow: 0 0 20px #0001;
}

.achievments .content .ach_box .top_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}

.achievments .content .ach_box .top_cont .icon {
  width: 65px;
  height: 65px;
  border-radius: 10px;
  background-color: #90b409;
  padding: 15px;
}

.achievments .content .ach_box .top_cont .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(326deg)
    brightness(102%) contrast(103%);
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(326deg)
    brightness(102%) contrast(103%);
}

.achievments .content .ach_box .top_cont .cont {
  padding: 20px 15px;
  border: 1px solid #9993;
  border-radius: 10px;
  text-align: center;
  min-width: 90px;
}

.achievments .content .ach_box .top_cont .cont span {
  color: #2f2f2f;
  font-size: 25px;
  font-weight: 600;
}

.achievments .content .ach_box .top_cont .cont p {
  text-transform: uppercase;
  font-size: 13px;
}

.achievments .content .ach_box .info h5 {
  font-size: 21px;
  margin-bottom: 15px;
}

.achievments .content .ach_box .info .text {
  font-size: 15px;
  color: #404c56;
  line-height: 1.8;
}

.achievments .achievments_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px #0001;
  box-shadow: 0 0 20px #0001;
  padding: 30px;
  margin: 12px 0;
  align-items: center;
}

.achievments .achievments_box .icon {
  margin-right: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.achievments .achievments_box .icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

.achievments .achievments_box .info h5 {
  font-size: 17px;
}

.achievments .achievments_box .cont {
  margin-bottom: 5px;
}

.achievments .achievments_box .cont .counter {
  color: #253745;
  font-size: 30px;
  font-weight: bold;
  margin-right: 10px;
}

.achievments .achievments_box .cont p {
  color: #e99105;
  font-size: 16px;
  display: inline-block;
}

/* ---------- brands ----------- */
.brands {
  padding: 10px 0;
}

.brands .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.brands .content .logo_box {
  display: block;
  padding: 10px 20px;
  width: 20%;
  text-align: center;
}

.brands .content .logo_box img {
  max-width: 110px;
  max-height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* ---------- subscribe ----------- */
.subscribe {
  padding: 30px 0;
  background-color: #f5f5f5;
  border-bottom: 1px solid #9994;
}

.subscribe .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.subscribe .form-group .form-control {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #9993;
  border-radius: 0;
}

.subscribe .form-group .butn {
  white-space: nowrap;
  margin-left: 20px;
}

/* ---------- about ----------- */
/* -------------------- footer ---------------------- */
footer {
  position: relative;
  background: #f5f5f5;
  padding-top: 30px;
}

footer .content {
  position: relative;
}

footer .content .info .logo img {
  width: 150px;
}

footer .content .info .text {
  margin: 20px 0;
  font-size: 15px;
}

footer .content .info .socail_icons a {
  margin: 10px;
  font-size: 20px;
}

footer .content .info .socail_icons a:hover {
  color: #253745;
}

footer .content .title {
  font-weight: 500;
  color: #253745;
  margin-bottom: 20px;
  font-size: 17px;
  text-transform: capitalize;
  margin-top: 50px;
}

footer .content .links a {
  margin: 8px 0;
  font-size: 14px;
}

footer .content .foot_contact li {
  margin-bottom: 15px;
}

footer .content .foot_contact li a {
  line-height: 2;
}

footer .foot {
  padding: 30px 0;
  text-align: center;
}

footer .foot p {
  color: #666;
}

/* -------------------- modals style ------------------------- */
/* ------------ page style ------------- */
/* ------------ inner header style ------------- */
.inner_header {
  background-color: #253745;
}

.inner_header .content {
  position: relative;
  padding: 20px 0;
}

.inner_header .content .inr_l {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
}

.inner_header .content .inr_r {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
}

.inner_header .content .links {
  position: relative;
  z-index: 10;
}

.inner_header .content .links a {
  color: #fff;
  text-transform: capitalize;
}

.inner_header .content .links a:nth-of-type(1) {
  color: #e99105;
}

.inner_header .content .links span {
  color: #fff;
  margin: 0 10px;
}

.inner_header .content h3 {
  text-transform: uppercase;
  color: #fff;
  margin-top: 10px;
  text-align: center;
}

/* ------------ about style ------------- */
.vision .vision_box {
  padding: 30px;
  background-color: #f9f9f9;
  margin: 15px 0;
}

.vision .vision_box .icon {
  text-align: center;
}

.vision .vision_box .icon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #e99105;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #e99105;
  font-size: 40px;
  background-color: #fff;
}

.vision .vision_box .info h5 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
}

.vision .vision_box .info ul {
  margin-top: 15px;
}

.vision .vision_box .info ul li {
  margin: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.vision .vision_box .info ul li i {
  font-size: 8px;
  color: #e99105;
  margin-top: 10px;
}

.vision .vision_box .info ul li .text {
  font-weight: 500;
}

/* ------------ services_pg page style ------------- */
.services_pg .services_det_content .services_det_box {
  margin: 50px 0;
}

.services_pg .services_det_content .services_det_box .img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.services_pg .services_det_content .services_det_box .img .main_img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
}

.services_pg .services_det_content .services_det_box .img .logo_icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 10;
}

.services_pg .services_det_content .services_det_box .info {
  padding: 3vw 2vw;
  background-color: #f9f9f9;
  border-radius: 15px;
}

.services_pg .services_det_content .services_det_box .info h5 {
  font-weight: bold;
  margin-bottom: 25px;
  font-size: 23px;
  color: #253745;
}

.services_pg .services_det_content .services_det_box .info .text {
  font-size: 14px;
}

.services_pg .services_det_content .services_det_box .info a {
  color: #fff;
  background-color: #e99105;
  margin-top: 30px;
  text-transform: uppercase;
  font-size: 14px;
  padding: 12px 30px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
}

.services_pg
  .services_det_content
  .services_det_box:nth-child(even)
  .row
  .col-lg-7 {
  order: 0;
}

.services_pg
  .services_det_content
  .services_det_box:nth-child(even)
  .row
  .col-lg-5 {
  order: 2;
}

.services_pg
  .services_det_content
  .services_det_box:nth-child(even)
  .img
  .main_img {
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 50px;
}

/* ------------ service_det page style ------------- */

.service_det ul,
.news_det ul {
  list-style-type: initial;
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.service_det .img {
  margin-bottom: 30px;
}

.service_det .img img {
  height: 350px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px #0001;
  box-shadow: 0 0 20px #0001;
}

.service_det .info .text {
  font-weight: 500;
  font-size: 17px;
  color: #666d79;
}

.service_det .side_serv {
  text-align: center;
  border: 2px solid #9993;
}

.service_det .side_serv ul {
  list-style-type: none;
  margin: 0;
}

.service_det .side_serv .title {
  padding: 40px;
  background-color: #253745;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  z-index: 5;
}

.service_det .side_serv .title .inr_l {
  position: absolute;
  top: 0;
  left: 15px;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.service_det .side_serv ul {
  padding: 20px 0;
}

.service_det .side_serv ul li a {
  font-weight: 500;
  font-size: 19px;
  color: #253745;
  margin: 10px 0;
}

.service_det .side_serv ul li a:hover {
  color: #e99105;
}

/* ------------ downloads page style ------------- */
.downloads .down_box {
  background: #fff;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.06);
  margin: 12px 0;
}

.downloads .down_box .img {
  height: 150px;
  pointer-events: none;
}

.fancybox-image,
.fancybox-spaceball {
  pointer-events: none;
}

.downloads .down_box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.downloads .down_box .info h6 {
  font-weight: bold;
  font-size: 18px;
  color: #253745;
  padding: 15px;
}

.downloads .down_box .info .bttn a {
  color: #fff;
  background-color: #e99105;
  width: 50px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 17px;
}

/* ------------ news page style ------------- */
.news .news_box {
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px #0001;
  box-shadow: 0 0 20px #0001;
  border-radius: 15px;
  overflow: hidden;
  margin: 30px 5px;
}

.news .news_box .img {
  height: 300px;
}

.news .news_box .img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.news .news_box .info {
  padding: 15px;
}

.news .news_box .info .keyword {
  display: inline-block;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  background-color: #ffe7c0;
  color: #e99105;
  margin-bottom: 10px;
}

.news .news_box .info h5 {
  color: #253745;
  margin-bottom: 10px;
}

.news .news_box .info .text {
  font-size: 15px;
  font-weight: 500px;
  margin-bottom: 15px;
}

.news .news_box .info .date {
  opacity: 0.5;
  font-size: 12px;
}

.news .news_box .info a {
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #253745;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  border-radius: 50%;
  font-size: 21px;
  border: 1px solid #253745;
}

.news .news_box .info a:hover {
  background-color: #fff;
  color: #253745;
}

.text.text_gray {
  font-weight: 500;
  font-size: 17px;
  color: #666d79;
}

/* ------------ news_det page style ------------- */
.news_det {
  position: relative;
  padding-bottom: 50px;
}

.news_det .container {
  position: relative;
  z-index: 10;
}

.news_det::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: #253745;
}

.news_det .info .top_info {
  background-color: #253745;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.news_det .info .top_info a {
  color: #fff;
  padding: 0 10px;
  border-right: 1px solid #fff1;
  font-size: 13px;
}

.news_det .info .top_info a i {
  color: #e99105;
}

.news_det .info .top_info a:first-of-type {
  padding-left: 0;
}

.news_det .info .top_info a:last-of-type {
  border: 0;
}

.news_det .info .text {
  font-weight: 500;
  font-size: 17px;
  color: #666d79;
}

.news_det .img {
  border-radius: 20px;
  height: 500px;
  overflow: hidden;
}

.news_det .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ------------ media page style ------------- */
.media .img_vid_tabs {
  display: inline-block;
  padding: 10px;
  background-color: #25374513;
  border-radius: 8px;
}

.media .img_vid_tabs a {
  padding: 12px 30px;
  background-color: transparent;
  border-radius: 8px;
}

.media .img_vid_tabs a i {
  font-size: 17px;
}

.media .img_vid_tabs a.active,
.media .img_vid_tabs a:hover {
  background-color: #e99105;
  color: #fff;
}

.media .nav-tabs {
  margin: 50px 0 30px;
}

.media .nav-tabs .nav-link {
  border: 2px solid transparent;
  color: #000;
  text-transform: uppercase;
  font-size: 16px;
  padding: 15px;
  font-weight: 500;
}

.media .nav-tabs .nav-link.active {
  border-bottom: 2px solid #e99105;
  color: #e99105;
  font-weight: 500;
}

.media .img_content .img_box {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin: 16px 4px;
}

.media .img_content .img_box::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 5;
}

.media .img_content .img_box .main_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 5s ease;
  transition: all 5s ease;
}

.media .img_content .img_box .info {
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 30px;
  padding: 20px;
  width: 100%;
  text-align: center;
}

.media .img_content .img_box .info .proj_name {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
}

.media .img_content .img_box .info .icon {
  color: #fff;
  font-size: 60px;
  margin-bottom: 20px;
}

.media .img_content .img_box:hover .main_img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.media .img_content .img_box:hover::before {
  opacity: 0.2;
}

.media .img_content.vid_content .info {
  bottom: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.img_vid_tabs {
  display: inline-block;
  padding: 10px;
  background-color: #25374513;
  border-radius: 8px;
}

.img_vid_tabs a {
  padding: 12px 30px;
  background-color: transparent;
  border-radius: 8px;
  color: #253745;
}

.img_vid_tabs a i {
  font-size: 17px;
}

.img_vid_tabs a.active,
.img_vid_tabs a:hover {
  background-color: #e99105;
  color: #fff;
}

/* ------------ careers page style ------------- */
.careers .main_img {
  height: 600px;
  text-align: center;
}

.careers .career_box {
  padding: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px #0001;
  box-shadow: 0 0 20px #0001;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0;
}

.careers .career_box .icon {
  width: 80px;
}

.careers .career_box .icon i {
  color: #e99105;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px #0001;
  box-shadow: 0 0 20px #0001;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.careers .career_box .cont {
  width: calc(100% - 100px);
}

.careers .career_box .cont .career_box_head {
  font-weight: 600;
  font-size: 20px;
  color: #183b56;
  cursor: pointer;
}

.careers .career_box .cont .career_box_body {
  font-size: 16px;
  color: #5a7184;
  padding: 10px 0;
  display: none;
}

.careers .career_box:first-of-type .career_box_body {
  display: block;
}

.careers_search {
  position: relative;
  padding-bottom: 30px;
}

.careers_search .container {
  position: relative;
  z-index: 10;
}

.careers_search::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 75%;
  height: 100%;
  background-color: #e99105;
  opacity: 7%;
}

.careers_search .career_form_search {
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 20px;
}

.careers_search .career_form_search .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.careers_search .career_form_search .form-group input {
  background-color: transparent;
  border: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.careers_search .career_form_search .form-group select {
  background-color: transparent;
  border: 0;
  font-size: 14px;
}

.careers_search .img {
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
}

.careers_search .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.careers_search.contact .contact_form {
  margin-top: 150px;
}

.careers_search.contact::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 75%;
  height: 250px;
  background-color: #e99105;
  opacity: 7%;
}

.available_jops .av_jop_box {
  background-color: #f8f8f8;
  padding: 30px 4vw;
  border-radius: 20px;
  margin: 20px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.available_jops .av_jop_box h5 {
  color: #253745;
}

.available_jops .av_jop_box .city i {
  color: #ccc;
  font-size: 12px;
  margin-right: 10px;
}

.available_jops .av_jop_box:hover {
  -webkit-box-shadow: 0 0 30px #0002;
  box-shadow: 0 0 30px #0002;
}

.available_jops .av_jop_box:hover .butn.sub_color {
  border-color: #e99105;
  background-color: #e99105;
}

.upload_side .file-input-group {
  border: 2px dashed #9992;
  border-radius: 15px;
  overflow: hidden;
  padding: 30px;
}

.upload_side .file-input-group .file {
  position: relative;
  font-weight: 600;
}

.upload_side .file-input-group .file__input,
.upload_side .file-input-group .file__value {
  border-radius: 0px;
  color: #666;
  padding: 0.375rem 1.0625rem;
}

.upload_side .file-input-group .file__input,
.upload_side .file-input-group .file__value small {
  margin-top: 10px;
  display: block;
  font-size: 11px;
}

.upload_side .file-input-group .file__input--file,
.upload_side .file-input-group .file__input--file1 {
  position: absolute;
  opacity: 0;
}

.upload_side .file-input-group .file__input--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  cursor: pointer;
}

.upload_side .file-input-group .file__input--label:after {
  content: attr(data-text-btn);
  border-radius: 0px;
  background-color: #f5f5f5;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.18);
  padding: 0.5375rem 1.0625rem;
  color: #253745;
  cursor: pointer;
  border-radius: 5px;
}

.upload_side .file-input-group .file__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ccc;
}

.upload_side .file-input-group .file__value:hover:after {
  color: #b39465;
}

.upload_side .file-input-group .file__value:after {
  content: "X";
  cursor: pointer;
}

.upload_side .file-input-group .file__value:after:hover {
  color: #000;
}

.upload_side .file-input-group .file__remove {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #b58240;
}

.careers_form iframe {
  width: 100%;
  height: 2320px;
}

/* ------------ projects style ------------- */
.projects .news_box {
  overflow: visible;
}

.projects .news_box .img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  overflow: hidden;
  height: 400px;
}

/* ------------ page style ------------- */
.results .res_box {
  padding: 20px;
  background-color: #f9f9f9;
  margin: 12px 0;
}

.results .res_box .icon {
  width: 50px;
  height: 50px;
}

.results .res_box .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* -------------------- responsive style ------------------------- */
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 10px;
  }
  .top_nav {
    line-height: 2;
  }
  .top_nav a {
    font-size: 12px;
  }
  .top_nav .text-end {
    text-align: center !important;
  }
  header .head_slider {
    position: relative;
    padding: 75px 15px;
  }
  header .main_img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  header .main_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .about .img img {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  .about {
    overflow: hidden;
  }
  .services .serv_box {
    margin-bottom: 50px;
  }
  .services .text-end {
    text-align: center !important;
  }
  .services::before {
    display: none;
  }
  .services .serv_box .info a {
    border-color: #fff;
  }
  .numbers .content .num_box {
    border: 1px solid #9993;
    margin: 12px 0;
  }
  .brands .content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .brands .content .logo_box {
    width: 50%;
    margin: 10px 0;
    padding: 15px;
  }
  .subscribe .form-group {
    margin-top: 30px;
  }
  .butn {
    padding: 8px 15px;
  }
  footer::after {
    display: none;
  }
  footer .content {
    padding-bottom: 0;
    overflow: hidden;
  }
  footer .content .foot_subscribe,
  footer .content .links {
    margin-top: 30px;
  }
  footer .content .foot_contact_info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .content .foot_contact_info .items {
    width: 100%;
    font-size: 14px;
    margin: 10px 0;
  }
  footer .content .foot_subscribe h5,
  footer .content .foot_subscribe p,
  footer .content .foot_subscribe a {
    color: #222 !important;
  }
  footer .content .title {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .vision .vision_box .icon {
    text-align: initial;
    margin-bottom: 25px;
  }

  .services .serv_box .info {
    transform: scale(1);
    opacity: 1;
  }

  .services_det_content {
    padding-top: 50px;
  }

  .services_det_box {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 10px !important;
  }

  .services_pg
    .services_det_content
    .services_det_box:nth-child(even)
    .row
    .col-lg-7 {
    order: 2;
  }

  .services_pg
    .services_det_content
    .services_det_box:nth-child(even)
    .row
    .col-lg-5 {
    order: 0;
  }

  .services_pg .services_det_content .services_det_box .img .main_img {
    border-radius: 10px !important;
  }
}

/* ======== */
/* ======= */
/*# sourceMappingURL=styles.css.map */
.fixedwhatsapp {
  z-index: 100000;
  right: 30px;
  bottom: 30px;
  background-image: linear-gradient(18deg, #25d366 0%, #25d366 100%);
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  box-shadow: 0 4px 9px 0 rgb(0 0 0 / 14%);
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  position: fixed;
}

.fixedwhatsapp:hover {
  color: #fff !important;
}
.fixedwhatsapp:visited {
  color: #fff !important;
}

/*----------- upload loader ------------*/

#loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: #0005;
  display: none;
}

#loading-wrapper.show {
  display: block;
}

#loading-text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  width: 100px;
  height: 30px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-size: 20px;
}

#loading-content {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #f00;
}

#loading-content:after {
  content: "";
  position: absolute;
  border: 3px solid #0f0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}

#loading-content:before {
  content: "";
  position: absolute;
  border: 3px solid #00f;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}

#loading-content {
  border: 3px solid transparent;
  border-top-color: #253745;
  border-bottom-color: #253745;
  border-radius: 50%;
  -webkit-animation: loader 2s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
}

#loading-content:before {
  border: 3px solid transparent;
  border-top-color: #e99105;
  border-bottom-color: #e99105;
  border-radius: 50%;
  -webkit-animation: loader 3s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
  animation: loader 3s linear infinite;
}

#loading-content:after {
  border: 3px solid transparent;
  border-top-color: #253745;
  border-bottom-color: #253745;
  border-radius: 50%;
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}

@-webkit-keyframes loaders {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#content-wrapper {
  color: #fff;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}

#header {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}

#content {
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}
