{% load static %}
@font-face {
  font-family: "FS Siena";
  src: url("/static/fonts/FSSiena-Regular.woff2") format("woff2"),
    url("/static/fonts/FSSiena-Regular.woff") format("woff"),
    url("/static/fonts/FSSiena-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-family: "FS Siena", Regular;
  --color-black: #262626;
  --color-white: #ffffff;
  --color-light-grey: #f6f6f7;
  --color-light-blue: #d2e2f5;
  --color-dark-blue: #323269;
}

html,
body {
  width: 100%;
}

body,
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: "grayscale";
  font-family: var(--font-family);
  font-weight: normal;
  font-style: normal;
  scroll-behavior: smooth;
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 21px;
  line-height: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

b,
strong {
  font-weight: 700;
}

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

.navbar {
  height: 90px;
}

.txt-0 {
  font-family: var(--font-family);
  font-size: 44px;
  line-height: 60px;
}

.txt-0a {
  font-family: var(--font-family);
  font-size: 38px;
  line-height: 60px;
}

.txt-1 {
  font-family: var(--font-family);
  font-size: 32px;
  line-height: 38px;
}

.txt-1a {
  font-family: var(--font-family);
  font-size: 30px;
  line-height: 38px;
}

.txt-2 {
  font-family: var(--font-family);
  font-size: 24px;
  line-height: 32px;
}

.txt-3 {
  font-family: var(--font-family);
  font-size: 21px;
  line-height: 32px;
}

.txt-3 p {
  padding-bottom: 32px;
}

.txt-4 {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 28px;
}

.txt-4 p {
  padding-bottom: 15px;
}

.txt-5 {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 20px;
}

.txt-5 p {
  padding-bottom: 20px;
}

.txt-3 p:last-child,
.txt-4 p:last-child,
.txt-5 p:last-child {
  padding-bottom: 0px;
}

@media screen and (max-width: 640px) {
  .txt-0,
  .txt-0a {
    font-size: 32px;
    line-height: 40px;
  }

  .txt-1,
  .txt-1a {
    font-size: 24px;
    line-height: 30px;
  }

  body,
  .txt-2,
  .txt-3 {
    font-size: 16px;
    line-height: 24px;
  }

  .txt-3 p {
    padding-bottom: 24px;
  }

  .txt-4,
  .txt-5 {
    font-size: 14px;
    line-height: 20px;
  }

  .txt-4 p,
  .txt-5 p {
    padding-bottom: 20px;
  }
}

p a,
p .cta-link {
  color: var(--color-dark-blue);
  border-bottom: 2px solid var(--color-dark-blue);
  padding-bottom: 2px;
  display: inline-block;
  font-weight: 700;
}

.txt-head {
  padding-bottom: 32px;
}

.txt-hi {
  color: var(--color-dark-blue);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-lightgrey {
  background-color: var(--color-light-grey);
}

.bg-lightblue {
  background-color: var(--color-light-blue);
}

.bg-darkblue {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
}

.bg-darkblue .txt-hi {
  color: var(--color-white);
}

.bg-darkblue p a {
  color: var(--color-white);
  border-bottom-color: var(--color-white);
}

section,
footer {
  position: relative;
  padding: 80px 0px;
}

@media screen and (max-width: 1024px) {
  section,
  footer {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media screen and (max-width: 640px) {
  section,
  footer {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

section.to-top-section {
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: right;
}

section.header-section {
  padding-top: 260px;
  padding-bottom: 260px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  section.header-section {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}

@media screen and (max-width: 640px) {
  section.to-top-section {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  section.header-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

section.header-section img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-position: center right;
  pointer-events: none;
}

section .cont {
  z-index: 5;
}

.cont {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0px auto;
  padding: 0px 120px;
  z-index: 10;
}

@media screen and (max-width: 1024px) {
  .cont {
    padding-left: 48px;
    padding-right: 48px;
  }
  section.header-section img {
    object-fit: cover;
  }
  
}

@media screen and (max-width: 640px) {
  .cont {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 480px;
  }
}

.cont-inner {
  width: 75%;
  max-width: 960px;
}

@media screen and (max-width: 820px) {
  .cont-inner {
    width: 100%;
  }
}

.cols {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -40px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
}

.col {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
  width: 100%;
}

.col-1-3 {
  width: 33.33%;
}

.col-2-3 {
  width: 66.66%;
}

.col-1-4 {
  width: 25%;
}

.col-break {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .cols {
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -20px;
  }

  .col {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
  }

  .col-1-3,
  .col-2-3,
  .col-1-4 {
    width: 100%;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.col-image {
  aspect-ratio: 1.4;
  object-fit: cover;
}

.artian-logo {
  font-size: 0px;
  text-indent: -1000px;
  width: 150px;
  height: 50px;
  background-image: url("../images/logo.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 640px) {
  .artian-logo {
    width: 108px;
    height: 24px;
  }
}

header {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1200;
}

header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

header nav ul {
  display: flex;
  flex-direction: row;
  margin-left: -10px;
  margin-right: -10px;
}

header nav ul li a {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 640px) {
  header nav {
    padding-top: 20px;
    padding-bottom: 20px;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  header nav ul {
    align-self: stretch;
    justify-content: space-between;
  }

  header nav ul li a {
    text-align: center;
  }
}

.footer-logo {
  padding-bottom: 40px;
}

.footer-links li a {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
}

.footer-links ul {
  list-style: none;
}

@media screen and (max-width: 820px) {
  .footer-links li a {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  footer .cols .col.col-1-3 {
    width: 50%;
  }

  footer .cols .col.col-1-3:first-child {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  footer .cols .col.col-1-3 {
    width: 100%;
  }
}

.globe-image {
  position: absolute;
  left: 100%;
  width: 25%;
  height: auto;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

@media screen and (max-width: 820px) {
  .globe-image {
    display: none;
  }
}

.globe-image:before {
  content: " ";
  display: block;
  width: 200%;
  padding-bottom: 200%;
  background-image: url("../images/v702_278.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.globe-bottom .globe-image {
  top: 100%;
  transform: translate3d(-100%, -65%, 0);
}

.globe-top .globe-image {
  bottom: 100%;
  transform: translate3d(-100%, 35%, 0);
}

@media screen and (min-width:1200px){
.text-head{
  padding-bottom: 10px;
}
.box-slide{
  padding-top: 16px;
}
}

/*
 * CSS to fix image alignment from CKEditor
 * Add this to your main CSS file.
*/

/* Handles left-aligned images */
.image-style-align-left {
    float: left;
    margin-right: 1.5em; /* Adds space between image and text */
    margin-bottom: 1em;
}

/* Handles right-aligned images */
.image-style-align-right {
    float: right;
    margin-left: 1.5em; /* Adds space between image and text */
    margin-bottom: 1em;
}

/* A "clearfix" to ensure the container wraps around the floated images correctly */
#article-content .prose::after {
    content: "";
    display: table;
    clear: both;
}

#article-content ul,
#article-content ol,
#article-content menu {
  list-style-position: outside !important;
  padding-left: 1.25rem !important;
  margin-top: 0.6rem !important;
  margin-bottom: 0.6rem !important;
  list-style-type: revert !important;  /* restore browser default or CKEditor inline style */
}

/* nested lists indentation */
#article-content ul ul,
#article-content ol ol,
#article-content ul ol,
#article-content ol ul {
  margin-left: 1rem !important;
  padding-left: 0.5rem !important;
}