:root {
  --txtcolor: #fff;
  --overlaycolor: rgba(0, 0, 0, .5);
  --backgradient: linear-gradient(to right, #3a1c71, #d76d77, #ffaf7b);
  --backcolor: #333;
  /* social */
  --bgicon: #000;
  --bgfacebook: #3b5998;
  --bginstagram: #C13584;
  --bgtwitter: #1DA1F2;
  --bglinkedin: #2867B2;
  --bgyoutube: #FF0000;
  --bgemail: #37ab45;
}

* {
  box-sizing: border-box;
  font-family: 'Cabin', sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  height: 100%;
  font-family: 'Cabin', sans-serif;
  color: var(--txtcolor);
  position: relative;
  display: flex;
  background: #205aa0;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  transition: background-color .2s linear;
}

body * {
  z-index: 1;
}

h1 {
  font-size: 24px;
}

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

li a {
  text-decoration: none;
}

button:active, button:focus {
  outline: 0;
}

button {
  cursor: pointer;
  transition: .2s ease-in-out;
}

.hover_link {
  color: #fff;
  transition: color .1s ease-in;
}

.hover_link:hover {
  color: #c1c1c1;
}

/* overlay  */
.adkdemo_overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--overlaycolor);
  z-index: 0;
  opacity: 0;
  transition: opacity .2s linear;
}

/* container */
.adkdemo_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 0;
  gap: 100px;
  max-width: 1100px;
}

/* logo */
.adkdemo_logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  border-radius: 2px;
  transition: background-color .2s linear;
}

#adkdemo_changelogo {
  transition: .2s ease;
}

/* logo img */
.adkdemo_logo img {
  object-fit: contain;
  height: auto;
  min-height: 250px;
  max-height: 250px;
  width: 250px;
  max-width: 250px;
  border-radius: 5px;
  transition: background-color .2s linear, border-radius .2s ease-in-out;
  padding:10px;
}

/* background white */
.adkdemo_whiteback_on img {
  background-color: #fff;
}

/* background black */
.adkdemo_blackback_on img {
  background-color: #000;
}

/* circle style */
.adkdemo_circlelogo img {
  border-radius: 100%;
}

/* content */
.adkdemo_headline, .adkdemo_text {
  text-align: center;
}

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

/* split */
.adkdemo_split {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

.adkdemo_split.adkdemo_split_reverse {
  flex-direction: row-reverse;
}

/* contact infos */
.adkdemo_split.adkdemo_split_reverse .adkdemo_contactinfos {
  border-left: 2px solid #fff;
  padding-left: 30px;
  border-right: none;
  padding-right: 0px;
}

.adkdemo_nosplit .adkdemo_contactinfos {
  text-align: center;
}

.adkdemo_nosplit .adkdemo_contactinfos .adkdemo_cinfo_address {
  max-width: 100%;
}

.adkdemo_contactinfos li {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  margin: 5px 0;
  padding: 0 25px;
}

/* social */
.adkdemo_social ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.adkdemo_social ul li {
  margin: 0 5px 0 0;
}

.adkdemo_social ul li a i {
  background-color: var(--bgicon);
  border-radius: 50%;
  color: #fff;
  font-size: 21px;
  padding-top: 3px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adkdemo_social ul li a i {
  transition: .1s linear;
}

.adkdemo_social ul li.adkicon_facebook a:hover i {
  background-color: var(--bgfacebook);
}

.adkdemo_social ul li.adkicon_instagram a:hover i {
  background-color: var(--bginstagram);
}

.adkdemo_social ul li.adkicon_twitter a:hover i {
  background-color: var(--bgtwitter);
}

.adkdemo_social ul li.adkicon_linkedin a:hover i {
  background-color: var(--bglinkedin);
}

.adkdemo_social ul li.adkicon_youtube a:hover i {
  background-color: var(--bgyoutube);
}

.adkdemo_social ul li.adkicon_email a:hover i {
  background-color: var(--bgemail);
}

.adkdemo_flex {
  display: flex;
  flex-direction: row;
}

.adkdemo_alignboth_center {
  align-items: center;
  justify-content: center;
}

/* background video */
.adkdemo_handlevideo {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0;
  transition: opacity .2s linear;
  overflow: hidden;
}

.adkdemo_handlevideo video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* background embed */
#adkdemo_embedbackground iframe {
  opacity: 0;
  transition: opacity .3s ease;
}

/* background image */
.adkdemo_handleimage {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0;
  transition: opacity .2s linear;
}

/* fix address */
.adkdemo_cinfo_address {
  display: block;
  max-width: 450px;
}

/* custom video */
.adkdemo_customvideo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
  width: 100%;
  height: 100%;
  max-width: 500px;
}

.adkdemo_customvideo iframe {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 500px;
}

/* custom image */
.adkdemo_customimage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
  width: 100%;
  height: 100%;
  max-width: 485px;
}

.adkdemo_customimage img {
  height: auto;
  width: 100%;
  max-width: 485px;
  object-fit: cover;
}

/* custom document */
.adkdemo_customdocument {
  margin: 10px 0;
}

.adkdemo_customdocument i {
  margin: 0 5px 0 0;
}

.adkdemo_customdocument .adkdemo_documentlink {
  background-color: #fff;
  color: #000;
  text-decoration: none;
  text-align: center;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 17px;
  font-weight: 500;
  max-width: 250px;
  margin: auto;
  transition: background-color .2s linear;
  width: 200px;
}

.adkdemo_customdocument .adkdemo_documentlink:hover {
  background-color: #000;
  color: #fff;
}

/* description */
.adkdemo_content {
  max-width: 575px;
  margin: auto;
}

.adkdemo_desc {
  text-align: justify;
  text-align-last: center;
  margin: 10px 0;
  max-width: 485px;
}

/* back color */
.adkdemo_backcolor_on {
  background: var(--backcolor) !important;
}

/* back gradient */
body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity .3s;
  background: var(--backgradient);
  overflow: hidden;
}

body.adkdemo_backgradient_on::before {
  opacity: 1;
}

/* show & hide classes */
.show_it {
  opacity: 1;
}

.hide_it {
  opacity: 0;
}

.full_show {
  display: block;
}

.full_hide {
  display: none;
}