@charset "UTF-8";
/*Global Styles */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

:root {
    --background-color: #ffffff;
    --main-font: "Roboto", Helvetica, sans-serif;
    --main-font-size: 18px;
    --block-margin: 20px;
    --block-padding: 40px;

    /* RD Colors */
    --rd-main: #0A3282;
    --rd-secodary: #E6960A;
    --rd-grey: #8D8BA7;
    --rd-lightblue: #ECF2FF;
    --rd-blue: #0A1E82;
    --rd-yellow: #F0C80A;
    --rd-red: #D21414;
    --rd-divider: #D4D2E3;
    --white: #ffffff;
    --black: #000000;
    
    /* Fonts */
    --h1-title: 1.6rem;
    --h2-section-title: 3.4rem;
    --h3-title: 1.9rem;
    --p-rule: 1.2rem;
}

/* General Styles */
body::-webkit-scrollbar {
    width: 9px;
}

body::-webkit-scrollbar-track {
    background: var(--rd-main);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--rd-secodary);
    border-radius: 6px;
    border: 3px solid var(--rd-main);
}

.sub-container {
    max-width: 960px;
}

/* GENERAL */

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* transition: all 0.2s ease-in; */
}

*:focus {
    outline: none !important;
    transition: all 0.2s ease-in;
}

html,
body {
    height: 100%;
    width: 100%;
    position: relative;
    font-family:  "Roboto", Helvetica, sans-serif;
    color: var(--rd-main);
    height: -webkit-fill-available;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden !important;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
}
a {
    text-decoration: none;
}

.d-none {
    display: none !important;
}

h5 {
    color: var(--rd-grey);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.8px;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

section {
    margin: 100px auto;
}
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
    body.open {
      overflow: hidden;
    }
    #navigation {
      width: 100%;
      /* prevents padding and border from affecting height and width */
      box-sizing: border-box;
      padding: 0.75rem 1rem;
      background-color: #fff;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
      position: fixed;
      z-index: 10000;
    }
    #navigation:before {
      content: "";
      width: 100%;
      height: 0vh;
      background: rgba(0, 0, 0, 0.6);
      opacity: 0;
      display: block;
      position: absolute;
      top: 100%;
      right: 0;
      z-index: -1100;
      transition: height 0.5s, opacity 0.5s;
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
    }
    #navigation.active:before {
      height: 150vh;
      opacity: 1;
    }
    #navigation.active .ul-wrapper {
      opacity: 1;
      transform: scaleY(1);
      transition-delay: 0.15s;
    }
    #navigation.active .li {
      opacity: 1;
      transform: translateY(0);
    }
    #navigation .container {
      width: 100%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }
    #navigation .logo {
        width: 9.125rem;
      height: 100%;
      margin: 0 auto 0 0;
      /* prevents padding and border from affecting height and width */
      box-sizing: border-box;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 10;
    }
    #navigation .logo img {
      width: 100%;
      height: 100%;
      /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
      object-fit: contain;
    }
    #navigation .toggle {
      /* 44px - 48px */
      width: clamp(2.75rem, 6vw, 3rem);
      height: clamp(2.75rem, 6vw, 3rem);
      margin: 0 0 0 auto;
      background-color: transparent;
      border: none;
      border-radius: 0.25rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #navigation .active .line1 {
      top: 50%;
      transform: translate(-50%, -50%) rotate(225deg);
    }
    #navigation .active .line2 {
      top: 50%;
      transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
      transform-origin: center;
    }
    #navigation .active .line3 {
      opacity: 0;
      bottom: 100%;
    }
    #navigation .box {
      /* 24px - 28px */
      width: clamp(1.5rem, 2vw, 1.75rem);
      /* 14px - 16px */
      height: clamp(0.875rem, 1.5vw, 1rem);
      position: relative;
    }
    #navigation .line {
      width: 100%;
      height: 2px;
      background-color: #1a1a1a;
      border-radius: 2px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    #navigation .line1 {
      top: 0;
      transition: transform 0.5s, top 0.3s, left 0.3s;
      animation-duration: 0.7s;
      animation-timing-function: ease;
      animation-direction: normal;
      animation-fill-mode: forwards;
      transform-origin: center;
    }
    #navigation .line2 {
      top: 50%;
      transform: translateX(-50%) translateY(-50%);
      transition: top 0.3s, left 0.3s, transform 0.5s;
      animation-duration: 0.7s;
      animation-timing-function: ease;
      animation-direction: normal;
      animation-fill-mode: forwards;
    }
    #navigation .line3 {
      bottom: 0;
      transition: bottom 0.3s, opacity 0.3s;
    }
    #navigation .ul-wrapper {
      width: 100%;
      height: auto;
      padding-bottom: 2.4em;
      background-color: #fff;
      box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
      opacity: 0;
      position: absolute;
      top: 100%;
      left: 0;
      z-index: -1;
      overflow: hidden;
      transform: scaleY(0);
      transition: transform 0.4s, opacity 0.3s;
      transform-origin: top;
    }
    #navigation .ul {
      width: 100%;
      height: auto;
      max-height: 65vh;
      margin: 0;
      padding: 3rem 0 0 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: 1.25rem;
      overflow: scroll;
    }
    #navigation .li {
      text-align: center;
      list-style: none;
      width: 100%;
      margin-right: 0;
      opacity: 0;
      /* transition from these values */
      transform: translateY(-4.375rem);
      transition: transform 0.6s, opacity 0.9s;
    }
    #navigation .li:nth-of-type(1) {
      transition-delay: 0.05s;
    }
    #navigation .li:nth-of-type(2) {
      transition-delay: 0.1s;
    }
    #navigation .li:nth-of-type(3) {
      transition-delay: 0.15s;
    }
    #navigation .li:nth-of-type(4) {
      transition-delay: 0.2s;
    }
    #navigation .li:nth-of-type(5) {
      transition-delay: 0.25s;
    }
    #navigation .li:nth-of-type(6) {
      transition-delay: 0.3s;
    }
    #navigation .li:nth-of-type(7) {
      transition-delay: 0.35s;
    }
    #navigation .li:nth-of-type(8) {
      transition-delay: 0.4s;
    }
    #navigation .li:nth-of-type(9) {
      transition-delay: 0.45s;
    }
    #navigation .li:nth-of-type(10) {
      transition-delay: 0.5s;
    }
    #navigation .li:nth-of-type(11) {
      transition-delay: 0.55s;
    }
    #navigation .li:nth-of-type(12) {
      transition-delay: 0.6s;
    }
    #navigation .li:nth-of-type(13) {
      transition-delay: 0.65s;
    }
    #navigation .li-link {
      /* 16px - 24px */
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      line-height: 1.2em;
      text-decoration: none;
      margin: 0;
      color: var(--headerColor);
      display: inline-block;
      position: relative;
    }
    #navigation .li-link:before {
      /* active state underline */
      content: "";
      width: 100%;
      height: 1px;
      background: currentColor;
      opacity: 1;
      display: none;
      position: absolute;
      bottom: -0.125rem;
      left: 0;
    }
    #navigation .li-link.active:before {
      display: block;
    }
    #navigation .button-solid {
      display: none;
    }
  }
  /*-- -------------------------- -->
  <---     Desktop Navigation     -->
  <--- -------------------------- -*/
  /* Small Desktop - 1024px */
  @media only screen and (min-width: 64rem) {
    #navigation {
      width: 100%;
      /* prevents padding and border from affecting height and width */
      box-sizing: border-box;
      padding: 0.75rem 1rem;
      background-color: #fff;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
      position: fixed;
      z-index: 10000;
    }
    #navigation .container {
      width: 100%;
      margin: auto;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 1.5rem;
    }
    #navigation .toggle {
      display: none;
    }
    #navigation .logo {
      width: 9.125rem;
      /* margin-right auto pushes everything away from it to the right */
      margin: 0 auto 0 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 100;
    }
    #navigation .logo img {
      width: 100%;
      height: 100%;
      /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
      object-fit: contain;
    }
    #navigation .ul {
      width: 100%;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      /* 20px - 36px */
      gap: clamp(1.25rem, 2.6vw, 2.25rem);
    }
    #navigation .li {
      list-style: none;
      padding: 2rem 0;
      /* prevent flexbox from squishing it */
      flex: none;
    }
    #navigation .li-link {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1vw, 1rem);
      line-height: 1.5em;
      text-decoration: none;
      margin: 0;
      color: var(--bodyTextColor);
      display: block;
      position: relative;
    }
    #navigation .li-link:hover:before {
      width: 100%;
    }
    #navigation .li-link.active:before {
      width: 100%;
    }
    #navigation .li-link:before {
      /* active state underline */
      content: "";
      width: 0%;
      height: 2px;
      background: var(--primary);
      opacity: 1;
      display: block;
      position: absolute;
      bottom: 0rem;
      left: 0;
      transition: width 0.3s;
    }
    #navigation .button-solid {
      font-size: 1rem;
      font-weight: 700;
      /* 46px - 56px */
      line-height: clamp(2.875em, 5.5vw, 3.5em);
      text-align: center;
      text-decoration: none;
      min-width: 9.375rem;
      margin: 0;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
      padding: 0 1.5rem;
      color: #fff;
      background-color: var(--primary);
      border-radius: 0.25rem;
      display: inline-block;
      position: relative;
      z-index: 1;
    }
    #navigation .button-solid:before {
      content: "";
      width: 0%;
      height: 100%;
      background: #000;
      opacity: 1;
      border-radius: 0.25rem;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width 0.3s;
    }
    #navigation .button-solid:hover:before {
      width: 100%;
    }
  }
                                  

/* HERO */

.hero {
    background: rgb(0,52,155);
    background: -moz-linear-gradient(180deg, rgba(0,52,155,1) 0%, rgba(0,33,98,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,52,155,1) 0%, rgba(0,33,98,1) 100%);
    background: linear-gradient(180deg, rgba(0,52,155,1) 0%, rgba(0,33,98,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00349b",endColorstr="#002162",GradientType=1);
    color: var(--rd-main);
    width: 100%;
    height: 100%;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;        
    /* padding: clamp(9rem, 25.95vw, 18.75rem) 1rem 0;
    padding-bottom: clamp(8.125rem, 12.5vw, 10.9375rem); */

    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    margin-top: 109px;

}
.hero .container {
    justify-content: center;
    flex-direction: column;
}
.hero .hero-img {
    width: 100%;
    max-width: 863px;
    height: auto;
    /* margin-left: 100px; */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.arc img {
    position: absolute;
    max-width: 630px;
    width: 100%;
    height: auto;
    z-index: 10;
}
.arc img.top-left-arc {
    top: 0;
    left: 0;
}
.arc img.bot-right-arc {
    bottom: 0;
    right: 0;
}

.button-solid {
    font-size: 16px;
    font-weight: 700;
    border-radius: 40px;
    padding: 23px 36px;
    background-color: var(--rd-secodary);
    color: var(--white);
    gap: 8px;
    text-wrap: nowrap;
    display: block;
    max-width: 220px;
    margin: 0 auto;
    margin-top: 20px;
}

.hero .button-solid {

    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}
@media (max-width: 1024px) {
    .hero {
        height: 100svh;
    }
    .hero .hero-img {
        margin-left: 0px;
    }
}

/* SIDE BY SIDE */
.side-by-side .container {
    flex-direction: column;
    margin: 0 auto;
}
.sbs-1,
.sbs-2 {
    display: flex;
}
.sbs-picture,
.sbs-description {
    flex-basis: 50%;
}
.sbs-picture img {
    width: 100%;
    height: auto;
}

.sbs-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    margin: 0 auto;
}
.sbs-list .item {
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.sbs-list .item span {
    margin-left: 15px;
}

@media (max-width: 560px) {
    .sbs-1,
    .sbs-2 {
        flex-direction: column;
    }
    .sbs-2 {
        flex-direction: column-reverse;
    }
    .sbs-description {
        padding: 20px;
    }
}

/* HOW TO */

section.how-to .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

section.how-to a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}
.steps {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.steps .card {
    flex-basis: 30%;
    padding: 20px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    color: var(--white);
}
.steps .card.blue {
    background-color: var(--rd-blue);
}
.steps .card.red {
    background-color: var(--rd-red);
}
.steps .card.yellow {
    background-color: var(--rd-yellow);
}
.steps .card h2 {
    font-size: 24px;
}
@media (max-width: 560px) {
    .steps {
        flex-direction: column;
    }
}

/*  */
/* FAQ */
/*  */

.faq h2,
.faq .subtitle {
    text-align: center;
}

.faq-group {
    padding: 0;
    margin: 0;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.75rem;
  }
  .faq-item {
    text-align: left;
    list-style: none;
    width: 100%;
    border-top: 1px solid var(--rd-divider);
    /* 12px - 16px */
    padding: clamp(0.75rem, 2vw, 1rem) 1rem;
    box-sizing: border-box;
    transition: border-bottom 0.3s;
  }
  .item-p {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    width: 90%;
    max-width: 33.8125rem;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    color: var(--bodyTextColor);
    /* clips the text so it doesn't show up */
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: opacity 0.3s, transform 0.3s, padding-bottom 0.3s;
  }
  .faq-item.active {
    border-color: var(--rd-divider);
  }
  .faq-item.active .button {
    color: var(--rd-main);
  }
  .faq-item.active .button .indicator:before {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  .faq-item.active .button .indicator:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .faq-item.active .item-p {
    height: auto;
    padding-top: 1rem;
    opacity: 1;
    transform: scaleY(1);
  }
    .button {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--headerColor);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
    .button:hover {
    cursor: pointer;
  }
    .button .indicator {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    z-index: 1;
  }
    .button .indicator:before {
    /* left line */
    content: '';
    width: 1rem;
    height: 0.125rem;
    background-color: #767676;
    opacity: 1;
    border-radius: 2px;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .5s;
  }
    .button .indicator:after {
    /* right line */
    content: '';
    width: 1rem;
    height: 0.125rem;
    background-color: #767676;
    opacity: 1;
    border-radius: 2px;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .5s;
  }
    .button-text {
    width: 90%;
    display: block;
  }
    .item-p {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    width: 90%;
    max-width: 33.8125rem;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    color: var(--bodyTextColor);
    /* clips the text so it doesn't show up */
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: opacity 0.3s, transform 0.3s, padding-bottom 0.3s;
  }



/*  */
/* FOOTER */
/*  */
footer {
    margin: 50px auto 15px auto;
}
footer a {
    color: var(--rd-main);
}
footer a:hover {
    text-decoration: underline;
}
footer .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
}

footer .footer-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
footer .footer-details p {
    font-weight: 700;
    margin-bottom: 30px;
}

footer .left-col {
    max-width: 400px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
footer .left-col .social-icons {
    display: flex;
    gap: 10px;
}
footer .left-col .social-icons a:hover {
    cursor: pointer;
    text-decoration: none;
}
footer .right-col {
    display: flex;
}
footer .right-col .links-about {
    margin-right: 40px;
}
footer .right-col ul {
    list-style: none;
    padding-inline-start: 0;
}
footer .right-col ul li {
    padding-bottom: 10px;
}

footer .logo-campanie {
    width: 100%;
    text-align: center;
}
footer .logo-campanie img {
    width: 100%;
    height: auto;
    max-width: 180px;
    margin-bottom: 30px;
}

footer .copyright {    
    padding-top: 14px;
    font-size: 14px;
    border-top: 1px solid var(--rd-divider);
    width: 100%;
    text-align: center;
}
footer .copyright a {
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 560px) {
    footer .footer-details {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }
    footer .footer-details .left-col {
        text-align: center;
    }
    
    footer .footer-details .right-col {
        justify-content: center;
    }
    footer .logo-campanie img {
        max-width: 140px;
    }

    footer .social-icons {
        justify-content: center;
    }
    
    footer .copyright {
        padding-top: 14px;
        font-size: 12px;
        width: 100%;
        padding:10px 5px;
    }
}


/* /* HERO */

.hero-page {
    background: rgb(0,52,155);
    background: -moz-linear-gradient(180deg, rgba(0,52,155,1) 0%, rgba(0,33,98,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,52,155,1) 0%, rgba(0,33,98,1) 100%);
    background: linear-gradient(180deg, rgba(0,52,155,1) 0%, rgba(0,33,98,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00349b",endColorstr="#002162",GradientType=1);
    color: var(--white);
    width: 100%;
    height: 160px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;        
    /* padding: clamp(9rem, 25.95vw, 18.75rem) 1rem 0;
    padding-bottom: clamp(8.125rem, 12.5vw, 10.9375rem); */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    margin-top: 109px;

}
.hero-page .container {
    justify-content: center;
    flex-direction: column;
}
.hero-page h1 {
    font-size: 40px;
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
.arc img {
    position: absolute;
    max-width: 400px;
    width: 100%;
    height: auto;
    z-index: 0;
}
.arc img.top-left-arc {
    top: 0;
    left: 0;
}
.arc img.bot-right-arc {
    bottom: 0;
    right: 0;
}

@media (max-width: 1024px) {
    .hero-page h1 {
        font-size: 24px;
        width: 100%;
    }
}


/* CONTACT */

.contact-content {
    display: flex;
    flex-direction: row;
}
.formular-rd,
.contact-rd {
    flex-basis: 50%;
    padding: 50px;
}
.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group a {
    color: var(--rd-main);
}
.form-group a:hover {
    text-decoration: underline;
}

.form-group label {
    display: block;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group textarea {
    resize: vertical;
    height: 150px;
}

.submit-btn {
    width: 100%;
    background-color: var(--rd-main);
    border: none;
    padding: 18px 24px;
    border-radius: 30px;
    cursor: pointer;
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
}

.submit-btn:hover {
    background-color: var(--rd-secodary);
}

section.contact form {
    width: 100%;
    max-width: 460px;
    background: var(--rd-lightblue);
    padding: 20px;
    border-radius: 25px;
}

section.contact form ::placeholder,
section.contact form textarea {
    color: var(--rd-grey);
    font-family: var(--main-font);
    opacity: 1; /* Firefox */
    font-size: 16px;
  }
  
section.contact form  ::-ms-input-placeholder { /* Edge 12 -18 */
    color: var(--rd-grey);
    font-family: var(--main-font);
    font-size: 16px;
}
section.contact form form {
    width: 100%;
    max-width: 650px;
}

section.contact form .form-group input,
section.contact form .form-group textarea,
section.contact form .form-group select, 
section.contact form .form-group .regiune-title {
    border: 0;
    outline: 0;
    padding: 1em;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    display: block;
    width: 100%;
    margin-top: 1em;
    resize: none;
    background-color: var(--white);
    color: var(--rd-blue);
    font-size: 16px;
}

section.contact form .form-group input:focus,
section.contact form .form-group textarea:focus,
section.contact form .form-group select:focus {
    -moz-box-shadow: 0 0px 4px var(--rd-main) !important;
    -webkit-box-shadow: 0 0px 4px var(--rd-main) !important;
    box-shadow: 0 0px 4px var(--rd-main) !important;
  }

  section.contact form input:is(:-webkit-autofill, :autofill) {
    border: 3px solid darkorange;
    background-color: var(--white)!important;
  }

section.contact .email-contact {
    display: flex;
    flex-direction: column;
}
section.contact .email-contact .contact-group {
    padding: 10px 0;
    display: flex;
}

section.contact .email-contact .contact-group span {
    margin-left: 10px;
}
section.contact .email-contact .contact-group a {
    color: var(--rd-main);
}

section.contact .email-contact .contact-group a:hover {
    text-decoration: underline;
}

@media (max-width:560px) {
    .contact-content {
        flex-direction: column-reverse;
    }
    .formular-rd,.contact-rd {
        padding: 0;
    }
    .contact-rd {
        margin-bottom: 20px;
    }
}


/* INSCRIERE */

section.inscriere .formular-inscriere {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto'!important;
}
section.inscriere ::placeholder,
section.inscriere textarea {
    color: var(--rd-grey);
    font-family: var(--main-font);
    opacity: 1; /* Firefox */
    font-size: 16px;
  }
  
section.inscriere  ::-ms-input-placeholder { /* Edge 12 -18 */
    color: var(--rd-grey);
    font-family: var(--main-font);
    font-size: 16px;
}
section.inscriere form {
    width: 100%;
    max-width: 650px;
}

section.inscriere .form-group input,
section.inscriere .form-group textarea,
section.inscriere .form-group select, 
section.inscriere .form-group label,
section.inscriere .form-group .regiune-title {
    box-sizing: border-box;
    border: 0;
    outline: 0;
    padding: 1em;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    display: block;
    width: 100%;
    margin-top: 1em;
    resize: none;
    background-color: var(--rd-lightblue);
    color: var(--rd-blue);
    font-size: 16px;
}

section.inscriere .form-group .text-upload-label,
section.inscriere .form-group .input-upload {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    align-self: center;
}
section .inscriere .form-group label span.custom-control-description {
    color: var(--rd-grey);
}
.custom-control-description {
    width: 100%;
}

section.inscriere .form-group input:focus,
section.inscriere .form-group textarea:focus,
section.inscriere .form-group select:focus {
    -moz-box-shadow: 0 0px 4px var(--rd-main) !important;
    -webkit-box-shadow: 0 0px 4px var(--rd-main) !important;
    box-shadow: 0 0px 4px var(--rd-main) !important;
  }

section.inscriere .form-group.region-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--rd-grey);
  }

section.inscriere .form-group.region-group label,
section.inscriere .form-group.region-group div {
    width: 100%;
}

section.inscriere .form-group .regiune-title,
section.inscriere .form-group label.form-check-label {
    margin-top: 0;
    justify-content: space-around;
}

section.inscriere .form-group label.form-check-label {
    color: var(--rd-grey);
}
input[type="radio"]:checked + .form-check-label {
    color: red; /* Change this to your preferred color */
}

section.inscriere .form-group.region-group .form-check {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--rd-lightblue);
    border-radius: 8px;
  }

section.inscriere input[type="radio"],
section.inscriere input[type="checkbox"] {
    margin: 0px;
    margin-right: 15px;
    width: 30px;
}

section.inscriere .form-group small {
    color: var(--rd-grey);
    font-size: 12px;
    text-align: center;
}

section.inscriere .form-group label {
    display: flex;
    align-items: center;
}

section.inscriere .button-solid {
    background-color: var(--rd-main);
    color: var(--white);
    padding: 18px 24px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    max-width: 260px;
    text-transform: uppercase;
    border: none;
}
section.inscriere .button-solid:hover {
    background-color: var(--rd-secodary);
}

section.inscriere .invalid-feedback {
    color: var(--rd-red);
    width: 100%;
}

section.inscriere .form-group #status {
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    color: green;
}

section.inscriere .form-group #alert {
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--rd-red);
}



@media (max-width: 560px) {
    section.inscriere .form-group.region-group {
        flex-direction: column;
    } 
    section.inscriere .form-group .regiune-title, section.inscriere .form-group label.form-check-label {
        justify-content: left;
        align-items: center;
    }
}

h2.contest-over {
  text-align: center;
}

.winners-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.winners .winners-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.winners .winners-description p {
  max-width: 80%;
  text-align: center;
}

.winners-container .winner-card {
  text-align: center;
  border: 1px solid var(--rd-main);
  width: 30%;
  margin: 20px 0;
  padding: 0 10px;
  border-radius: 1em;
}

@media (max-width: 560px) {
  .winners-container .winner-card {
    width: 100%;
  }
}