@import url('https://fonts.googleapis.com/css2?family=Asap&family=PT+Sans&display=swap');

/*------------------------------------------------*/
/*-----------------[RESET]------------------------*/
/*------------------------------------------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ol,
ul {
  list-style: none;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/*------------------------------------------------*/
/*-----------------[BASIC STYLES]-----------------*/
/*------------------------------------------------*/

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  background-color: #15191f;
  color: #767676;
  font-family: 'PT Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: #00b7f3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #444;
  font-family: 'Asap', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: normal;
  letter-spacing: -0.03125rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #111;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  margin-bottom: 16px;
}

strong {
  font-weight: bold;
  color: #1c1c1c;
}

em {
  font-style: italic;
}

img {
  max-width: 100%;
}

.container {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  max-width: 960px;
}

@media screen and (min-width: 980px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.button {
  border-radius: 8px;
  display: inline-block;
  line-height: 1;
  padding: 8px 12px;
}

.button:hover,
.button:focus {
  text-decoration: none;
}

.button--light {
  background: linear-gradient(#fff, #efefef);
  border: 1px solid #cfcece;
  color: #000;
}

.button--light:hover,
.button--light:focus {
  border-color: #999;
}

.button--dark {
  background: linear-gradient(#3b434b, #1f262d);
  border: 1px solid #000;
  color: #fff;
}

.button--dark:hover,
.button--focus:focus {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button--large {
  font-size: 21px;
  padding: 12px 16px;
}

.float {
  margin-bottom: 24px;
}

@media screen and (min-width: 600px) {
  .float--left {
    float: left;
    margin-right: 24px;
  }
}

@media screen and (min-width: 600px) {
  .float--right {
    float: right;
    margin-left: 24px;
  }
}

.tick-list li {
  background-image: url(/img/tick.png);
  background-position: left 6px;
  background-repeat: no-repeat;
  list-style: none;
  margin: 8px 0;
  padding-left: 28px;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/*------------------------------------------------*/
/*---------------[MAIN LAYOUT INFO]---------------*/
/*------------------------------------------------*/

.header {
  background: radial-gradient(at top, #303b45, #10161d 50%);
  overflow: hidden;
}

.header__top {
  padding-bottom: 36px;
  padding-top: 36px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .header__top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-bottom: 36px;
    padding-top: 64px;
  }
}

.header__tel {
  color: #ddd;
  font-family: 'Asap', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 21px;
  align-items: center;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 480px) {
  .header__tel {
    font-size: 32px;
  }
}

@media screen and (min-width: 768px) {
  .header__tel {
    margin-top: -20px;
  }
}

.header__tel-icon {
  flex-shrink: 0;
  height: 20px;
  margin-right: 12px;
  width: 20px;
}

@media screen and (min-width: 480px) {
  .header__tel-icon {
    height: 24px;
    width: 24px;
  }
}

.header__tel-text {
  line-height: 1;
  margin-bottom: 0;
}

.header__heading {
  font-size: 30px;
  color: #ffffff;
  line-height: 1;
  padding-top: 60px;
  padding-bottom: 24px;
}

.nav {
  align-items: center;
  background: linear-gradient(#4f5861, #323b44);
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  padding: 8px 12px;
}

@media screen and (min-width: 480px) {
  .nav {
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 600px) {
  .nav {
    font-size: 16px;
    padding: 8px 24px;
  }
}

.nav li {
  width: 33.33333%;
}

@media screen and (min-width: 480px) {
  .nav li {
    width: auto;
  }
}

.nav a {
  color: #ffffff;
  display: block;
  padding: 8px;
  text-decoration: none;
}

@media screen and (min-width: 960px) {
  .nav a {
    padding: 12px;
  }
}

.nav a:hover,
.nav a:focus {
  color: #8d96a0;
}

.hero-slider-wrapper {
  margin: 64px 0;
}

@media screen and (min-width: 768px) {
  .hero-slider-wrapper {
    margin: 100px 0;
  }
}

.hero-slider-wrapper .slick-list {
  overflow: visible;
}

.hero-slider__item {
  position: relative;
}

.hero-slider .slick-active:not(.slick-current) {
  cursor: pointer;
  position: relative;
}

.hero-slider .slick-active:not(.slick-current):hover::after {
  background-color: rgba(255, 255, 255, 0.25);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.hero-slider .slick-current.slick-center {
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.5);
  transform: scale(1.25);
  transition: transform 0.3s;
  z-index: 2;
}

.hero-slider__image {
  width: 100%;
}

.image-slider-wrapper {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 8px 16px 4px rgba(0, 0, 0, 0.15);
  margin: 48px auto 0;
  padding: 8px;
  max-width: 600px;
}

.main {
  background-color: #fff;
  background-image: url(/img/content-bg.png);
  border-top: 1px solid #ffffff;
  box-shadow: inset 0 12px 12px 0 rgba(0, 0, 0, 0.15);
  padding-bottom: 40px;
  padding-top: 40px;
}

@media screen and (min-width: 960px) {
  .main {
    padding-bottom: 72px;
    padding-top: 72px;
  }
}

@media screen and (min-width: 960px) {
  .main__container {
    display: flex;
  }
}

.content {
  padding-bottom: 40px;
}

@media screen and (min-width: 960px) {
  .content {
    padding-right: 60px;
    width: 70%;
  }
}

.content--full-width {
  width: 100%;
}

.content ul {
  list-style-type: disc;
  margin-bottom: 16px;
  padding-left: 20px;
}

.content ol {
  list-style-type: decimal;
  list-style-position: inside;
  padding: 10px 0px 10px 2px;
}

.content .tick-list {
  padding-left: 0;
}

.content .tick-list .subheading {
  margin-bottom: 0;
}

.content .tick-list li {
  background-position: left 12px;
}

.content .contact-list {
  font-size: 21px;
  list-style: none;
  padding: 0;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -16px 48px;
}

.service {
  margin-bottom: 24px;
  max-width: 320px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  width: 100%;
}

.service__heading {
  color: #1f262d;
  font-size: 24px;
  margin-bottom: 8px;
}

.callout {
  background: linear-gradient(#fff, #f4f4f4);
  border-bottom: 1px solid #d8d8d8;
  border-top: 1px solid #d8d8d8;
  margin-bottom: 84px;
  text-align: center;
}

.callout__container {
  padding-bottom: 44px;
  padding-top: 44px;
}

.callout__icon {
  background: url(/img/callout-icon.png) no-repeat;
  display: block;
  height: 28px;
  left: 50%;
  margin-left: -14px;
  position: absolute;
  top: -14px;
  width: 28px;
}

.callout__heading {
  font-size: 32px;
}

.callout__text {
  font-size: 21px;
}

.callout__button {
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}

.gallery {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 960px) {
  .gallery {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }
}

.gallery__item {
  display: block;
  padding: 0.75rem;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 400px) {
  .gallery__item {
    width: 50%;
  }
}

@media screen and (min-width: 600px) {
  .gallery__item {
    width: 33.33333%;
  }
}

@media screen and (min-width: 768px) {
  .gallery__item {
    width: 25%;
  }
}

.gallery__link {
  border: 1px solid #ddd;
  display: block;
  padding: 0.5rem;
}

.gallery__link:hover,
.gallery__link:focus {
  border-color: #1f262d;
}

.gallery__image {
  display: block;
  height: auto;
  width: 100%;
}

.subheading {
  font-size: 24px;
  margin-bottom: 12px;
}

/*------------------------------------------------*/
/*---------------------[FOOTER]-------------------*/
/*------------------------------------------------*/

.footer {
  background: radial-gradient(at top, #303b45, #10161d 50%);
  padding: 48px 0;
  text-align: center;
}

.copyright {
  color: #8b949d;
  font-size: 14px;
  margin-bottom: 0;
}

.copyright__link {
  color: #ffffff;
  display: inline-block;
}

/* Old crap to sort */

#footer-widgets {
  padding-top: 55px;
}

.footer-widget {
  width: 260px;
  margin-right: 90px;
  float: left;
  margin-bottom: 40px;
}

.footer-widget {
  line-height: 21px;
  color: #8b949d;
}

.footer-widget a {
  color: #8b949d;
}

.footer-widget a:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-widget ul {
  margin-bottom: 8px;
}

.footer-widget ul ul {
  margin-bottom: 0;
}

.footer-widget ul li {
  background: url(/img/footer-bullet.png) no-repeat 0 8px;
  padding: 0px 0 10px 18px;
}

.footer-widget ul li ul {
  margin: 0 0 -3px;
  padding: 5px 0 0 7px;
}

#footer-bottom {
  clear: both;
  padding-bottom: 16px;
  padding-top: 26px;
  background: url(/img/footer-bottom-bg.png) repeat-x;
}

/*------------------------------------------------*/
/*--------------------[SIDEBAR]-------------------*/
/*------------------------------------------------*/

.sidebar {
  padding-bottom: 40px;
}

@media screen and (min-width: 960px) {
  .sidebar {
    width: 30%;
  }
}

.sidebar__section {
  margin-bottom: 32px;
}

.sidebar__heading {
  font-size: 24px;
  margin-bottom: 12px;
}

.sidebar__content {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
}
