* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}

body {
  overflow-x: hidden;
}

.main {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0px;
}

.heading-wrap {
  margin-bottom: 35px;
}

.main-heading {
  font-size: 36px;
  margin-bottom: 0;
  color: rgba(66, 164, 228, 1);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 15px;
  /* font-family: "Comfortaa", serif; */
}

.main-para {
  font-size: 20px;
  color: #666666;
  font-family: "Comfortaa", serif;
  text-align: center;
}

.calculator-wrapper {
  background-color: #fff;
  border-radius: 24px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 80px 70px 80px 90px;
  position: relative;
  overflow: hidden;
}

.amount-box p {
  color: #666666;
  font-family: "Comfortaa", serif;
}

.calculator-wrapper > div {
  display: flex;
  gap: 80px;
  /*align-items: center;*/
}
.calc-field-wrap {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}

.position-relative {
  position: relative;
}

.calc-field-wrap label {
  color: #666666;
  font-size: 16px;
  margin-bottom: 10px;
  font-family: "Comfortaa", serif;
}

.calc-field-wrap input {
  border: 1px solid #707070;
  border-radius: 15px;
  font-size: 20px;
  color: black;
  padding: 20px 0px 20px 80px;
  width: 100%;
}

.calc-field-wrap input:focus-visible {
  outline: none;
}

.input-abs {
  background-color: rgba(66, 164, 228, 1);
  border: 1px solid #707070;
  border-radius: 15px;
  width: 60px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: anchor-center;
}
.calc-field-wrap-main {
  display: flex;
  gap: 15px;
  align-items: end;
}

.calc-btn {
  background-color: #425b76;
  border-radius: 15px;
  font-size: 19px;
  color: white;
  border: none;
  padding: 17px 70px;
  cursor: pointer;
  font-weight: 600;
  border: 2px solid transparent;
}

.calc-btn:hover {
  background-color: transparent;
  transition: 0.3s;
  color: #425b76;
  border: 2px solid rgba(255, 192, 0, 1);
}

.calc-field-wrap img {
  width: 12px;
}

.input-abs2 {
  padding: 13px 18px;
}

.total-box {
  padding: 25px 25px 40px;
  border-radius: 24px;
  border: 1px solid #707070;
  width: 100%;
  min-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 70px;
  position: relative;
  z-index: 1;
  background: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.total-box .main-heading {
  text-align: center;
  font-size: 48px;
}

.amount-wrapper .amount-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0px;
}

.amount-wrapper .border-botom {
  border-bottom: 1px solid #707070;
}

.total-box .img-wrapper {
  text-align: center;
}

.img-wrapper img {
  width: 135px !important;
}

.input-abs button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.input-abs button i {
  color: white;
  font-size: 15px;
}

.input-abs2 img {
  width: 17px;
}

.input-abs3 {
  width: 45px !important;
  border-radius: 15px 0px 0px 15px;
}

/* / Calculator 2 / */
.calculator-left-area .left-area-content h5 {
  color: #21a1e1;
  font-size: 32px;
  margin-bottom: 8px;
}

.calculator-left-area .left-area-content .main-para {
  text-align: left;
  margin-bottom: 30px;
}

.calculator-wrapper-2 .calc-field-wrap input {
  padding: 15px 0px 15px 18px;
}

#radio-content1,
#radio-content2,
#radio-content3,
#radio-content-1,
#radio-content-2 {
  display: none;
}

.main-wrapper-radio {
  display: flex;
  width: 100%;
  margin-bottom: 35px;
  background-color: #f1f2f2;
  justify-content: space-between;
  border-radius: 24px;
}

.label-active {
  background-color: #425b76;
  color: white;
}

.radio-label {
  border-radius: 24px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  /*height: 65px;*/
  padding: 23px 0px;
  width: 100%;
}

.radio-button {
  text-align: center;
  width: 100%;
  border-radius: 24px;
}
.radio-button:hover {
  background-color: #425b76;
  color: white;
  transition: 0.3s;
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.slider-container span {
  font-size: 19px;
  color: #000000;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #f1f2f2;
  border-radius: 5px;
  outline: none;
  transition: 0.2s;
  padding: 0 !important;
  border: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: #425b76;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  border: 1px solid white;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
.total-box2 {
  padding: 25px !important;
}

.calculator-wrapper.calculator-wrapper-2 > div {
  align-items: start !important;
}

.calculator-wrapper-2 {
  padding: 50px 70px 0px 90px !important;
}

.head-search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-51%);
  right: 0;
  font-size: 19px;
  color: white;
  background: #e6a239;
  border: none;
  height: 100%;
  width: 110px;
  cursor: pointer;
  border-radius: 15px;
}

/* Hero Banner */

.hero-banner,
.hero-banner2 {
  background-image: url(images/banner-update.jpg);
  background-position: 20%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 845px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-banner2 {
  background-image: url(images/banner-bg2.png) !important;
}

.bnr-overlay {
  position: absolute;
  background: #0000006e;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content-area .banner-para {
  color: white;
  font-family: "Comfortaa", serif;
  text-align: center;
  font-size: 25px;
  line-height: 45px;
  font-weight: 700;
}

.content-area {
  position: relative;
  z-index: 2;
}

/* Contact Sec */
.contact-sec {
  background-image: linear-gradient(
    rgba(66, 91, 118, 1),
    rgba(66, 91, 118, 1)
  ) !important;
  padding: 40px 0px;
}

.contact-sec p {
  font-size: 20px;
  color: white;
  font-family: "Comfortaa", serif;
  text-align: center;
  line-height: 35px;
}

.contact-sec a,
.list-sec a {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255, 255, 255, 1) !important;
  font-size: 17px;
  background-color: rgba(66, 164, 228, 1);
  border-radius: 10px;
  padding: 15px 60px;
  border: none;
}

.contact-sec a:hover,
.list-sec a:hover {
  color: rgba(255, 255, 255, 1) !important;
  background-color: rgba(105, 119, 207, 1);
  transform: translateY(-3px);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.16);
  transition: 1s;
}

.more-wrapper {
  display: flex;
  align-items: center;
}

.more-wrapper .more-left {
  background-color: #21a1e1;
  /* padding: 90px 0; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 500px;
}

.more-wrapper .more-right {
  width: 50%;
}

.more-wrapper .more-right img,
.more-wrapper .more-left2 img {
  width: 100%;
  height: 500px;
}

.more-wrapper .more-left2 {
  width: 50%;
}

.more-wrapper .more-right2 {
  width: 50%;
  background-color: rgba(12, 45, 150, 1);
  /* padding: 90px 0; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 500px;
}

/* List Section */

.list-sec {
  padding-bottom: 40px;
}

.list-hd {
  color: rgb(66 164 228) !important;
  margin-bottom: 10px;
  font-family: "Comfortaa", serif;
  margin-bottom: 35px;
}

.list-sec ul {
  position: relative;
  margin-bottom: 50px;
}

.list-sec ul li {
  font-family: "Comfortaa", "cursive";
  font-style: normal;
  font-weight: 500;
  color: #666666;
  font-size: 16px;
  margin-bottom: 15px;
  margin-left: 6px;
}

.list-sec ul li::before {
  content: "";
  display: inline-block;
  background-image: url("images/list-bef.png");
  position: absolute;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  left: 0px;
}
/* 
.list-sec a {
  margin-left: 40px;
} */

@media (max-width: 1525px) {
  .calculator-wrapper-2 .main-para br {
    display: none;
  }
}

@media (max-width: 1400px) {
  .list-sec a {
    text-align: center;
  }
}

@media (max-width: 1366px) {
  .content-area .banner-para {
    font-size: 20px;
  }
  .contact-sec p {
    font-size: 16px;
    line-height: 30px;
  }
  .more-wrapper .more-right img,
  .more-wrapper .more-left2 img,
  .more-wrapper .more-left,
  .more-wrapper .more-right2 {
    height: 430px;
  }
}

@media (max-width: 1280px) {
  .total-box {
    min-width: 430px;
  }
  .main {
    padding: 40px 60px;
  }

  .calc-field-wrap-main {
    flex-direction: column;
    align-items: center;
  }
  .calculator-wrapper-2 .calc-field-wrap-main {
    flex-direction: row !important;
  }
}

@media (max-width: 1200px) {
  .calculator-wrapper > div {
    align-items: start;
  }
  .slider-container input {
    padding: 0 !important;
  }
  .calc-field-wrap label {
    font-size: 16px;
  }
  .calc-field-wrap {
    margin-bottom: 20px;
  }
  .calc-field-wrap input {
    font-size: 18px;
    padding: 15px 0px 15px 80px;
  }
  .input-abs {
    width: 53px;
  }
  .calc-btn {
    font-size: 17px;
    padding: 13px 55px;
  }
  .total-box {
    min-width: 385px;
  }
  .main-para {
    font-size: 17px;
  }
  .total-box .main-heading {
    font-size: 38px;
  }
  .amount-box p {
    font-size: 14px;
  }
  .calculator-wrapper {
    padding: 80px 70px 90px 90px;
  }

  .img-wrapper img {
    width: 200px;
  }
  .input-abs button i {
    font-size: 11px;
  }
}
.amount-box p:last-child {
  width: max-content;
  flex-shrink: 0;
}
p {
  line-height: 1.3;
}
@media (max-width: 1100px) {
  .calculator-wrapper.calculator-wrapper-2 > div {
    flex-direction: column !important;
    align-items: center !important;
  }
  .main-2 .main-heading {
    font-size: 23px !important;
  }
  #slider-container input {
    padding: 0 !important;
  }
  .main-2 .main-para {
    font-size: 12px !important;
  }
  .calculator-left-area .left-area-content h5 {
    font-size: 24px;
    text-align: center !important;
  }
  .calculator-left-area .left-area-content .main-para {
    text-align: center !important;
  }
}

@media (max-width: 1024px) {
  .more-wrapper .more-right img,
  .more-wrapper .more-left2 img,
  .more-wrapper .more-left,
  .more-wrapper .more-right2 {
    height: 400px;
  }
  .contact-sec p {
    font-size: 13px;
    line-height: 27px;
    padding: 0px 50px;
  }
  .contact-sec a,
  .list-sec a {
    font-size: 13px;
  }
  .list-sec ul li {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .calculator-wrapper > div {
    flex-direction: column;
    gap: 0px;
    align-items: center;
  }
  .calc-field-wrap,
  .calculator-left-area {
    width: 100%;
  }
  .more-wrapper {
    flex-direction: column;
  }
  .more-wrapper .more-left,
  .more-wrapper .more-right,
  .more-wrapper .more-left2,
  .more-wrapper .more-right2 {
    width: 100%;
  }
  .content-area .banner-para {
    font-size: 17px;
    line-height: unset;
  }
  .more-wrapper .more-right img,
  .more-wrapper .more-left2 img,
  .more-wrapper .more-left,
  .more-wrapper .more-right2 {
    height: 380px;
  }
  .list-hd {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .calculator-wrapper {
    padding: 50px !important;
  }
  .calculator-wrapper-2 .calc-field-wrap-main {
    flex-direction: column !important;
  }
  .calculator-wrapper-2 {
    max-width: 500px;
  }
  #tabContainer {
    flex-direction: column;
    height: auto;
  }
  #tabContainer li {
    width: 100%;
  }
  .hero-banner {
    height: 460px;
    padding-top: 35px;
  }
  .content-area .banner-para {
    font-size: 13px;
  }
  .contact-sec p {
    font-size: 11px;
    line-height: unset;
    padding: 0;
  }
  .contact-sec a,
  .list-sec a {
    width: 236px;
    height: 54px;
    font-size: 11px;
    text-align: center;
    padding: 11px 0;
  }
  .more-wrapper .more-right img,
  .more-wrapper .more-left2 img,
  .more-wrapper .more-left,
  .more-wrapper .more-right2 {
    height: 300px;
  }
  .calc-field-wrap {
    width: 100% !important;
  }
  .list-sec .row {
    gap: 40px;
  }
  .calculator-wrapper-2 .main-para br {
    display: none;
  }
}

@media (max-width: 500px) {
  .calculator-wrapper {
    max-width: 330px;
    padding: 40px 28px !important;
    width: 100%;
  }
  .total-box {
    min-width: unset;
    width: 240px;
  }
  .calc-field-wrap label {
    font-size: 12px;
  }
  .calc-field-wrap input {
    font-size: 12px;
  }
  .input-abs {
    width: 47px;
  }
  .input-abs button i {
    font-size: 8px;
  }
  .calc-btn {
    font-size: 13px;
    padding: 10px 53px;
  }
  .main-para {
    font-size: 12px;
  }
  .total-box .main-heading {
    font-size: 27px;
  }
  .amount-box p {
    font-size: 11px;
  }
  .total-box {
    gap: 25px;
  }
  .calc-field-wrap input {
    padding: 11px 0px 11px 57px;
  }
  .main-heading {
    font-size: 27px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 26px;
  }
  .main-2,
  .main {
    padding: 40px 26px !important;
  }
  .gds-nav-tabs__list-item {
    font-size: 12px !important;
  }
  .calculator-left-area .left-area-content h5 {
    font-size: 18px !important;
  }
  .main-2 .main-para {
    font-size: 9px !important;
  }
  .calculator-wrapper-2 .calc-field-wrap input {
    padding: 10px 0px 10px 18px !important;
  }
  .head-search-icon {
    font-size: 13px;
    width: 67px;
  }
  .calculator-wrapper.calculator-wrapper-2 > div {
    gap: 45px !important;
  }
  #slider-container input {
    padding: 0 !important;
  }
  .main-wrapper-radio {
    flex-direction: column;
  }
  .radio-label {
    font-size: 13px;
    padding: 23px 0px;
  }
  .img-wrapper img {
    width: 70px !important;
  }
}
