@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");

/* External fonts */
@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-Lgt.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-Mdm.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-ItalicMT.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-ItalicMT_1.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-LgtItl.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-MdmItl.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/ArialMT.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-BoldMT_1.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-BoldItalicMT.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-BoldMT_2.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-BoldItalicMT_1.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

/* ---------------- Basic css ------------------ */
:root {
  scroll-behavior: unset;
  --white: #ffffff;
  --black: #000000;

  --white_img: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  --black_img: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%);

  --primaryfont: "Arial", sans-serif;
  --secondaryfont: "Poppins", sans-serif;

  --menuHeight: 9rem;
}

img {
  width: 100%;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none !important;
  transition: 200ms;
  color: inherit;
  display: inline-block;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* body */
body {
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-weight: 400;
  color: var(--black);
  overflow-x: hidden;
  font-family: var(--primaryfont);
  background: var(--white);
  letter-spacing: 0.01em;
}

.container {
  padding-left: 0;
  padding-right: 0;
}

main {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.figure img,
.figure {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: var(--secondaryfont);
  color: var(--black);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

/* image colros */
.white_img {
  -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%)
    hue-rotate(67deg) brightness(112%) contrast(100%);
}
.black_img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(0%)
    saturate(16%) hue-rotate(309deg) brightness(93%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%)
    hue-rotate(309deg) brightness(93%) contrast(107%);
}

/* Font Weights */
.f_300 {
  font-weight: 300 !important;
}
.f_400 {
  font-weight: 400 !important;
}
.f_500 {
  font-weight: 500 !important;
}
.f_600 {
  font-weight: 600 !important;
}
.f_700 {
  font-weight: 700 !important;
}
.f_800 {
  font-weight: 800 !important;
}
.f_900 {
  font-weight: 900 !important;
}

/* titles */
.title_60 {
  font-size: 6rem;
  line-height: 1;
}

.title_40 {
  font-size: 4rem;
  line-height: 1.15;
}

.title_25 {
  font-size: 2.5rem;
  line-height: 1.15;
}

/* texts */
.text_xl {
  font-size: 2rem;
}
.text_lg {
  font-size: 1.8rem;
}
.text_md {
  font-size: 1.6rem;
}
.text_sm {
  font-size: 1.4rem;
}
.text_xsm {
  font-size: 1.2rem;
}

/* title_sm  */
.title_sm {
  text-transform: uppercase;
}

.title_sm p {
  line-height: 1;
}

/* ========================= #Progress ======================= */
.progress-wrap {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  height: 4.5rem;
  width: 4.5rem;
  cursor: pointer;
  display: block;
  border-radius: 5rem;
  box-shadow: inset 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.5rem);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background: #ffffff;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.arrow_top {
  width: 2rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  filter: brightness(0) saturate(100%) invert(32%) sepia(91%) saturate(927%)
    hue-rotate(307deg) brightness(110%) contrast(80%);
}

.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #e6517b; /* --- Lijn progres kleur --- */
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* mx-auto */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ============= button ============= */
.button {
  height: 5.6rem;
  background: #ee322f;
  color: var(--white);
  padding: 0 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  width: fit-content;
}

.button:hover {
  background: #d11814;
}

.hero_btns {
  gap: 2.4rem;
  padding-top: 2rem;
}

.button_blue {
  background: #0077e6;
}

.button_blue:hover {
  background: #095ba8;
}

/* -------------- Header Styles by Sahriar --------------- */
.site_header {
  padding: 0;
  position: fixed;
  z-index: 999999;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: transparent;
  height: var(--menuHeight);
  display: flex;
  align-items: center;
}

.site_header.sticky {
  background: #ffffff;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
}

.navbar {
  margin: 0;
  padding: 0;
}

.logo img {
  width: 27.98rem;
}

.main_menu {
  gap: 4.7rem;
}

.menu_link:hover, .menu_link.active {
  color: #0077e6;
}

.hero_btn {
  height: 4.7rem;
  display: flex;
  align-items: center;
  padding: 0 5.8rem;
  background: linear-gradient(
    89.85deg,
    #ee322f 0.13%,
    #7b1a77 44.25%,
    #0077e6 99.89%
  );
  color: var(--white);
  border-radius: 0.5rem;
}

.hero_btn:hover {
  opacity: 0.65;
}

/* ================= Hero area ================== */
.hero_area {
  padding: 23rem 0 19.5rem;
}

.hero_link img {
  width: 3rem;
}

.hero_link {
  gap: 0.95rem;
  padding: 0.5rem 0 1.5rem;
  font-weight: 700;
  font-size: 2.5rem;
}

.hero_content > span {
  color: #1f1f1f;
  font-weight: 700;
}

.hero_area .row {
  --bs-gutter-x: 21.5rem;
}

/* ================ Hero area ================ */
.hero_area {
  padding: 23rem 0 19.5rem;
  height: 100vh;
  display: flex;
  align-items: center;
  min-height: 60rem;
}

.before_after_img {
  width: 40.8rem;
}

.hero_img {
  position: relative;
  width: fit-content;
  margin-left: auto;
  display: block;
}

.beforeAfter_btn {
  width: 7.1rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.beforeAfter_text {
  display: flex;
  align-items: anchor-center;
  justify-content: center;
  height: 3.8rem;
  width: 9.2rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  border-radius: 0.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.bafter_after {
  background: #0077e6;
  right: -3rem;
  z-index: 1;
}

.before_text {
  background: #ee322f;
  left: -3.4rem;
  z-index: 1;
}

/* =============== service_area =============== */
.service_area {
  padding-top: 11rem;
}

.service_img img {
  height: 20rem;
  object-fit: cover;
}

.service_info {
  padding: 5rem 3.5rem 5rem 3.5rem;
}

.service_box {
  background: #f5f5f5;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 100%;
  transition: 0.15s ease;
}

.service_box:hover {
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.15);
}

.row_gap_28 {
  --bs-gutter-x: 2.8rem;
  --bs-gutter-y: 2.8rem;
}

.row_gap_30 {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}

.dots_title_left {
  width: 21.5rem;
  position: absolute;
  left: 3.8rem;
  top: -14rem;
  pointer-events: none;
  z-index: -1;
}

/* =================== pakalpojumi_area ================= */
.pakalpojumi_area {
  padding-top: 14rem;
}

.pakal_box ul li img {
  width: 1.9rem;
}

.pakal_box ul li {
  display: flex;
  gap: 0.6rem;
  line-height: 1;
}

.pakal_box ul {
  display: grid;
  gap: 1rem;
}

.pakal_box span {
  color: #838383;
  font-size: 2rem;
  padding: 0.8rem 0 2rem;
  display: block;
}

.pakal_box {
  padding: 5rem 3.5rem 4rem 3.5rem;
  background: #f3f6fc;
  border-radius: 0.5rem;
  transition: 0.15s ease;
  position: relative;
}

.pakal_box:hover {
  box-shadow: 0 0 2.5rem 0.2rem rgba(0, 0, 0, 0.15);
}

.pakal_box .button {
  position: absolute;
  right: 2.4rem;
  bottom: 2.2rem;
}

.Combined-Shape {
  width: 30rem;
  position: absolute;
  top: -15rem;
  right: -1.5rem;
}

.icon_24 {
  width: 2.4rem;
}

/* ================== results_area =================== */
.result_img_v1 {
  height: 31rem;
  object-fit: cover;
}

.result_img_v2 {
  height: 40.9rem;
  object-fit: cover;
}

.nav_link {
  height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
  font-size: 1.4rem;
  border-radius: 1.7rem;
  line-height: 1;
  transition: 0.25s ease;
}

.nav_link:hover {
  background: #dbdbdb;
}

.nav_link.active {
  background: #0077e6;
  color: var(--white);
}

.nav_links {
  gap: 1rem;
  padding: 1rem;
  border: 0.1rem solid #dbdbdb;
  width: fit-content;
  margin: 0 auto;
  border-radius: 10rem;
  margin-top: 2.5rem;
}

.arrow_icon {
  width: 6rem;
  position: absolute;
  right: -10rem;
  top: -3rem;
}

/* ====================== partner_area ======================== */
.partner1 {
  width: 26rem;
}

.partner2 {
  width: 28.2rem;
}

.partner3 {
  width: 31.5rem;
}

.partner_img {
  height: 5.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4.7rem;
}

.partner_box {
  padding: 6.8rem 3.4rem 4.3rem 3.4rem;
  background: #f5f5f5;
  border-radius: 0 0 0.5rem 0.5rem;
  transition: 0.25s ease;
  height: 100%;
}

.partner_box:hover {
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.2);
}

/* ====================== cta_area ======================== */
.arrow_right_icon {
  width: 13rem;
}

.cta_content {
  display: grid;
  grid-template-columns: 1fr 13rem 0fr;
  align-items: center;
  padding: 6.8rem 5.2rem 14.3rem 7rem;
  background: #f3f6fc;
  border-radius: 0 0 0.5rem 0.5rem;
}

.cta_left {
  padding-right: 5.2rem;
}

.cta_content .button {
  white-space: nowrap;
  margin-left: 7rem;
}

.Combined_Shape2 {
  position: absolute;
  width: 27rem;
  left: -3.7rem;
  bottom: -14rem;
  z-index: -1;
}

/* =============== Contact area =============== */
.contact_icon {
  width: 3rem;
  flex: 0 0 auto;
}

.contact_info_box {
  gap: 0.6rem;
  align-items: flex-start;
}

.contact_info_box:hover {
  opacity: 0.75;
}

.contact_info_boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.6rem 5rem;
  width: fit-content;
}

.form-control {
  display: flex;
  border: 0.1rem solid #c3c3c3;
  border-radius: 1.1rem;
  padding: 0 1.4rem;
  height: 4.2rem;
  margin: 0;
  line-height: 1;
  padding-top: 0.25rem;
}

.form-control::placeholder {
  accent-color: #383838;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.7rem;
}

.form-message-control {
  height: 12.7rem;
  padding-top: 1.5rem;
}

.contact_box .button {
  padding: 0 4.8rem;
  margin-top: 0.25rem;
}

.contact_box {
  border-radius: 1.8rem;
}
