@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: top;
  font-family: "Poppins", serif;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

:root {
  --motion-ease: cubic-bezier(0.68, -0.6, 0.32, 1.6);
  --motion-duration: 0.3s;
}

html,
body {
  background: url("../images/uzor.png") no-repeat 150% 40% #383e4c;
  color: white;
  width: 100%;
  padding: 0;
  margin: 0;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transform: scale(1.8);
          transform: scale(1.8);
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  line-height: 1;
  padding: 1em 1.5em;
  position: relative;
  -webkit-transition: -webkit-filter var(--motion-duration);
  transition: -webkit-filter var(--motion-duration);
  transition: filter var(--motion-duration);
  transition: filter var(--motion-duration), -webkit-filter var(--motion-duration);
}

button:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

button:active {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

button > span {
  display: block;
  position: relative;
  -webkit-transition: -webkit-transform var(--motion-duration) var(--motion-ease);
  transition: -webkit-transform var(--motion-duration) var(--motion-ease);
  transition: transform var(--motion-duration) var(--motion-ease);
  transition: transform var(--motion-duration) var(--motion-ease), -webkit-transform var(--motion-duration) var(--motion-ease);
  z-index: 1;
}

.langs {
  position: absolute;
  right: 0;
  top: 0;
  height: 155px;
  padding: 55px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: rgba(0, 0, 0, 0.1254901961);
  gap: 10px;
}
.langs a {
  text-decoration: none;
  color: white;
  opacity: 0.6;
}

button:hover > span {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

button:active > span {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

button > svg {
  fill: #ff4d38;
  border-radius: 20px;
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
}

button > svg > path {
  -webkit-transition: var(--motion-duration) var(--motion-ease);
  transition: var(--motion-duration) var(--motion-ease);
}

button:hover > svg > path {
  d: path("M0,0 C0,-5 100,-5 100,0 C105,0 105,100 100,100 C100,105 0,105 0,100 C-5,100 -5,0 0,0");
}

button:active > svg > path {
  d: path("M0,0 C30,10 70,10 100,0 C95,30 95,70 100,100 C70,90 30,90 0,100 C5,70 5,30 0,0");
}

header {
  position: sticky;
  top: -20px;
  z-index: 3;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 290px 1fr;
  grid-template-columns: 290px 1fr;
  margin-bottom: 40px;
}
header .logo {
  border-bottom-right-radius: 60px;
  background: rgba(56, 62, 76, 0.5647058824) !important;
  padding: 30px 0 30px 30px;
  backdrop-filter: blur(20px);
}
header .navholder {
  backdrop-filter: blur(10px);
  background: url("../images/menu_bg.png") no-repeat center;
  background-size: cover;
  padding: 40px 60px;
  border-bottom-left-radius: 60px;
}
header .navholder nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}
header .navholder nav ul li {
  padding: 0 20px;
  border-right: 1px solid #fff;
}
header .navholder nav ul li:last-child {
  border: none !important;
}
header .navholder nav ul li.b {
  font-weight: bold;
}
header .navholder nav ul li.b a {
  background: #f38520;
  padding: 5px 10px;
}
header .navholder nav ul a {
  color: white;
  text-decoration: none;
}

.banner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2.4fr 5vw 1fr;
  grid-template-columns: 2.4fr 1fr;
  gap: 5vw;
  position: relative;
}
.banner img {
  width: 100%;
  border-top-right-radius: 125px !important;
  border-bottom-right-radius: 40px !important;
  border-top: 20px solid #ff4d38;
  opacity: 0.9;
}
.banner .words {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 40px;
  padding-right: 40px;
  padding-top: 70px;
}
.banner .words h1 {
  margin: 0;
  padding: 0;
  font-size: 3vw;
  font-weight: 400;
}
.banner .words h2 {
  margin: 0;
  margin-top: 25px;
  padding: 0;
  font-size: 1.3vw;
  font-weight: lighter;
}

.InputSliderRange {
  position: relative;
}

.InputSliderRange-Scale {
  background: #ccc;
  cursor: pointer;
  height: 4px;
  position: absolute;
  width: 100%;
}

.InputSliderRange-Goto {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.InputSliderRange-Fill {
  background: rgba(255, 77, 56, 0.9);
  height: 100%;
  width: 0;
}

.InputSliderRange-Handler {
  -webkit-box-shadow: 0 2px 3px 0 rgba(18, 41, 62, 0.4);
  background-color: rgba(255, 77, 56, 0.9);
  border: 4px solid rgba(255, 77, 56, 0.9);
  border-radius: 100px;
  box-shadow: 0 2px 3px 0 rgba(18, 41, 62, 0.4);
  cursor: -webkit-grab;
  cursor: grab;
  height: 20px;
  left: 0;
  margin-left: -15px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  width: 20px;
  z-index: 2;
}

.InputSliderRange-Grid {
  height: 24px;
  margin-top: 10px;
  position: relative;
}

.InputSliderRange-Label {
  -webkit-transform: translateX(-50%);
  font-size: 12px;
  left: 0;
  line-height: 1em;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.InputSliderRange-Label_position_last {
  left: 100%;
}

.InputSliderRange-WrapInput {
  position: relative;
}

.InputSliderRange-Placeholder {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.InputSliderRange-Thumb {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
}

.InputSliderRange-ThumbInfo {
  -webkit-transform: translate3d(-50%, -50%, 0);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.InputSliderRange-Input {
  padding: 10px;
  width: 100%;
  font-size: 120%;
  outline: none !important;
  width: 100%;
}

.InputSliderRange.dragged .InputSliderRange-Handler {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.InputSliderRange_disabled .InputSliderRange-Input {
  background-color: #e9ebed;
}

.InputSliderRange_disabled .InputSliderRange-Fill,
.InputSliderRange_disabled .InputSliderRange-Goto,
.InputSliderRange_disabled .InputSliderRange-Scale {
  display: none;
}

.InputSliderRange_grid_inwardly .InputSliderRange-Label_position_first {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.InputSliderRange_grid_inwardly .InputSliderRange-Label_position_last {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

@media (max-width: 960px) {
  .InputSliderRange-Label_position_first {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .InputSliderRange-Label_position_last {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.calcnew {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0px 1fr;
  grid-template-columns: 1fr 1fr;
  background: rgba(0, 0, 0, 0.1254901961);
  display: grid;
  gap: 0px;
}

label span {
  display: block;
  font-size: 80%;
}

label select {
  padding: 10px;
  width: 100%;
  font-size: 120%;
  outline: none !important;
  width: 100%;
}

.calczone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.resultzone b {
  display: block;
  font-size: 300%;
}

.resultzone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 40px;
  gap: 30px;
  background: rgba(0, 0, 0, 0.3137254902);
}

section {
  padding: 40px;
}
section h1 {
  font-size: 200%;
  font-weight: lighter;
}
section .grid {
  display: -ms-grid;
  display: grid;
}
section .grid3 {
  gap: 3vw;
  -ms-grid-columns: 1fr 3vw 1fr 3vw 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
section#news a {
  background: #1E202D;
  color: white;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
section#news a:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
section#news a span {
  padding: 40px;
  display: block;
  line-height: 1.5;
}
section#news a img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
section#news .grid3 {
  gap: 2vw;
}
section#whyus .whyitem {
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.7333333333);
  border-radius: 20px;
  padding-bottom: 120px;
}
section#whyus .whyitem h4 {
  padding: 0;
  margin: 0;
  font-size: 200%;
  font-weight: lighter;
}
section#whyus p {
  padding-right: 125px;
}
section#whyus .item1 {
  border-bottom-left-radius: 125px;
  background: url("../images/icon1.png") no-repeat;
  background-position: right 20px bottom 20px;
  background-size: 160px;
}
section#whyus .item2 {
  background: url("../images/icon2.png") no-repeat;
  background-position: right 20px bottom 20px;
  background-size: 160px;
}
section#whyus .item3 {
  border-top-right-radius: 125px;
  background: url("../images/icon3.png") no-repeat;
  background-position: right 20px bottom 20px;
  background-size: 160px;
}

.partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 100%;
  overflow: auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.partners a {
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 20px;
  min-width: 220px;
}
.partners a:hover {
  border: 1px solid #ffffff;
}
.partners a img {
  width: 200px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.calltoaction {
  margin: auto;
  text-align: center;
  margin: 60px 0;
}

.resm {
  color: white;
  font-weight: bold;
  font-size: 120%;
  text-decoration: none;
  padding: 15px 25px;
  border: 1px solid rgba(204, 204, 204, 0.2509803922);
}

.formmm .table {
  padding: 30px 50px;
  border: 1px solid rgba(204, 204, 204, 0.2509803922);
  margin-bottom: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.formmm .table div {
  margin-bottom: 20px;
}
.formmm .table div b {
  display: block;
  font-size: 230%;
}
.formmm form label {
  display: block;
  margin-bottom: 40px;
}
.formmm form label input {
  max-width: 400px;
  padding: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.062745098);
  width: 100%;
}
.formmm form label span {
  display: block;
}
.formmm form input[type=submit] {
  background: url("../images/menu_bg.png") no-repeat center;
  background-size: cover;
  border: none;
  color: white;
  padding: 20px 40px;
  font-size: 150%;
}

.types {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.types a {
  padding: 40px;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3137254902);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.types a:first-child {
  border-top-left-radius: 40px;
}
.types a:last-child {
  border-bottom-right-radius: 40px;
}
.types a:hover {
  background: #363846;
  -webkit-transform: scale(0.94);
          transform: scale(0.94);
  border: 1px solid rgba(0, 0, 0, 0);
}
.types h4 {
  font-weight: lighter;
  font-size: 200%;
  margin: 0;
  padding: 0;
}
.types p {
  font-size: 70% !important;
}
.types img {
  height: 60px !important;
  -o-object-fit: contain;
     object-fit: contain;
}

footer {
  height: 150px;
  padding: 40px;
}
footer .flyingfooter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .flyingfooter .copyright {
  padding: 20px 40px;
  border-radius: 10px;
  background: #1E202D;
  color: gray;
}
footer .flyingfooter .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
footer .flyingfooter .socials a {
  width: 30px;
  height: 30px;
}
footer .flyingfooter .socials a svg {
  opacity: 0.3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
footer .flyingfooter .socials a svg:hover {
  opacity: 1;
}

.content {
  max-width: 1200px;
  margin: auto;
  padding: 40px;
  padding-bottom: 100px;
}
.content .cform {
  max-width: 600px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.content .cform label {
  display: block;
}
.content .cform label span {
  display: block;
  font-size: 80%;
}
.content .cform label input, .content .cform label textarea {
  padding: 10px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1254901961);
  border: none;
  resize: none;
  color: white;
  border-radius: 5px;
  outline: none;
}
.content .cform label input:focus, .content .cform label textarea:focus {
  background: rgba(255, 255, 255, 0.2509803922);
}
.content .cform input[type=submit] {
  background: #ff4d37;
  color: white;
  padding: 23px;
  max-width: 200px;
  border: none;
  cursor: pointer;
}
.content .txt {
  min-height: 700px;
}
.content h3 {
  margin: 0;
  padding: 0;
  font-size: 4vw;
  font-weight: 400;
  margin-bottom: 50px;
}
.content img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin: 50px 0;
}
.content p {
  font-size: 120%;
  line-height: 1.6;
  margin-bottom: 30px;
}

@media screen and (max-width: 500px) {
  .calcnew {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .resultzone {
    font-size: 80% !important;
  }
  html, body {
    overflow-x: hidden;
  }
  .navholder {
    -webkit-transition: 1s;
    transition: 1s;
  }
  .navholder:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: url("../images/menuopen.png") no-repeat center;
    background-size: 25px;
    right: 40px;
    top: 40px;
  }
  .menuopen .navholder {
    width: 310px;
    position: absolute;
    right: 0;
    padding: 50px 30px;
    height: 500px;
  }
  .menuopen .navholder .langs {
    position: absolute;
    display: block;
    right: 10px;
    background: none;
    top: 300px;
  }
  .menuopen .navholder nav {
    display: block;
    position: relative;
  }
  .menuopen .navholder nav ul {
    position: absolute;
    right: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menuopen .navholder nav ul li {
    padding: 0;
    border: none !important;
  }
  .menuopen .navholder nav ul li a {
    font-size: 130%;
    padding: 10px;
    text-align: right;
    white-space: nowrap;
    display: block;
  }
  nav, .langs {
    display: none;
  }
  section .grid3 {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  header {
    top: 0;
    margin-bottom: 15px;
  }
  header .logo {
    padding: 10px 0 10px 30px;
  }
  section#whyus .item1 {
    border-radius: 0px;
    border-top-left-radius: 100px;
  }
  .banner {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .banner .words {
    margin-top: -50px;
    background: rgba(0, 0, 0, 0.3137254902);
    padding: 30px;
    border-bottom-right-radius: 20px;
    padding-top: 50px;
  }
  .banner .words h1 {
    font-size: 270%;
  }
  .banner .words h2 {
    font-size: 130%;
  }
  .banner img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  section#whyus .item3 {
    border-radius: 20px;
    border-bottom-right-radius: 100px;
  }
  .calltoaction {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  .flyingfooter {
    gap: 20px !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}