@import url("https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --darkblue:#142336;
  --oragne:#FAD110;
  --blue:#4586D5;
  --light:#f8f9fa;
  --textDark:#212529;
  --background:#ffffff80;
  --white:#fff;
  --textHeader:#111111;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#header {
  width: 100%;
  height: 100px;
}

#header .header_social > a {
  color: var(--darkblue);
}

#header .header_phone > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  width: 100%;
  height: 60px;
  border: 2px solid var(--oragne);
  color: var(--blue);
}

#header .header_navbar > ul > li > a {
  color: var(--darkblue);
  font-size: 17px;
  text-transform: capitalize;
  font-weight: 600;
  margin-inline: 15px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#header .header_navbar > ul > li > a:hover {
  color: var(--blue);
}

#header .header_navbar > ul > li:nth-of-type(1) > a {
  color: var(--blue);
}

#header .header_navbar .header_navbar_logo {
  height: 110%;
  width: 180px;
  background-color: var(--textHeader);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
          clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  z-index: 2;
  margin-inline: 30px;
}

#header .header_navbar .header_navbar_logo img {
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header_menu_NavLinks {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  background-color: white;
}

.header_menu_NavLinks.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-shadow: 0 0 1000px 5000px rgba(0, 0, 0, 0.429);
          box-shadow: 0 0 1000px 5000px rgba(0, 0, 0, 0.429);
}

#header .header_scroll {
  -webkit-animation: headerScroll 1s ease-in-out 1 forwards;
          animation: headerScroll 1s ease-in-out 1 forwards;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

@-webkit-keyframes headerScroll {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes headerScroll {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#header_banner {
  height: 145vh;
  background-image: url(../img/headerBg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

#header_banner .prevBtn, #header_banner .nextBtn {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2rem;
  color: var(--textDark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 100px;
  background-color: var(--background);
  cursor: pointer;
}

#header_banner .prevBtn {
  left: 0;
}

#header_banner .nextBtn {
  right: 0;
}

#header_banner .header_banner_content {
  background-color: var(--white);
  overflow: hidden;
  padding: 45px 50px 30px;
  position: relative;
}

#header_banner .header_banner_content > .slide {
  width: 90%;
  height: 90%;
  margin-top: 10px;
  position: absolute;
  top: 100%;
  left: 5%;
}

#header_banner .header_banner_content > .slide .slide_list > li {
  text-transform: capitalize;
  font-weight: 600;
  color: var(--blue);
}

#header_banner .header_banner_content > .slide .slide_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 170px;
  height: 50px;
  background-color: var(--oragne);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--textDark);
  -webkit-transition: .5s;
  transition: .5s;
}

#header_banner .header_banner_content > .slide .slide_btn:hover {
  background-color: var(--darkblue);
  color: var(--white);
  -webkit-box-shadow: 0 0 5px var(--light);
          box-shadow: 0 0 5px var(--light);
}

#header_banner .header_banner_content .slide.active {
  -webkit-animation: header_banner_content_text .9s ease-in-out 1 forwards;
          animation: header_banner_content_text .9s ease-in-out 1 forwards;
}

@-webkit-keyframes header_banner_content_text {
  to {
    top: 5%;
  }
}

@keyframes header_banner_content_text {
  to {
    top: 5%;
  }
}

#header_banner .header_banner_waper {
  position: relative;
}

#header_banner .header_banner_waper > .row {
  width: 100%;
}

#header_banner .header_banner_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  bottom: 0;
}

#header_banner .header_banner_cards > section {
  border: 1px solid #e1e1e1;
  padding: 30px 25px 25px;
  cursor: pointer;
}

#header_banner .header_banner_cards > section > h3 {
  color: var(--darkblue);
  font-weight: 700;
  font-family: "Saira Condensed", sans-serif;
}

#header_banner .header_banner_cards > section > .header_banner_cards_icon {
  font-size: 4rem;
  color: var(--blue);
}

#section_products .section_product_cards > .section_products_title > a > p {
  color: var(--blue);
  font-weight: 600;
  font-size: 2.7rem;
}

#section_products .section_product_cards > .section_products_title span {
  color: var(--darkblue);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

#section_total_view {
  background-color: #142336;
  min-height: 200px;
  margin-top: 100px;
  padding-top: 60px;
  padding-bottom: 100px;
}

#section_total_view .section_total_view_cards .card i {
  font-size: 4rem;
}

#section_total_view .section_total_view_cards .card span {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 40px;
  margin-block: 26px;
}

#section_total_view .section_total_view_cards .card h4 {
  color: var(--blue);
  font-weight: 600;
}

#section_about_makro {
  padding-block: 100px;
}

#section_about_makro .section_about_makro_img {
  position: relative;
}

#section_about_makro .section_about_makro_img::after {
  content: 'Task Masters';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  left: 10%;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--textDark);
  font-family: "Saira Condensed", sans-serif;
  font-weight: 700;
}

#section_about_makro .section_about_makro_content > span {
  font-size: 18px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

#section_about_makro .section_about_makro_content > h2 {
  margin-top: 18px;
  margin-bottom: 30px;
}

#section_about_makro .section_about_makro_content p {
  text-align: justify;
}

#section_about_makro .section_about_makro_content > a {
  display: inline-block;
  font-size: 18px;
  border: 2px solid var(--oragne);
  color: var(--blue);
  text-transform: uppercase;
  padding: 14px 36px 12px;
  margin-top: 30px;
}

#section_about_makro .section_about_makro_content > span {
  font-size: 18px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

#section_about_makro .section_about_makro_content > h2 {
  margin-top: 18px;
  margin-bottom: 30px;
}

#section_Get_quote {
  width: 100%;
  overflow-x: hidden;
}

#section_Get_quote .section_Get_quote_card {
  height: 100vh;
}

#section_Get_quote .section_Get_quote_card:nth-of-type(1) {
  background-color: var(--blue);
}

#section_Get_quote .section_Get_quote_card:nth-of-type(1) h4 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

#section_Get_quote .section_Get_quote_card:nth-of-type(1) form > input {
  height: 50px;
  outline: none;
  border: 1px solid var(--background);
  margin-bottom: 10px;
}

#section_Get_quote .section_Get_quote_card:nth-of-type(1) form > input::-webkit-input-placeholder {
  color: var(--white);
}

#section_Get_quote .section_Get_quote_card:nth-of-type(1) form > input:-ms-input-placeholder {
  color: var(--white);
}

#section_Get_quote .section_Get_quote_card:nth-of-type(1) form > input::-ms-input-placeholder {
  color: var(--white);
}

#section_Get_quote .section_Get_quote_card:nth-of-type(1) form > input::placeholder {
  color: var(--white);
}

#section_Get_quote .section_Get_quote_card:nth-of-type(1) form > textarea {
  height: 170px;
  outline: none;
  background-color: transparent;
  resize: none;
}

#section_Get_quote .section_Get_quote_card:nth-of-type(1) form > textarea::-webkit-input-placeholder {
  color: var(--light);
}

#section_Get_quote .section_Get_quote_card:nth-of-type(1) form > textarea:-ms-input-placeholder {
  color: var(--light);
}

#section_Get_quote .section_Get_quote_card:nth-of-type(1) form > textarea::-ms-input-placeholder {
  color: var(--light);
}

#section_Get_quote .section_Get_quote_card:nth-of-type(1) form > textarea::placeholder {
  color: var(--light);
}

#section_Get_quote .section_Get_quote_card:nth-of-type(1) form > button {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  background-color: var(--oragne);
  padding: 14px;
  width: 150px;
  margin-top: 20px;
  cursor: pointer;
  color: var(--white);
  text-transform: uppercase;
}

#section_Get_quote .section_Get_quote_card:nth-of-type(2) {
  background-image: url("../img/i.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

#section_Get_quote .section_Get_quote_card:nth-of-type(2)::after {
  content: 'How can use';
  position: absolute;
  top: 10px;
  left: 40px;
  z-index: 9999;
  font-size: 3rem;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
}

#section_Get_quote .section_Get_quote_card:nth-of-type(2) .section_Get_quote_Btnplayer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3rem;
  cursor: pointer;
  position: relative;
}

#section_Get_quote .section_Get_quote_card:nth-of-type(2) .section_Get_quote_Btnplayer::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #facf10a0;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  -webkit-animation: btnstyle 1s infinite linear;
          animation: btnstyle 1s infinite linear;
}

@-webkit-keyframes btnstyle {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}

@keyframes btnstyle {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}

#section_Get_quote .section_Get_quote_card:nth-of-type(2) > video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 999;
  -webkit-box-shadow: 0 0 10000px 5000px #2125298c;
          box-shadow: 0 0 10000px 5000px #2125298c;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .6s;
  transition: .6s;
}

#section_Get_quote .section_Get_quote_card:nth-of-type(2) video.show {
  opacity: 1;
  visibility: visible;
}

#section_footer {
  width: 100%;
  background-color: var(--darkblue);
  min-height: 60vh;
  margin-top: 200px;
}

#section_footer .section_footer_content {
  background-color: var(--blue);
  padding: 30px 55px 25px 45px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#section_footer .section_footer_content > section .footer_text {
  color: var(--oragne);
}

#section_footer .section_footer_content > section span {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#section_footer .section_footer_content > section i {
  font-size: 4rem;
}

#section_footer .section_footer_content > section h5 {
  font-size: clamp(10px, 40px, 40px);
  font-weight: 600;
}

#section_footer .section_footer_cards .footer_title {
  color: var(--white);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

#section_footer .section_footer_cards ul > li, #section_footer .section_footer_cards a {
  color: #c4c4c4;
  font-size: 15px;
  margin-bottom: 14px;
  text-transform: capitalize;
  font-weight: normal;
}

#section_footer .section_footer_cards ul > li > input {
  height: 50px;
  outline: none;
  border: 1px solid #c4c4c4;
  padding-inline: 15px;
}

#section_footer .section_footer_cards ul > li > input::-webkit-input-placeholder {
  color: var(--light);
  font-size: 1.1rem;
}

#section_footer .section_footer_cards ul > li > input:-ms-input-placeholder {
  color: var(--light);
  font-size: 1.1rem;
}

#section_footer .section_footer_cards ul > li > input::-ms-input-placeholder {
  color: var(--light);
  font-size: 1.1rem;
}

#section_footer .section_footer_cards ul > li > input::placeholder {
  color: var(--light);
  font-size: 1.1rem;
}

#section_footer .section_footer_cards .footer_recent_text h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

#section_footer .section_footer_cards .footer_btn {
  background-color: var(--oragne);
  color: var(--darkblue);
  padding: 14px 30px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
  display: inline-block;
}

#section_footer .section_footer_copyRight {
  border-top: 1px solid var(--background);
  color: var(--background);
}

#section_footer .section_footer_copyRight a {
  color: var(--oragne);
}

.Products_cards > img {
  width: 100%;
  height: 300px;
}

.Products_cards > figcaption {
  text-align: justify;
}

.client-card {
  height: 200px;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.client-card .client_image {
  height: 80px;
  width: 80px;
  -webkit-box-shadow: 0 0 2px gray;
          box-shadow: 0 0 2px gray;
  outline: 1px solid gray;
  outline-offset: 5px;
  overflow: hidden;
}

.client-card .client_image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.tns-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem;
}

.tns-controls > * {
  border: 50%;
  border: 1px solid var(--blue);
  background-color: transparent;
  color: var(--blue);
  font-weight: 700;
}

.tns-nav {
  text-align: center;
  margin-top: 1rem;
}

.tns-nav > button {
  height: 15px;
  width: 15px;
  margin: 3px;
  border: none;
  border-radius: 50%;
  background-color: #c8cbcc;
}

.tns-nav .tns-nav-active {
  background-color: var(--blue);
}
/*# sourceMappingURL=master.css.map */