/* STYLES  */

/* Global  */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

h1 {
  color: #222222;
  font-size: 60px;    
}

h2 {
  padding: 10px 200px; 
  /* text-align: center; */
}

h2, h3, h4, h5 {
    font-size: 44px;
    color: #222222;
    text-align: center;
}

h6 {
  font-size: 28px;
  color: #008aff;
  font-weight: 600;
}

/* background: #008aff;
background: -webkit-linear-gradient(to right, #008aff, #008aff);
background: linear-gradient(to right, #008aff, #008aff); */

/* UpperLine  */

/* STYLES  */

/* Global  */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

h1 {
  color: #fff;
  font-size: 60px;
}

h1 span {
  color: #008aff !important;
}

h2 {
  padding: 10px 200px;
  text-align: center;
}

h2,
h3,
h4,
h5 {
  font-size: 44px;
  color: #222222;
  text-align: center;
}

h6 {
  font-size: 28px;
  color: #008aff;
  font-weight: 600;
}

/* UpperLine  */
.upperLine {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 100px;
  background-color: #008aff;
  /* max-width: 1290px;
  margin: auto; */
}

.phoneNumber {
  background-color: #008aff;
  border-radius: 7px;
  padding: 5px 20px;
}

.phoneNumber a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.specOffer {
  padding: 15px 10px;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  /* display: flex;
  align-items: center; */
}

.fa-tags {
  font-size: 28px;
  margin-right: 10px;
  color: #008aff;
}

.askQuestion a {
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  margin: 0 30px;
  padding: 0;
}

/* HEADER  */
header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url("/images/appl2.jpg");
  height: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 100px 0px;
  /* max-width: 1290px;
  margin: auto;  background-size: cover;

  background-image: url(/images/mobileHeaderImage.jpg); */
}

/* NAVIGATION MENU STYLES  */

nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 130px;
  align-items: center;
  background-color: transparent;
  max-width: 1290px;
  margin: auto;
}

/* Logo  */
.logoTitle a {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.logoSubtitle {
  max-width: 400px;
  font-size: 22px;
  font-weight: 700;
  display: block;
  color: #fff;
}

/* Rotating image  */

.rotatingImage .fa-gear:first-child {
  position: absolute;
  left: 20%;
 font-size: 60px;
 color: #fff;
}

.rotatingImage .fa-gear {
  position: absolute;
  left: 30%;
  color: #fff;
  font-size: 60px;
  margin: -80px 0 0 -50px;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Up down wrench  */
.wrenchUpDown {
  animation: up-and-down 3s ease-in-out infinite alternate;
}

.wrenchUpDown .fa-wrench, .wrenchUpDown .fa-hammer{
  font-size: 96px;
  color: #fff;
}

@keyframes up-and-down {
  0% {
    transform: translate(0%, 20%);
  }
  100% {
    transform: translate(0%, -50%);
  }
}

/* Cards  */
.cards {
  /* margin: 50px 0px; */
  max-width: 300px;
  word-break: break-word;
  
}

.cards img {
  width: 84px;
  height: 84px;
}

/* .cards:nth-child(2) {
  background-color: #008aff;
  
  transition: all 0.4s;
  margin: -1.5em 0 0em 0;
  padding: 1em 1em 0em 1em;
  border-radius: 10px;
  height: 130%;
 
} */

/* .cards:nth-child(2) span{
 color: #fff !important;
 
} */



/* Marquee */
.marquee {
  position: relative;
  margin: auto;
  /* width: 100vw; */
  max-width: 1290px;
  height: 200px;
  overflow-x: hidden;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 32s linear infinite;
}

.marquee .content img {
  width: 150px;
  height: 128px;
  object-fit: contain;
  margin: 0px 30px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Desktop menu  */

.menuLinks ul {
  display: flex;
}

.menuLinks ul li {
  list-style: none;
}

.menuLinks ul li a {
  list-style: none;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 30px;
}

.menuLinks ul li a:hover {
  text-decoration: underline;
}

/* Mobile menu  */
#curtain {
  display: none;
}

.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-y: hidden;
  transition: 0.5s;
  box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 3px;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: left;
  margin-top: 30px;
}

.overlay-content a {
  border-bottom: 1px solid #c1c1c1;
  font-weight: 900;

}

.overlay-content a:nth-child(1) {
  color: #008aff;
}

.overlay a {
  padding: 15px;
  text-decoration: none;
  font-size: 52px !important;
  color: #222222;
  display: block;
  transition: 0.3s;
  font-weight: 700;
}

.overlay a:hover,
.overlay a:focus {
  color: #008aff;
}

/* HeadSection  */

.headSection {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  max-width: 1290px;
  margin: auto;

}

.mainText {
  max-width: 600px;
}

.mainText a {
  background-color: #008aff;
  border-radius: 7px;
  padding: 13px 29px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border: none;
  letter-spacing: 1px;
}

.mainText p {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}

/* Contact form styles  */
.formSection {
  background-color: #ffffff;
  text-align: left;
  border-radius: 8px;
  padding: 25px 30px 15px;
  max-width: 400px;
  max-height: 450px;
  box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 3px;
}

form input {
  display: block;
  width: 100%;
  margin: 20px 0;
  padding: 15px 0px 15px 5px;
  border-radius: 5px;
}

form p {
  font-size: 16px;
  color: #4f4f4f;
}

form button {
  background-color: #008aff;
  border-radius: 7px;
  padding: 13px 29px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  letter-spacing: 1px;
  border: none;
}

/* MAIN SECTION STYLES  */

section {
  display: grid;
  justify-content: center;
  grid-template-columns: auto auto auto auto;
  padding: 10px 0px;
  justify-content: space-between;
  margin: auto;
border-radius: 7px;
  max-width: 1290px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  text-align: center;


}

.cardOne {
  position: relative;
  padding: 1rem;
  margin: 0 10px;
  max-width: 400px;
  transition-duration: 0.3s;
  transition-property: transform;
  /*box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 3px;*/
}

.cardTwo {
  position: relative;
  padding: 1rem;
  margin: 0 10px;
  max-width: 400px;
  transition-duration: 0.3s;
  transition-property: transform;
  box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 3px;
}

.cardThree {
  position: relative;
  padding: 1rem;
  margin: 0 10px;
  max-width: 400px;
  transition-duration: 0.3s;
  transition-property: transform;
  box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 3px;
}

.cardFour {
  padding: 2rem;
  margin: 20px 0px;
  max-width: 220px;
  box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 3px;
  border-radius: 10px;
}
.cardFour span {
  color: #008aff !;
  font-size: 1.2em;
}

.cards span {
  color: #008aff !important;
  /* font-size: 1.2em; */
}

.cardFour img {
  width: 100%;
}

.cardOne:hover {
  transform: translateY(-15px);
  background-color: #008aff;
  color: #222222;
}

.cardTwo:hover {
  transform: translateY(-15px);
  background-color: #008aff;
  color: #222222;
}

.cardThree:hover {
  transform: translateY(-15px);
  background-color: #008aff;
  color: #222222;
}

section span {
  display: block;
  font-size: 1.6em;
  font-weight: bold;
  color: #222222;
}

section p {
  display: block;
  padding-bottom: 0;
  font-size: 1rem;
  line-height: 1.64286rem;
  text-align: left;
  color: #4f4f4f;
  letter-spacing: 1px;
}

.containerWhyUs {
  background-color: #fff;
  text-align: center;
  padding: 10px 200px;
  margin: 50px 0px 0px 0px;
  background-image:  url("/images/applianceBackground.png");
  height: 50%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
 
}

.containerWhyUsTwo {
  background-color: #fff;
  text-align: center;
  padding: 10px 200px;
  margin: 0px 0;
  background-image:  url("/images/applBackg.png");
  height: 50%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
 
}



.leftSide {
  max-width: 600px;
  text-align: left;
}

.chooseUs {
  font-size: 22px;
  color: #008aff;
  line-height: 1.36;
  padding-left: 24px;
  font-weight: 600;
}

.chooseQuality {
  font-size: 22px;
  color: #008aff;
  line-height: 1.36;
  padding-left: 24px;
  font-weight: 600;
}

.ourPluses {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plusBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plusText {
  font-size: 16px;
  display: block;
  padding-left: 24px;
  color: #4f4f4f;
}

.mediaImage {
  max-width: 600px;
}

.mediaImage img {
  width: 100%;
  border-radius: 10px;
}

.callToday {
  display: flex;
  text-align: center;
  background-color: #fff;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  padding: 20px 0px;
  margin: auto;
}

article {
  text-align: center;
}

.callToday p {
  font-size: 28px;
  font-weight: 700;
  color: #008aff;
}

.callToday a {
  background-color: #008aff;
  color: #ffffff;
  border-radius: 7px;
  padding: 13px 29px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #008aff;
}

.callToday a:hover {
  background-color: #fff;
  color: #008aff;
  border: none;
}

hr {
  border-top: 1px solid #008aff;
  max-width: 50%;
}
/* MAIN STYLES END */

/*Testimonials */
.whatPeopleSay {
  text-align: center;
  margin: 100px 0;
}

.testimonials {
  display: flex;
  justify-content: center;
  margin: auto;
  align-items: center;
}

figure.snip1192 {
  /* font-family: 'Raleway', Arial, sans-serif; */
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 220px;
  max-width: 310px;
  width: 100%;
  color: #333;

  box-shadow: none !important;
}
figure.snip1192 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
figure.snip1192 img {
  max-width: 100%;
  height: 128px;
  width: 128px;

  margin-bottom: 15px;
  display: inline-block;
  z-index: 1;
  position: relative;
  object-fit: contain;
}
figure.snip1192 blockquote {
  margin: 0;
  display: block;
  border-radius: 8px;
  position: relative;
  background-color: #fafafa;
  padding: 30px 50px 65px 50px;
  font-size: 0.8em;
  font-weight: 500;
  margin: 0 0 -50px;
  line-height: 1.6em;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
figure.snip1192 blockquote:before,
figure.snip1192 blockquote:after {
  font-family: 'FontAwesome';
  content: '\201C';
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
  font-style: normal;
}
figure.snip1192 blockquote:before {
  top: 35px;
  left: 20px;
}
figure.snip1192 blockquote:after {
  content: '\201D';
  right: 20px;
  bottom: 35px;
}
figure.snip1192 .author {
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
figure.snip1192 .author h5 {
  opacity: 0.8;
  margin: 0;
  font-weight: 800;
}
figure.snip1192 .author h5 span {
  font-weight: 400;
  text-transform: none;
  display: block;
}

.call-btn {
  position: fixed;
  margin: 0;
  padding: 0;
  right: 10px;
  bottom: 10px;
  background: #fff;
  background-color: transparent;
  cursor: pointer;
  font-size: 0;
  width: 110px;
  height: 110px;
  z-index: 1000;
}

.call-btn .tada {
  background: #008aff;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -20px;
  margin-left: -20px;
  animation-name: tada;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.call-btn .tada a:before {
  font-family: FontAwesome;
  content: "\f095";
  font-size: 31px;

  text-decoration: none;
  color: #fff;
  margin-left: 10px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
}

/* @keyframes tada {
  from {
    transform: rotate(-20deg);
  }
  to {
    transform: rotate(20deg);
  }
} */

.call-btn .pulse {
  width: 80px;
  height: 80px;
  background: #008aff;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  animation-name: pulse;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
/* 
@keyframes pulse {
  from {
    width: 55px;
    height: 55px;
    margin-top: -27.5px;
    margin-left: -27.5px;
  }
  to {
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
  }
} */

.call-btn .zoomIn {
  width: 80px;
  height: 80px;
  /* border: 2px solid #008aff; */
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
  animation-name: zoomIn;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}

/* @keyframes zoomIn {
  from {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
  }
  to {
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px;
  }
} */


@media screen and (max-width: 767px) {
  section {
    grid-template-columns: auto;
    padding: 0px 20px;
    justify-content: center;
  }

  .cards {
    margin: 50px 0px;
  
    
  }
}


@media screen and (max-width: 549px) {
  .call-btn {
    width: 80px;
    height: 80px;
  }
}


/* FOOTER STYLES  */
footer {
  bottom: 0;
  width: 100%;
  padding: 40px 0 0 0;
  align-items: center;
  background: #191d28;
}

.row {
  display: flex;
  justify-content: space-between;
 padding: 10px 100px;
  margin: auto;
}

.footerBlock {
  text-align: justify;
  max-width: 500px;
}

.footerBlock .logoSubtitle {
  font-size: 16px;
}

.footerBlock .logoSubtitle {
    color: #4f4f4f;
}

.footerBlock h6 {
margin: 20px 0px;
color: #58bae4;
font-size: 27px;}

.footerBlock a {
  font-size: 19px !important;
  display: block;
margin: 10px 0px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footerBlock .fa-solid, .footerBlock .fa-brands {
  color: #008aff;
  font-size: 19px;
  margin-right: 10px;
}

.footerBlock p {
  font-size: 16px;
 
  color: #fff !important;
  
}

.copyright p {
  text-align: center;
  background-color: transparent;
  color: #ffffff;
  font-size: 16px;
}

.socialMedia {
  display: flex;
  margin-top: 10px;
}

.socialMedia a {
  margin-right: 18px;
  color: #fff;
}

.copyright {
  text-align: center;
  padding: 10px 30px;
  background-color: #3c3c3f;
  letter-spacing: 1px;
  font-size: 16px;
  margin-top: 100px;
  bottom: 0;
}

.copyright p {
  color: #fff;
}

.copyright a {
  color: #008aff;
  text-decoration: none;
}

/* FOOTER STYLES  END*/

/* RESPONSIVE STYLES FOR SMALLER SCREEN DEVICES  */

/* Small devices (phones, 800px and down) */
@media screen and (max-width: 1100px) {
  /* GLOBAL STYLES END  */
  h1 {
    font-size: 32px;
  }

  h2 {
    padding: 10px;
  }

  h2,
  h3,
  h4,
  h5 {
    font-size: 22px;
  }

  h6 {
    font-size: 18px;
  }

  /* UpperLine  */
  .upperLine {
    flex-direction: column;
    padding: 0 0 5px 0;
    /* position: fixed; */
    width: 100%;
    z-index: 10;
  }

  .phoneNumber {
    border-radius: 0px;
    padding: 25px 0px;
    width: 100%;
    text-align: center;
  }

  /* HEADER STYLES  */
  header {
    padding: 0px 10px 20px 10px;
    background-size: cover;

    /* background-image: url(/images/mobileHeaderImage.jpg); */
  }

  /*    header img {*/
  /* height: 400;*/
  /* width: 100%;*/
  /* object-fit: cover;*/

  /*}*/

  .logoTitle {
    font-size: 24px;
    text-align: left;
    color: #222222;
    margin-top: 80px;
  }

  .logoSubtitle {
    font-size: 16px !important;  
    max-width: 300px;
    font-size: 22px;
    font-weight: 500 !important;
  color: #fff;
  }

  /* NAVIGATION MENU STYLES  */
  /* Mobile menu  */

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .menuLinks {
    display: none;
    width: 100%;
  }

  .hamburgerMenu {
    width: 22px;
    height: 3px;
    background-color: #4f4f4f;
    margin: 6px 0;
  }

  .toggle-button {
    position: fixed;
    align-items: center;
    top: 1.5rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 3px;
    z-index: 5;
  }

  .toggle-button {
    display: block;
  }

  .overlay .closebtn {
    position: absolute;
    top: 85px;
    right: 0;
    font-size: 60px;
    z-index: 10;
  }

  /* HeadSection  */

  .headSection {
    flex-direction: column;
  }

  .mainText p {
    font-size: 18px;
  }

  .formSection {
    padding: 25px 20px 15px 15px;
    margin-top: 50px !important;
    box-shadow: none;
  }

  /* MAIN SECTION STYLES  */

  section {
    grid-template-columns: auto ;
    padding: 0px 30px;
    justify-content: center;
  }

  .cards {
    margin: 50px 0px;
  
    
  }

  .cardFour {
    margin: 20px 0px;
    transition-duration: 0.3s;
    box-shadow: none;
  }

  section span {
    font-size: 1.3em;
  }

  section p {
    font-size: 16px;
  }

  .containerWhyUs, .containerWhyUsTwo {
    padding: 10px;
  }

  .chooseUs {
    font-size: 18px;
  }

  .chooseQuality {
    font-size: 18px;
  }

  .ourPluses {
    flex-direction: column;
  }

  .callToday p {
    font-size: 28px;
    padding: 0px;
  }

  /* .callToday a {
    margin-bottom: 50px;
  } */

  .callToday  {
   flex-direction: column;
   padding: 0px 0px 50px 0px;
  }

  /* FOOTER STYLES  */

  footer .logoTitle {
    text-align: left;
  }

  .row {
    flex-direction: column;
    margin-left: 20px;
    padding: 0px;
  }

  .footerBlock {
    text-align: left;
  }

  .footerBlock a {
    margin: 5px 0;
    font-size: 14px;
  }

  .copyright {
    padding: 20px;
  }

  .copyright p {
    text-align: left;
    font-size: 12px;
  }

  .socialMedia a {
    margin-right: 10px;
  }
}

@media screen and (max-width: 1200px) {
  .testimonials {
    flex-direction: column !important;
    margin: auto;
  }

  .rotatingImage .fa-gear {
    left: 50% !important;
    font-size: 45px;

  }

  .rotatingImage .fa-gear:first-child {
    left: 20% !important;
    font-size: 65px;
  }

  .wrenchUpDown img {
    width: 64px;
    height: 64px;
  }
}

@media screen and (max-width: 350px) {
  .askQuestion {
    display: flex;
    flex-direction: column;
  }

  .specOffer {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
  }
  
  .fa-tags {
    font-size: 22px;
    margin-right: 10px;
    color: #008aff;
  }
}
