/* global below-----------------------------------------------------------------*/

:root {
  --ColorOne: rgb(0,173,181);
  --ColorTwo: rgb(34, 40, 49);
  --ColorThree: rgb(57, 62, 70);
  --ColorFour: rgb(98, 106, 120);
  --ColorFive: rgb(238, 238, 238);
  --FontSizeOne: 24px;
  --FontSizeTwo: 22px;
  --FontSizeThree: 20px;
  --FontSizeFour: 18px;
  --FontSizeFive: 16px;
  --FontStyleOne: "Roboto", serif;
  --FontStyleTwo: Arial black, sans-serif;
  --Shadows: 0 4px 8px 0 rgba(0, 0, 0, .3);
  --Buttongap: 20px;
  --standardBorder: solid 4px var(--ColorOne);
}

/* monospace web save back up font */
/* font-family: 'Courier New', Courier, monospace; like monospace but have larger font and have  clearer difference in font 900 vs 500 or Arial black, sans-serif; */

html body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--ColorFive);
  display: flex;
  flex-direction: column;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 75px;
}

a {
  text-decoration: none;
  color: #000000;
  font-family: var(--FontStyleOne);
}

p {
  color: var(--ColorThree);
  font-size: var(--FontSizeThree);
  font-family: var(--FontStyleOne);
  hyphens: auto;
  margin: 0;
  font-weight: 300;
  text-align: justify;
  }
  
  p span {
    font-weight: 400;
  }
  

.descriptionEntry {
  display: flex;
  visibility: hidden;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px; 
}

.descriptionDiv {
  max-width: 600px;
  flex-grow: 1;
}

.imgDiv {
  display: flex;
  max-width: 400px;
  min-width: 300px;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.imgDiv img {
  height: 170px;
  border-radius: 15px;
}


h1 {
  color: var(--ColorFive);
  font-size: var(--fontSizeOne);;
  font-family:  var(--FontStyleOne);
  margin: 0;
  font-weight: 500;
}


h2 {
  font-size: var(--FontSizeOne);
  font-family:  var(--FontStyleOne);
  margin: 0;
  color:var(--ColorTwo);
}

header h2 {
  color: var(--ColorFive);
  margin: 0;
  font-size: var(--FontSizeOne);
  font-weight: 300;
  font-style: normal;
  line-height: 0.9;
}

header h2 span {
  font-weight: 700;
}

.headerMenu {
  display: flex;
  height: 100%;
  justify-content: space-evenly;
  align-items: center;
  font-size: var(--FontSizeThree);
  flex-grow: 1;
}

.headerMenuInsert {
  color: var(--ColorFive);
  margin: 0px 10px;
  text-align: center;
}

.headerMenuInsert:hover {
  font-weight: 600;
}


h2 span {
  font-weight: 900;
}

footer h3 {
  font-size: 16px;
  font-family:  var(--FontStyleOne);
  color: var(--ColorFive);
  font-weight: 300;
  margin-right: 10px;
}

strong {
  font-weight: 500;
}

#myBtnModal, #myBtnModalThree {
  margin: 5px 0px 5px 20px;
}


main h3 {
  font-family: var(--FontStyleOne);
  color: var(--ColorTwo);
  font-size: var(--FontSizeTwo);
  font-weight: 500;
}


.quicklinks button, .favoritebutton, .button, #myBtn, .searchFormFront, .solveButton, .calculatorField, .solveReset button, .calculatorInteractive, .clientExampleEntry, #submitButton {
  box-shadow: var(--Shadows);
   } 


  .clientExamples {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 10px 20px 10px 20px;
    padding: 20px 0px 20px 0px;
    background: url(./images/banner/brick-wall.png) repeat fixed 100%;
  }

  .clientExampleEntry {
    display: flex;
    visibility: hidden;
    border: var(--standardBorder);
    border-radius: 15px;
    min-height: 285px;
    height: auto;
    width: 260px;
    margin: 10px;
    flex-grow: 1;
    max-width: 300px;
    align-items: start;
    justify-content: start;
    background-color: var(--ColorFive);
    opacity: 0.9;
    padding: 10px;
    font-family: var(--FontStyleOne);
    font-size: var(--FontSizeFour);
    color: var(--ColorTwo);
    font-weight: 500;
    text-align: center;
    transition: 0.5s;
  }

#submitDiv {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  flex-wrap: wrap;
}




  #submitButton {
    display: flex;
    flex-direction: column;
    border: var(--ColorOne) solid 2px;
    flex: 1 0 40%;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    width: 200px;
    height: 50px;
    font-family: var(--FontStyleOne);
    font-size: var(--FontSizeTwo);
    color: var(--ColorFive);
    background-color: var(--ColorOne);
    transition: 0.5s;
    cursor: pointer;
    margin: 15px;
    }

    #submitButton:active {
      box-shadow: none;
      transition: 0.5s;
      background-color: var(--ColorFive);
      color: var(--ColorOne);
    }

    .formQuestion span {
      display: contents;
      font-weight: 500;
      color: var(--ColorOne);
      cursor: pointer;
    }


    #terms{
      width: min-content;
      margin: 0px 5px;
    }


  .fadeInTop{
    -webkit-animation: fadeInTop 3s both;
    -moz-animation: fadeInTop 3s both;
    -o-animation: fadeInTop 3s both;
    animation: fadeInTop 3s both;
    animation-delay: 0.5s;
    visibility: visible;
  }

  .fadeInBottom{
    -webkit-animation: fadeInBottom 3s both;
    -moz-animation: fadeInBottom 3s both;
    -o-animation: fadeInBottom 3s both;
    animation: fadeInBottom 3s both;
  }


  @-webkit-keyframes fadeInTop {
    0%{
      opacity: 0;
      -webkit-transform: translateY(-30px);
    }
    100%{
      opacity: 0.9;
      -webkit-transform: translateY(0px);
    }
  }


  @-moz-keyframes fadeInTop {
    0%{
      opacity: 0;
      -moz-transform: translateY(-30px);
    }
    100%{
      opacity: 0.9;
      -moz-transform: translateY(0px);
    }
  }


  @-o-keyframes fadeInTop {
    0%{
      opacity: 0;
      -o-transform: translateY(-30px);
    }
    100%{
      opacity: 0.9;
      -o-transform: translateY(0px);
    }
  }

  @keyframes fadeInTop {
    0%{
      opacity: 0;
      transform: translateY(-30px);
    }
    100%{
      opacity: 0.9;
      transform: translateY(0px);
    }
  }

  @-webkit-keyframes fadeInBottom {
    0%{
      opacity: 0;
      -webkit-transform: translateY(30px);
    }
    100%{
      opacity: 0.9;
      -webkit-transform: translateY(0px);
    }
  }


  @-moz-keyframes fadeInBottom {
    0%{
      opacity: 0;
      -moz-transform: translateY(30px);
    }
    100%{
      opacity: 0.9;
      -moz-transform: translateY(0px);
    }
  }


  @-o-keyframes fadeInBottom {
    0%{
      opacity: 0;
      -o-transform: translateY(30px);
    }
    100%{
      opacity: 0.9;
      -o-transform: translateY(0px);
    }
  }

  @keyframes fadeInBottom {
    0%{
      opacity: 0;
      transform: translateY(30px);
    }
    100%{
      opacity: 0.9;
      transform: translateY(0px);
    }
  }

ul {
    text-align: start;
    font-weight: 300;
    color: var(--ColorTwo);
    font-family: var(--FontStyleOne);
    font-size: var(--FontSizeThree);
    list-style-type: circle;
    padding-inline-start: 20px;
  }


  .clientExampleEntry ul {
  color: var(--ColorThree);
  font-size: var(--FontSizeFour);
  margin-bottom: 10px;
  padding-inline-start: 30px;
  }

  .seo {
  list-style-type: none;
  padding-inline-start: 0px;
  }

  .seo li {
  margin: 10px 0;
  }

  .clientExampleEntryText {
    width: 100%;
  }

  .clientExampleEntryText img {
    width: 35px;
    margin: 0px 10px;
  }

  .clientTitle {
    width: 100%;
    display: flex;
    justify-content:space-between;
    height: auto;
    align-items: center;
    text-wrap: wrap;
  }

/* Back to top button */


#myBtn {
  display: flex; 
  visibility: hidden;
  position: fixed; 
  bottom: 20px;
  right: 10px; 
  z-index: 100; 
  background-color: var(--ColorTwo); 
  cursor: pointer; 
  width: 65px;
  border-radius: 15px;
  border: 4px solid var(--ColorFive);
  font-weight: 500;
  font-size: var(--FontSizeFive);
  font-family:  var(--FontStyleOne);
  color: var(--ColorFive);
  height: 65px;
  padding-bottom: 2px;
  transition: 1s;
  align-items: center;
}


#notification {
display: flex;
visibility: hidden;
margin: 10px;
font-size: var(--FontSizeTwo);
font-family: var(--FontStyleOne);
color: var(--ColorTwo);
background-color: var(--ColorFive);
border-radius: 25px;
border-color: var(--ColorOne) 2px solid;
text-align: center;
width: 100%;
height: 50px;
align-items: center;
justify-content: center;
}

#myBtn:active {
  font-weight: 700;
}


li::marker {
  font-weight: 500;
}

.imgdescription {
  height: 220px;
  filter: none;
  margin-left: 10px;
  float: right;
  border-radius: 15px;
}



/* Back to top button */


/* Header & Footer below -------------------------------------------------------------------------------------------------------*/

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  background: rgba(0,0,0,0.2);
  z-index: 200;
  transition: 0.5s;
}

.headerLinks, .NavLinks {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid var(--ColorFive);
  border-radius: 10px;
  background-color: var(--ColorTwo);
  margin: 4px;
  padding: 15px;
  text-wrap: wrap;
  color: var(--ColorFive);
  cursor: pointer;
  box-shadow: var(--Shadows);
  font-size: var(--FontSizeThree);
  text-align: center;
}

.headerLinks {
  width: auto;
}

.NavLinks {
  width: 85%;
  height: 25px;
  display: none;  
}

.headerLinksDiv {
  display: flex;
  min-width: 370px;
}

.socials img {
  padding-left: 2px;
  padding-right: 2px;
  transition: 0.5s;
  }

  .socials {
    display: flex;
    width: auto;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 20px;
  }

  .mainHeading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 5px 0px 5px 0px;
    margin-bottom: 10px;
    border-bottom: 3px solid;
    border-color: var(--ColorOne);
    width: 100%;
    color: var(--ColorTwo);
    font-size: var(--FontSizeOne);
  }

  .mainHeading img {
    width: 40px;
  }

.menu img {
  transition: 0.5s;
}

.menu img:active, .socials img:active {
  filter: invert(49%) sepia(10%) saturate(3210%) hue-rotate(164deg) brightness(92%) contrast(99%);
  transition: 0s;
}

.menu img:hover, .socials img:hover {
  filter: invert(76%) sepia(5%) saturate(61%) hue-rotate(182deg) brightness(83%) contrast(87%);
}

.backgroundcol {
  background: var(--ColorOne);
  color: var(--ColorFive);
}

.highlight:hover {
  font-weight: 400;
}

.mainTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 100%;
  background-color: var(--ColorOne);
  padding: 10px 0px;
}

.mainTitle h1 {
  color: var(--ColorFive);
  font-size: var(--FontSizeThree);
  text-wrap: wrap;
  text-align: center;
  font-weight: 300;
  margin: 0px 10px;
}



footer {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-end;
  height: auto;
  background-color: var(--ColorOne);
  flex-grow: 1;
}

.footerDiv {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 250px;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}

form {
  display: flex;
  flex-wrap: wrap;

}

input {
  font-size: var(--FontSizeFour);
  font-style: var(--FontStyleOne);
  margin: 10px 0px;
  text-align: center;
  width: 100%;
}

.questionAnswer {
width: 100%;
margin: 10px 0px;
}

.formQuestion {
  display: flex;
  width: 40%;
  justify-content: space-between;
  align-items: center;
  border: 2px var(--ColorOne) solid;
  border-radius: 15px;
  min-height: 40px;
  margin: 10px;
  padding: 5px 15px;
  font-size: var(--FontSizeFour);
  font-weight: 300;
  flex-grow: 1;
}

.formAnswers {
cursor: pointer;
}

fieldset {
  display: flex;
  border: var(--ColorOne) 3px solid;
  border-radius: 15px;
  font-size: var(--FontSizeThree);
  font-family: var(--FontStyleOne);
  flex-wrap: wrap;
}

input[type="radio"] {
  cursor: pointer;
  height: 15px;
  width: 15px;
} 

input[type='radio']:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: var(--ColorFive);
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid var(--ColorOne);
}

input[type='radio']:checked:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: var(--ColorOne);
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid var(--ColorFive);
}
   
.footermenu{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}


#contactInfo {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: auto;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 20px;
}

.contactEntry {
  font-family: var(--FontStyleOne);
  font-size: var(--FontSizeFour);
  color: var(--ColorFive);
  width: 250px;
  height: 35px;
  align-items: center;
}

.contactEntry a {  color: var(--ColorFive);}

.labelAlt {
  flex-wrap: wrap;
}

textarea {
  flex-grow: 1;
  margin: 10px 0px;
  border-radius: 5px;
  min-width: 150px;
  width: 100% !important;
  min-height: 200px;
  max-height: 600px;
  font-family: var(--FontStyleOne);
  font-size: var(--FontSizeFour);
  padding: 5px;
  font-weight: 300;
}

.contactEntry img {
  width:30px;
  margin-right: 10px;
}

#blankDiv {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}


.contactEntry {
  display: flex;
}



#footerSocials {
  height: 45px;
  align-items: center;
} 


/* copyright & privacy pop up modal (in in one)----------------------------------------------------------------------------------------------- */

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 20% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#myModal h3 {
color: black
}

#myBtnModal, #myBtnModalThree {
  cursor: pointer;
}

#modalmessage {
  font-size: 16px;
  font-family:  var(--FontStyleOne);
  color: var(--ColorTwo);
  font-weight: 300;
  hyphens: auto;
}

#modalmessage h1 {
  font-size: var(--FontSizeOne);
  color: var(--ColorTwo);
}

#modalmessage h2 {
  font-size: var(--FontSizeThree);
  color: var(--ColorTwo);
}

#modalmessage p, #modalmessage li, #modalmessage ul {
  font-size: var(--FontSizeFour);
}

/* copyright & privacy pop up modal (in in one)----------------------------------------------------------------------------------------------- */


/* Header & Footer above -------------------------------------------------------------------------------------------------------*/

/* Navigation Menu Side below -------------------------------------------------------------------------------------------*/



nav h2 {
  font-size: var(--FontSizeThree);
  font-family: var(--FontStyleOne);
  text-wrap: wrap;
  font-weight: 300;
  margin: 0;
  padding: 3px 0px 3px 20px;
  width: 85%;
  color: var(--ColorFive);

}

nav a {
text-decoration: none;
color: black;
}

.MainMenuItems {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: solid 2px var(--ColorTwo);
  min-height: 45px;
  height: auto;
}

.MainMenuHighlight {
  background-color: var(--ColorFour);
}

.MainMenuHighlight h2 {
  padding-left: 30px;
}


.MainMenuItems:hover {
  background-color: rgb(157, 158, 160); /* #9d9ea0 */
  color: var(--ColorFive);
  }

 .MainMenuItems:hover h2 {
  font-weight: 400;
} 

.menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  min-width: 210px;
}

.mainMenuButton {
  padding: 0px;
  margin: 6px 8px 8px 10px;
  border: none;
  height: 40px;
  width: 40px;
  background-color: transparent;
  cursor: pointer;
  }
 
.MainMenuImages {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 70px;
}

.MainMenuImages img {
  width: 35px;
}


#sideNavDiv {
  display: flex;
  flex-direction: column;
  height: 100%; 
  width: 0px; 
  position: fixed; 
  z-index: 200; 
  background-color: var(--ColorThree);
  overflow-x: hidden; 
  overflow-y: scroll;
  transition: 0.5s;
  margin-top: 70px;
}

#sideNavCover {
  background: rgba(0,0,0,0.7);
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 150;
}
  
#navBarSearch {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
  background-color: var(--ColorThree);
}

#emptyDiv {
display: flex;
flex-direction: column;
height: 300px;
width: 100%;
align-items: center;
justify-content: start;
padding-top: 10px;
background-color: var(--ColorThree);
}

/* Navigation Menu Side above -----------------------------------------------------------------*/

/* custom scroll bar ------------------------------------------------------------------*/

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--ColorThree); 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--ColorOne);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(85, 178, 236); 
}

::placeholder {
  color: rgb(189, 189, 189);
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
  color: rgb(189, 189, 189);
}

/* global above-----------------------------------------------------------------------------------------------------------*/

/* below is for first level page-----------------------------------------------------------------------------------------*/



#mainHomePage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

#Introduction, #Question1, #Question2,#ButtonRow3,#Question3,#ButtonRow4,.CalculatorContent2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--Buttongap);
  width: 100%;
}

#ButtonRow1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background: url(./images/banner/brick-wall.png) repeat fixed 100%;
  padding: 20px 0px 20px 0px;
}

#Introduction{
  grid-area: Introduction;
  background-image: url(./images/banner/search-coffee.png);
  height: 515px;
  align-items: flex-end;
}

.sellingPointParent {
  display: flex;
  flex-direction: row;
  width: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.sellingPointInsert {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  width: 200px;
  color: var(--ColorFive);
  text-align: center;
  text-wrap: wrap;
  font-family: var(--FontStyleOne);
  font-size: var(--FontSizeThree);
  transition: 0.5s;
  opacity: 0.9;
  flex-grow: 1;
  border: var(--ColorFive) 4px solid;
  border-radius: 15px;

}

#sellingpoint1 {
 background-color: var(--ColorOne);
}

#sellingpoint2 {
  background-color: var(--ColorThree);
 }

 #sellingpoint3 {
  background-color: var(--ColorOne);
 }

 #sellingpoint4 {
  background-color: var(--ColorThree);
 }

 #sellingpoint5 {
  background-color: var(--ColorOne);
 }

 .sellingPointInsert:hover {
opacity: 1;
font-size: 22px;
 }

 @keyframes fadeInUp {
  0% {
  transform: translateY(-100%);
    opacity: 0;
  }
  100% {
 transform: translateY(0%);
    opacity: 0.9;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
    opacity: 0.9;
  }
}

@-moz-keyframes fadeInUp {
  0% {
    -moz-transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -moz-transform: translateY(0%);
    opacity: 0.9;
  }
}

@-o-keyframes fadeInUp {
  0% {
    -o-transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -o-transform: translateY(0%);
    opacity: 0.9;
  }
}


.fadeInUp-animation {
  animation: 1s fadeInUp;
}

.fadeInUp-animation2 {
  animation: 2s fadeInUp;
}

.fadeInUp-animation3 {
  animation: 3s fadeInUp;
}

.fadeInUp-animation4 {
  animation: 4s fadeInUp;
}

.fadeInUp-animation5 {
  animation: 5s fadeInUp;
}

.fadeInUp-animation6 {
  animation: 4s fadeInLeft;
}


@keyframes fadeInLeft {
  0% {
    transform: translateX(-100%);
      opacity: 0;
    }
    100% {
   transform: translateX(0%);
      opacity: 0.9;
    }
}

@-webkit-keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
    opacity: 0.9;
  }
}

@-moz-keyframes fadeInLeft {
  0% {
    -moz-transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -moz-transform: translateX(0%);
    opacity: 0.9;
  }
}

@-o-keyframes fadeInLeft {
  0% {
    -o-transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -o-transform: translateX(0%);
    opacity: 0.9;
  }
}

@keyframes fadeInRight {
  0% {
    transform: translateX(100%);
      opacity: 0;
    }
    100% {
   transform: translateX(0%);
      opacity: 0.9;
    }
}

@-webkit-keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
    opacity: 0.9;
  }
}

@-moz-keyframes fadeInRight {
  0% {
    -moz-transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -moz-transform: translateX(0%);
    opacity: 0.9;
  }
}

@-o-keyframes fadeInRight {
  0% {
    -o-transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -o-transform: translateX(0%);
    opacity: 0.9;
  }
}

.fadeInLeft{
  -webkit-animation: fadeInLeft 3s both;
  -moz-animation: fadeInLeft 3s both;
  -o-animation: fadeInLeft 3s both;
  animation: fadeInLeft 3s both;
  visibility: visible;
}

.fadeInRight{
  -webkit-animation: fadeInRight 3s both;
  -moz-animation: fadeInRight 3s both;
  -o-animation: fadeInRight 3s both;
  animation: fadeInRight 3s both;
  visibility: visible;
}

.Searchbar {
    width: 95%;
    max-width: 1000px;
    padding-top: 65px;
}

.button {
    display: flex;
    align-items: center;
    flex: 1 0 80%;;
    flex-direction: column;
    justify-content: start;
    height: auto;
    border-style: solid;
    border-width: 4px;
    border-radius: 35px;
    border-color: var(--ColorOne);
    margin: 15px;
    padding: 20px;
    max-width: 1000px;
    background-color: var(--ColorFive);
    font-family: var(--FontStyleOne);
}


/* .button:hover {
background: var(--ColorOne);
} */


/* .button:hover .calculatorTally {
  color: var(--ColorFive);
} */

/* .button:hover .buttonInsert {
  border-color: var(--ColorFive);
}
 */

.buttonInsert {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  border-bottom: 3px var(--ColorOne) solid;
  margin-bottom: 5px;
}

.buttonInsert img {
  width: 40px;
}

.servicesImg {
    width: 160px;
    margin: 0px 0px 0px 10px;
    float: right;
    border-radius: 15px;
}


.button h3 {
  margin: 5px 10px 5px 0px;
}

/* .button:hover img {
  filter: invert(100%) sepia(3%) saturate(397%) hue-rotate(250deg) brightness(118%) contrast(87%);
} */

.calculatorTally {
  color: var(--ColorThree);
  margin: 5px;
  width: 100%;
  font-size: var(--FontSizeThree);
  text-align: justify;
  }
  

/* .button:hover h3 {
    color: var(--ColorFive);
  }
 */


/* .calculatorHeadingBottom img {
margin-left: 10px;
width: 95%;
height: min-content;
} */

p a {
  text-align: center;
  color: var(--ColorTwo);
  font-size: var(--FontSizeThree);
  font-family: var(--FontStyleOne);
  hyphens: none;
  font-weight: 500;
}

/* below is Media Queries --------------------------------------------------------------------------------------------------------*/


@media only screen and (max-width: 1250px) {

  .headerMenu {
    display: none;
  }
}

@media only screen and (max-width: 1050px) {

  .fadeInUp-animation {
    animation: 5s fadeInUp;
  }
  
  .fadeInUp-animation2 {
    animation: 4s fadeInUp;
  }
  
  .fadeInUp-animation3 {
    animation: 3s fadeInUp;
  }
  
  .fadeInUp-animation4 {
    animation: 2s fadeInUp;
  }
  
  .fadeInUp-animation5 {
    animation: 1s fadeInUp;
  }

  .fadeInLeft{
    -webkit-animation: fadeInTop 3s both;
    -moz-animation: fadeInTop 3s both;
    -o-animation: fadeInTop 3s both;
    animation: fadeInTop 3s both;
    visibility: visible;
  }
  
  .fadeInRight{
    -webkit-animation: fadeInTop 3s both;
    -moz-animation: fadeInTop 3s both;
    -o-animation: fadeInTop 3s both;
    animation: fadeInTop 3s both;
    visibility: visible;
  }
  
}

@media only screen and (max-width: 800px) {

  .menu img:hover, .socials img:hover {
    filter: none;
}

}

@media only screen and (max-width: 600px) {
  .headerLinksDiv {
    display: none;  
  }

  .NavLinks {
    display: flex;  
  }

  .sellingPointInsert {
    width: 100%;
    height: 81px;
  }

main h3 {
  text-align: center;
}

legend {
  text-align: center;
  padding: 0px;
  max-width: 240px;
}

input {
  max-width: none;
}

.formQuestion {
  width: 45%;
}

.buttonInsert {
  align-items: center;
}

}


@media only screen and (max-width: 550px) {
  
 

  .imgdescription {
    width: 100%;
    height: auto;
    max-width: none;
    margin-bottom: 10px;
    margin-left: 0px;
  }

.seo {
  margin-block-start: 10px;
  text-align: justify;
}

.formQuestion {
  margin: 10px 0px;
}
}


@media only screen and (max-width: 400px) {
  
.servicesImg {
  width: 100px;
}

}
/* above is Media Queries --------------------------------------------------------------------------------------------------------*/