@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhaina+2:wght@400;700;800&display=swap");
.block {
  display: block !important;
}

.hide {
  display: none !important;
}

.container {
  padding: 0 7em;
}
.container.main {
  margin-top: 900px;
}

.color-primary {
  color: #FF3838;
}

.title {
  color: #FF3838;
  font-size: 3em;
}

.text-center {
  text-align: center;
}

.mt-5 {
  margin-top: 1em;
}

.btn-primary {
  padding: 10px 20px;
  border-radius: 200px;
  background: #FF3838;
  color: white;
  border: none;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 1px 1px 15px #FF3838;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Baloo Bhaina 2", cursive;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  color: #1f1f1f;
}

header {
  position: absolute;
  height: 100vh;
  width: 100%;
  top: 0;
}
header a {
  text-decoration: none;
}
header nav {
  position: absolute;
  width: 100%;
  padding: 1em 7em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
header nav .overlay {
  display: none;
}
header nav .logo img {
  width: 100px;
}
header nav .items {
  display: flex;
}
header nav .items .item {
  margin-right: 5px;
  padding: 10px 15px;
  font-weight: 800;
  transition: all 300ms ease-in-out;
  list-style: none;
}
header nav .items .item:hover {
  transform: translateY(-3px);
}
header nav .items .item a {
  color: #FF3838;
  text-decoration: none;
}
header nav .items .item.item-contact {
  background: #FF3838;
  border-radius: 25px;
  padding: 10px 25px;
}
header nav .items .item.item-contact a {
  color: white;
  display: flex;
  align-items: center;
}
header nav .items .item.item-contact a i {
  margin-left: 5px;
  font-size: 1em;
}
header .sidebar {
  display: none;
}
header .content-header {
  display: flex;
  justify-content: space-between;
}
header .content-header .text {
  position: absolute;
  z-index: 2;
  padding: 14em 0 0 7em;
  height: 100%;
  line-height: 1.4;
}
header .content-header .text h1 {
  font-size: 3em;
  font-weight: 800;
}
header .content-header .text h1 span {
  color: #FF3838;
  text-transform: uppercase;
  font-size: 1.2em;
}
header .content-header .image {
  position: absolute;
  right: 0;
  z-index: -1;
}
header .content-header .image img {
  width: 40em;
}
header .content-header .img-header-2 {
  position: absolute;
  top: 21em;
  width: 18vw;
}

.features {
  margin-top: 2em;
}
.features .box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.features .box .item {
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3em;
}
.features .box .item .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid white;
  background: linear-gradient(45deg, #FF3838, #ff84a6);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 1px 1px 15px #FF3838;
}
.features .box .item .icon i {
  font-size: 3.5em;
  color: white;
}
.features .box .item .text {
  margin-top: 15px;
  text-align: center;
}

.weare {
  display: flex;
  align-items: center;
  margin-top: 3em;
}
.weare img {
  width: 23em;
}
.weare .text {
  margin-top: 7em;
  padding-right: 3em;
  text-align: right;
}
.weare .text h1 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 3em;
  line-height: 1.3;
}
.weare .text h1 span {
  color: #FF3838;
  font-size: 1.3em;
}
.weare .text p {
  font-size: 2em;
  line-height: 1.3;
}

.cloth {
  position: relative;
  background: url(../images/6.png);
  width: 100%;
  height: 200px;
}

.mission {
  margin-top: 4em;
}
.mission *,
.mission *::before,
.mission *::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
.mission main {
  position: relative;
  width: 100%;
  max-width: 1440px;
}
.mission main .slider .buttons {
  z-index: 1;
  right: 50%;
  top: 261px;
  width: 80px;
  height: 40px;
  position: absolute;
  border-radius: 50px;
  transform: translateX(50%);
  background-color: #FFFFFF;
}
.mission main .slider .buttons .previous,
.mission main .slider .buttons .next {
  width: 50%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.mission main .slider .buttons .previous {
  left: 0;
  background-image: url("https://alcs-slider.netlify.app/images/icon-prev.svg");
}
.mission main .slider .buttons .previous:hover {
  transform: scale(1.25);
}
.mission main .slider .buttons .next {
  right: 0;
  background-image: url("https://alcs-slider.netlify.app/images/icon-next.svg");
}
.mission main .slider .buttons .next:hover {
  transform: scale(1.25);
}
.mission main .slider .slide {
  display: flex;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
}
.mission main .slider .slide .testimonial {
  padding: 32px 0px;
  background-size: 60px;
  background-position: top;
  background-repeat: no-repeat;
  background-image: url(https://alcs-slider.netlify.app/images/pattern-quotes.svg);
}
.mission main .slider .slide .testimonial blockquote {
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 36px;
}
.mission main .slider .slide .testimonial .author {
  font-size: 15px;
  font-weight: 700;
}
.mission main .slider .slide .testimonial .author span {
  display: block;
  color: hsl(240, 18%, 77%);
  font-weight: 500;
}
.mission main .slider .slide .slider-img {
  width: 100%;
  padding: 30px;
  display: flex;
  margin-bottom: 40px;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(https://alcs-slider.netlify.app/images/pattern-bg.svg);
}
.mission main .slider .slide .slider-img img {
  width: 240px;
  display: block;
  border-radius: 10px;
  box-shadow: 0px 16px 40px 0px rgba(135, 105, 210, 0.4);
}
.mission main .slider .slide .active {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.4s;
}
@media screen and (min-width: 600px) {
  .mission html body main {
    max-width: 800px;
  }
  .mission html body main .slider .buttons {
    top: 280px;
  }
}
@media screen and (min-width: 900px) {
  .mission html body main {
    width: 100%;
    max-width: 1054px;
    padding: 64px 64px 64px 0;
  }
  .mission html body main .slider .buttons {
    right: 43%;
    top: 500px;
  }
  .mission html body main .slider .slide {
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: row;
  }
  .mission html body main .slider .slide .testimonial {
    padding: 32px 0 0 0;
    background-size: 80px;
    background-position: 19% -7%;
    transform: translateX(100px);
  }
  .mission html body main .slider .slide .testimonial blockquote {
    font-size: 24px;
    line-height: 30px;
  }
  .mission html body main .slider .slide .testimonial .author span {
    display: contents;
  }
  .mission html body main .slider .slide .slider-img {
    padding: 55px;
  }
  .mission html body main .slider .slide .slider-img img {
    width: 400px;
  }
}

.clients {
  position: relative;
  margin-top: 5em;
}
.clients img.img-left {
  position: absolute;
  top: -248px;
  left: 0;
}
.clients img.img-right {
  position: absolute;
  top: 300px;
  right: 0;
  z-index: -1;
}
.clients .gtco-testimonials {
  position: relative;
  margin-top: 30px;
}
.clients .gtco-testimonials h2 {
  font-size: 30px;
  text-align: center;
  color: #333333;
  margin-bottom: 50px;
}
.clients .gtco-testimonials .owl-stage-outer {
  padding: 30px 0;
  margin-top: 4em;
}
.clients .gtco-testimonials .owl-nav {
  display: none;
}
.clients .gtco-testimonials .owl-dots {
  text-align: center;
}
.clients .gtco-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background: #fff;
  border: 2px solid #FF3838;
  margin: 0 5px;
}
.clients .gtco-testimonials .owl-dots .active {
  box-shadow: none;
}
.clients .gtco-testimonials .owl-dots .active span {
  background: #FF3838;
  box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
}
.clients .gtco-testimonials .card {
  background: #fff;
  box-shadow: 0 8px 30px -7px #c9dff0;
  margin: 0 20px;
  padding: 0 10px;
  border-radius: 20px;
  border: 0;
}
.clients .gtco-testimonials .card .card-img-top {
  max-width: 100px;
  border-radius: 50%;
  margin: 15px auto 0;
  box-shadow: 0 8px 20px -4px #95abbb;
  width: 100px;
  height: 100px;
}
.clients .gtco-testimonials .card h5 {
  color: #FF3838;
  font-size: 21px;
  line-height: 1.3;
}
.clients .gtco-testimonials .card h5 span {
  font-size: 18px;
  color: #666666;
}
.clients .gtco-testimonials .card p {
  font-size: 18px;
  color: #555;
  padding-bottom: 15px;
}
.clients .gtco-testimonials .active {
  opacity: 0.5;
  transition: all 0.3s;
}
.clients .gtco-testimonials .center {
  opacity: 1;
}
.clients .gtco-testimonials .center h5 {
  font-size: 24px;
}
.clients .gtco-testimonials .center h5 span {
  font-size: 20px;
}
.clients .gtco-testimonials .center .card-img-top {
  max-width: 100%;
  height: 120px;
  width: 120px;
}
@media (max-width: 767px) {
  .clients .gtco-testimonials {
    margin-top: 20px;
  }
}
.clients .owl-carousel .owl-nav button.owl-next, .clients .owl-carousel .owl-nav button.owl-prev {
  outline: 0;
}
.clients .owl-carousel button.owl-dot {
  outline: 0;
}

.contact {
  margin-top: 10em;
  /*************footer End*****************/
}
.contact .new_footer_area {
  background: rgba(0, 0, 0, 0);
}
.contact .new_footer_top {
  padding: 120px 0px 270px;
  position: relative;
  overflow-x: hidden;
}
.contact .new_footer_area .footer_bottom {
  padding-top: 5px;
  padding-bottom: 50px;
}
.contact .footer_bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #7f88a6;
  padding: 27px 0px;
}
.contact .new_footer_top .company_widget p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #6a7695;
  margin-bottom: 20px;
}
.contact .new_footer_top .company_widget .f_subscribe_two .btn_get {
  border-width: 1px;
  margin-top: 20px;
}
.contact .btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}
.contact .btn_get:hover {
  color: #fff;
  background: #6754e2;
  border-color: #6754e2;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.contact a:hover,
.contact a:focus,
.contact .btn:hover,
.contact .btn:focus,
.contact button:hover,
.contact button:focus {
  text-decoration: none;
  outline: none;
}
.contact .new_footer_top .f_widget.about-widget .f_list li a:hover {
  color: #5e2ced;
}
.contact .new_footer_top .f_widget.about-widget .f_list li {
  margin-bottom: 11px;
}
.contact .f_widget.about-widget .f_list li:last-child {
  margin-bottom: 0px;
}
.contact .f_widget.about-widget .f_list li {
  margin-bottom: 15px;
}
.contact .f_widget.about-widget .f_list {
  margin-bottom: 0px;
}
.contact a {
  text-decoration: none;
}
.contact .new_footer_top .f_social_icon a {
  width: 44px;
  height: 44px;
  line-height: 43px;
  background: transparent;
  border: 1px solid #e2e2eb;
  font-size: 24px;
}
.contact .f_social_icon a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 45px;
  color: #858da8;
  display: inline-block;
  background: #ebeef5;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.contact .ti-facebook:before {
  content: "\e741";
}
.contact .ti-twitter-alt:before {
  content: "\e74b";
}
.contact .ti-vimeo-alt:before {
  content: "\e74a";
}
.contact .ti-pinterest:before {
  content: "\e731";
}
.contact .btn_get_two {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #5e2ced;
  border-color: #5e2ced;
  color: #fff;
}
.contact .btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}
.contact .new_footer_top .f_social_icon a:hover {
  background: #5e2ced;
  border-color: #5e2ced;
  color: white;
}
.contact .new_footer_top .f_social_icon a + a {
  margin-left: 4px;
}
.contact li {
  list-style: none;
}
.contact .new_footer_top .f-title {
  margin-bottom: 30px;
  color: #263b5e;
}
.contact .f_600 {
  font-weight: 600;
}
.contact .f_size_18 {
  font-size: 18px;
}
.contact h1,
.contact h2,
.contact h3,
.contact h4,
.contact h5,
.contact h6 {
  color: #4b505e;
}
.contact .new_footer_top .f_widget.about-widget .f_list li a {
  color: #6a7695;
}
.contact .new_footer_top .footer_bg {
  position: absolute;
  bottom: 0;
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png") no-repeat scroll center 0;
  width: 100%;
  height: 266px;
}
.contact .new_footer_top .footer_bg .footer_bg_one {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
  width: 330px;
  height: 105px;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 30%;
  -webkit-animation: myfirst 22s linear infinite;
  animation: myfirst 22s linear infinite;
}
.contact .new_footer_top .footer_bg .footer_bg_two {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
  width: 88px;
  height: 100px;
  background-size: 100%;
  bottom: 0;
  left: 38%;
  position: absolute;
  -webkit-animation: myfirst 30s linear infinite;
  animation: myfirst 30s linear infinite;
}
@-moz-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}
@keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@media only screen and (max-width: 936px) {
  header nav {
    display: none;
    z-index: 4;
    height: 100%;
  }
  header nav .overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3098039216);
    display: block;
    top: 0;
    left: 0;
  }
  header nav .logo {
    display: none;
  }
  header nav .items {
    width: 230px;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -230px;
    height: 100%;
    background: white;
    padding: 2em;
    transition: all 300ms ease-in-out;
  }
  header .sidebar {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
  }
  header .sidebar .item-trigger {
    position: absolute;
    left: 30px;
    top: 20px;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .sidebar .item-trigger i {
    color: #FF3838;
    cursor: pointer;
    font-size: 2em;
  }
  header .content-header .image img {
    width: 68vw;
  }
  header .content-header .text {
    padding: 14em 0 0 3em;
  }
}
@media only screen and (max-width: 920px) {
  .weare {
    flex-direction: column;
  }
  .weare img {
    width: 50vw;
  }
  .weare .text {
    text-align: center;
    margin-top: 2em;
    padding: 0;
  }
  .cloth {
    margin-top: 2em;
  }
}
@media only screen and (max-width: 841px) {
  .container {
    padding: 0 3em;
  }
  .container.main {
    margin-top: 42em;
  }
}
@media only screen and (max-width: 520px) {
  header .content-header .text {
    padding: 14.5em 0 0 2em;
  }
  header .content-header .text h1 {
    font-size: 2em;
  }
  .container {
    padding: 0 2em;
  }
  .container.main {
    margin-top: 500px;
  }
  .weare .text {
    text-align: center;
    margin-top: 2em;
    padding: 0;
  }
  .weare .text h1 {
    font-size: 1.5em;
  }
  .weare .text p {
    font-size: 1em;
  }
  .clients img.img-left {
    top: -200px;
    left: 0;
    width: 60vw;
  }
  .clients img.img-right {
    top: 300px;
    right: 0;
    width: 60vw;
  }
}

/*# sourceMappingURL=style.css.map */
