/* ----------------------------------------
    CSS RESET
---------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
html {
  color: #000;
  background: #FFF; }

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

fieldset, img {
  border: 0; }

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal; }

ol, ul {
  list-style: none; }

caption, th {
  text-align: left; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

q:before, q:after {
  content: ''; }

abbr, acronym {
  border: 0;
  font-variant: normal; }

sup {
  vertical-align: text-top; }

sub {
  vertical-align: text-bottom; }

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  *font-size: 100%; }

legend {
  color: #000; }

#yui3-css-stamp.cssreset {
  display: none; }

/* ----------------------------------------
    FONTS
---------------------------------------- */
@font-face {
  font-family: Quadon;
  src: url("../assets/fonts/quadon-regular.otf") format("opentype"); }
@font-face {
  font-family: Quadon;
  font-weight: bold;
  src: url("../assets/fonts/quadon-bold.otf") format("opentype"); }
/* ----------------------------------------
    COLORS
---------------------------------------- */
/* ----------------------------------------
    GLOBAL
---------------------------------------- */
* {
  box-sizing: border-box;
  outline: none; }

a {
  text-decoration: none; }

html {
  scroll-behavior: smooth; }

html,
body {
  width: 100%;
  height: 100%; }

/* ----------------------------------------
    LOADER
---------------------------------------- */
#loader p {
  width: auto;
  font-family: "Verdana";
  font-weight: normal;
  font-size: 36px;
  line-height: normal;
  letter-spacing: 0.03em;
  font-size: 24px;
  color: #202020; }

#loader {
  background: white;
  box-shadow: 3rem 0 0 rgba(0, 0, 0, 0.75);
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  z-index: 99999;
  position: fixed;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: center; }

#loader p {
  -webkit-animation-name: loader;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: forwards;
  -webkit-animation-timing-function: 1;
  -webkit-animation-direction: alternate;
  animation-name: loader;
  animation-duration: 1s;
  animation-iteration-count: forwards;
  animation-timing-function: 1;
  animation-direction: alternate; }

@keyframes loader {
  0% {
    opacity: 0;
    -webkit-transform: scale(2) rotateY(-180deg);
    -moz-transform: scale(2) rotateY(-180deg);
    -ms-transform: scale(2) rotateY(-180deg);
    -o-transform: scale(2) rotateY(-180deg); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1); } }
@-webkit-keyframes loader {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
    -o-transform: scale(0.75);
    -webkit-filter: blur(0.5rem);
    -moz-filter: blur(0.5rem);
    -ms-filter: blur(0.5rem);
    -o-filter: blur(0.5rem);
    filter: blur(0.5rem); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-filter: blur(0rem);
    -moz-filter: blur(0rem);
    -ms-filter: blur(0rem);
    -o-filter: blur(0rem);
    filter: blur(0rem); } }
/* ----------------------------------------
    HEADER
---------------------------------------- */
.header {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  margin-bottom: 80px;
  overflow: hidden;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px; }
  .header .overlay {
    background: rgba(1, 1, 1, 0.25);
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 216px; }
  .header .wrap {
    max-width: 1110px;
    height: 100%;
    margin: auto; }
    .header .wrap .content {
      display: flex;
      align-items: center;
      width: 100%;
      height: calc(100% - 88px); }
      .header .wrap .content .box {
        width: 100%; }
        .header .wrap .content .box h1 {
          font-family: "Playfair Display";
          font-weight: 700;
          font-size: 88px;
          line-height: normal;
          letter-spacing: 0.05em;
          color: white; }
        .header .wrap .content .box h2 {
          font-family: "Playfair Display";
          font-weight: 500;
          font-size: 36px;
          line-height: normal;
          letter-spacing: 0.03em;
          color: white; }
        .header .wrap .content .box a {
          background: white;
          display: flex;
          justify-content: center;
          align-items: center;
          width: 227px;
          height: 45px;
          margin-top: 32px;
          font-family: "Verdana";
          font-weight: normal;
          font-size: 14px;
          line-height: normal;
          letter-spacing: 0.05em;
          color: #202020;
          border-radius: 5px;
          transition: 0.4s;
          border: solid 1px white; }
        .header .wrap .content .box a:hover {
          background: none;
          border-color: white;
          color: white; }
    .header .wrap .scroll-bar {
      width: 40px;
      position: absolute;
      left: 50%;
      bottom: 24px;
      margin-left: -12px;
      cursor: pointer;
      filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(161deg) brightness(93%) contrast(119%); }

.header-home {
  background-image: url("../assets/images/headers/header-home.jpg");
  height: 75%; }

.header-about_us {
  background-image: url("../assets/images/headers/header-about_us.jpg");
  height: 480px; }
  .header-about_us .scroll-bar {
    display: none; }

.header-services {
  background-image: url("../assets/images/headers/header-services.jpg");
  height: 480px; }
  .header-services .scroll-bar {
    display: none; }

.header-knowledge_base {
  background-image: url("../assets/images/headers/header-knowledge_base.jpg");
  height: 480px; }
  .header-knowledge_base .scroll-bar {
    display: none; }

.header-article {
  background-image: url("../assets/images/headers/header-article.jpg");
  height: 480px; }
  .header-article .scroll-bar {
    display: none; }

.header-contact {
  background-image: url("../assets/images/headers/header-contact.png");
  height: 75%; }
  .header-contact .wrap .content .box {
    display: none; }
  .header-contact .scroll-bar {
    display: none; }

.header-privacy_policy {
  background-image: url("../assets/images/headers/header-text.jpg");
  height: 480px; }
  .header-privacy_policy .scroll-bar {
    display: none; }

/* ----------------------------------------
    NAVIGATION
---------------------------------------- */
.navigation {
  background-color: white;
  display: flex;
  justify-content: space-between;
  width: 1110px;
  height: 88px;
  padding: 0 65px 0 65px;
  border-radius: 10px;
  position: fixed;
  top: 40px;
  -webkit-box-shadow: 0px 10px 30px -25px #42445a;
  -moz-box-shadow: 0px 10px 30px -25px #42445a;
  box-shadow: 0px 10px 30px -25px #42445a; }
  .navigation .logo {
    display: flex;
    align-items: center;
    height: 100%; }
    .navigation .logo p a {
      font-family: "Verdana";
      font-weight: normal;
      font-size: 36px;
      line-height: normal;
      letter-spacing: 0.03em;
      color: #202020; }
  .navigation ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 455px;
    height: 100%; }
    .navigation ul li a {
      font-family: "Verdana";
      font-weight: normal;
      font-size: 14px;
      line-height: normal;
      letter-spacing: 0.05em;
      color: #202020;
      transition: 0.4s; }
    .navigation ul li a:hover {
      color: #28c7fa; }

/* ----------------------------------------
    HOME
---------------------------------------- */
.home {
  width: 100%; }
  .home .wrap {
    max-width: 1110px;
    margin: auto; }
    .home .wrap .content {
      width: 100%;
      display: flex;
      justify-content: space-between;
      gap: 30px;
      padding-bottom: 80px; }
      .home .wrap .content .left-side {
        width: 540px; }
        .home .wrap .content .left-side .photo {
          background-position: 50% 50%;
          background-repeat: no-repeat;
          background-size: cover;
          width: 540px;
          height: 480px;
          border-radius: 10px; }
      .home .wrap .content .right-side h1 {
        margin-bottom: 32px;
        font-family: "Playfair Display";
        font-weight: 700;
        font-size: 64px;
        line-height: normal;
        letter-spacing: 0.03em;
        color: #28c7fa; }
      .home .wrap .content .right-side p {
        margin-bottom: 15px;
        font-family: "Verdana";
        font-weight: normal;
        font-size: 15px;
        line-height: 24px;
        letter-spacing: 0em;
        color: dark-gray; }
      .home .wrap .content .right-side p:last-of-type {
        margin-bottom: 0; }
    .home .wrap .content-v2 {
      margin-bottom: 80px; }
      .home .wrap .content-v2 h2 {
        margin-bottom: 32px;
        font-family: "Playfair Display";
        font-weight: 700;
        font-size: 64px;
        line-height: normal;
        letter-spacing: 0.03em;
        text-align: center;
        color: #202020; }
      .home .wrap .content-v2 .cards {
        width: 100%;
        display: flex;
        gap: 30px;
        justify-content: space-between; }
        .home .wrap .content-v2 .cards .card {
          background: #28c7fa;
          background: linear-gradient(180deg, #28c7fa 0%, #007297 100%);
          width: 350px;
          height: 400px;
          border-radius: 10px;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-wrap: wrap;
          padding: 40px 0 40px 0; }
          .home .wrap .content-v2 .cards .card img {
            width: 96px; }
          .home .wrap .content-v2 .cards .card h3 {
            width: 100%;
            text-align: center;
            font-family: "Playfair Display";
            font-weight: 500;
            font-size: 36px;
            line-height: normal;
            letter-spacing: 0.03em;
            color: white; }
          .home .wrap .content-v2 .cards .card p {
            width: 100%;
            text-align: center;
            font-family: "Verdana";
            font-weight: normal;
            font-size: 15px;
            line-height: 24px;
            letter-spacing: 0em;
            color: rgba(255, 255, 255, 0.75); }
    .home .wrap .content-v3 {
      max-width: 730px;
      margin: auto; }
      .home .wrap .content-v3 h2 {
        margin-bottom: 32px;
        font-family: "Playfair Display";
        font-weight: 700;
        font-size: 64px;
        line-height: normal;
        letter-spacing: 0.03em;
        color: #28c7fa; }
      .home .wrap .content-v3 p {
        margin-bottom: 20px;
        font-family: "Verdana";
        font-weight: normal;
        font-size: 15px;
        line-height: 24px;
        letter-spacing: 0em;
        color: #202020; }
      .home .wrap .content-v3 p:last-of-type {
        margin-bottom: 0; }
      .home .wrap .content-v3 strong {
        font-family: "Verdana";
        font-weight: bold;
        font-size: 15px;
        line-height: 24px;
        letter-spacing: 0em; }

/* ----------------------------------------
    ABOUT US
---------------------------------------- */
.about_us {
  width: 100%; }
  .about_us .wrap {
    max-width: 1110px;
    margin: auto; }
    .about_us .wrap .content {
      width: 100%;
      display: flex;
      justify-content: space-between;
      gap: 30px; }
      .about_us .wrap .content .left-side h1 {
        margin-bottom: 32px;
        font-family: "Playfair Display";
        font-weight: 700;
        font-size: 64px;
        line-height: normal;
        letter-spacing: 0.03em;
        color: #28c7fa; }
      .about_us .wrap .content .left-side p {
        margin-bottom: 15px;
        font-family: "Verdana";
        font-weight: normal;
        font-size: 15px;
        line-height: 24px;
        letter-spacing: 0em;
        color: dark-gray; }
      .about_us .wrap .content .left-side p:last-of-type {
        margin-bottom: 0; }
      .about_us .wrap .content .right-side {
        width: 540px; }
        .about_us .wrap .content .right-side .photo {
          background-position: 50% 50%;
          background-repeat: no-repeat;
          background-size: cover;
          width: 540px;
          height: 480px;
          border-radius: 10px; }

/* ----------------------------------------
    SERVICES
---------------------------------------- */
.services .wrap {
  max-width: 1110px;
  margin: auto; }
  .services .wrap .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px; }
    .services .wrap .content .left-side {
      width: 445px; }
      .services .wrap .content .left-side .photo {
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-size: cover;
        width: 445px;
        height: 445px;
        border-radius: 10px; }
    .services .wrap .content h1 {
      margin-bottom: 32px;
      font-family: "Playfair Display";
      font-weight: 700;
      font-size: 64px;
      line-height: normal;
      letter-spacing: 0.03em;
      color: #28c7fa; }
    .services .wrap .content p {
      font-family: "Verdana";
      font-weight: normal;
      font-size: 15px;
      line-height: 24px;
      letter-spacing: 0em;
      color: dark-gray;
      margin-bottom: 20px; }
    .services .wrap .content a {
      color: #28c7fa; }
    .services .wrap .content ol {
      list-style-type: numeric;
      padding-left: 19px;
      font-family: "Verdana";
      font-weight: normal;
      font-size: 15px;
      line-height: 24px;
      letter-spacing: 0em;
      color: dark-gray; }
    .services .wrap .content ul {
      list-style-type: disc;
      padding-left: 19px;
      font-family: "Verdana";
      font-weight: normal;
      font-size: 15px;
      line-height: 24px;
      letter-spacing: 0em;
      color: dark-gray; }

/* ----------------------------------------
    KNOWLEDGE BASE
---------------------------------------- */
.knowledge_base {
  width: 100%; }
  .knowledge_base .wrap {
    max-width: 1110px;
    margin: auto; }
    .knowledge_base .wrap .list .article {
      display: flex;
      gap: 30px;
      justify-content: space-between;
      width: 100%;
      margin-bottom: 30px; }
      .knowledge_base .wrap .list .article .photo {
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-size: cover;
        width: 445px;
        height: 240px;
        border-radius: 10px; }
      .knowledge_base .wrap .list .article .text h2 {
        margin-bottom: 15px;
        font-family: "Playfair Display";
        font-weight: 500;
        font-size: 36px;
        line-height: normal;
        letter-spacing: 0.03em;
        color: #28c7fa; }
      .knowledge_base .wrap .list .article .text p:nth-of-type(1) {
        font-family: "Verdana";
        font-weight: normal;
        font-size: 15px;
        line-height: 24px;
        letter-spacing: 0em;
        color: #c7c7c7; }
      .knowledge_base .wrap .list .article .text p:nth-of-type(2) {
        margin: 24px 0 24px 0;
        font-family: "Verdana";
        font-weight: normal;
        font-size: 15px;
        line-height: 24px;
        letter-spacing: 0em;
        color: #202020; }
      .knowledge_base .wrap .list .article .text a {
        background: #28c7fa;
        width: 166px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: "Verdana";
        font-weight: normal;
        font-size: 14px;
        line-height: normal;
        letter-spacing: 0.05em;
        color: white;
        border-radius: 5px;
        border: solid 1px #28c7fa;
        transition: 0.4s; }
      .knowledge_base .wrap .list .article .text a:hover {
        background: none;
        border-color: #28c7fa;
        color: #28c7fa; }
    .knowledge_base .wrap .list .article:last-of-type {
      margin-bottom: 0; }

/* ----------------------------------------
    ARTICLE
---------------------------------------- */
.page-article {
  width: 100%; }
  .page-article .wrap {
    max-width: 730px;
    margin: auto; }
    .page-article .wrap .content h1 {
      margin-bottom: 15px;
      font-family: "Playfair Display";
      font-weight: 500;
      font-size: 36px;
      line-height: normal;
      letter-spacing: 0.03em;
      color: #28c7fa; }
    .page-article .wrap .content .date {
      font-family: "Verdana";
      font-weight: normal;
      font-size: 15px;
      line-height: 24px;
      letter-spacing: 0em;
      color: #c7c7c7; }
    .page-article .wrap .content .text {
      padding: 32px 0 80px 0;
      font-family: "Verdana";
      font-weight: normal;
      font-size: 15px;
      line-height: 24px;
      letter-spacing: 0em;
      color: #202020; }
      .page-article .wrap .content .text p {
        margin-bottom: 20px; }
      .page-article .wrap .content .text p:last-of-type {
        margin-bottom: 0; }
      .page-article .wrap .content .text ul,
      .page-article .wrap .content .text ol {
        margin-bottom: 20px; }
      .page-article .wrap .content .text strong {
        font-family: "Verdana";
        font-weight: bold;
        font-size: 15px;
        line-height: 24px;
        letter-spacing: 0em; }
      .page-article .wrap .content .text ol {
        list-style-type: numeric;
        padding-left: 19px; }
      .page-article .wrap .content .text ul {
        list-style-type: disc;
        padding-left: 19px; }
    .page-article .wrap .content .button {
      background: #28c7fa;
      width: 120px;
      height: 45px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: "Verdana";
      font-weight: normal;
      font-size: 15px;
      line-height: 24px;
      letter-spacing: 0em;
      color: white;
      border-radius: 5px;
      margin: auto;
      border: solid 1px #28c7fa;
      transition: 0.4s; }
    .page-article .wrap .content .button:hover {
      background: none;
      border-color: #28c7fa;
      color: #28c7fa; }

/* ----------------------------------------
    TEXT
---------------------------------------- */
.page-text {
  width: 100%; }
  .page-text .wrap {
    max-width: 730px;
    margin: auto; }
    .page-text .wrap .content h1 {
      font-family: "Playfair Display";
      font-weight: 500;
      font-size: 36px;
      line-height: normal;
      letter-spacing: 0.03em;
      color: #28c7fa; }
    .page-text .wrap .content .text {
      padding: 32px 0 0 0;
      font-family: "Verdana";
      font-weight: normal;
      font-size: 15px;
      line-height: 24px;
      letter-spacing: 0em;
      color: #202020; }
      .page-text .wrap .content .text p {
        margin-bottom: 20px; }
      .page-text .wrap .content .text p:last-of-type {
        margin-bottom: 0; }
      .page-text .wrap .content .text ul,
      .page-text .wrap .content .text ol {
        margin-bottom: 20px; }
      .page-text .wrap .content .text strong {
        font-family: "Verdana";
        font-weight: bold;
        font-size: 15px;
        line-height: 24px;
        letter-spacing: 0em; }
      .page-text .wrap .content .text ol {
        list-style-type: numeric;
        padding-left: 19px; }
      .page-text .wrap .content .text ul {
        list-style-type: disc;
        padding-left: 19px; }

/* ----------------------------------------
    CONTACT
---------------------------------------- */
.contact {
  width: 100%; }
  .contact .wrap {
    max-width: 1110px;
    margin: auto; }
    .contact .wrap .content {
      margin-bottom: 80px; }
      .contact .wrap .content h1 {
        font-family: "Playfair Display";
        font-weight: 700;
        font-size: 64px;
        line-height: normal;
        letter-spacing: 0.03em;
        color: #28c7fa;
        margin-bottom: 30px; }
      .contact .wrap .content .text {
        width: 100%;
        display: flex;
        justify-content: space-between; }
        .contact .wrap .content .text .title {
          font-family: "Playfair Display";
          font-weight: 500;
          font-size: 20px;
          line-height: normal;
          letter-spacing: 0.03em;
          color: #202020;
          margin-bottom: 15px; }
        .contact .wrap .content .text p {
          font-family: "Verdana";
          font-weight: normal;
          font-size: 15px;
          line-height: 24px;
          letter-spacing: 0em;
          color: #202020; }
        .contact .wrap .content .text a {
          color: #202020; }
    .contact .wrap .form h2 {
      font-family: "Playfair Display";
      font-weight: 700;
      font-size: 64px;
      line-height: normal;
      letter-spacing: 0.03em;
      color: #28c7fa;
      margin-bottom: 30px; }
    .contact .wrap .form form {
      display: flex;
      justify-content: space-between;
      gap: 30px; }
      .contact .wrap .form form .left-side {
        width: 350px; }
        .contact .wrap .form form .left-side input {
          width: 100%;
          height: 56px;
          margin-bottom: 15px;
          border: solid 1px #c7c7c7;
          border-radius: 5px;
          padding: 0 24px 0 24px;
          color: #202020;
          font-family: "Verdana";
          font-weight: normal;
          font-size: 15px;
          line-height: 24px;
          letter-spacing: 0em; }
        .contact .wrap .form form .left-side input:focus {
          border-color: #202020; }
        .contact .wrap .form form .left-side input:valid {
          border-color: #28c7fa; }
      .contact .wrap .form form .right-side {
        width: 100%; }
        .contact .wrap .form form .right-side textarea {
          width: 100%;
          height: 199px;
          border: solid 1px #c7c7c7;
          border-radius: 5px;
          resize: none;
          padding: 24px;
          color: #202020;
          font-family: "Verdana";
          font-weight: normal;
          font-size: 15px;
          line-height: 24px;
          letter-spacing: 0em; }
        .contact .wrap .form form .right-side textarea:focus {
          border-color: #202020; }
        .contact .wrap .form form .right-side textarea:valid {
          border-color: #28c7fa; }
      .contact .wrap .form form .additional-elements {
        margin-top: 24px;
        width: 100%;
        display: flex;
        justify-content: space-between; }
        .contact .wrap .form form .additional-elements .radio-button {
          width: 500px;
          display: flex;
          align-items: flex-start;
          gap: 8px;
          justify-content: space-between; }
          .contact .wrap .form form .additional-elements .radio-button .left-side {
            width: 16px; }
            .contact .wrap .form form .additional-elements .radio-button .left-side input {
              height: auto; }
            .contact .wrap .form form .additional-elements .radio-button .left-side .container {
              display: block;
              position: relative;
              padding-left: 27px;
              margin-bottom: 12px;
              margin-top: 2px;
              cursor: pointer;
              font-size: 22px;
              -webkit-user-select: none;
              -moz-user-select: none;
              -ms-user-select: none;
              user-select: none; }
              .contact .wrap .form form .additional-elements .radio-button .left-side .container input {
                position: absolute;
                opacity: 0;
                cursor: pointer;
                height: 0;
                width: 0; }
              .contact .wrap .form form .additional-elements .radio-button .left-side .container input:checked ~ .checkmark {
                background-color: white; }
              .contact .wrap .form form .additional-elements .radio-button .left-side .container input:checked ~ .checkmark:after {
                display: block; }
              .contact .wrap .form form .additional-elements .radio-button .left-side .container .checkmark {
                position: absolute;
                top: 0;
                left: 0;
                height: 16px;
                width: 16px;
                background-color: white;
                border: solid 1px #28c7fa;
                border-radius: 16px; }
              .contact .wrap .form form .additional-elements .radio-button .left-side .container .checkmark:after {
                content: "";
                position: absolute;
                display: none; }
              .contact .wrap .form form .additional-elements .radio-button .left-side .container .checkmark:after {
                top: 3px;
                left: 3px;
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #28c7fa; }
            .contact .wrap .form form .additional-elements .radio-button .left-side .checkbox:hover input ~ .checkmark {
              background-color: white; }
          .contact .wrap .form form .additional-elements .radio-button .right-side {
            font-family: "Verdana";
            font-weight: normal;
            font-size: 12px;
            line-height: normal;
            letter-spacing: 0em;
            color: #202020; }
        .contact .wrap .form form .additional-elements a {
          background: #28c7fa;
          width: 204px;
          height: 45px;
          border-radius: 5px;
          display: flex;
          justify-content: center;
          align-items: center;
          font-family: "Verdana";
          font-weight: normal;
          font-size: 14px;
          line-height: normal;
          letter-spacing: 0.05em;
          color: white;
          border: solid 1px #28c7fa;
          transition: 0.4s; }
        .contact .wrap .form form .additional-elements a:hover {
          background: none;
          border-color: #28c7fa;
          color: #28c7fa; }

/* ----------------------------------------
    BANNER
---------------------------------------- */
.banner {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 300px;
  margin-top: 80px;
  border-radius: 10px;
  overflow: hidden; }
  .banner .overlay {
    background: rgba(28, 185, 234, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .banner .overlay .special-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
      text-align: center; }
      .banner .overlay .special-content p {
        width: 100%; }
      .banner .overlay .special-content p:nth-of-type(1) {
        font-family: "Playfair Display";
        font-weight: 500;
        font-size: 36px;
        line-height: normal;
        letter-spacing: 0.03em;
        color: white; }
      .banner .overlay .special-content p:nth-of-type(2) {
        font-family: "Verdana";
        font-weight: normal;
        font-size: 15px;
        line-height: 24px;
        letter-spacing: 0em;
        color: white; }
      .banner .overlay .special-content a {
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 250px;
        height: 45px;
        margin-top: 30px;
        border-radius: 5px;
        font-family: "Verdana";
        font-weight: normal;
        font-size: 14px;
        line-height: normal;
        letter-spacing: 0.05em;
        color: #202020;
        transition: 0.4s;
        border: solid 1px white; }
      .banner .overlay .special-content a:hover {
        background: none;
        color: white;
        border-color: white; }

/* ----------------------------------------
    FOOTER
---------------------------------------- */
.footer {
  background-color: #202020;
  width: 100%;
  margin-top: 80px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px; }
  .footer .wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1110px;
    margin: auto;
    padding: 55px 0 20px 0; }
    .footer .wrap .col-1 {
      min-width: 340px;
      margin-right: 134px; }
      .footer .wrap .col-1 p:nth-of-type(1) {
        margin-bottom: 8px;
        font-family: "Verdana";
        font-weight: normal;
        font-size: 36px;
        line-height: normal;
        letter-spacing: 0.03em;
        color: white; }
      .footer .wrap .col-1 p:nth-of-type(2) {
        font-family: "Verdana";
        font-weight: normal;
        font-size: 11px;
        line-height: 20px;
        letter-spacing: 0em;
        color: rgba(255, 255, 255, 0.75); }
    .footer .wrap .col-2 {
      min-width: 35px;
      margin-right: 142px; }
      .footer .wrap .col-2 ul li {
        margin: 13px 0 13px 0; }
        .footer .wrap .col-2 ul li a {
          font-family: "Verdana";
          font-weight: normal;
          font-size: 12px;
          line-height: normal;
          letter-spacing: 0em;
          lin-height: 30px;
          color: rgba(255, 255, 255, 0.75); }
    .footer .wrap .col-3 {
      min-width: 125px;
      margin-right: 124px; }
      .footer .wrap .col-3 ul li {
        margin: 13px 0 13px 0; }
        .footer .wrap .col-3 ul li a {
          font-family: "Verdana";
          font-weight: normal;
          font-size: 12px;
          line-height: normal;
          letter-spacing: 0em;
          color: rgba(255, 255, 255, 0.75); }
    .footer .wrap .col-4 {
      width: 210px; }
      .footer .wrap .col-4 p:nth-of-type(1) {
        margin-bottom: 3px; }
        .footer .wrap .col-4 p:nth-of-type(1) a {
          font-family: "Playfair Display";
          font-weight: 500;
          font-size: 20px;
          line-height: normal;
          letter-spacing: 0.03em;
          line-height: 20px;
          color: white; }
      .footer .wrap .col-4 p:nth-of-type(2) {
        font-family: "Verdana";
        font-weight: normal;
        font-size: 12px;
        line-height: normal;
        letter-spacing: 0em;
        color: rgba(255, 255, 255, 0.75); }

/* ----------------------------------------
    COPYRIGHT
---------------------------------------- */
.copyright {
  background-color: #202020;
  width: 100%; }
  .copyright .wrap {
    max-width: 1110px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 20px 0 20px 0; }
    .copyright .wrap p:nth-of-type(1) {
      font-family: "Verdana";
      font-weight: normal;
      font-size: 11px;
      line-height: 20px;
      letter-spacing: 0em;
      color: rgba(255, 255, 255, 0.35); }
    .copyright .wrap p:nth-of-type(2) {
      font-family: "Verdana";
      font-weight: normal;
      font-size: 11px;
      line-height: normal;
      letter-spacing: 0em;
      color: rgba(255, 255, 255, 0.35); }
      .copyright .wrap p:nth-of-type(2) a {
        font-family: "Verdana";
        font-weight: bold;
        font-size: 11px;
        line-height: normal;
        letter-spacing: 0em;
        color: rgba(255, 255, 255, 0.35); }

/*# sourceMappingURL=style.css.map */
