/* ******************************** */
/* HTML RESET */
/* ******************************** */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: 'Barlow', sans-serif;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}



/* ******************************** */
/* Global Classes */
/* ******************************** */

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 1.5rem;
}

@media screen and (min-width:992px){
   .container {
      padding: 0 2rem;
   }
}

.grey-bg {
   background-color: #F9F9F9;
}

.dark-bg {
   background-color: #1B1D27;
}

.btn {
   padding: .5rem 1rem;
   color: #000;
   cursor: pointer;
   display: inline-block;
   transition: .25s;
   border: none;
   background-color: transparent;
   text-align: center;
}

.btn.blue {
   background-color: #00BEFF;
   text-decoration: none;
}

.btn.secondary {
   border: 2px solid #00BEFF;
   text-decoration: none;
   background-color: transparent;
}

.btn.secondary:hover {
   border: 2px solid #000;
   background-color: #000;
   color: #fff;
}

.shadow {
   box-shadow: 0px 10px 8px rgba(0,0,0,0.10);
   -webkit-box-shadow: 0px 10px 8px rgba(0,0,0,0.10);
}

.shadow-top {
   box-shadow: 0px -10px 8px rgba(0,0,0,0.10);
   -webkit-box-shadow: 0px -10px 8px rgba(0,0,0,0.10);
}

.shadow-l {
   box-shadow: 0px 5px 10px rgba(0,0,0,0.15);
   -webkit-box-shadow: 0px 5px 10px rgba(0,0,0,0.15);
}

h1 {
   font-size: 78px;
}

h2 {
   font-size: 50px;
   font-weight: 500;
}

/* ******************************** */
/* Header */
/* ******************************** */

header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   padding: 1.5rem 1rem;
   z-index: 999;
   transition: .25s;
}

header.scrolled {
   background-color: #fff;
   box-shadow: 0px 5px 5px rgba(0,0,0,0.05);
   -webkit-box-shadow: 0px 5px 5px rgba(0,0,0,0.05);
}

header img {
   max-width: 200px;
}

header .desk-logo {
   display: none;
}

header .mob-logo {
   width: 130px;
}

@media screen and (min-width:768px){
   header {
      padding: 1.5rem 3rem;
   }

   header .desk-logo {
      display: block;
   }

   header .mob-logo {
      display: none;
   }
   
}


/* ******************************** */
/* Banner */
/* ******************************** */

#banner {
   padding: 7.5rem 0 5rem 0;
   min-height: 90vh;
   display: flex;
   position: relative;
   overflow: hidden;
   z-index: 5;
}

#banner > .container {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
}

#banner .left-col, #banner .right-col {
   width: 100%;
}

#banner .content-wrap a {
   color: #000;
   text-decoration: none;
   display: flex;
   align-items: center;
   font-size: 18px;
   display: inline-block;
   margin-top: 3rem;
}

#banner .content-wrap a svg {
   margin-left: 1rem;
   height: 15px;
   width: auto;
}

#banner .content-wrap a svg path {
   fill: #00BEFF;
}

#banner .eclipse {
   position: absolute;
   bottom: 60%;
   left: 0;
   width: 100%;
   z-index: -1;
}

#banner .content-wrap h1 {
   font-size: 50px;
   margin-bottom: 1rem;
}


#banner .content-wrap p {
   font-size: 20px;
   font-weight: 300;
}

#banner .right-col img {
   margin: 3rem auto 0 auto;
}


@media screen and (min-width:768px){
   #banner .eclipse {
      position: absolute;
      bottom: 60%;
      left: 0;
      width: 70%;
      z-index: -1;
   }

   #banner .content-wrap p {
      font-size: 28px;
      font-weight: 300;
   }

   #banner .content-wrap h1 {
      font-size: 78px;
      margin-bottom: 1rem;
   }

   #banner .right-col img {
      max-width: 500px;
      margin: 0 auto;
   }
   
}

@media screen and (min-width:992px){
   #banner > .container {
      flex-wrap: nowrap;
   }

   #banner .left-col, #banner .right-col {
      width: 50%;
   }

   #banner .left-col {
      padding-right: 3rem;
   }

   #banner .eclipse {
      position: absolute;
      top: -20%;
      bottom: initial;
      left: 0;
      width: 35%;
      z-index: -1;
   }
}

/* ******************************** */
/* Intro */
/* ******************************** */

#intro {
   position: relative;
   padding: 5rem 0;
   z-index: 0;
}

#intro > .container {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
}

#intro h2 {
   width: 100%;
   text-align: center;
   margin-bottom: 3rem;
   font-size: 38px;
}

#intro .left-col {
   text-align: center;
   padding: 3rem 1.5rem;
   position: relative;
   font-size: 28px;
   font-weight: 300;
   margin-bottom: 3rem;
}

#intro .left-col img {
   position: absolute;
   z-index: -1;
   width: 60%;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   max-width: 300px;
}

@media screen and (min-width:768px){
   #intro h2 {
      font-size: 50px;
   }

   #intro {
      padding: 5rem 0;
   }

   #intro .left-col {
      padding: 3rem;
      margin-bottom: 0;
   }

   #intro .left-col img {
      width: 30%;
   }
}

@media screen and (min-width:992px){

   #intro .left-col img {
      width: 40%;
   }
   
   #intro > .container {
      flex-wrap: nowrap;
   }

   #intro .left-col, #intro .right-col {
      width: 50%;
   }
   
}

/* ******************************** */
/* Categories */
/* ******************************** */

#categories {
   padding: 5rem 0;
   text-align: center;
   position: relative;
   color: #fff;
   margin-bottom: 3rem;
}

#categories > .container h2 {
   font-size: 30px;
   font-weight: 500;
   margin-bottom: 1rem;
}

#categories > .container h3 {
   font-size: 28px;
   font-weight: 300;
   margin-bottom: 3rem;
}

#categories .category-select {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
}

#categories .category-select .category-item {
   padding: .5rem;
   transition: .25s;
   opacity: .5;
   border-bottom: 1px solid #fff;
   margin: .5rem;
   cursor: pointer;
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   width: 120px;
}

#categories .category-select .category-item .overlay {
   /* opacity: 0;
   position:absolute;
   height: 50%;
   width: 100%;
   bottom: 0;
   z-index: -1;
   background: rgb(0,190,255);
   background: linear-gradient(0deg, rgba(0,190,255,1) 0%, rgba(245,245,245,0) 76%); */
}

#categories .category-select .category-item.active {
   border: none;
   opacity: 1;
   border-bottom: 1px solid rgb(0,190,255);

}

#categories .category-select .category-item.active .overlay {
   /* opacity: 1; */
}

#categories .category-select .category-item:hover {
   opacity: 1;
}

#categories .category-select .category-item h4 {
   padding: .5rem;
   color: #fff;
   font-size: 14px;
   font-weight: 400;
}

#categories .category-container {
   display: flex;
   justify-content: center;
   align-items: stretch;
   flex-wrap: wrap;
   margin: -.5rem;
   padding: 2.5rem 0;
}

#categories .category-container .category-result {
   width: 150px;
   margin: .5rem;
   text-align: left;
   display: none;
}

#categories .category-container .category-result.active {
   display: block;
}

#categories .category-container .category-result .category-result-inner {
   background-color: #0f3649;
   height: 100%;
   padding: .5rem 1rem;
   border-radius: 5px;
   box-shadow: 0px 5px 10px rgba(0,0,0,0.15);
   -webkit-box-shadow: 0px 5px 10px rgba(0,0,0,0.15);
}

#categories .category-container .category-result .category-result-inner h4 {
   font-size: 12px;
   opacity: .5;
   font-weight: 500;
   margin-bottom: .1rem;
}

#categories .category-container .category-result .category-result-inner p {
   font-size: 16px;
   font-weight: 300;
}

@media screen and (min-width:768px){
   #categories > .container h2 {
      font-size: 38px;
   }

   #categories .category-select .category-item {
      width: 150px;
   }
   
   #categories .category-container .category-result {
      width: 200px;
   }

   #categories .category-select .category-item h4 {
      font-size: 16px;
   }
}

@media screen and (min-width:992px){
}

/* ******************************** */
/* Info Pack */
/* ******************************** */

#info-pack {
   margin-bottom: 3rem;
}

#info-pack .container h2 {
   text-align: center;
   margin-bottom: 2rem;
   font-size: 38px;
}

#info-pack .container .info-pack-wrap {
   display: flex;
   flex-wrap: wrap;
   align-items: stretch;
   margin: -1rem;
}

#info-pack .container .info-pack-wrap .info-pack-item {
   width: 100%;
   padding: 1rem;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner {
   padding: 1.5rem;
   display: block;
   cursor: pointer;
   transition: .25s;
   position: relative;
   height: 100%;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner > div {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   position: relative;
   z-index: 1;
   height: 100%;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner .content-wrap {
   /* margin-bottom: 1rem; */
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner > img {
   position: absolute;
   bottom: -1.25rem;
   left: -1.25rem;
   width: 100%;
   z-index: 0;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner:hover {
   background-color:#00BEFF;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner:hover ul li::before{
   background-color:#fff;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner:hover .logo-item svg path{
   fill:#fff;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner:hover .btn{
   background-color: #000;
   border: 2px solid #000;
   color: #fff;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner h3 { 
   font-size: 22px;
   font-weight: 500;
   margin-bottom: 1rem;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner ul {
   list-style: none;
   margin-left: 20px;
   padding-left: 10px;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner ul li {
   position: relative;
   margin-bottom: 1rem;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner ul li::before {
   content: '';
   position: absolute;
   top: 50%;
   left: -20px;
   transform: translate(-50%, -50%);
   height: 8px;
   width: 8px;
   background-color: #00BEFF;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner .logo-item {
   display: flex;
   margin-bottom: 1rem;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner .logo-item svg {
   height: 15px;
   width: 15px;
   margin-top: .25rem;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner .logo-item svg path {
   fill: #00BEFF;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner .logo-item p {
   padding-left: 1rem;
}

#info-pack .container .info-pack-wrap .info-pack-item .info-pack-item-inner .btn-wrap {
   margin-top: 2rem;
   width: 100%;
   text-align: center;
}

@media screen and (min-width:768px){
   #info-pack .container h2 {
      font-size: 50px;
   }
   #info-pack .container .info-pack-wrap .info-pack-item {
      width: 50%;
   }
}

@media screen and (min-width:992px){
   #info-pack .container .info-pack-wrap .info-pack-item {
      width: 33%;
   }
}

/* ******************************** */
/* Our Technologies */
/* ******************************** */

#our-technologies {
   padding: 2.5rem 0 5rem 0;
   position: relative;
   z-index: 5;
}

#our-technologies h2 {
   margin-bottom: 2rem;
   font-size: 50px;
}

#our-technologies .tech-slider .tech-slide-item {
   display: flex;
   flex-direction: column;
   margin: 0 .25rem;
}

#our-technologies .tech-slider .logo-wrap {
   padding: 1rem;
   display: flex;
   justify-content: center;
   align-items: center;
}

#our-technologies .tech-slider .logo-wrap img {
   max-width: 125px;
}

#our-technologies .tech-slider .logo-wrap.dark {
   background-color: #4a4d50;
}

#our-technologies .tech-slider .logo-wrap.grey {
   background-color: #f5f5f5;
}

@media screen and (min-width:768px){
   #our-technologies h2 {
   }
}

@media screen and (max-width:992px){
   #our-technologies .tech-slider {
      display: flex;
      flex-wrap: wrap;
   }
   #our-technologies .tech-slider .tech-slide-item {
      margin: 0;
      width: 33%;
   }
}

/* ******************************** */
/* Testimonial */
/* ******************************** */

#testimonial {
   padding: 5rem 0;
}

#testimonial h2 {
   text-align: center;
   font-size: 38px;
}

#testimonial .testimnonial-slider {
   padding: 2.5rem 0;
   max-width: 800px;
   margin: 0 auto;
}

#testimonial .testimonial-item {
   text-align: center;
}

#testimonial .testimonial-item .separator {
   margin-top: 2rem;
}

#testimonial .testimonial-item .name  {
   font-weight: 500;
}

#testimonial .slider-wrap {
   position: relative;
}

#testimonial .slider-wrap .slider-arrow {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
}

#testimonial .slider-arrow {
   justify-content: center;
   align-items: center;
   cursor: pointer;
   padding: 1rem;
}

#testimonial .slider-arrow svg {
   height: 40px;
   width: auto;
}

#testimonial .slider-arrow svg path {
   fill: #00C2FF;
}

#testimonial .slider-arrow.prev {
   left: 0;
}

#testimonial .slider-arrow.next {
   right: 0;
}

#testimonial .dots-outer {
   display: flex;
   justify-content: center;
   align-items: center;
}

#testimonial .dots-outer svg {
   height: 30px;
}

#testimonial .slider-dots {
   display: flex;
   justify-content: center;
   align-items: center;
}

#testimonial .slider-dots .img-wrap {
   margin: 0 1rem;
   max-width: 40px;
   opacity: .5;
   transition: .25s;
   border-radius: 50%;
   overflow: hidden;
   cursor: pointer;
}

#testimonial .slider-dots .img-wrap:hover {
   opacity: 1;
}

#testimonial .slider-dots .img-wrap.active {
   opacity: 1;
   box-shadow: 0px 0px 20px rgba(0, 194, 255, .7);
   -webkit-box-shadow: 0px 0px 20px rgba(0, 194, 255, .7);
}

.desk-arrow {
   display: none;
}

@media screen and (min-width:768px){
   
}

@media screen and (min-width:992px){
   .desk-arrow {
      display: flex;
   }
   .mob-arrow {
      display: none !important;
   }
   #testimonial .testimnonial-slider {
      padding: 2.5rem 3rem;
   }
   #testimonial .slider-dots .img-wrap {
      max-width: 80px;
   }
}

/* ******************************** */
/* 50/50 */
/* ******************************** */

#fifty-fifty {
   padding: 5rem 0 2.5rem 0;
}

#fifty-fifty h2 {
   text-align: center;
   margin-bottom: 3rem;
   font-size: 38px;
}

#fifty-fifty .container {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
}

#fifty-fifty .container > div {
   width: 100%;
}

#fifty-fifty .container .left-col {
   order: 2;
}

#fifty-fifty .container .right-col {
   margin-bottom: 3rem;
   order: 1;
}

#fifty-fifty .container .right-col a {
   margin-top: 2rem;
}

#fifty-fifty .container .left-col .img-wrap {
   width: 100%;
   height: 100%;
   position: relative;
   min-height: 400px;
}

#fifty-fifty .container .left-col .img-wrap img {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   object-fit: contain;
}

@media screen and (min-width:768px){
   #fifty-fifty h2 {
      font-size: 50px;
   }
   #fifty-fifty .container > div {
      width: 50%;
   }

   #fifty-fifty .container .left-col {
      order: 1;
   }

   #fifty-fifty .container .right-col {
      order: 2;
      padding: 0 5rem 0 0;
      margin-bottom: 0;
   }
}

/* ******************************** */
/* CTA Circle */
/* ******************************** */

#cta-circle {
   padding: 3rem 0;
   margin-bottom: 2rem;
   margin-top: 3rem;
}

#cta-circle .container {
   display: flex;
   justify-content: center;
   align-items: center;
}

#cta-circle .cta-circle-wrap {
  position: relative;
  max-width: 700px;
  text-align: center;
  font-size: 22px;
  font-weight: 300;
}

#cta-circle .cta-circle-wrap img {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 50%;
   max-width: 215px;
 }

 @media screen and (min-width:768px){
   #cta-circle {
      margin-top: 0;
   }

   #cta-circle .cta-circle-wrap {
      font-size: 28px;
    }

    #cta-circle .cta-circle-wrap img {
      width: 25%;
    }
 }

/* ******************************** */
/* CTA conversation */
/* ******************************** */

#cta-conversation {
   padding: 3rem 0;
   position: relative;
}

#cta-conversation .container {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
}

#cta-conversation .container .left-col {
   width: 100%;
   display: flex;
   justify-content: center;
   /* flex-wrap: wrap; */
   align-items: center;
   text-align: left;
   margin-bottom: 3rem;
}

#cta-conversation .container .left-col img {
   max-width: 50px;
}

#cta-conversation .container .left-col h2 {
   font-size: 26px;
   font-weight: 700;
   margin-bottom: 1rem;
}

#cta-conversation .container .left-col p {
   font-size: 15px;
   font-weight: 300;
   max-width: 600px;
}

#cta-conversation .container .left-col div:last-child {
   padding-left: 2rem;
}

#cta-conversation .container .right-col {
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-bottom: 3rem;
}

#cta-conversation .container .right-col a {
   /* padding: 1.5rem 3rem; */
}

@media screen and (min-width:768px){
   #cta-conversation .container .left-col h2 {
      font-size: 32px;
   }
   
   #cta-conversation .container .left-col p {
      font-size: 20px;
      font-weight: 300;
      max-width: 600px;
   }
}

@media screen and (min-width:992px){
   #cta-conversation .container .left-col img {
      max-width: initial;
      width: 100%;
   }
   #cta-conversation .container .left-col {
      width: 70%;
      flex-wrap: nowrap;
      justify-content: flex-start;
      padding-right: 5rem;
      text-align: left;
      margin-bottom: 0;
   }

   #cta-conversation .container .right-col {
      width: 30%;
      margin-bottom: 0;
   }

   #cta-conversation .container .left-col > div:first-child {
      max-width: 150px;
      margin-right: 2rem;
   }
}

/* ******************************** */
/* CTA Dark */
/* ******************************** */

#cta-dark {
   color: #fff;
}

#cta-dark .container {
   display: flex;
   justify-content: center;
   align-items: stretch;
   flex-wrap: wrap;
}

#cta-dark .container > div {
   width: 100%;
}

#cta-dark .container .left-col {
   padding: 5rem 0 0 0;
   text-align: center;
}

#cta-dark .container .left-col h2 {
   font-size: 26px;
   margin-bottom: 1rem;
   font-weight: 700;
}

#cta-dark .container .left-col p {
   font-size: 15px;
   font-weight: 300;
}

#cta-dark .container .left-col a {
   color: #fff;
   margin-top: 2rem;
}

#cta-dark .container .right-col .img-wrap {
   height: 300px;
   width: 100%;
   position: relative;
}

#cta-dark .container .right-col .img-wrap img {
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   height: 80%;
}

@media screen and (min-width:768px){
   #cta-dark .container > div {
      width: 50%;
   }

   #cta-dark .container .left-col {
      padding: 5rem 0;
      text-align: left;
   }

   #cta-dark .container .right-col .img-wrap {
      height: 100%;
   }

   #cta-dark .container .left-col h2 {
      font-size: 38px;
   }

   #cta-dark .container .left-col p {
      font-size: 20px;
   }
}

/* ******************************** */
/* FAQ */
/* ******************************** */

#faq {
   padding: 5rem 0;
}

#faq h2 {
   text-align: center;
   font-size: 30px;
}

#faq .faq-wrap {
   max-width: 1000px;
   margin: 2rem auto 0 auto;
}

#faq .faq-item {
   margin-bottom: 1rem;
}

#faq .faq-item:last-child {
   margin-bottom: 0;
}

#faq .faq-head {
   display: flex;
   justify-content: space-between;
   padding: 1.5rem 2rem;
   border-radius: 5px;
   cursor: pointer;
}

#faq .faq-head p {
   font-size: 16px;
   font-weight: 500;
}

#faq .faq-head .icon-wrap {
   display: flex;
   justify-content: center;
   align-items: center;
   padding-left: .5rem;
}

#faq .faq-head .icon-wrap svg {
   width: 10px;
}

#faq .faq-answer {
   padding: 0 2rem 1.5rem 2rem;
   font-size: 15px;
   font-weight: 300;
}

#faq .faq-answer .border {
   margin-bottom: 1rem;
   height: 1px;
   background-color: #000;
   width: 100%;
   max-width: 50px;
   opacity: 0;
}

#faq .faq-item.active .faq-answer .border {
   opacity: 1;
}

#faq .faq-item .faq-head .icon-wrap .minus {
   display: none;
}

#faq .faq-item.active {
   background-color: #e6f9ff;
}

#faq .faq-item.active .faq-head .icon-wrap .minus {
   display: block;
}

#faq .faq-item .faq-head .icon-wrap .plus {
   display: block;
}

#faq .faq-item.active .faq-head .icon-wrap .plus {
   display: none;
}

#faq .faq-item .faq-answer {
   display: none;
}

#faq .faq-item:first-child .faq-answer {
   display: block;
}

@media screen and (min-width:992px){
   #faq h2 {
      font-size: 38px;
   }

   #faq .faq-head p {
      font-size: 20px;
   }

   #faq .faq-answer {
      font-size: 17px;
   }
}

/* ******************************** */
/* Latest news */
/* ******************************** */

#latest-news {
   margin-bottom: 8rem;
}

#latest-news h2 {
   font-size: 30px;
   margin-bottom: 3rem;
}

#latest-news .news-wrap {
   display: flex;
   flex-wrap: wrap;
   margin: -1rem;
}

#latest-news .news-wrap .news-item {
   width: 100%;
   padding: 1rem;
}

#latest-news .news-wrap .news-item .news-item-inner {
   display: block;
   text-decoration: none;
   color: #000;
}

#latest-news .news-wrap .news-item .news-item-inner .content-wrap {
   background-color: #e6f9ff;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   padding: 1.5rem;
}

#latest-news .news-wrap .news-item .news-item-inner .content-wrap h3 {
   font-size: 22px;
   font-weight: 500;
   margin-bottom: 2rem;
}

#latest-news .news-wrap .news-item .news-item-inner .content-wrap h4, #latest-news .news-wrap .news-item .news-item-inner .content-wrap p {
   font-size: 17px;
   font-weight: 300;
   margin-bottom: 1.5rem;
}

#latest-news .news-wrap .news-item .news-item-inner .content-wrap > div:last-child button{
   padding: 0;
   display: flex;
   align-items: center;
   font-size: 18px;
   font-weight: 300;
}

#latest-news .news-wrap .news-item .news-item-inner .content-wrap > div:last-child button svg{
   margin-left: 1rem;
}

#latest-news .news-wrap .news-item .news-item-inner .content-wrap > div:last-child button svg path {
   fill: #00BEFF;
}

#latest-news {
   .slick-list{padding:0 20% 0 0 !important;}
}

@media screen and (min-width:768px){
   #latest-news h2 {
      font-size: 38px;
   }
   #latest-news .news-wrap .news-item {
      width: 50%;
   }
}

@media screen and (min-width:992px){
   #latest-news .news-wrap .news-item {
      width: 33%;
   }
}

/* ******************************** */
/* Contact */
/* ******************************** */

#contact {
 padding: 5rem 0 3rem 0;  
 color: #fff;
}

#contact .content-wrap {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
}

#contact .content-wrap h2 {
   font-size: 30px;
   font-weight: 500;
   margin-bottom: 2rem;
}

#contact .content-wrap > p {
   font-size: 15px;
   font-weight: 300;
}

#contact .content-wrap > div {
   width: 100%;
}

#contact .content-wrap .right-col {
   display: flex;
   justify-content: center;
   align-items: center;
}

#contact .content-wrap .right-col .contact-wrap {
   padding: 1rem;
   display: flex;
   flex-direction: column;
   align-items: center;
   text-decoration: none;
   color: #fff;
   transition: .25s;
   font-weight: 500;
   margin-top: 3rem;
}

#contact .content-wrap .right-col .contact-wrap:hover {
   opacity: .7;
}

#contact .content-wrap .right-col .contact-wrap svg {
   width: 30px;
   height: 30px;
   margin-bottom: 1rem;
}

#contact .content-wrap .right-col .contact-wrap svg path {
   fill: #00BEFF;
}

#contact form {
   max-width: 1100px;
   margin: 0 auto;
   margin-top: 3rem;
}

#contact form .col-wrap {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
}

#contact form .col-wrap > div {
   display: flex;
   flex-wrap: wrap;
   width: 100%;
}

#contact form .row-half{
   width: 50%;
   padding: .5rem 0;
}

#contact form .row-half:first-child{
   padding-right: 1rem;
}

#contact form .row-full{
   width: 100%;
   padding: .5rem 0;
}

#contact form label {
   font-size: 12px;
}

#contact form label input, #contact form label select {
   padding: 0 .5rem;
   height: 50px;
   color: #fff;
   font-size: 17px;
   font-weight: 300;
}

#contact form label textarea {
   height: 150px;
   padding: 0 .5rem;
   color: #fff;
   font-size: 17px;
   font-weight: 300;
}

#contact form label option {
   color: #000;
}

#contact form .checkbox-wrap {
   display: flex;
   align-items: center;
   font-size: 17px;
   font-weight: 300;
}

#contact form .checkbox-wrap p {
   margin-left: 1rem;
}

#contact form .checkbox-wrap a {
   color: #00BEFF;
}

#contact form .submit-wrap {
   display: flex;
   justify-content: center;
   margin-top: 2rem;
}

#contact form .submit-wrap input {
   color: #fff;
   font-size: 16px;
}

#contact form label, #contact form label input, #contact form label textarea, #contact form label select {
   width: 100%;
}

#contact form label input, #contact form label textarea, #contact form label select {
   margin-top: .25rem;
   border-radius: 5px;
   border: 1px solid #fff;
   outline: none;
   background-color: transparent;
}

@media screen and (min-width:768px){
   #contact .content-wrap h2 {
      font-size: 38px;
   }
   #contact .content-wrap > div {
      width: 50%;
   }
   
   #contact .content-wrap p {
      font-size: 20px;
   }
   
   #contact .content-wrap .right-col .contact-wrap {
      margin-top: 0;
   }   
   
   #contact form .col-wrap > div {
      padding: 1rem;
      width: 50%;
   }

   #contact form .submit-wrap {
      justify-content: flex-end;
      margin-top: 0;
   }
}

/* ******************************** */
/* Footer */
/* ******************************** */

footer {
   padding: 2rem 1rem;
   background-color: #13141C;
   display: flex;
   flex-wrap: wrap;
   color: #fff;
}

footer h2 {
   font-size: 22px;
   font-weight: 300;
   margin-top: .5rem;
   margin-bottom: 2rem;
}

footer p, footer a {
   font-size: 14px;
   font-weight: 300;
   color: #848797;
   margin-bottom: 1rem;
   text-decoration: none;
   display: block;
}

footer > div {
   width: 100%;
   padding: 1rem;
}

footer > div:nth-child(1) {order:4;}
footer > div:nth-child(2) {order:1;width:50%;}
footer > div:nth-child(3) {order:3;}
footer > div:nth-child(4) {order:2;width:50%;}


footer > div:first-child img {
   width: 200px;
   margin-bottom: 1.25rem;
}

footer .social-wrap {
   display: flex;
}

footer .social-item {
   border-radius: 50%;
   border: 1px solid #fff;
   padding: .5rem;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-right: 1.5rem;
}

footer .social-item:last-child {
   margin-right: 0;
}

footer .social-item svg {
   height: 18px;
   width: 18px;
}

footer .social-item img {
   height: 18px;
   width: 18px;
}

footer .social-item svg path {
   fill: #fff;
}

footer .logo-wrap {
   display: flex;
   margin-top: 2rem;
}

footer .logo-wrap img {
   height: 50px;
   margin-right: 1rem;
}
footer .logo-wrap img:last-child {
   margin-right: 0;
}

@media screen and (min-width:768px){
   footer > div:nth-child(1) {order:4;width:100%;}
   footer > div:nth-child(2) {order:1;width:50%;}
   footer > div:nth-child(3) {order:3;width:100%;}
   footer > div:nth-child(4) {order:2;width:50%;}
}

@media screen and (min-width:992px){
   footer > div:nth-child(1) {order:1;width:25%;}
   footer > div:nth-child(2) {order:2;width:25%;}
   footer > div:nth-child(3) {order:3;width:25%;}
   footer > div:nth-child(4) {order:4;width:25%;}
}