/* Elements */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

h3 {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.04875rem;
}

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

/* Classes */
.important {
  font-weight: bold;
}

/* Site structure styling */
/* I. Header and top nav */
.mobile-nav {
  display: none;
  background-color: white;
  font-family: "Open Sans", sans-serif;
  color: #595959;
  min-height: 3.5rem;
  height: auto;
  padding: 0.75rem 0;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  line-height: inherit;
  letter-spacing: 0.0625rem;
}
.mobile-nav .bars {
  height: 2rem;
  margin: 0 auto;
  width: 6rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.mobile-nav .bars p {
  padding-left: 0.5rem;
}
.mobile-nav .top-menu {
  display: none;
  flex-flow: column nowrap;
  align-items: center;
  margin-top: 1rem;
  width: 100%;
}
.mobile-nav .top-menu > * {
  padding: 0.4375rem 0 0.375rem;
}
.mobile-nav .top-menu .current {
  color: #ff513d;
}
.mobile-nav .top-menu .top {
  width: 100%;
  text-align: center;
}
.mobile-nav .top-menu .top-dropdown {
  text-align: center;
  cursor: pointer;
  width: 100%;
}
.mobile-nav .top-menu .top-dropdown .top-dropdown-content {
  padding: 0 0 0.375rem;
  margin-top: 0.4375rem;
  display: none;
  flex-flow: column nowrap;
  background-color: #f7f7f7;
  width: 100%;
}
.mobile-nav .top-menu .top-dropdown .top-dropdown-content .top-link {
  padding: 0.4375rem 0 0.375rem;
}

header {
  width: 100%;
  height: 20rem;
  background-image: url(../images/Cloud+banner.png);
  background-position: bottom;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
header .logo-wrapper {
  width: auto;
  max-width: 71.25rem;
  margin-left: 2rem;
  margin-top: 3rem;
}
header .logo-wrapper a .header-logo {
  max-height: 16.75rem;
  max-width: 71.25rem;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
}
header .logo-wrapper a .header-logo img {
  height: 8rem;
  margin-bottom: 1.5rem;
}
header .logo-wrapper a .header-logo p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.125rem;
  font-style: default;
  font-weight: 300;
  text-transform: uppercase;
  line-height: inherit;
  letter-spacing: 0.240625rem;
  color: #427ec2;
}
header .horizontal-nav {
  width: 100%;
  min-height: 3.25rem;
  background-color: white;
  font-family: "Open Sans", sans-serif;
  color: #595959;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  line-height: inherit;
  letter-spacing: 0.0625rem;
}
header .horizontal-nav .horizontal-menu-wrapper {
  display: block;
  width: auto;
  max-width: 71.25rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
header .horizontal-nav .horizontal-menu-wrapper .horizontal-menu {
  width: 100%;
  margin: 0 0 0 -0.3125rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
header .horizontal-nav .horizontal-menu-wrapper .horizontal-menu #current-link-horizontal {
  color: #ff513d;
}
header .horizontal-nav .horizontal-menu-wrapper .horizontal-menu #current-link-horizontal:hover {
  color: #ff513d;
}
header .horizontal-nav .horizontal-menu-wrapper .horizontal-menu .article + .article::before {
  padding: 0.375rem;
  color: #e6e6e6;
  content: "/";
}
header .horizontal-nav .horizontal-menu-wrapper .horizontal-menu .link {
  padding: 0.375rem 0;
}
header .horizontal-nav .horizontal-menu-wrapper .horizontal-menu .link:hover {
  color: #2fc1e9;
}
header .horizontal-nav .horizontal-menu-wrapper .horizontal-menu .dropdown:hover .dropdown-content {
  display: block;
  z-index: 5;
}
header .horizontal-nav .horizontal-menu-wrapper .horizontal-menu .dropdown:hover .dropdown-content .link {
  color: #595959;
}
header .horizontal-nav .horizontal-menu-wrapper .horizontal-menu .dropdown:hover .dropdown-content .link:hover {
  color: #2fc1e9;
}
header .horizontal-nav .horizontal-menu-wrapper .horizontal-menu .dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  border: 0.0625rem solid #f2f2f2;
  padding: 0.375rem 0.75rem;
  margin-top: 0.375rem;
}

/* II. Main section */
main {
  width: auto;
  max-width: 71.25rem;
  margin: 0 auto;
  color: #121212;
  display: flex;
  flex-flow: row nowrap;
}
main .sidebar {
  font-family: "Open Sans", sans-serif;
  width: 15.25rem;
  padding: 0 1.0625rem;
  flex-shrink: 0;
}
main .sidebar h3 {
  padding-bottom: 0.33em;
  margin-bottom: 0.33em;
  border-bottom: 0.0625rem solid #e6e6e6;
}
main .sidebar .sidebar-list {
  display: flex;
  flex-flow: column nowrap;
  height: auto;
  margin-top: 1em;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.8;
  letter-spacing: 0em;
}
main .sidebar .sidebar-list .sidelink:hover {
  color: #595959;
}
main .sidebar .sidebar-list .complex:hover {
  color: inherit;
}
main .sidebar .sidebar-list .complex p {
  color: #787878;
}
main .sidebar .sidebar-list .complex .complex-content {
  text-transform: none;
  list-style: inside;
  list-style-type: "- ";
  font-style: italic;
}
main .sidebar .sidebar-list .complex .complex-content a:hover {
  color: #595959;
}
main .main-body {
  flex-grow: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-style: inherit;
  font-weight: 400;
  text-transform: none;
  line-height: 1;
  letter-spacing: 0em;
}
main .main-body > * {
  padding: 0 1.0625rem;
  width: auto;
}
main .main-body .search {
  padding-bottom: 0.75rem;
}
main .main-body .search .search-window {
  background-image: url(../images/icon-searchqueries-20-dark.png);
  background-repeat: no-repeat;
  background-position: 0.9375rem 50%;
  border: 0.0625rem solid #ababab;
  padding: 0.75rem 0.75rem 0.75rem 2.8125rem;
  box-sizing: border-box;
  width: 100%;
  font-family: inherit;
  opacity: 0.7;
}
main .main-body .info {
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
  color: #787878;
}
main .main-body .info a {
  font-weight: bold;
  color: #121212;
}
main .main-body .title {
  font-family: "Open Sans", sans-serif;
  color: #121212;
  padding-top: 1rem;
  padding-bottom: 0.75rem;
}
main .main-body .main-content {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
main .main-body .main-content .download {
  width: 10rem;
  height: 18rem;
  margin: 2rem 2rem 2rem 0;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #e6e6e6;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  text-transform: capitalize;
  text-align: center;
}
main .main-body .main-content .download a img {
  width: 10rem;
  height: 15rem;
}
main .main-body .main-content .download a:hover {
  opacity: 0.7;
}
main .main-body .main-content .multiple {
  cursor: pointer;
}
main .main-body .main-content .multiple:hover img {
  width: 0;
  height: 0;
}
main .main-body .main-content .multiple:hover .multiple-links {
  display: block;
}
main .main-body .main-content .multiple img {
  width: 10rem;
  height: 15rem;
}
main .main-body .main-content .multiple p {
  color: #787878;
}
main .main-body .main-content .multiple p i {
  display: none;
}
main .main-body .main-content .multiple .multiple-links {
  display: none;
  margin-top: 1rem;
  background-color: white;
  opacity: 1;
  z-index: 5;
  padding-bottom: 10rem;
}
main .main-body .main-content .multiple .multiple-links li {
  padding-bottom: 1rem;
  padding-top: 0.5rem;
  padding: 0.5rem 0.5rem 1rem;
  border: 0.0625rem solid #e6e6e6;
}
main .main-body .main-content .multiple .multiple-links li a {
  text-transform: none;
  color: #121212;
  padding-bottom: 0.5rem;
}
main .main-body .main-content .multiple .multiple-links li img {
  width: 9rem;
  height: 14rem;
}

/* III. Footer */
footer {
  border-top: 0.0625rem solid #e6e6e6;
  padding: 1.5rem 0;
}
footer p {
  font-family: "Open Sans", sans-serif;
  color: #787878;
  padding-bottom: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  line-height: 1.8;
  letter-spacing: inherit;
}

/* IV. Media queries */
@media only screen and (max-width: 700px) {
  main {
    display: flex;
    flex-flow: column-reverse nowrap;
  }
  main .sidebar {
    width: 100%;
  }
  main .main-body .main-content {
    justify-content: space-around;
  }

  footer {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 650px) {
  .mobile-nav {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
  }

  header {
    height: 11rem;
    justify-content: center;
    align-items: center;
  }
  header .logo-wrapper {
    margin: 0;
  }
  header .logo-wrapper a .header-logo p {
    display: none;
  }
  header .logo-wrapper a .header-logo img {
    margin-bottom: 0;
  }

  .horizontal-nav {
    display: none;
  }

  main {
    margin-top: 2rem;
  }
  main .main-body .main-content .multiple p i {
    display: inline;
  }
  main .main-body .main-content .multiple:hover img {
    width: 10rem;
    height: 15rem;
  }
  main .main-body .main-content .multiple:hover .multiple-links {
    display: none;
  }
}

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