:root {
  --main-color: #FF0069;
  --dark-blue: #393F4A;
  --heading-color: #393F4A;
  --text-color: #1E1E1E;
  --white-color: #fff;
  --black-color: #000;
  --main-font: "Inter", sans-serif;
  --heading-font: "Inter", sans-serif;
  --button-font: "Inter", sans-serif;
}




body { 
  margin:0;
  padding:0;
}


html,
body {
  font-family: var(--main-font);
}

a {
  text-decoration: none;
}

.container-fluid {
  padding: 0 4%;
}
h1,
h2,
h3,
h5,
h6 {
  font-family: var(--heading-font);
}

p {
  font-family: var(--main-font);
}

/* Mouse Trailer */
#trailer {
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 20px;
  border: 2px solid #FF0069;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 999999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms ease;
}

body:hover #trailer {
  opacity: 1;
}
.main_menu_hdr {
  background: transparent;
  z-index: 99;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}

.left_top {
  display: flex;
  justify-content: flex-start;
}

.main_menu {
  display: block;
  position: relative;
  background: transparent;
  padding: 0px;
  border-radius: 0px;
}

.main_menu .navigation.navbar {
  padding: 0;
}

.container-menu {
  width: 80%;
  margin: 0 auto;
}

.logo {
  display: block;
  padding: 0px 15px;
}

.logo a {
  position: relative;
  z-index: 1;
  width: 186px;
  display: inline-block;
  margin: 0;
  top: 0px;
  left: 0px;
}

.logo a img {
  width: 100%;
}

.login_hdr a{
  color: #1E1E1E;
}
.register_hdr{
  padding-left: 50px;
}
.register_hdr a{
  padding: 13px 0px;
  color: var(--text-color);
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--heading-font);
}
.active_wishlist a:before{
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background:#FF2323;
}
.active_cart a:before{
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background:#FF2323;
}

.banner_sec {
  width: 100%;
  background-size: cover;
  position: relative;
  background: #000;
}

.social_banner{
  position: absolute;
  top: 50%;
  list-style: none;
  padding-left: 0;
  left: 3%;
  transform: translate(-3%, -50%);
  z-index: 1;
}
.social_banner li a{
  color: var(--white-color);
  writing-mode: tb;
  transform: rotate(180deg);
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 0;
  font-weight: 300;
}






.slide .slide__img:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, black, transparent);
}

.slider,
.slide {
  height: 100vh;
}
.slide {
  position: relative;
  transition: 1s;
}
.slide .slide__img {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.slide .slide__img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.slide .slide__img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  transition: all 1s ease;
  object-fit: cover;
}
.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35%;
}
.slide .slide__content.slide__content__left {
  left: 15%;
  transform: translate(-15%, -50%);
}
.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}
.slide .slide__content--headings {
  color: #FFF;
}
.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
  letter-spacing: 0px;
}
.slide .slide__content--headings h5 {
  margin: 10px 0;
}
.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}
.slide .slide__content--headings .top-title {
  font-family: var(--main-font);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--white-color);
}
.slide .slide__content--headings .title {
  font-size: 63px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--white-color);
}
.slide__content--headings {
  position: relative;
}


/*-------- button Effect-------*/
.red_btn {
  display: inline-block;
  box-sizing: border-box;
  padding: 14px 35px;
  border-radius: 30px;
  position: relative;
  color: var(--white-color);
  background: transparent;
  border: 1px solid var(--white-color);
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
}

.red_btn span {
  font-weight: 400;
  position: relative;
  font-family: var(--button-font);
  letter-spacing: 2px;
  color: var(--white-color);
  font-size: 16px;
}
.red_btn img{
  padding-left: 5px;
  position: relative;
  display: inline-block;
  transition: all ease-in 0.3s;
}
.red_btn:before {
  content: "";
  height: 0;
  width: 100%;
  transform: translateX(0%);
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--main-color);
  border-radius: 0px;
  transition: all ease-in 0.3s;
}

.red_btn:hover:before {
  bottom: 0;
  transition: all ease-in 0.3s;
  height: 100%;
}
.red_btn:hover img{
  transform: rotate(45deg);
  transition: all ease-in 0.3s;
}
.red_btn:hover span {
  color: var(--white-color);
}

.red_btn.white_bg {
  color: var(--black-color);
  background: var(--white-color);
}

.red_btn.white_bg:before {
  background: rgb(255 255 255 / 50%);
}

.red_btn.white_bg span {
  color: var(--black-color);
}

.red_btn.black_bg {
  color: var(--white-color);
  background: var(--black-color);
}

.red_btn.black_bg:before {
  background: rgb(0 0 0 / 50%);
}

.red_btn.black_bg span {
  color: var(--white-color);
}

.red_btn .btn-icon {
  padding: 10px;
}

.red_btn .btn-icon img {
  width: 20px;
  height: 20px;
}

/*-------- button Effect-------*/


.heading_hp h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1e1e1e;
  position: relative;
  letter-spacing: 0px;
  margin-bottom: 10px;
}
.heading_hp h6 {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.heading_hp p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 25px;
}
.heading_hp.text_white h2,
.heading_hp.text_white p,
.heading_hp.text_white h6{
  color: var(--white-color);
}


.heading_dot h2 span.dot_hd{
  width: 10px;
  height: 10px;
  background: #FF0069;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  margin: 0 15px;
}
.heading_dot h2 span.dot_hd::before{
  content: '';
  width: 10px;
  height: 10px;
  background: #00D6F2;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  left: -15px;
  top: 0;
}
.heading_dot h2 span.dot_hd::after{
  content: '';
  width: 10px;
  height: 10px;
  background: #FFD700;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  right: -15px;
  top: 0;
}

/* About */
.about_sec {
  padding: 100px 0 0;
  background: #03050C;
}
.abt_img{
  width: 100%;
  height: 800px;
  position: relative;
  background-size: contain;
}

.service_sec{
  padding: 100px 0;
  position: relative;
  background: #00283C;
}
.services_slid_img{
  width: 80px;
  height: 80px;
  display: inline-block;
  position: relative;
}
.services_slid_img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.serr-text{
  width: 100%;
}
.service_box_sec{
  padding: 0px;
  border-radius: 20px;
  background: transparent;
  position: relative;
  text-align: center;
}
.padding_box{
  padding: 10px 40px;
}
.serr-text h3{
  font-size: 30px;
  padding: 10px 0;
  margin-bottom: 0;
  color: #fff;
  font-weight: 700;
  min-height: 90px;
}
.serr-text p{
  font-size: 14px;
  font-weight: 400;
  color: rgb(255 255 255 / 70%);
  display: inline-block;
}
.why_us_sec{
  position: relative;
  padding: 100px 0;
}
.why_us_bg{
  position: absolute;
  left: 0;
  top: 0;
  width: 38%;
  height: 70%;
}
.why_us_bg img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.why_us_bg:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 214 242 / 50%);
}
.why_us_img{
  width: 100%;
  position: relative;
  z-index: 1;
}
.why_us_img img{
  width: 100%;
}
.why_us_sec .heading_hp ul{
  list-style: none;
  padding-left: 5px;
}
.why_us_sec .heading_hp ul li{
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
}
.why_us_sec .heading_hp ul li:before{
  content: '';
  width: 5px;
  height: 5px;
  background: #FF0069;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 10px;
}
.how_we_work_sec{
  position: relative;
  padding: 0px 0 100px;
}
.how_we_left{
  position: relative;
}
.step_box{
  position: relative;
  padding-left: 40px;
  padding-bottom: 20px;
}
.step_box:before{
  content: '';
  position: absolute;
  left: 5px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--main-color);
}
.step_box:after{
  content: '';
  position: absolute;
  left: 0px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--main-color);
  border-radius: 50%;
}
.step_box h4{
  font-size: 25px;
  font-weight: 700;
}
.step_box p{
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.how_we_left .step_box:last-child:before{
  content: none;
}
.step_box:hover:before, .step_box:hover:after{
  background: #FFD700;
}
.hover_effect_box {
  display: flex;
  width: 100%;
  padding: 4% 0% 0%;
  box-sizing: border-box;
  height: 70vh;
}
.box {
  flex: 1;
  overflow: hidden;
  transition: 0.5s;
  margin: 0;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}
.box > img {
  width: 200%;
  height: calc(100% - 0vh);
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
}
.box:hover {
  flex: 1 1 50%;
}
.box:hover > img {
  width: 100%;
  height: 100%;
}
.img_not_hover{
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  height: 100%;
  padding: 50px;
}
.img_not_hover h4{
  writing-mode: tb;
  margin: 0;
  font-weight: 700;
  font-size: 30px;
}
.img_hover_ul{
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 50px;
  opacity: 0;
  background: linear-gradient(360deg, black, transparent);
}
.img_hover_ul ul li{
  color: var(--white-color);
  font-size: 14px;
}
.box:hover .img_not_hover{
  background: none;
}
.box:hover .img_not_hover h4{
  writing-mode: unset;
  color: var(--white-color);
}
.box:hover .img_not_hover h5{
  color: var(--white-color);
}
.box:hover .img_hover_ul{
  opacity: 1;
}


.industries_sec{
  padding: 100px 0;
}



.ind_box{
  border-radius: 6px;
  text-align: center;
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
}
.pink_color{
  background:rgb(251 0 105 / 10%);
}
.green_color{
  background:rgb(69 223 0 / 10%);
}
.blue_color{
  background:rgb(45 200 222 / 10%);
}
.yellow_color{
  background:rgb(247 206 0 / 10%);
}
.ind_box h5{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 10px;
}
.ind_box img{
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.mrgn_top .col:nth-child(2){
  margin-top: 60px;
}
.mrgn_top .col:nth-child(3){
  margin-top: 30px;
}
.mrgn_top .col:last-child{
  margin-top: 0px;
}

.testimonial_sec{
  padding: 50px 0;
}
.testimonial_padding{
  padding: 0 100px;
}
.testimonial_text{
  width: 100%;
  text-align: center;
}
.testimonial_text p{
  font-size: 20px;
}
.testimonial_text h5{
  font-size: 15px;
}
.testimonial_text h5{
  font-size: 15px;
}
.slick-dots{
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding-left: 0;
}
.slick-dots li button{
  font-size: 0;
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #A5A5A5;
  border: none;
  border-radius: 50%;
  margin: 0 3px;
  padding: 0;
}
.slick-dots li.slick-active button{
  background: #000;
}



.lets_work_together{
  background: #00283C;
  padding: 50px 0 0;
}

.submit_btn{
  background: #FFD700;
  color: #1e1e1e;
  padding: 10px 35px;
  border-radius: 30px;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
}
.lets_work_together .form-control{
  border-radius: 30px;
  background: transparent;
  color: var(--white-color);
  padding: 10px;
}
.lets_work_together .form-label, .lets_work_together .form-check-label{
  color: var(--white-color);
}
.footer_sec{
  background: var(--white-color);
  padding: 20px 0;
  margin-top: 50px;
}
.footer_sec ul{
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 5px;
}
.footer_sec ul li a{
  color: var(--text-color);
  padding-right: 10px;
  text-transform: uppercase;
}
.footer_sec p{
  font-size: 12px;
  color: rgb(30 30 30 / 50%);
  margin-bottom: 0;
}
.footer_sec p a{
  color: rgb(30 30 30 / 50%);
  margin-bottom: 0;
}

.lets_work_img{
  width: 25%;
  position: absolute;
  right: 200px;
  bottom: 0px;
}
.lets_work_img img{
  width: 100%;
}
.lets_work_together{
  position: relative;
}


