@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Lato:wght@400;700;900&family=Oswald:wght@200..700&display=swap');

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, 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, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --primary: #18223a;
  --secondary: #01afee;
  --textcolor: #333;
  --body: #effbff;
}

body, html {
  font-size: 17px;
  line-height: 1.4em;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

a, a:visited {
  text-decoration: none;
  outline: 0;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

p a, p a:visited {
  line-height: inherit;
}

li {
  line-height: 1.3em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", sans-serif;
}

h1, h2, h3, h4, h5, h6, strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

small {
  font-size: 85%;
}

sup {
  font-size: 75%;
  vertical-align: super;
  line-height: 1;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

main {
  flex: 1 0 auto;
}

.redcolor {
  color: #c51d26;
}

.no-touch a[href^="tel:"], .noLink {
  pointer-events: none;
  cursor: text;
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.sr-only.focusable:active, .sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clear {
  clear: both;
}

.col12 {
  width: 48%;
}

.col23 {
  width: 65.333%;
}

.col13 {
  width: 30.666%;
}

.col40 {
  width: 40%;
}

.col60 {
  width: 60%;
}

.container {
  margin: 0 auto;
  position: relative;
  padding: 0;
  width: 94%;
  max-width: 1300px;
  z-index: 1;
}

.row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.row-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.itemcenter {
  align-items: center;
}

.justify {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}

.contentcenter {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.spaceBottom {
  position: relative;
  padding-bottom: 70px;
}

.spaceTop {
  position: relative;
  padding-top: 70px;
}

.pad-btm-25 {
  padding-bottom: 25px;
}

.padLeft-25 {
  padding-left: 25px;
}

/* ~~~~~~~~~~~~~~~~ */
.mainBG {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url(/assets/images/objectsBG.png);
  background-position: top left;
  background-repeat: repeat-y;
}

.header {
  position: relative;
  width: 100%;
  z-index: 11;
  border-top: 10px solid var(--primary);
}

.header:after {
  content: '';
  position: absolute;
  width: 70%;
  height: 10px;
  top: -11px;
  left: -50px;
  background-color: var(--secondary);
  transform: skew(45deg, 0deg);
}

.logo {
  width: 180px;
  padding: 15px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 4px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 4px 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.logo a {
  display: inline-block;
}

.banner {
  max-width: 1140px;
}

.banner .text {
  max-width: 500px;
  padding-left: 50px;
  padding-right: 30px;
}

.banner .text h2 {
  font-size: 3.5em;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--primary);
  font-weight: 700;
}

.banner .text p {
  font-weight: 500;
}

.homeslide .slick-next:before, .homeslide .slick-prev:before {
  color: #6f6f6f;
  font-size: 25px;
}

.homeslide .slick-prev {
  left: 0;
  width: 24px;
  height: 24px;
  z-index: 5;
}

.homeslide .slick-next {
  right: -25px;
  width: 24px;
  height: 24px;
  z-index: 5;
}

.welcomeWrap {
  color: #fff;
  background-color: var(--primary);
  padding: 70px 50px;
  margin-top: 100px;
}

.welcomeWrap .wlcimg img {
  max-width: 400px;
  margin-top: -160px;
  border-radius: 0 0 40px 40px;
}

.welcomeWrap .text {
  padding-left: 50px;
}

.welcomeWrap .text header {
  position: relative;
  font-size: 1.8em;
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-style: normal;
  padding-left: 70px;
}

.welcomeWrap .text header:before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0px;
  width: 40px;
  height: 4px;
  background-color: #fff;
}

.welcomeWrap .text h2 {
  font-size: 2em;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 25px 0 20px;
}

.welcomeWrap .btn a {
  background-color: #fff;
  color: var(--primary);
}

.servicesWrap header h3 {
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--primary);
  font-size: 2.8em;
  text-transform: uppercase;
}

/*.servicesWrap.editor .row .col12:first-child {
  margin-left: 50px;
}*/

.footer {
  font-size: 90%;
  padding: 20px 0;
  background-color: #ddebf0;
}

.footer .ftlogo {
  max-width: 150px;
}

.footer .ftinfo {
  max-width: 400px;
}

.footer .ftinfo a {
  color: var(--textcolor);
  margin: 5px 0;
}

.footer .ftinfo a:hover {
  color: var(--secondary);
}

.footer .ftinfo i {
  display: inline-block;
  margin-right: 7px;
  font-size: 1.1em;
}

.footer .ftgelrad {
  width: 40%;
  font-size: 90%;
}

.footer .ftgelrad span:last-child {
  margin-left: 15px;
}

.footer .ftgelrad span>a {
  padding-left: 7px;
}

.footer .ftgelrad span>a img {
  max-width: 150px;
  width: 100%;
}

.footer .ftgelrad a {
  display: inline-block;
  color: var(--primary);
}

.footer .copy {
  width: 100% !important;
  border-top: 1px solid #a2a7a9;
  text-align: center;
  padding-top: 7px;
  margin-top: 7px;
}

.blinkText {
  color: #c51d26 !important;
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.editor .btn a, .btn a {
  position: relative;
  padding: 10px 20px;
  margin-top: 15px;
  color: #fff;
  background-color: var(--primary);
  font-weight: 900;
  line-height: 1.2em;
  display: inline-block;
  text-decoration: none;
  border-color: var(--primary);
  text-transform: uppercase;
  border-radius: 7px;
}

.editor .btn a:hover, .btn a:hover {
  background-color: var(--secondary);
}

/* ~~~~~~~~~~~~~~~~~ */
.editor h2 {
  font-size: 2.3em;
  margin: 20px 0;
  line-height: 1.1em;
}

.editor h3 {
  font-size: 2.1em;
  margin: 20px 0;
  line-height: 1.2;
  color: var(--primary);
}

.editor h4 {
  font-size: 2em;
  margin: 20px 0;
}

.editor h5 {
  font-size: 1.8em;
  margin: 20px 0;
}

.editor h6 {
  font-size: 1em;
  margin: 15px 0;
}

.editor ul, .editor ol {
  margin: 15px 0 15px 5px;
}

.editor ul li, .editor ol li {
  margin-bottom: 8px;
  list-style-type: square;
  padding: 0;
  margin-left: 20px;
  display: list-item;
}

.editor ol li {
  list-style-type: decimal;
}

.editor ol ul {
  margin-top: 10px;
}

.editor p:not(:last-child) {
  margin-bottom: 15px;
}

.editor a {
  color: var(--secondary);
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
}

.editor a:hover {
  color: var(--primary);
  text-decoration: none;
}

.pgheader {
  margin: 10px 0;
  padding-top: 80px;
  padding-bottom: 50px;
}

.pgheader h1 {
  position: relative;
  font-size: 2.8em;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  line-height: 1;
  padding-top: 1dvi;
}

.pgheader h1:before {
  content: '';
  position: absolute;
  width: 140px;
  height: 5px;
  background-color: var(--primary);
  top: 0;
}

.content {
  padding: 40px 0px;
  position: relative;
}

.twocolumn {
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
}

.editor .leftimg {
  float: left;
  margin: 10px 50px 20px 0;
  max-width: 35%;
  position: relative;
  z-index: 3;
}

.editor .rightimg {
  float: right;
  margin: 10px 0px 20px 50px;
  max-width: 35%;
}

.leftimg img, .rightimg img, .imgBox img {
  background-color: #fff;
  padding: 10px !important;
  border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.videoBox>a {
  position: relative;
  display: inline-block;
}

.videoBox>a>span {
  display: inline-block;
  background-color: rgba(15, 81, 159, 0.4);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.videoBox a:before, .videoBox a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}

.videoBox a:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent #fff;
  z-index: 2;
}

.videoBox a:after {
  background-color: var(--primary);
  z-index: 0;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

@keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    opacity: 0;
  }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.menu, .menu>li, .flex, .menu>li>a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.menu>li {
  align-items: center;
  position: relative;
  margin: 0 12px;
}

.menu li a {
  color: var(--textcolor);
  margin: 0;
  display: block;
}

.menu>li>a {
  color: var(--textcolor);
  position: relative;
  font-weight: 600;
  font-size: 1em;
  text-align: center;
  padding: 10px 0;
}

.menu>li:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--secondary);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.menu>li:hover>a, .menu>li.active>a {
  color: var(--secondary);
}

.menu>li:hover:after, .menu>li.active:after {
  opacity: 1;
  width: 100%;
}

.menu ul {
  width: 200px;
  padding: 0;
  position: absolute;
  left: 0px;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  background-color: white;
  -moz-transition: visibility 0s linear 0.25s;
  -ms-transition: visibility 0s linear 0.25s;
  transition: visibility 0s linear 0.25s;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.menu>li:hover>ul {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  transition: opacity 0.5s;
  animation: pull-up 0.3s;
  z-index: 90;
}

.menu>li li:hover>ul {
  left: 100%;
  right: 100%;
  top: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  transition: opacity 0.5s;
  animation: pull-up 0.3s;
  z-index: 90;
}

.menu>li:last-child>ul {
  left: inherit;
  right: 0;
}

.menu li ul li {
  width: 100%;
  padding: 0px;
  position: relative;
  border-bottom: 1px solid var(--primary);
}

.menu ul li:last-child {
  border-bottom: none;
}

.menu li ul li a {
  display: block;
  padding: 8px 15px;
  line-height: 1.3em;
  font-size: 0.95em;
}

/* Mobile */
#menu-trigger {
  display: none;
  position: absolute;
  z-index: 11;
  width: 30px;
  height: 34px;
  margin: auto;
  cursor: pointer;
  right: 0;
}

#menu-trigger span, #menu-trigger span:before, #menu-trigger span:after {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--primary);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#menu-trigger span {
  top: 50%;
  margin: -1px auto auto;
  display: block;
  font-size: 0px;
}

#menu-trigger span:after {
  top: 10px;
  content: "";
}

#menu-trigger span:before {
  top: -10px;
  content: "";
}

.mobimenu #menu-trigger span {
  background-color: transparent;
}

.mobimenu #menu-trigger span:before {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  top: 0;
  left: 0;
}

.mobimenu #menu-trigger span:after {
  -webkit-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
  top: 0;
  left: 0;
}

@media screen and (max-width: 1199px) {
  .welcomeWrap .wlcimg img {
    max-width: inherit;
    width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  body, html {
    font-size: 17px;
  }

  .banner {
    max-width: inherit;
  }

  .banner .text h2 {
    font-size: 2em;
  }

  .homeslide .slick-prev {
    left: 0;
  }

  .homeslide .slick-next {
    right: 0;
  }

  .welcomeWrap .wlcimg img {
    margin-top: 0;
    max-width: 400px;
  }

  .servicesWrap .col12:last-child {
    text-align: center;
  }

  .servicesWrap .col12 img {
    max-width: 600px;
    width: 100%;
  }

  .pgheader {
    padding-top: 30px;
    padding-bottom: 0;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .logo {
    width: 120px;
    padding: 8px;
  }

  .banner .text {
    max-width: inherit;
    padding: 50px 25px 0 25px;
  }

  .col12, .col23, .col13, .col50, .col40, .col60 {
    width: 100%;
  }

  .col12+*, .col13+* {
    margin-top: 15px;
  }

  .twocolumn {
    -moz-column-count: inherit;
    -webkit-column-count: inherit;
    column-count: inherit;
  }

  .editor .leftimg,
  .editor .rightimg {
    float: none;
    margin: 15px auto;
    max-width: 400px;
    text-align: center;
  }

  .spaceTop {
    padding-top: 30px;
  }

  .spaceBottom {
    padding-bottom: 30px;
  }

  .container {
    width: calc(100% - 30px);
  }

  .welcomeWrap {
    padding: 20px;
    margin-top: inherit;
  }

  .welcomeWrap .text {
    margin-top: 50px;
    padding-left: 0;
  }

  .servicesWrap.editor .row .col12:first-child {
    margin-left: 0;
  }

  .servicesWrap header h3 {
    margin-bottom: 0;
  }

  .footer .ftlogo, .footer .ftinfo {
    width: 48%;
  }

  .footer .ftgelrad {
    width: 100%;
  }

  .footer .ftgelrad .col12 {
    margin-top: 15px;
  }

  /* ~~~~~ */
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 5;
    background-color: #fff;
    width: 260px;
    border-radius: 0 0 7px 7px;
    -webkit-box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
  }

  .menu>li:hover>ul, .mobimenu .nav, .nav {
    display: none;
  }

  #menu-trigger, .mobimenu .nav {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 5;
    background-color: #fff;
    width: 260px;
    border-radius: 0 0 7px 7px;
    -webkit-box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
  }

  .menu {
    display: block;
  }

  .menu ul, .menu>li li:hover>ul, .menu>li:hover>ul {
    display: none;
    width: inherit;
    padding-right: 40px;
    position: relative;
    left: inherit;
    top: inherit;
    right: inherit;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    animation: none;
    visibility: visible;
    opacity: 1;
  }

  .menu>li {
    margin: 0;
    padding-left: 0;
    display: block;
    border-bottom: 1px solid rgba(177, 175, 175, 0.2);
    padding-right: 0;
  }

  .menu>li>a {
    line-height: 1.3em;
    border: none;
  }

  .menu li a {
    position: relative;
    display: block;
    margin-right: 40px;
    padding: 10px 10px 10px 15px;
    color: #333;
    text-align: left;
  }

  .menu>li>a:after {
    display: none;
  }

  .menu li ul li:hover ul li:hover>a, .menu li ul li:hover>a, .menu li.active li.active li.active>a, .menu li.active li.active>a, .menu li:hover li:hover>a, .menu li:hover li>a:hover, .menu ul li:hover li:hover>a:hover, .menu>li.active>a, .menu>li:hover>a {
    color: var(--primary);
  }

  .menu li .arrow {
    position: absolute;
    top: 0;
    right: -40px;
    width: 40px;
    height: 100%;
    background-color: var(--primary);
    cursor: pointer;
  }

  .menu li .arrow:after, .menu li .arrow:before {
    left: 50%;
    top: 50%;
    content: " ";
    height: 2px;
    width: 12px;
    position: absolute;
    background-color: #fff;
    pointer-events: none;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
  }

  .menu li .arrow:after {
    width: 2px;
    height: 12px;
    margin-top: -5px;
  }

  .menu li .arrow:before {
    margin-left: -5px;
  }

  .menu>li.open li.open>a>.arrow:after, .menu>li.open>a>.arrow:after {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .footer .container>div {
    width: 100%;
    text-align: center;
  }

  .footer .ftlogo, .footer .ftinfo {
    margin: auto;
  }

  .footer .ftinfo a {
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
}

@media screen and (max-width: 479px) {}