* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

a {
  color: black;
  text-decoration: none;
}

header {
  background: url(images/hero-image.jpg);
  background-color: black;
  background-repeat: no-repeat;
  background-size: cover;
  width: auto;
  height: 75vh;
}

.logo-1 {
  width: 7em;
  margin-top: 2%;
}

.logo-2 {
  width: 7em;
  margin-top: 2%;
  float: right;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-inner h1 {
  font-size: 6rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  font-weight: 800;
}

.form {
  padding: 3em 1em;
  background-color: #2165b0;
  height: auto;
  text-align: left;
  font-size: 1.2rem;
  color: #fff;
}

.form-control {
  opacity: 0.5;
  line-height: 1.8;
}

.btn {
  padding: 7px 20px;
  font-size: 18px;
  color: #2165b0;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
}

.form .form-inner .row :nth-child(4) {
  align-self: last baseline;
}

.Advantages h2 {
  font-size: 2rem;
  word-spacing: 50px;
  font-weight: 700;
  color: #164374;
  text-transform: uppercase;
}

.Advantages h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #164374;
  text-transform: uppercase;
  margin-bottom: 1em;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 3px #164374;
  margin-top: -10px;
}

.Advantages-inner image {
  width: auto;
}

.banner {
  background: url(images/banner-background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 5em;
  padding-bottom: 5em;
}

.banner-inner h3 {
  font-size: 3rem;
  color: #fff;
}

.result_head {
  padding: 20px;
}

.result {
  padding: 20px 0px 0px 0px;
  margin: 50px 0px 20px 0px;
  background: #fff;
  box-shadow: 2px 0px 15px #d0d0d0;
  border-radius: 10px;
  position: relative;
}

table tr td:nth-child(1),
table tr th:nth-child(1) {
  padding-left: 30px;
  vertical-align: middle;
}

table tr td:nth-child(3),
table tr th:nth-child(3) {
  padding-left: 30px;
  vertical-align: middle;
}

table tr td:nth-child(2),
table tr th:nth-child(2),
table tr td:nth-child(4),
table tr th:nth-child(4) {
  text-align: right;
  vertical-align: middle;
}

.color_green {
  background: #e4f7db !important;
}

.color_red {
  background: #ffd5d6 !important;
}

.color_green_nagative {
  background: #ffd5d6 !important;
}

.color_red_negative {
  background: #e4f7db !important;
}

.font_color_green {
  color: #78bb5a !important;
}

.font_color_red {
  color: #c65758 !important;
}

.font_color_green_negative {
  color: #c65758 !important;
}

.font_color_red_negative {
  color: #78bb5a !important;
}

.savings {
  background: #e4f7db;
  color: #78bb5a;
  font-size: 28px;
  padding: 15px;
  position: absolute;
  top: 0;
  right: 70px;
  width: 150px;
}

.savings_negative {
  background: #ffd5d6 !important;
  color: #c65758 !important;
}

.savings p {
  margin-bottom: 0px;
  line-height: 50px;
  margin-top: 35px;
}

.savings #savings {
  font-size: 50px;
  font-weight: 600;
  margin-top: 0px !important;
  text-align: right;
}

/*css form angle down*/
.arrow-down {
  width: 70px; /* Adjust the width of the angle as needed */
  height: 70px; /* Adjust the height of the angle as needed */
  background-image: url("images/angle-down.png"); /* Path to your image */
  background-size: contain; /* Ensures the image fits within the div */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-position: center center; /* Centers the image */
  position: relative;
  animation: slideDown 1s infinite alternate;
}

.red-border {
  border: 2px solid #f00;
  opacity: 0.7;
}



.roboto-regular,
.roboto-bold {
  margin-right: 2px;
  font-family: cursive;
}


@keyframes slideDown {
  0% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.language-bar {
  padding: 10px 20px;
  position: relative;
}

.language-select-wrapper {
  float: left;
}

/*Responsive css start here*/

@media only screen and (max-width: 600px) {
  .header-inner h1 {
    font-size: 3rem;
  }

  header {
    height: 50vh;
  }

  .Advantages-inner h4 {
    margin-bottom: 1em;
  }

  .Advantages h2 {
    font-size: 2rem;
  }

  .Advantages h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #164374;
    text-transform: uppercase;
    margin-bottom: 1em;
  }

  .banner .banner-inner h3 {
    font-size: 2rem;
    color: #fff;
  }

  table tr td:nth-child(1),
  table tr th:nth-child(1) {
    font-size: 10px;
    padding-left: 10px;
  }

  table tr td:nth-child(3),
  table tr th:nth-child(3) {
    font-size: 10px;
    padding-left: 10px;
  }

  table tr td:nth-child(2),
  table tr th:nth-child(2),
  table tr td:nth-child(4),
  table tr th:nth-child(4) {
    font-size: 10px;
  }

  .result_head p {
    font-size: 10px;
  }

  .savings {
    font-size: 18px;
    padding: 15px;
    right: 11px;
    width: 100px;
    text-align: right;
  }

  .savings p {
    margin-bottom: 0px;
    line-height: 35px;
    margin-top: 0px;
  }

  .savings #savings {
    font-size: 32px;
    font-weight: 600;
    margin-top: 0px !important;
  }
  .language-select-wrapper {
    float: right;
    padding-right: 20px;
  }
  

  
}

@media only screen and (max-width: 360px) {
  .savings {
    font-size: 18px;
    padding: 8px;
    right: 8px;
    width: 90px;
    text-align: right;
  }

  .savings #savings {
    font-size: 28px;
  }


}
