/* GLOBAL */

html {
	--theme-mblue: #370064;  
	--theme-dblue: #642E90;  
	--theme-blue: #9359BF;  
	--theme-red: #C386FO;  
	--theme-lblue: #F5B4FF;  
	--theme-aubin: #FFE9FF;  
	--theme-white: #ffffff;  
	--theme-txt: #040408;
  --ptop: 110px;
}

/*
html {
  --theme-mblue: #370064;
  --theme-dblue: #003D98;
  --theme-blue: #0069BA;
  --theme-red: #2CDDCA;
  --theme-lblue: #FFFADE;
  --theme-aubin: #FFE9FF;
  --theme-white: #ffffff;
  --theme-txt: #040408;
  --ptop: 110px;
}
*/

/*
html {
  --theme-mblue: #22236D;
  --theme-dblue: #181938;
  --theme-blue: #4547C4;
  --theme-red: #E92056;
  --theme-lblue: #f2f2ff;
  --theme-aubin: #f2f8ff;
  --theme-white: #ffffff;
  --theme-txt: #313373;
  --ptop: 110px;
}
*/

html {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    overflow-x: hidden;
}
*, *::after, *::before {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
::selection {
    background: rgba(169, 220, 236, 0.5)
}
::-moz-selection {
    background: rgba(169, 220, 236, 0.5)
}
html, body {
    height: 100%;
    -webkit-text-size-adjust: none;
    font-family: 'Inter', sans-serif;
    color: var(--theme-dblue);

}
body.nav-open {
    overflow: hidden;
}
body.nav-open header:before {
    content: '';
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.8);
}


.container {
        max-width: 1400px;
    padding: 0 30px;
}



@media only screen and (max-width: 1366px) {
    .container {
        max-width: 1200px;
    }
}
@media only screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}


section, footer {
    padding: 48px 0;
}

@media only screen and (max-width: 1366px) {
    section, footer {
    padding: 40px 0;
}
}


h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.3;
}
@media only screen and (max-width: 1366px) {
    h1 {
        font-size: 42px;
    }
}
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
}
h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
}
@media only screen and (max-width: 767px) {
    h2 {
        font-size: 28px;
    }
}
@media only screen and (max-width: 480px) {
    h2 {
        font-size: 26px;
    }
}
h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}
@media only screen and (max-width: 767px) {
    h3 {
        font-size: 21px;
    }
}


article blockquote h3, article blockquote p {
    margin: 0;
    margin-left: 30px;
}

article blockquote h3 {
    font-size: 32px;
    margin-bottom: 1rem;
    color: #e9275a;
}

h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
}

h5 {
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;

}



p, address {
    font-size: 17px;
    line-height: 1.5;
    font-weight: normal;
}

@media only screen and (max-width: 767px) {
    p {
        font-size: 15px;
    }
}


a {
  font-weight: 600;
}
article p, article ul {
    font-size: 17px;
}

article a {
        color: var(--theme-red);
    border-bottom: 2px solid var(--theme-red);
    font-weight: 600;
}

article a:hover {
    color: var(--theme-blue);
    border-bottom: 2px solid var(--theme-blue);
    text-decoration: none;
}

/* ---------------------------
   Global Button Styles
----------------------------*/
a.button,
button.button,
header .menu-main-menu-container li.button,
.nav-next a,
.nav-previous a,
.button a,
header .menu-main-menu-container li.button a:link,
.nf-form-content button,
.nf-form-content input[type=button],
.nf-form-content input[type=submit] {
    background-color: var(--theme-blue);   /* main button background */
    color: var(--theme-white) !important;  /* white text */
    border: 1px solid var(--theme-blue);   /* matching border */
    border-radius: 8px;                     /* rounded corners */
    padding: 0.8rem 1.2rem;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* Hover and Active State */
a.button:hover,
a.button:active,
button.button:hover,
button.button:active,
header .menu-main-menu-container li.button:hover,
header .menu-main-menu-container li.button:active {
    background-color: var(--theme-dblue);   /* darker blue on hover */
    color: var(--theme-white) !important;
    border: 1px solid var(--theme-white);  /* optional border highlight */
    text-decoration: none;
}

/* Links in default state */
a.button:link,
a.button:visited {
    text-decoration: none;
}

/* Add arrows for buttons */
a.button:after,
.nav-next a:after {
    content: '\f061';                        /* Font Awesome arrow */
    font-size: 14px;
    padding-left: 12px;
    margin-left: 12px;
    font-weight: 600;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    font-family: "Font Awesome 5 Free";
}

/* Optional: smaller arrow spacing on mobile */
@media (max-width: 768px) {
    a.button:after {
        padding-left: 8px;
        margin-left: 8px;
    }
}





/* a.button, button.button, header .menu-main-menu-container li.button, .nav-next a, .nav-previous a, .button a, header .menu-main-menu-container li.button a:link, .nf-form-content button, .nf-form-content input[type=button], .nf-form-content input[type=submit] {
  border-radius: 8px;
    color: #fff;
   position: relative;
        padding: .8rem 1.2rem;
    background: var(--theme-red);
    border: 1px solid var(--theme-red);
    font-weight: 600;
    display: inline-block;
    text-align: center;
        -o-transition: .15s ease-out, .15s ease-in;
    -ms-transition: .15s ease-out, .15s ease-in;
    -moz-transition: .15s ease-out, .15s ease-in;
    -webkit-transition: .15s ease-out, .15s ease-in;
    transition: .15s ease-out, .15s ease-in;
}
a.button:hover, a.button:active {
    background: var(--theme-blue);
    text-decoration: none;
    border: 1px solid var(--theme-white);
}
a.button:link, a.button:visited {
    text-decoration: none;
}

a.button:after, .nav-next a:after {
    content: '\f061';
    font-size: 14px;
    padding-left: 12px;
    margin-left: 12px;
    font-weight: 600;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    font-family: "Font Awesome 5 Free";
} */



img {
    width: 100%;
    height: auto;
}


@media only screen and (max-width: 767px) {
    a.button {
        font-size: 15px;
    }
}

header .menu-main-menu-container li.button a:hover {
    color: #fff;
    background: var(--theme-blue);
    border: 1px solid var(--theme-blue);
}

.theme-lblue {
    background: var(--theme-lblue);
    color: var(--theme-dblue);
}

.theme-mblue {
    background: var(--theme-mblue);
    color: var(--theme-white);
}

.theme-aubin {
    background: var(--theme-aubin);
    color: var(--theme-dblue);
}

.theme-blue {
    background: var(--theme-blue);
    color: var(--theme-white);
}

.theme-dblue {
    background: var(--theme-dblue);
    color: var(--theme-white);
}

.main-wrapper {
    padding-top: 80px;
}



.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid var(--theme-red);
  top: 50%;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: var(--theme-red);
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}



/* search */

.has-search {
    margin-left: auto;
    align-self: flex-end;
    border: 0;
    ": ;
}

.form-group {
    margin: 0;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    pointer-events: none;
    color: #aaa;
    right: 16px;
}

input[type=text] {
    margin-left: auto;
    background: #f4f5f7;
    color: #333;
    border: 1px solid #f4f5f7;
    margin-right: 0;
}


select, .live-trains-filters input[type=text], .live-trains-filters input[type=time], .live-trains-filters input[type=date] {
    border: 1px solid #d4d4d4;
    width: 150px;
    border-radius: 4px;
    height: 32px;
    font-size: 14px;
    margin-right: 8px;
}

.has-search .form-control {
    padding-right: 48px;
    margin: 0;
}
.has-search .form-control {
    padding-right: 32px;
    margin: 0;
}
input[type=text], input[type=email], input[type=time], input[type=datetime-local], input[type=number], .modal-content select, .modal-content textarea {
    font-size: 14px;
    background: #f9f9f9;
    border: 1px solid #e4e4e4;
    color: #000;
    appearance: auto;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* HEADER */


.dark header {
    background: #fff;
}


header {
    width: 100%;
    z-index: 99999;
    padding: 0 20px;
    background-color: transparent;
    border-bottom: 0;
    position: fixed;
    top: 0;
    -webkit-transition: background-color .25s ease;
    -ms-transition: background-color .25s ease;
    transition: background-color .25s ease;
        transition: top 0.2s ease-in-out;
}

.nav-up {
    top: -101px;
}


header.scrolled, header.page {
    background-color: #181938;
}

@media only screen and (max-width: 992px) {
    header {
        position: fixed;
    }
    
}


.dark header a {
    color: #000;
}


header a, header.scrolled a {
  color: #fff;
}


header a:hover {
  color: #fff;
}

header p {
  margin-bottom: 0;
}





@media only screen and (max-width: 1200px) {

header .row {
  flex-wrap: nowrap;
  }
}


header #logo {
    width: 100%;
    max-width: 200px;
    margin-right: 25px;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
}

@media only screen and (max-width: 768px) {

header #logo {
  max-width: 150px;
  }
}


.dark header .st0 {fill:#000;}
header .st0, header.scrolled .st0 {fill:#fff;}
header .st1{fill:#E9275B;}



header .nav-wrapper {
    width: auto;
    justify-content: center;
}    


@media only screen and (max-width: 1200px) {
header .nav-wrapper {
    justify-content: flex-end;
}    
    
}


@media only screen and (min-width: 993px) {
header .nav-wrapper {
    width: 100%;
}    
    
}





header .menu-main-menu-container ul {
    margin: 0;
}

header .menu-main-menu-container li {
    display: inline-block;
    list-style-type: none;
    margin: 0;
}
@media only screen and (max-width: 992px) {
    header .menu-main-menu-container li {
        padding: 0;
        display: block;
    }
}

header .menu-main-menu-container li a {
    font-size: 15px;
    font-weight: 600;
}
@media only screen and (max-width: 992px) {
    header .menu-main-menu-container li a {
        width: 100%;
        display: block;
        margin: 0 auto;
        padding: 20px 0;
    }
    header .menu-main-menu-container li:first-child a {
        border-top: none;
    }
}

.dark header .menu-main-menu-container li a:link, .dark header .menu-main-menu-container li a:visited {
  color: #000;  
}


header .menu-main-menu-container li a:link, header .menu-main-menu-container li a:visited {
    color: #fff;
}




.dark header.scrolled .menu-main-menu-container li a:link, .dark header.scrolled .menu-main-menu-container li a:visited {
  color: #fff;  
}

.dark header.scrolled .menu-main-menu-container li > ul a:link, .dark header.scrolled .menu-main-menu-container li > ul a:visited {
  color: #000;  
}


header .menu-main-menu-container li a:hover, header .menu-main-menu-container li a:active {
    color: #ffffff;
    text-decoration: none;
}


@media only screen and (max-width: 992px) {
    
header .menu-main-menu-container li a:link, header .menu-main-menu-container li a:visited {
    color: var(--themedblue);
}    
    
}


@media only screen and (max-width: 992px) {
     header .menu-main-menu-container {
        position: fixed;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 100%;
        background: #fff;
        text-align: left;
        transform: translateX(100%);
        z-index: 99;
        -webkit-transition: all 0.25s;
        -moz-transition: all 0.25s;
        -o-transition: all 0.25s;
    }
    
    body.nav-open .menu-main-menu-container {
        transform: translateY(0);
    }
}


@media only screen and (max-width: 992px) {
  .menu-main-menu-container, .menu-sub-menu-container {
    width: 100%;
  }
}


header .menu-main-menu-container ul {
  margin: 0;
  padding: 0;
      display: flex;
    align-items: center;
}

@media only screen and (max-width: 992px) {
  header .menu-main-menu-container ul {
    width: 100%;
    text-align: center;
    
    height: auto;
    max-width: 320px;
    display: flex;
    flex-wrap: wrap;
    margin: 80px auto;
    
  }
}


header .menu-main-menu-container li {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    text-align: left;
    
}



@media only screen and (max-width: 992px) {
    header .menu-main-menu-container li {
        padding: 0;
        display: block;
        width: 100%;
        position: relative;
    }
}

header .menu-main-menu-container li:hover {
  color: #fff;
}





@media only screen and (max-width: 992px) {
  header .menu-main-menu-container li::after {
    display: none;
  }
}


header .menu-main-menu-container li > a:link, header .menu-main-menu-container li > a:visited {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  padding: 30px 15px;
  display: inline-block
}


@media only screen and (max-width: 992px) {
  header .menu-main-menu-container li a:link, header .menu-main-menu-container li a:visited {  
    padding: 15px;
  }
}







@media only screen and (max-width: 992px) {
header .menu-main-menu-container li.button {
    padding: 30px 15px;
}
}




header#main .has-dropdown img {
  display: none;
}


header .menu-main-menu-container li a:hover, header .menu-main-menu-container li a:hover ul a, header .menu-main-menu-container li:hover a ul a, header .menu-main-menu-container li a:active, body.nav-open header .menu-main-menu-container li a:active, body.nav open header .menu-main-menu-container li a:active  {
  color: #fff;
}


header .menu-main-menu-container li a:hover, header .menu-main-menu-container li a:active, header .menu-main-menu-container li:hover > a  {
    color: #e9275b;
    position: relative;
}



header .menu-main-menu-container li.has-dropdown ul a:hover {
    color: #171717;
}

header .menu-main-menu-container li.has-dropdown a:first-child {
    cursor: default;
}

header .menu-main-menu-container li.has-dropdown ul a {
    cursor: pointer !important;
    line-height: 1.3;
}

header .menu-main-menu-container li.has-dropdown a:after {
    content: '\f078';
    font-size: 12px;
    padding-left: 8px;
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
}


header .menu-main-menu-container li.has-dropdown .sub-menu a:after {
    display: none;
}



@media only screen and (max-width: 992px) {

  header .menu-main-menu-container li a:hover, header .menu-main-menu-container li a:active {
    background: #f2f8ff;
  }

  }


@media only screen and (max-width: 992px) {
  header .menu-main-menu-container li a {  
    display: block;
    margin: 0 auto;
    padding: 15px 30px;
  }
}

@media only screen and (max-width: 992px) {
  header .menu-main-menu-container li:first-child a {  
    border-top: 0;
  }
}


header .menu-main-menu-container .nav_mob_wrapper {
  height: 100%;
    padding-top: 0;
    display: flex;
    flex-wrap: wrap;
}


@media only screen and (max-width: 992px) {
  header .menu-main-menu-container .nav_mob_wrapper {
    height: auto;
    max-width: 320px;
    display: flex;
    flex-wrap: wrap-reverse;
    margin: 80px auto;
  }
}


header .menu-main-menu-container .menu-main-menu-container .nav {
    margin-bottom: -15px;
}











header .menu-main-menu-container .menu-main-menu-container {
    align-self: flex-end;
}

@media only screen and (min-width: 992px) {
header .menu-main-menu-container ul li:hover > ul {
  display: block;
}
}


@media only screen and (max-width: 992px) {
header .menu-main-menu-container ul li.has-dropdown a:after {
  font-family: "Font Awesome 5 Free"; font-weight: 900;
  content: "\f105";
  position: absolute;
  right: 15px;
      color: #202429;
}


header .menu-main-menu-container ul li.dropdown-active a:after {
  font-family: "Font Awesome 5 Free"; font-weight: 900;
  content: "\f107" !important;
}

header .menu-main-menu-container ul li.dropdown-active ul.sub-menu a:after {
  content: "" !important;
}


header .menu-main-menu-container li:hover a:after {
  color: #000 !important;
}
}


.container-fluid {
    max-width: 1920px;
}


header .sub-menu .container-fluid {

    align-items: flex-start;
}


header .menu-main-menu-container ul ul {
        margin-top: 0;
  background: #fff;
  padding: 30px 0;
  display: none;
    width: 100%;
    left: 0;
  position: absolute;
      -webkit-box-shadow: 0 30px 100px rgb(0 0 0 / 15%);
    box-shadow: 0 30px 100px rgb(0 0 0 / 15%);
-webkit-transition: opacity .3s ease,-webkit-transform .3s ease;
    transition: opacity .3s ease,-webkit-transform .3s ease;
    transition: opacity .3s ease,transform .3s ease;
    transition: opacity .3s ease,transform .3s ease,-webkit-transform .3s ease;
    border-radius: 8px;
}


@media only screen and (max-width: 992px) {

header .menu-main-menu-container ul ul {
  position: relative;
  top: 0;
  padding: 0;
  margin: 0;
}

  }

header .menu-main-menu-container ul ul img { 
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

header .menu-main-menu-container ul ul p {
    font-size: 12px;
    margin-top: .25rem;
}




header .menu-main-menu-container ul ul a:hover {
    text-decoration: none;
}


header .menu-main-menu-container ul li.has-dropdown > a:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 13px 15px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: none;
}

.dropdown-open header .menu-main-menu-container ul li.has-dropdown:hover a:before {
  display: block;
}




header .menu-main-menu-container ul ul .container {
  display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 0 15px;
    gap: 15px 0px;
}

@media only screen and (max-width: 992px) {
    header .menu-main-menu-container ul ul .container {
      padding: 0;
    }

  }

header .menu-main-menu-container ul ul li {
    width: 33.3%;
    padding: 0px 8px 0;
    text-align: left;
}



header .menu-main-menu-container ul li.services ul li {
    width: 33.3%;
    padding: 0px 8px 0;
    text-align: left;
}

header .menu-main-menu-container ul li.dropdown-s ul li {
    width: auto;
    display: block;
    margin-bottom: 24px;
}

header .menu-main-menu-container ul li.dropdown-s ul {
width: auto;
min-width: 240px;
left: auto;

}

header .menu-main-menu-container ul li.dropdown-s ul .container {
display: block
}


header .menu-main-menu-container ul li.dropdown-s ul li:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  header .menu-main-menu-container ul ul li {
    width: 100%;
    padding: 0;
  }

}


header .menu-main-menu-container ul ul li:hover {
    background: none;

}

header .menu-main-menu-container ul ul li:hover img {
    opacity: 0.7

}





header .menu-main-menu-container ul ul li:after {
    display: none;
}

header .menu-main-menu-container ul ul li > a:link {
    color: #fff;
    padding: 0;
}

@media only screen and (max-width: 992px) {
header .menu-main-menu-container ul ul li a:link {
  padding: 15px;
  }

}

header .menu-main-menu-container ul ul li a:link, header .menu-main-menu-container ul ul li a:visited {
    color: #202429;
}



header .menu-main-menu-container ul ul li:hover a:link {
    color: #e9275b;
}

header .menu-main-menu-container ul ul li:hover p {
    color: #202429;
}


.sub-menu .sub-menu {
  display: block;
  position: relative;
      padding: 0;
    box-shadow: none;
    background: #fff
}

.sub-menu .sub-menu .container, .sub-menu ul.sub-menu .container li  {
  display: block;
  position: relative;
}



.sub-menu .sub-menu .container {
    padding: 0;
    margin-top: .5rem;
}


.sub-menu ul.sub-menu .container li  {
  width: 100%;
  padding: .5rem 0;
}



.dropdown-s > .sub-menu .container {
  display: flex;
}


.menu-item-description {
  margin-bottom: 0
}


header .mob-toggle {
    position: relative;
    cursor: pointer;
    z-index: 999;
    padding: 24px 0;
}

@media only screen and (min-width: 993px) {
    header .mob-toggle {
        display: none;
    }
}

.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity,filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
}


.hamburger-box {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 24px;
}


.hamburger--slider .hamburger-inner {
    top: 2px;
}

.dark .hamburger-inner, .dark .hamburger-inner:after, .dark .hamburger-inner:before {
   background-color: #000; 
}



.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before, .scrolled .hamburger-inner, .scrolled .hamburger-inner:after, .scrolled .hamburger-inner:before {
    position: absolute;
    width: 35px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: #fff;
}


.hamburger--slider .hamburger-inner:before {
    top: 10px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform,opacity;
}

.hamburger-inner:before {
    top: -10px;
}
.hamburger-inner:after, .hamburger-inner:before {
    display: block;
    content: "";
}



.hamburger--slider .hamburger-inner:after {
    top: 20px;
}
.hamburger-inner:after {
    bottom: -10px;
}


.hamburger--slider.is-active .hamburger-inner:after {
    transform: translate3d(0,-20px,0) rotate(-90deg);
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
    background-color: #171717;
}


.hamburger--slider.is-active .hamburger-inner:before {
    transform: rotate(-45deg) translate3d(-5.71429px,-6px,0);
    opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0,10px,0) rotate(45deg);
}


@media only screen and (max-width: 1200px) {

.cta-phone {
  display: none;
}

}



/* font sizes */

.size-1 {
    font-size: 64px;
}

@media only screen and (max-width: 767px) {
.size-1 {
    font-size: 36px;
}  
    
}


.size-2 {
    font-size: 44px;
}

.size-3 {
    font-size: 36px;
}


.size-4 {
    font-size: 24px;
}

.size-5 {
    font-size: 17px;
}
 
.size-6 {
    font-size: 16px;
}

.size-7 {
    font-size: 13px;
}



/* section hero video */

.s-hero-video {
    position: relative;
    padding-top: var(--ptop);
    overflow: hidden;
  margin-bottom: 40px;
}

@media only screen and (min-width: 993px) {
    .s-hero-video {
        height: calc(100vh - 160px);
        min-height: 600px;
        max-height: 900px;
        padding-bottom: 0;
    }
}


.s-hero-video video {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: .5;
}


/* section page links */


.col_page {
    color: #fff;
    cursor: pointer;
}
@media only screen and (max-width: 767px) {
    
   .col_page {
    margin-bottom: 1rem;
} 
}



.nf-form-content input:not([type=submit]), .nf-form-content textarea {
  background: #fff !important
}


.featured_bkg {
  position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    opacity: 0.4;margin: auto;
}

.featured_bkg img {
  position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* section cta */


.cta_membership, .cta_footer {
    margin: 40px 0;
}



a .fab {
    color: var(--theme-dblue);
}



.product-hero {
  padding-top: 140px;
  margin-bottom: 0;
  position: relative;
  background-position: center; 
  background-repeat: no-repeat; 
  background-size: cover; 
  background: -webkit-linear-gradient(top, var(--theme-mblue) 75%, #fff 75%);
}

.product-hero img {
    width: 100%;
    height: auto;
}

.product-hero-bkg {
  position: absolute;
  width: 100%;
  height: 86%;
  background-image: url('/wp-content/uploads/2024/05/line-blue.png');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  overflow: hidden;top: 0;
}


.product2 {
  background-color: #181938;
  background-image: url(/wp-content/themes/jnction/img/bg-shape.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding-top: 150px;
    overflow: hidden;
    position: relative;
    color: #fff;
}

.products ul {
    list-style: none;
    padding: 0;
}
.products ul li {
    list-style: none;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (max-width: 767px) {
    .products ul li {
    list-style: none;
    height: auto;
    margin: 60px 0;
    }
    
}
.products ul li a.button {
    margin-top: 30px;
}
a.button i {
    margin-left: 15px;
}


@media only screen and (max-width: 767px) {
    .fish-wrapper {
        display: none;
    }
}

.vertical-stripe {
    /*position: fixed;*/
    position: absolute;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    z-index: 500;
    display: flex;
    align-items: center;
    float: left;
}

.scrollmagic-pin-spacer {
    width: 50vw !important;
    right: 0 !important;
}

.bkg {
    width: 50vw !important;
    height: 100vh;
    position: absolute;
    right: 0 !important;
    top: 0;
    background: #f2f8ff;
    overflow: hidden;
}

.fish {
    width: calc(50vw) !important;
}



.mob-image {
    width: calc(100% + 30px); height: auto;background: #0682e3;padding: 5% 10%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
@media only screen and (min-width: 768px) {
    .mob-image {
        display: none;
    }
}




#home--about .services {
    margin-top: 40px;
}
@media only screen and (max-width: 992px) {
    #home--about .services {
        margin-top: 30px;
    }
}
#home--about .services h2 {
    font-weight: bold;
}
#home--about .service {

    margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
    #home--about .service {
        max-width: 480px;
        margin: 0 auto 60px;
    }
    #home--about .services div.service:last-child {
        max-width: 500px;
        margin: 0 auto;
    }
}
@media only screen and (max-width: 992px) and (min-width: 480px) {
    #home--about .service {
        display: flex;
    }
}
@media only screen and (max-width: 992px) {
    #home--about .service, #home--about .services div.service:last-child {
        text-align: left;
        max-width: 100%;
        border-bottom: 1px solid #eaeaea;
        padding: 30px;
        margin: 0 auto;
    }
    #home--about .services div.service:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }
}

.service img {
    margin-bottom: 30px;
}
#home--about img {
    max-width: 200px;
    height: auto;
}
@media only screen and (max-width: 992px) {
    #home--about img {
        margin-right: 30px;
        margin-bottom: 0;
    }
}
#home--testimonials {
    border-top: 1px solid #eaeaea;
}
.testimonial blockquote, .testimonial blockquote p{
    font-size: 24px;
}
#home--testimonials .testimonial {
    margin: 0 auto;
    padding: 0 15px;
}
#home--testimonials h2 {
    line-height: 2em;
    font-style: italic;
    letter-spacing: 1px;
}


#home--news .wrapper {
    margin-top: 40px;
}
.news h3 {
    font-size: 17px;
    font-weight: 400;
}
.news p {
    font-size: 14px;
}
.product-wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
@media only screen and (max-width: 1280px) {
    .product-wrapper {
        border-top: 1px solid #eaeaea;
        padding: 60px 0 0;
        margin: 60px 0;
    }
}
@media only screen and (max-width: 1024px) {
    .product-wrapper {
        height: auto;
        text-align: center;
    }
}
@media only screen and (min-width: 1281px) {
    .product-wrapper {
        height: 1000px;
    }
}
.product-image-right {
    position: absolute;
    left: 45%;
    width: calc(60vw);
    max-width: 1200px;
    flex-wrap: wrap;
}
@media only screen and (max-width: 1280px) {
    .product-image-right {
        position: relative;
        left: 0;
        width: 100%;
        height: auto;
    }
    .product-image-right img {
        width: 100%;
        height: auto;
    }
}
.product-image-left {
    position: absolute;
    right: 45%;
    width: calc(60vw);
    max-width: 1200px;
}
.product-hero-text {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.product-hero-text a {
    margin-top: 30px;
}
@media only screen and (max-width: 1280px) {
    .product-hero-text-wrapper {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
}
.triggeredCSS3 {
    animation: moveAcross .6s linear;
}
@keyframes moveAcross {
    0% {
        left: 100%;
    }
    100% {
        left: 45%;
    }
}

.button-row {
    margin-top: 80px;
}




/* DEMO */

.demo-signup {
    color: #fff;
    background: #3c40c6;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.demo-signup input {
background: #fff;
    border: 0;
    color: #fff;
    font-size: 15px;
    padding: 0;
    border-radius: 3px;
    width: 100%;
    margin-bottom: 15px;
    background:#3438ad;
    border: 1px solid #2e32a5;
    padding: 0 10px;
}
.demo-signup input.name, .demo-signup input.email {
    height: 55px;
}

.demo-signup input.job, .demo-signup input.company, .demo-signup select {
    height: 55px;
}
.demo-signup select {
    width: 100%;
     background: #3438ad;
    color: #fff;
    border: 0;
    padding: 0 10px;
    border-radius: 3px;
    border: 1px solid #2e32a5;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.demo-signup .button-row {
    margin: 20px 0 0;
}
.demo-signup h3 {
    font-size: 56px;color:#8589ff;font-weight:bold;
    letter-spacing: -.03em;
        margin-top: 0;
}
@media only screen and (max-width: 992px) {
    .demo-signup h3 {
        font-size: 5em;
    }
}

@media only screen and (max-width: 767px) {
    .demo-signup h3 {
        font-size: 4em;
    }
}


@media only screen and (max-width: 640px) {
    .demo-signup h3 {
        font-size: 3em;
    }
}

.demo-signup h4 {
    margin-top: 60px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #8589ff;
}
.demo-signup h4:first-child {
    margin-top: 0;
}

.demo-signup label {
    font-weight: bold;
    font-size: 14px;
    color: #ffffff;
}


.demo-signup p {
    font-size: 15px;
}


.demo-signup a.button {
    background: #fff;
    color: #343433;
    margin-top: 15px;
}


.demo-signup input::-webkit-input-placeholder { /* Edge */
  color: #ffffff;
}

.demo-signup input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #ffffff;
}

.demo-signup input::placeholder {
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
    .demo-signup .address {
        margin-top: 40px;
        border-top: 1px solid #8389FF;
        padding-top: 40px;
    }
}

.team_member img {
    width: 100%;
    height: auto;
}

/* PRODUCT*/

@media only screen and (min-width: 992px) {
.ph-wrapper {
    margin-bottom: 60%;
}
}


.breadcrumb {
    background: transparent;
    padding: 0;
    font-weight: 500;
    margin-bottom: 40px;
}

.theme-blue .breadcrumb a, .theme-dblue .breadcrumb a {
    color: #fff
}


.breadcrumb li:before {
    content: "/";
    display: inline-block;
    padding: 0 8px;
}

.breadcrumb li:first-child:before {
    display: none;
}

.breadcrumb ul li:last-child {
  opacity: .75;
}

#product--benefits {
    padding: 0;
}
#product--benefits .benefit-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
@media only screen and (max-width: 1280px) {
    #product--benefits .benefit-wrapper {
        display: flex;
        justify-content: space-between;
    }
}
#product--benefits .benefit {
    padding: 60px;
    border-right: 1px solid #eaeaea;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
@media only screen and (max-width: 1680px) {
    #product--benefits .benefit {
        padding: 40px;
    }
}
@media only screen and (max-width: 1600px) {
    #product--benefits .benefit {}
}
@media only screen and (max-width: 1280px) {
    #product--benefits .benefit {
        width: 50%;
        border-bottom: 1px solid #eaeaea;
    }
}
@media only screen and (max-width: 767px) {
    #product--benefits .benefit {
        width: 100%;
        border-right: none;
        text-align: center;
        padding: 0;
    }
    #product--benefits div.benefit:last-child {
        border-bottom: none;
    }
}
@media only screen and (min-width: 768px) {
    #product--benefits .benefit label, #product--benefits .benefit input {
        display: none;
    }
}


#product--benefits .benefit h2 {
    color: #557899;
}
@media only screen and (max-width: 767px) {
    #product--benefits .benefit h2 {
        display: none;
    }
}
@media only screen and (max-width: 1400px) {
    #product--benefits .benefit h2 {
        font-size: 21px;
    }
    #product--benefits .benefit p {
        font-size: 15px;
    }
}
#product--about {
    background: #f0f4ff;
    padding: 80px 0 0;
}
#product--about .features {
    margin-top: 40px;
    text-align: left;
}
@media only screen and (max-width: 1600px) {
    #product--about .features .col-md-5 {
        width: 100%;
    }
}

.feature {
    display: flex;
    margin-bottom: 40px;
}

@media only screen and (max-width: 640px) {
    
    .feature {
        display: flex;
    }  
    
}
.feature h3 {
    margin-top: 0;
}

#product--about .product-screens {
    position: absolute;
    left: 47%;
    width: calc(50vw);
    max-width: 1200px;
    height: 700px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.21);
    border-radius: 10px;
}
@media only screen and (max-width: 1600px) {
    #product--about .features .product-screens {
        position: relative;
        left: 15%;
        width: calc(70vw);
        height: auto;
        max-height: 500px;
        top: 100px;
    }
}
#product--about .product-screens img {
    width: 100%;
    height: auto;
}
#product--testimonial {
    margin-top: 80px;
    text-align: center;
}
#product--testimonial h2 {
    line-height: 2em;
    font-style: italic;
    letter-spacing: 1px;
}
#more-products {
    background: #f6faff;
}
#more-products img {
    width: 100%;
    height: auto;
}
/* BLOG */

#blog--header {
    position: relative;
    padding: 0;
    background: #f7536d;
    background: -moz-linear-gradient(-45deg, #f7536d 0%, #be4054 100%);
    background: -webkit-linear-gradient(-45deg, #f7536d 0%, #be4054 100%);
    background: linear-gradient(135deg, #f7536d 0%, #be4054 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7536d', endColorstr='#be4054', GradientType=1);
    color: #fff;
    overflow: hidden;
}
#blog--header .container {
    position: relative;
    padding-top: 160px;
}
#blog--header .container .row {
    justify-content: center;
    align-items: center;
    display: flex;
    flex: flex-wrap;
}
#blog--header .searchbar input {
    width: 100%;
    height: 70px;
    border-radius: 70px;
    padding: 30px;
    border: none;
    font-size: 17px;
}
/* NEWS */

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}



a.category {
    padding: 3px 5px;
    background: #171717;
    color: #fff;
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
    text-decoration: none !important;
}
.date {
    margin-bottom: 5px;
    margin-top: 0 !important;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    color: #171717;
}

blockquote {
    border-left: 3px solid #ccc;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
    color: #ccc;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}
blockquote p {
    display: inline;
}
.testimonial blockquote {
    text-align: left;
    line-height: 2em;
    font-style: italic;
    padding: 0;
    padding-left: 30px;
}
nav#categories {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
    border-top: 1px solid #eaeaea;
    margin-bottom: 60px;
    width: 100%;
}
nav#categories li {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 15px 0;
    margin-right: 30px;
}
nav#categories li a {
    color: #171717;
    font-weight: bold;
}
#post-header {
    padding-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 30px;
}
#post-header h1 {
    margin-bottom: 0;
}
#post p {
    margin: 30px 0;
}
#post img {
    width: 100%;
    height: auto;
}






article .featured-image {
    margin-bottom: 30px;
    width: 100%;
    height: auto;
        border: 1px solid #eaeaea;
}

article h2, article h3 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

@media only screen and (max-width: 767px) {
.mob-reversed-row {
    flex-wrap: wrap-reverse;
}

}


/* FOOTER */

footer {
    position: relative;
}


footer p {
    opacity: .7;
}

footer ul, footer li {
    margin: 0;
    margin-bottom: .5rem;
    padding: 0;
    list-style: none;
}

footer ul li a {
        color: var(--theme-white);
        opacity: .7;
    font-weight: 500;
}


footer .footer-wrapper {
    padding: 60px 0;
}
footer .logo {
    width: 100%;
    height: auto;
    max-width: 200px;
}

footer h2 {
    font-weight: 600;
    margin: 0 0 15px;
}
footer .mc4wp-form-fields {
    max-width: 480px;
    margin: 0 auto;
}
footer input[type="email"] {
    width: 70%;
    padding: 0 15px;
    height: 45px;
    background-color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: none;
    border-radius: 2px;
    color: #ccc;
    font-size: 0.875em;
    letter-spacing: 0.8px;
    -webkit-appearance: none;
}
footer input[type="submit"] {
    display: inline-block;
    width: 30%;
    height: 45px;
    padding: 0;
    -webkit-appearance: none;
    border: none;
    text-transform: uppercase;
    color: black;
    font-size: 0.875em;
    letter-spacing: 0.8px;
    margin-left: -6px;
    cursor: pointer;
    -webkit-appearance: none;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    margin-top: -1px;
    color: #fff;
    background: #84b944;
    border: none;
    font-weight: normal;
}

footer .subfooter .terms-nav {
    text-align: right;
}
footer .subfooter .terms-nav li {
    display: inline;
    margin-right: 40px;
}
footer .subfooter .terms-nav li:last-child {
    margin-right: 0;
}


footer .copyright {
    margin: 0;
    font-size: 14px;
}

@media only screen and (max-width: 767px) {
    footer .copyright {
    margin-top: 30px;
    text-align: center;
}
}


.banner-contact .row {
  align-items: center;

}


@media only screen and (min-width: 1200px) {
.banner-contact {
  background: -webkit-linear-gradient(top, #fff 25%, var(--theme-blue) 25%)
}

.banner-contact .row {
align-items: flex-end;

  }
}





/* Images */

.col_image {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    position: relative;
    background: #f4f4f4;
    background-image: url('');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    overflow: hidden;
}
.col_image::after {
    content: '';
    display: block;
    height: 0;
    padding-bottom: 52.25%;
}
.col_image.portrait:after {
    content: "";
    display: block;
    padding-top: 76.93%;
}
.col_image.square:after {
    content: "";
    display: block;
    padding-top: 100%;
    padding-bottom: 0;
}
.col_image img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.col_image.portrait img {
    -o-object-fit: cover;
    object-fit: cover;
}
.col_image a, .block {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}


.tagcloud {
    margin: 60px 0;
}


.tagcloud a {
    padding: 10px 15px;
    border: 2px solid #ff8377;
    font-size: 14px !important;
    text-transform: uppercase;
    font-weight: 600;
    color: #ff8377;
    border-radius: 10px;
    float: left;
    margin-right: 8px;
    margin-bottom: 8px;
}


.theme-dst {
  background: #FAE3E3;
  color: #181938;
}

.theme-ce {
  background: #00A878;
  color: #fff;
}

.theme-dnb {
  background: #EDEBD7;
  color: #181938;
}

.theme-tpr {
  background: #59A5D8;;
  color: #fff;
}

.theme-archive {
  background: #ddd;
  color: #000;
}

.theme-ld {
  background: #f9ebff;
  color: #000;
}

.slide-product .product-text {
    padding: 30px 0 30px 30px;
    text-align: left;
}

@media only screen and (max-width: 992px) {


.slide-product .product-text {
    padding: 30px;
}

}


@media only screen and (min-width: 1400px) {


.slide-product .product-text {
    padding: 60px 0 60px 60px;
}

}

img.product-icon {
  width: 56px !important; height: auto !important; 
  border-radius: 12px; display: block;
}


.slide-product .product-icon {
  border: 1px solid #181938; 
}

@media only screen and (min-width: 1400px) {

img.product-icon {
  width: 72px !important;}
  

  }




@media only screen and (max-width: 768px) {

.slide-product .product-icon {
  width: 44px;}
  

  }


  .theme-tpr .product-icon, .theme-ce .product-icon {
    border: 1px solid #fff;
  }



@media only screen and (max-width: 1200px) {



.slide-product .size-3 {
  font-size: 24px;
}

.slide-product .row {
  align-items: center;
}

}


.swiper-nav {
  position: relative; 
    margin-left: auto; font-size: 24px;
    cursor: pointer;
}


a.back-button {
    margin-bottom: 30px;
    display: inline-block;
    padding-bottom: 4px;
    text-decoration: none;
    color: #dcdee1;
    font-size: 4em;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}
.col-icon {
    margin-bottom: 15px;
    margin-right: 15px;
}
.col-icon .fas, .col-icon .far, .col-icon .fab {
    font-size: 42px;
    color: #4547c4;
    text-align: center;
    line-height: 46px;
}

.spec {
    max-width: 340px;
    padding: 30px;
    border-radius: 15px;
    background: #ffffff;
    margin: 0 !important;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    -webkit-box-shadow: 0px 2px 0px 1px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 2px 0px 1px rgba(0,0,0,0.1);
    box-shadow: 0px 2px 0px 1px rgba(0,0,0,0.1);

}

.spec li {
    margin-bottom: 15px;
    font-size: 14px;
}

.spec .button {
    margin-top: 15px;
}







/* Faqs */


.faqs ul {
    padding: 0;
    margin-top: 60px;
}


.faqs ul .panel ul {
    padding-left: 30px;
}

p.accordion {
    background: #fff;
    cursor: pointer;
    padding: 25px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
    border-radius: 5px;
    margin-top: 15px;
    margin-bottom: 0;
}

article.single p.accordion {
    background: #f4f4f4;
}


article.single .fa-star {
    color: #d4d4d4;
    margin-top: 4px;
    margin-left: 3px;
    float: right;
    font-size: 14px;
}


article.single img {
    width: auto;
    height: auto;
}

article.single .far.fa-star {
    color: #d4d4d4;
}

@media only screen and (max-width: 767px) {
    p.accordion {
        padding: 15px;
    }
}



.panel .row {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 30px;padding-top: 30px;
}


.panel .row:last-child {
    border-bottom: 0;
}


.panel p, .panel ul, .panel li {
    color: #000 !important;
    font-size: 15px;
}

strong {
    font-weight: 700;
    opacity: 1;
}

p.accordion.active, p.accordion:hover {
    background-color: #485260 !important;
    color: #fff;
}

p.accordion:after {
    content: '+';
    font-size: 62px;
    color: #485260 !important;
    float: right;
    margin-left: 5px;
    font-weight: normal;
    line-height: 25px;
}


@media only screen and (max-width: 1366px) {
    p.accordion:after {
        font-size: 46px;
    }
}

@media only screen and (max-width: 767px) {
    p.accordion:after {
        font-size: 32px;
    }
}

p.accordion.active:after {
    content: "-"; 
}

div.panel {
    padding: 0 25px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    opacity: 0;
}

div.panel.show {
    opacity: 1;
    max-height: 100%;
    padding: 25px;
}

.less-padding {
    padding: 0px 0px 40px 0px;
}








/* Elements */


.element-section, .element-row {
    padding-bottom: 60px;
    padding-top: 7vh;
}

section.full-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-height: 750px;
}

section.full-image:before {
    content: '';
    display: block;
    height: 0;
    padding-bottom: 33.33%;
}



/* Element Heading */








.element-heading .seemore {
    text-align: right;
}

.element-heading .seemore a {
    font-size: 14px;
    white-space: nowrap;
  font-weight: bold;
  text-transform: uppercase;
  color: #ff8377;
}


.element-heading .seemore .fas  {
    font-size: 14px !important;
    margin-left: 10px;
}









.sidebar{
    will-change: min-height;
}

.sidebar-inner{
    transform: translate(0, 0); /* For browsers don't support translate3d. */
    transform: translate3d(0, 0, 0);
    will-change: position, transform;
}


.sidebar.is-affixed .sidebar-inner {
    margin-left: 15px;
}

.enquire h3, .enquire li {
    color: #fff !important;
}

.enquire h3 {
    margin-top: 0;
}


.enquire .jabba {
    margin-bottom: 0;
}


.enquire ul {
  list-style: none;
  padding: 0;
}
.enquire li {
  padding-left: 15px;
}

.enquire li:before {
  content: "\f00c"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em; /* same as padding-left set on li */
  width: 1.3em; /* same as padding-left set on li */
      color: #00ffc5;
}



/* Element Signup */


.element-signup {
    overflow: visible;
}





.featured-blog .social-share {
    margin-top: 30px;
}



.blog {
    margin-bottom: 40px;
}


.blog-card .fas, .featured-blog .fas {
    font-size: 12px;
    margin-left: 5px;
}





.blog-card figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.blog-card:hover img {

    opacity: 0.6;  
}

.blog-card img {
    width: 100%;
    height: 100%;
        border: 1px solid #e4e4e4;
    object-fit: cover;
    object-position: 50% 50%;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 1rem;
}


section.fade-in, footer.fade-in {
  opacity: 0;
  transform: translateY(8vh);
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 1.2s ease-out;
  will-change: opacity, visibility;
}
section.is-visible, footer.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}




.blog-card  a:link, .blog-card a:visited, .all-blog-card a:link, .all-blog-card a:visited  {
    color: var(--theme-dblue);
    text-decoration: none;
}

.blog-card a:active, .blog-card a:hover, .blog-card:hover a, .all-blog-card a:hover, .all-blog-card a:active {
    color: #3c40c6;
    text-decoration: none;
}

figure {
    margin: 0;
}

.blog-card p {
    margin-top: 1rem;
    font-size: 15px;
}

@media only screen and (max-width: 992px) {
   .blog-card p {
       display: none;
   }
}

.blog-card .article_wrapper {
    padding: 15px 0;
    flex-grow: 1;
}


.blog-card p:last-child {
    margin-bottom: 0;
}


.blog-card .category_wrapper {
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}




.all-blog-card {
    align-items: flex-end;
    height: 100%;
    flex-wrap: wrap;
    padding: 30px;
    border: 1px solid #a7ceff;
    border-radius: 15px;
    display: flex;
}



.swiper-container {
      width: 100%;
      height: 100%;
      position: relative;
    }

    
    
    
    
    
    
    


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #d4d4d4;
    z-index: 10;
    opacity: 0;
    display: none;
}



.jibba {
        overflow: auto;
    width: 100vw;
    height: 100vh;
    margin: auto;
    will-change: transform;
    background: #fff;
        display: block;
    position: relative;
}






.plogo-wrapper {
        width: 25%;
    height: 140px;
    position: relative;
    padding: .75rem;
}

@media only screen and (max-width: 560px) {
   .plogo-wrapper {
        width: 50%;
   }
}

.plogo {
    width: 100%;
    height: 100%;
    background-color: #f8f8f9;
    background-color: #f8f8f9;
    padding: 1rem;
        display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.plogo:after {
        padding-bottom: 36.25%;
}

.plogo img {
    -o-object-fit: contain;
    object-fit: contain;
}



.bkg-dblue {
    background: #181938;
}

.p-110 {
    padding-top: 200px;
}

.article-hero {
    position: relative;
}


article.single .nf-form-cont {
    background: #f4f4f4;
    padding: 30px;
    margin-top: 30px;
}

article.single .nf-form-cont h3 {
    margin-top: 0;
}


article.single .nf-form-cont select {
    background: #fff;
}

.article-hero .breadcrumb a, .article-hero h5 {
    opacity: .5;
    color: #fff;
}

#cookie-law-info-bar {
    z-index: 100;
}

#hubspot-messages-iframe-container {
    z-index: 99 !important;
}



/* modal */

#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.8);
  z-index: 99999;
  cursor: pointer;
  display: flex;
	align-items: center;
	justify-content: center;
	overflow: scroll;
}

.memorial-wrapper {
	margin: auto;
	position: relative;

}

.memorial {
	padding: 30px;
	width: 100%;
	max-width: 600px;
	background: #fff;
}




@media (max-width: 576px) { 


.memorial h1 {
	font-size: 24px;
}

}



.memorial p {
	font-size: 17px;
}

.memorial h3 {
	opacity: .5
}
.memorial .duke {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 250px;
	height: auto;
}

.memorial-logo {
    display: block;
    margin: 0 auto 1rem;
    width: 100%;
    max-width: 300px;
    height: auto;
}

.memorial .button {
	margin-top: 15px;
	    font-size: 15px;
    color: #000;
    position: relative;
    padding: .8rem 1.2rem;
    background: #fff;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    -o-transition: .15s ease-out, .15s ease-in;
    -ms-transition: .15s ease-out, .15s ease-in;
    -moz-transition: .15s ease-out, .15s ease-in;
    -webkit-transition: .15s ease-out, .15s ease-in;
    transition: .15s ease-out, .15s ease-in;
}


.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
}




/* products */



.icon-circle {
  margin-right: 2rem;    max-height: 64px;
    max-width: 64px;margin-bottom: 1rem; color: #484ac7;text-align: center;line-height: 64px;font-size: 40px;border-radius: 50%;
}


.icon-circle div {
  margin-bottom: 2rem;
}



.benefit {
  background: #fff;
    padding: 1rem;
}

.benefit i {
  font-size: 32px;
  color: #54a774;
}

.nav-pills .nav-link {
    border-radius: .25rem;
    border: 0;
    margin: .25rem;
}




/* module textarea with menu */


li.nav-item {
  width: 100%;
}

li.nav-item:before {
    content: "";
    width: 100%;
    display: block;
    height: 2px;
    background: linear-gradient(to right, #1ccef5 50%, #e2e8ec 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all ease 0.3s;
}


li.nav-item:first-child:before {
  display: none;
}



li.nav-item a.nav-link, li.nav-item div.nav-link {
    position: relative;
    padding: 0.8rem;
    color: #262626;
    padding: 24px 24px 32px;
    font-family: calibri, sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

li.nav-item a.nav-link {
    font-size: 21px;

  }


li.nav-item div.nav-link {
    padding: 16px;

  }

li.nav-item a.nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a.nav-link:hover, .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #484ac7;
    transition: .25s;
    border-radius: 4px;
}



/* swuper */


    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 17px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: auto;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
          object-position: left center;
    }


.swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%234c71ae'%2F%3E%3C%2Fsvg%3E") !important;
}

.swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%234c71ae'%2F%3E%3C%2Fsvg%3E") !important;
}

:root {
    --swiper-theme-color: #fff;
}


/* showcase */


.showcase-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}






section.mod-text-grid div.mod-text-grid-text {
    margin-bottom: 60px;
    padding-bottom: 30px;
}

.mod-text-grid-icon {
  font-size: 32px;
      margin-bottom: 1rem;
    color: #484ac7;
}


section.theme-blue a {
  color: #fff !important;
}







.fbc-page .fbc-wrap .fbc-items {
  float: none;
  background: transparent;
}




.fbc-page .fbc-wrap .fbc-items li {
  margin: 0 4px;
}

.fbc-page .fbc-wrap .fbc-items li a {
  color: #b2cfd7;
  text-decoration: none
}


.single .fbc-page .fbc-wrap .fbc-items li a, .archive .fbc-page .fbc-wrap .fbc-items li a {
  color: #459ab1;
  text-decoration: none
}



.fbc-page .fbc-wrap .fbc-items li.active span, .fbc-page .fbc-wrap .fbc-items li .fbc-end-text {
  color: #d4d4d4;
}


.single .fbc-page .fbc-wrap .fbc-items li.active span, .archive .fbc-page .fbc-wrap .fbc-items li .fbc-end-text
{
  color: #888;
  
}

.fbc-page .fbc-wrap .fbc-items li {
    padding: 8px 0;
}


.fbc-page .fbc-wrap .fbc-items li.active, .fbc-page .fbc-wrap .fbc-items li:nth-last-child(2)
 {
  display: none;
}



.batd {
  margin-left: 120px;
  position: relative;
}


.batd-line::before {
  content: '';
  border: 2px solid #000;
  position: absolute;
  top: 0;
  left: -82px;
  height: calc(100% + 1.5rem + 24px);
}


.batd h3 {
  position: relative;
}

.batd p {
  margin-bottom: 3em;
}

.batd h3::before {
  content: '';
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 3px solid #000;
  background: #fff;
  position: absolute;
  left: -110px;
  top: -8px;
      font-weight: 600;
    font-family: "Font Awesome 5 Free";
        text-align: center;
    font-size: 28px;
}



.batd h3:nth-child(1):before {
    content: '\f248';
    padding: 7px 0px 8px 0px;
  }



.batd h3.stage-1:before {
    content: '\f304';
    padding: 7px 0px 8px 0px;
  }


.batd h3.stage-2:before {
    content: '\f304';
    padding: 8px 7px 8px 6px;
  }


  .batd h3.stage-3:before {
    content: '\f121';
    padding: 7px 8px 8px 8px;
  }



  .batd h3.stage-4:before {
    content: '\f610';
    padding: 7px 8px 8px 8px;
  }


  .batd h3.stage-5:before {
    content: '\f0e6';
    padding: 6px 8px 8px 8px;
  }


  .batd h3.stage-6:before {
    content: '\f481';
    padding: 8px 8px 8px 8px;
  }


  .batd h3.p2 {
    content: '\f002';
    padding: 8px 8px 8px 8px;
  }


  .batd h3.p2 {
    content: '\f002';
    padding: 8px 8px 8px 8px;
  }




.element-next-prev a {
  margin: 1rem 2rem;
}


.nav-previous a:before {
    content: '\f060';
    font-size: 14px;
    padding-right: 12px;
    margin-right: 12px;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    font-family: "Font Awesome 5 Free";
}

.product-icon {
    width: 52px; height: 52px; border-radius: 12px; background-size:cover; display: block; margin-bottom: .5rem
}


.showcase-box {
  background: #f4f4f4;
  padding: 60px;
}




.team_members h3 {
    margin-bottom: 1rem;
}

.team_members div {
    margin-bottom: 2rem;
}
