@import url('source-sans.css');

html {
  font-size: 62.5%;
}
body {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #261d0f;
  background: #fff;
  min-height: 100vh;
}
h1,
h2,
h3 {
  font-family: inherit;
}
h2 {
  color: #4d6eb5;/* sat 99*/
  color: #6176a0;/* sat 60*/
}

/* GENARAL STYLES */
/* Header styling */
#service {
  height: 0;
  margin: 0;
  padding: 0;
}

#switchbar {
  position: relative;
  background: #eee;
  font-size: 2.2rem;
  font-weight: 400;
}
@media (min-width: 720px) {
  #switchbar {
    font-size: 1.6rem;
  }
}

a.logo-header {
  display: block;
  float: left;
  margin: 10px 0;
}
a.logo-header img {
  width: auto;
  height: 40px;
}
@media (min-width: 720px) {
  a.logo-header img {
    height: 60px;
  }
}

/* NAV BAR */
/* Nav button */
.navbar__toggle {
  float: right;
  margin: 24px 0 0 0;
  position: relative;
  background-color: transparent;
  width: 20px;
  height: 16px;
  cursor: pointer;
  z-index: 1;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  outline: none;
  transition: all 0.3s ease-in-out 0s;
}
.navbar__toggle span {
  display: block;
  position: absolute;
  left: 0px;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all 0.25s ease 0.1s;
  transform-origin: center center;
}
.navbar__toggle span:first-child {
  top: 0px;
}
.navbar__toggle span:nth-child(2) {
  bottom: 0;
}
.navbar__toggle span:nth-child(3) {
  top: 7px;
}
.navbar__toggle:hover {
  background-color: transparent;
}
/* active state */
.navbar__toggle.menu-active span:first-child,
.navbar__toggle.menu-active span:nth-child(3) {
  top: 9px;
}
.navbar__toggle.menu-active span:first-child {
  transform: rotate(45deg);
}
.navbar__toggle.menu-active span:nth-child(2) {
  width: 0px;
  opacity: 0;
}
.navbar__toggle.menu-active span:nth-child(3) {
  transform: rotate(-45deg);
}

@media (min-width: 720px) {
  .navbar__toggle {
    display: none;
  }
}

/* Block page scroll when menu is active */
body.menu-active {
  position: fixed;
  width: 100%;
}
@media (min-width: 720px) {
  body.menu-active {
    position: relative;
  }
}

/* wrapper of links */
.nav_wrapper {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  display: flex;
  top: 68px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
  background-color: #4d6eb5;
  transition: all 0.2s ease-in-out 0s;
}

.nav_wrapper.menu-active {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 720px) {
  .nav_wrapper {
    visibility: visible;
    opacity: 1;
    position: relative;
    display: block;
    top: 0;
    overflow-y: visible;
    background-color: transparent;
  }
}

/* NAV BAR styling mobile */
ul#nav-main {
  margin: 40px 0 40px 40px;
  padding: 0;
  list-style: none;
  text-indent: 0;
}

#switchbar ul li a {
  color: #fff;
}
#switchbar ul li a:hover {
  color: #474747;
}
#switchbar ul li a.active,
#switchbar ul li a.active:hover {
  font-weight: 700;
  color: #f26639;
}

ul#nav-main li {
  display: block;
  margin-left: 0;
}
ul#nav-main > li:last-of-type {
  padding-bottom: 40px;
}

ul#nav-main a {
  display: inline-block;
  padding: 3px 15px;
  text-decoration: none;
}
ul#nav-main > li > a {
}
/* the submenus, with class .conference */
#switchbar .conference ul {
  position: relative;
  top: 0;
  left: 0;
  background-color: transparent;
}
@media (max-width: 720px) {
  #switchbar .conference ul {
    display: block !important;
  }
}
#switchbar .conference li {
  background: transparent;
}
#switchbar .conference li > a {
  color: #474747;
}
li.conference > a {
  background-image: none;
}
#switchbar .conference li a:hover {
  color: #474747;
}

/* NAV BAR styling desktop */
@media (min-width: 720px) {
  ul#nav-main {
    float: right;
    margin: 27px 0 0;
  }
  ul#nav-main li {
    display: inline;
  }
  ul#nav-main > li:last-of-type {
    padding-bottom: 0;
  }

  #switchbar ul li a {
    color: #474747;
  }
  #switchbar ul li a:hover {
    color: #f26639;
  }
  #switchbar .conference ul {
    position: absolute;
    top: 22px;
  }

  #switchbar .conference li {
    background: #4a4a4a;
  }
  #switchbar .conference li a {
    color: #fff;
  }
  #switchbar .conference li:hover {
    background-color: #4d6eb5;
  }
}

/* Inputs */
input,
textarea,
select {
  padding: 5px;
  background-color: #fff;
  border-color: #4d6eb5;
}

.button,
button {
  padding: 5px;
  vertical-align: top;
  border: none;
  background: #4d6eb5;
  color: #fff;
}
.button:hover,
button:hover {
  background-color: #f26639;
}
#q{
	width: 190px;
}
/* HOMEPAGE */
#dxf .navigation a {
  padding: 7px 20px 8px 180px;
}
@media (max-width: 880px) {
  #dxf .navigation a {
    padding: 7px 8px 8px 8px;
  }
}
.navigation span {
  font-size: 14px;
}

/* FOOTER */
.icon {
  background-size: inherit;
}

.borderline {
 border-left:8px solid #5ad2d2;
 padding-left:12px;
 margin-left:-20px;
 color: #429696;
}

section.intro {
 font-size:1.6rem;
 margin-top:1.5rem;
 margin-bottom:2rem;
 color:#429696;
 height: auto;
}
