@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&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;
 }

 /* HTML5 display-role reset for older browsers */
 article, aside, details, figcaption, figure,
 footer, header, hgroup, menu, nav, section {
     display: block;
 }

 body {
     line-height: 1;
 }

 ol, ul {
     list-style: none;
 }

 blockquote, q {
     quotes: none;
 }

 blockquote:before, blockquote:after,
 q:before, q:after {
     content: '';
     content: none;
 }

 table {
     border-collapse: collapse;
     border-spacing: 0;
 }
 a {
    -webkit-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
body{ 
    font-family: 'Roboto', sans-serif;
}

 .wrapper {
     display: -ms-flexbox;
     display: flex;
     min-height: 100vh;
     -ms-flex-direction: column;
     flex-direction: column;
 }

 #molecule-header.header-detailed {
     z-index: 999999;
 }

 #molecule-header {
     position: relative;
     z-index: 999999;
     margin-bottom: -30px;
     width: 100%;
     min-height: 200px;
 }

 #molecule-header div {
     z-index: 99;
 }

 .atom-header-detailed {
     text-align: center;
     padding-top: 56px;
     position: relative;
     z-index: 9;
     padding-bottom: 39px;
 }

 .container-box-large {
     max-width: 100%;
     width: 1000px;
     margin: auto;
 }

 .container-box-size{
     margin-top: 70px !important;
     padding-top: 70px !important;
 }

 .atom-header-detailed .logo {
     display: block;
     position: relative;
     z-index: 9;
 }

 .atom-website-logo {
     padding-bottom: 2px;
 }

 .atom-header-detailed .logo span.sub-heading {
     display: block;
     color: #005055;
     font-family: Montserrat, sans-serif;
     font-size: 14px;
     font-weight: 800;
     line-height: 16px;
     padding-top: 20px;
     text-transform: uppercase;
 }

 .atom-header-detailed .logo img {
     display: inline-block !important;
     width: 60px;
     height: 54px;
 }

 .atom-website-logo img.ui.image.yellow-logo{
     display: none !important;
 }

.header-detailed .atom-header-detailed .title {
     font-size: 52px;
     line-height: 62px;
     padding: 20px 70px 60px;
     position: relative;
     z-index: 9;
 }

 .atom-header-detailed .title {
     display: block;
     color: #005055;
     font-family: Montserrat, sans-serif;
     font-size: 90px;
     font-style: italic;
     font-weight: 900;
     line-height: 120px;
     margin: 0 0 -50px;
 }

 .template-node--page--basic .header-background,.header-background {
     -webkit-clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
     clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
 }

 .header-background {
     background-color: #fff200;
     background-image: url(../images/dot-pattern.svg);
     position: absolute;
     top: 0;
     width: 100%;
     height: 100%;
     background-position: top;
     background-repeat: no-repeat;
     z-index: unset !important;
     -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
     clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
 }


 /*Hamburger menu*/

 .atom-hamburger-button {
     width: 50px;
     height: 50px;
     background-color: #005055;
     display: block;
     border-radius: 50%;
     position: absolute;
     top: 56px;
     left: 50px;
     z-index: 9999999999;
     cursor: pointer;
 }

 .atom-hamburger-button:after, .atom-hamburger-button:before {
     content: "";
     width: 22px;
     height: 2px;
     position: absolute;
     top: 20px;
     left: 14px;
     background-color: #fff200;
     -webkit-transition: all .25s ease;
     -o-transition: all .25s ease;
     transition: all .25s ease;
 }

 .atom-hamburger-button:after {
     top: 28px;
 }
 
.menu-open .atom-hamburger-button{
    background-color: #fff200;
}
.menu-open .atom-hamburger-button:after, .menu-open .atom-hamburger-button:before {
    content: "";
    width: 22px;
    height: 2px;
    position: absolute;
    top: 20px;
    left: 14px;
    background-color: #005055;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.menu-open .atom-hamburger-button:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 24px;
}

.menu-open .atom-hamburger-button:after{
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 24px;
}

.menu-open .menu-wrapper {
    visibility: visible;
    opacity: 1;
}


 /*search icon*/

 .search-bar {
     position: absolute;
     top: 56px;
     right: 50px;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     color: #fff;
     text-align: center;
     line-height: 50px;
     font-size: 16px;
     cursor: pointer;
     z-index: 9999999;
 }

 /*Menu bar*/

 .menu-wrapper {
    position: fixed;
    z-index: 999999999;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    
}

.menu-wrapper:before {
    content: "";
    background-color: #005055;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .6;
}

.menu-content {
    position: fixed;
    z-index: 999999999;
    width: 100%;
    height: 100%;
    -ms-flex-align: center;
    align-items: center;
}

.menu-content .menu-content-inside {
    width: 100%;
    height: calc(100% - 120px);
    margin-top: 120px;
    overflow: hidden;
    overflow-y: auto;
}

.menu-content .menu-logo {
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    margin: auto;
    width: 62px;
    z-index: 99999;
}
.menu-content .atom-website-logo img.ui.image {
    display: none;
}
.menu-content .atom-website-logo img.ui.image.yellow-logo {
    display: block ;
}

.menu-content .menu-container {
    width: 100%;
    margin: auto;
    position: relative;
    top: 50px;
}
.menu-content ul {
    margin: 0;
    padding: 0;
}
.menu-content ul.parent-list {
    float: left;
    position: relative;
    left: calc(50% - 400px);
}
.menu-content ul.parent-list li {
    list-style: none;
}
.menu-open .menu-content ul.parent-list li {
    -webkit-animation-name: fadeInUpSmall;
    animation-name: fadeInUpSmall;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}
.menu-content ul.parent-list li .link {
    color: #fff;
    line-height: 72px;
    font-weight: 900;
    font-size: 42px;
    text-align: left;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
}
.menu-content ul.parent-list li .link:not(.hover-effect) {
    text-decoration: none;
    text-underline-position: unset;
}
.menu-content ul.sub-menu {
    float: right;
    margin-top: 60px;
}
.menu-content ul.parent-list.sub-menu {
    right: calc(50% - 400px);
    left: auto;
}

.menu-content ul.sub-menu li .link {
    color: #fff;
    list-style: none;
    line-height: 39px;
    font-weight: 700;
    font-size: 16px;
    font-style: normal;
}
.menu-content ul.parent-list li .link.active, .menu-content ul.parent-list li .link:hover {
    color: #fff200;
    text-decoration: underline;
}

.atom-header-live .atom-website-logo {
    display: inline-block
}

.atom-website-logo img.ui.image.yellow-logo,
.layout-secondary-background .clippy-section .atom-website-logo img.ui.image.yellow-logo {
    display: none !important
}

.layout-secondary-background .atom-website-logo img.ui.image.yellow-logo {
    display: block !important
}

.layout-md .atom-website-logo img.ui.image,
.layout-sm .atom-website-logo img.ui.image {
    width: 60px;
    height: 60px
}

.menu-content .atom-website-logo img.ui.image {
    display: none
}

.menu-content .atom-website-logo img.ui.image.yellow-logo {
    display: block !important
}

.wrapper #main-content {
    -ms-flex: 1 1;
    flex: 1 1;
    min-height: 500px;
    margin-bottom: -1px;
    padding-bottom: 35px;
    position: relative;
    z-index: 99999;
}


/*Footer*/

.layout-secondary-background {
    background-color: #fff;
}
.main-footer {
     position: relative;
    z-index: 99999;
    margin-top: 100px;
 }
.main-footer .clippy-section.gray-background {
    margin-bottom: 52px;
    margin-top: 10px;
}

.clippy-section:after, .clippy-section:before {
    content: "";
    background-color: #004043;
    width: 100%;
    height: 41px;
    position: absolute;
    -webkit-clip-path: polygon(0 65%,100% 0,100% 100%,0 100%);
    clip-path: polygon(0 65%,100% 0,100% 100%,0 100%);
    top: -30px;
    left: 0;
}

.clippy-section.gray-background:after, .clippy-section.gray-background:before {
    background-color: #f2f6f6;
}

.container-box-huge {
    position: relative;
     max-width: 1100px;
     margin: auto;
    padding: 0 30px;
}

.main-footer .layout-primary-background .atom-inline-title {
    color: #005055!important;
}
.main-footer .clippy-section .atom-inline-title {
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
    font-family: Montserrat, sans-serif;
}

.molecule-partners-carousel {
    display: -ms-flexbox;
    display: flex;
    margin: 2.5rem 0;
    overflow: hidden;
    position: relative;
   /* animation: partners-carousel-animation 160s linear infinite; */
}


@-webkit-keyframes partners-carousel-animation {
    0% {
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }

  @keyframes partners-carousel-animation {
    0% {
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }

  .molecule-partners-carousel:hover>ul {
    -webkit-animation-play-state: paused!important;
    animation-play-state: paused!important;
}

.molecule-partners-carousel__list {
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
 }
.molecule-partners-carousel__list--item {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 12.5px;
}
.molecule-partners-carousel__list--item .partner {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 150px;
    height: 100px;
    background-color: #fff;
 }
.molecule-partners-carousel__list--item .partner a,.molecule-partners-carousel__list--item .partner a span{
    width: 100%;
    height: 100%;
}

.molecule-partners-carousel__list--item .partner a span{
    display: flex;
    align-items: center;
    justify-content: center;
}

.atom-external-link__plain {
    display: inline-block;
}

.molecule-partners-carousel__list--item .partner .image {
    width: 60%;
    height: auto;
  }

.clippy-section.gray-background {
    background-color: #f2f6f6;
    margin-top: 50px;
    padding: 40px 0;
    margin-bottom: 10px;
}
.main-footer .clippy-section .atom-inline-title {
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
}
.molecule-footer{ 
    margin-top: -35px;
}
.molecule-footer, .molecule-footer .container-box {
    position: relative;
}

.footer-inside {
    width: 100%;
    float: left;
    background-color: #005055;
    padding: 14px 0 25px;
    position: relative;
}
.footer-inside:before {
    content: "";
    position: absolute;
    width: 100%;
    top: -59px;
    left: 0;
    height: 60px;
    background-color: #005055;
    -webkit-clip-path: polygon(0 76%,100% 28%,100% 100%,0 100%);
    clip-path: polygon(0 76%,100% 28%,100% 100%,0 100%);
}

.footer-inside .header-top-left {
    position: relative;
    padding-left: 90px;
    padding-top: 15px;
    width: 50%;
}

.footer-inside .header-top-left .footer-logo {
    position: absolute;
    left: 0;
    top: 0;
}

.footer-inside .header-top-left p {
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 20px;
}

.molecule-footer .footer-bottom {
    display: block;
    padding-top: 70px;
    position: relative;
    display: flex;
}
.molecule-footer .footer-bottom .left-column{
    margin-right: auto;
    width: 60%;
 }
.molecule-footer .footer-bottom .right-column{
    margin-left: auto;
 }
.footer-inside .footer-nav {
    float: left;
    margin: 0;
    padding: 0;
}

.footer-inside .footer-nav li {
    list-style: none;
    position: relative;
    float: left;
    padding-right: 15px;
    margin-right: 15px;
}
.footer-inside .right-nav .footer-nav li:last-child {
    margin: 0;
    padding: 0;
}
.more-link.link.hover-effect {
    position: relative;
    margin-bottom: 5px;
    padding-bottom: 2px;
    display: inline-block;
    text-decoration: none;
}
.more-link.link.hover-effect:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #fff;
    display: none;
}
.more-link.link.hover-effect:hover:after {
    display: block;
}
.footer-inside .footer-nav li:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 8px;
    top: 7px;
    right: 0;
    background-color: #fff;
}
.footer-inside .footer-nav li a {
     font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 14px;
    color: #fff;
}
.footer-inside .footer-nav li:last-child:after {
    display: none;
}

.footer-bottom .atom-social-website {
    position: relative;
    display: inline-block;
    padding-left: 18px;
}
.footer-bottom .atom-social-website:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 10px;
    top: 4px;
    left: 0;
    background-color: #fff;
}
.atom-social-website ul {
    margin: 0;
    padding: 0;
}
.atom-social-website ul li {
    list-style: none;
    display: inline-block;
    font-size: 22px;
    margin-right: 10px;
}
.atom-social-website ul li a{
    display: inline-block;
}
.atom-social-website ul li a img{
    width: 20px;
    height: auto;
}