@font-face {
    font-family: 'gothambold';
    src: url('../fonts/Gotham-Bold/gotham-bold-webfont.woff2') format('woff2'),
         url('../fonts/Gotham-Bold/gotham-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'gotham_condensedbold';
    src: url('../fonts/Gotham-Condensed-Bold/gothamcondensed-bold-webfont.woff2') format('woff2'),
         url('../fonts/Gotham-Condensed-Bold/gothamcondensed-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'gothamlight';
    src: url('../fonts/Gotham-Light/gotham-light-webfont.woff2') format('woff2'),
         url('../fonts/Gotham-Light/gotham-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'gothammedium';
    src: url('../fonts/Gotham-Medium/gothammedium-webfont.woff2') format('woff2'),
         url('../fonts/Gotham-Medium/gothammedium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'gothambook';
    src: url('../fonts/Gotham-Book-Regular/gotham_book_regular-webfont.woff2') format('woff2'),
         url('../fonts/Gotham-Book-Regular/gotham_book_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
}
/*html, body{min-height:100vh;}
body{height:100vh;}*/

.btn{
 border:none;
 cursor:pointer;  
}


body {
    font-family: 'gothambook', sans-serif;
    color: #2B3F80;
}

img{
  max-width: 100%;
}

h1,h2,h3,h4,h5{
    font-family: 'gotham_condensedbold', sans-serif;
    font-weight:600;
    letter-spacing: .5px;
}
h1{
  font-size:26px;
}
p, li{
    font-family: 'gothambook', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #2B3F80;
}

@media only screen and (max-width: 1100px) {
  p, li{
    font-size: .95em;
  }
}

@media only screen and (max-width: 1024px) {
  p, li{
    font-size: .9em;
  }
}

a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

b{
  font-family: 'gothambold';
}

.bold-font{
  font-family: 'gothambold';
}

.semi-bold-font{
  font-family: 'gothammedium';
}

.light-font{
  font-family: 'gothamlight';
}

.text-blue, .text-blue p, .text-blue li{
  color: #2B3F80;
}

.sky-blue{
  color: #0E80A3;
}

.text-blue2{
  color: #137ab2;
}

.light, .light p{
  color: #ffffff
}

.text-center *{
    text-align: center;
}

.align-center{
  display: block;
  margin: 0 auto;
}

.text-left{
  text-align: left;
}
.margin-bottom-small{
  margin-bottom: 15px;
}
.margin-bottom-reg{
  margin-bottom: 30px;
}
.margin-bottom-l{
  margin-bottom: 50px;
}
.margin-top-bottom{
  margin: 15px 0;
}
.margin-top-small{
  margin-top: 15px;
}
.small-text{
  font-size: 15px;
}
.small-text.smaller{
  font-size: 13px;
}
.xs-text{
  font-size: 10px !important;
}
  @media (max-width: 1100px) {
    .margin-bottom-reg{
      margin-bottom: 20px;
    }
    .margin-bottom-l{
      margin-bottom: 30px;
    }
    .small-text{
      font-size: 14px;
    }
  }

/* GRID */

/* CONTAINER */
.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    height: inherit;
  }
  
  @media (min-width: 768px) {
    .container {
      width: 750px;
    }
  }
  
  @media (min-width: 992px) {
    .container {
      width: 900px;
    }
  }
  
  @media (min-width: 1200px) {
    .container {
      width: 1100px;
    }
  }
  
  
  /* ROW */
  .row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 20px;
  }

  .row.wide{
    grid-gap: 60px;
  }
  
  
  .col-xs-12 {
    grid-column: span 12
  }
  
  .col-xs-11 {
    grid-column: span 11;
  }
  
  .col-xs-10 {
    grid-column: span 10
  }
  
  .col-xs-9 {
    grid-column: span 9
  }
  
  .col-xs-8 {
    grid-column: span 8
  }
  
  .col-xs-7 {
    grid-column: span 7
  }
  
  .col-xs-6 {
    grid-column: span 6
  }
  
  .col-xs-5 {
    grid-column: span 5
  }
  
  .col-xs-4 {
    grid-column: span 4
  }
  
  .col-xs-3 {
    grid-column: span 3
  }
  
  .col-xs-2 {
    grid-column: span 2
  }
  
  .col-xs-1 {
    grid-column: span 1
  }
  
  @media (min-width: 768px) {
    .col-sm-12 {
      grid-column: span 12
    }
  
    .col-sm-11 {
      grid-column: span 11;
    }
  
    .col-sm-10 {
      grid-column: span 10
    }
  
    .col-sm-9 {
      grid-column: span 9
    }
  
    .col-sm-8 {
      grid-column: span 8
    }
  
    .col-sm-7 {
      grid-column: span 7
    }
  
    .col-sm-6 {
      grid-column: span 6
    }
  
    .col-sm-5 {
      grid-column: span 5
    }
  
    .col-sm-4 {
      grid-column: span 4
    }
  
    .col-sm-3 {
      grid-column: span 3
    }
  
    .col-sm-2 {
      grid-column: span 2
    }
  
    .col-sm-1 {
      grid-column: span 1
    }
  }
  
  @media (min-width: 992px) {
    .col-md-12 {
      grid-column: span 12
    }
  
    .col-md-11 {
      grid-column: span 11;
    }
  
    .col-md-10 {
      grid-column: span 10
    }
  
    .col-md-9 {
      grid-column: span 9
    }
  
    .col-md-8 {
      grid-column: span 8
    }
  
    .col-md-7 {
      grid-column: span 7
    }
  
    .col-md-6 {
      grid-column: span 6
    }
  
    .col-md-5 {
      grid-column: span 5
    }
  
    .col-md-4 {
      grid-column: span 4
    }
  
    .col-md-3 {
      grid-column: span 3
    }
  
    .col-md-2 {
      grid-column: span 2
    }
  
    .col-md-1 {
      grid-column: span 1
    }
  }
  
  @media (min-width: 1200px) {
    .col-lg-12 {
      grid-column: span 12
    }
  
    .col-lg-11 {
      grid-column: span 11;
    }
  
    .col-lg-10 {
      grid-column: span 10
    }
  
    .col-lg-9 {
      grid-column: span 9
    }
  
    .col-lg-8 {
      grid-column: span 8
    }
  
    .col-lg-7 {
      grid-column: span 7
    }
  
    .col-lg-6 {
      grid-column: span 6
    }
  
    .col-lg-5 {
      grid-column: span 5
    }
  
    .col-lg-4 {
      grid-column: span 4
    }
  
    .col-lg-3 {
      grid-column: span 3
    }
  
    .col-lg-2 {
      grid-column: span 2
    }
  
    .col-lg-1 {
      grid-column: span 1
    }
  }

.cols{
  position: relative;
}

.wrapper {
    height: 100vh;
    float:left;
    width:100%;
    overflow: auto;
    align-items: stretch;
    background-size: cover;
    background-position: center;
    position: relative;
}

.wrapper.stretch{
  background-size: 100% 100%;
}

#sidebar {
    /* don't forget to add all the previously mentioned styles here too */
    color: #000;
    transition: all 0.3s;
    width: 300px;
    opacity: 1;
   
}
.sidebar-wrap{
  position:fixed;
  z-index:9999
}

#sidebar .sidebar-header {
    padding: 10px 20px;
    text-align:center;
}

#sidebar .sidebar-header img{
    width: 100px;
}

#sidebar:not(.active){
    /* background:#fff; */
}
.sidebar-bgtransparent{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e4f1fa;
  opacity: 0.95;
}
#sidebar.active .sidebar-bgtransparent{
  opacity: 0.5;
    background: #fff;
    height: 100%;
    z-index: 1; 
    position: absolute;
    width: 50px;

   
}
#sidebar.active .sidebar-close-wrap{
  display:none;
}
#sidebar .sidebar-close-wrap{
  position: absolute;
    bottom: 20px;
    left: 20px;
}
#sidebar .sidebar-close-wrap button{
  background: #322f9e;
    color: #fff;
    padding: 7px;
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 12px;
}
#sidebar .sidebar-close-wrap button:hover{
  opacity:0.5;
}
#sidebar.active .sidebar-header img{
  display:none;
}
#sidebar .sidebar-content{
    position: relative;
    z-index: 2;
    height:100vh;
}
#sidebar.active .components{
    display:none;
}
#sidebar .components li.active a{
  background: #57b4db;
  color: #fff;
}
#sidebar .components li a{
  color: #25348a;
  margin: 20px;
  border-radius: 10px;
  padding: 5px 10px;
  font-size: 15px;
  font-weight:bold;
}
#sidebar .components li a:hover{
  background: #57b4db;
  color: #fff;
}
#sidebar ul.components {
    padding: 10px 0;
    /* border-bottom: 1px solid #47748b; */
    list-style-type: none;
}
#sidebar ul.components li{
  line-height: 1.5em;
}
#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}
#sidebar ul li a:hover {
    color: #7386D5;
    background: #fff;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}
ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}


#content{
    width: 100%;
    padding: 0 20px;
    min-height: 100vh;
    transition: all 0.3s;
}
/* Shrinking the sidebar from 250px to 80px and center aligining its content*/
#sidebar.active {
    min-width: 50px;
    max-width: 50px;
    text-align: center;
}

/* Toggling the sidebar header content, hide the big heading [h3] and showing the small heading [strong] and vice versa*/
#sidebar .sidebar-header strong {
    display: none;
}
#sidebar.active .sidebar-header h3 {
    display: none;
}
#sidebar.active .sidebar-header strong {
    display: block;
}

#sidebar ul li a {
    text-align: left;
}

#sidebar.active ul li a {
    padding: 20px 10px;
    text-align: center;
    font-size: 0.85em;
}

#sidebar.active ul li a i {
    margin-right:  0;
    display: block;
    font-size: 1.8em;
    margin-bottom: 5px;
}

/* Same dropdown links padding*/
#sidebar.active ul ul a {
    padding: 10px !important;
}

/* Changing the arrow position to bottom center position, 
   translateX(50%) works with right: 50% 
   to accurately  center the arrow */
#sidebar.active .dropdown-toggle::after {
    top: auto;
    bottom: 10px;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}

@media (max-width: 768px) {
    /* 80px and its content aligned to centre. Pushing it off the screen with the
       negative left margin
    */
    #sidebar.active {
        min-width: 80px;
        max-width: 80px;
        text-align: center;
        margin-left: -80px !important;
    }


    /* Reappearing the sidebar on toggle button click */
    #sidebar {
        margin-left: 0; 
    }


    /* Toggling the sidebar header content, 
       hide the big heading [h3] and showing the small heading [strong] and vice versa
    */
    #sidebar .sidebar-header strong {
        display: none;
    }
    #sidebar.active .sidebar-header h3 {
        display: none;
    }
    #sidebar.active .sidebar-header strong {
        display: block;
    }

    /* Downsize the navigation links font size */
    #sidebar.active ul li a {
        padding: 20px 10px;
        font-size: 0.85em;
    }

    #sidebar.active ul li a i {
        margin-right:  0;
        display: block;
        font-size: 1.8em;
        margin-bottom: 5px;
    }

    /* Adjust the dropdown links padding*/
    #sidebar.active ul ul a {
        padding: 10px !important;
    }

    /* Changing the arrow position to bottom center position, 
      translateX(50%) works with right: 50% 
      to accurately  center the arrow */
    .dropdown-toggle::after {
        top: auto;
        bottom: 10px;
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
    }
}

.sidebar-opener-wrap{
    display: table;
    height: 90vh;
}
.sidebar-opener-container{
    display: table-cell;
    vertical-align: middle;
}
.sidebarCollapse{
    margin-left:5px;
    color: #2B3F80;
    background: none;
}
#sidebar .sidebar-header .sidebarCollapse{
    display:block;
}
#sidebar .sidebar-opener-wrap{
    display:none;
}
#sidebar.active .sidebar-opener-wrap{
    display:table;
}
#sidebar.active .sidebar-opener-wrap .sidebarCollapse{
    display:block;
}
#sidebar.active .sidebar-header .sidebarCollapse{
    display:none;
}
#sidebar .sidebar-opener-wrap .sidebarCollapse{
    display:none;
}
.btn-sidebar-opener{
    text-align: center;
    float: left;
    width: 100%;
}
.btn-sidebar-opener img{
    width: 35px;
}

.page-title-container{
    text-align: center;
    margin:20px 0;

}
h1.page-title{
    font-size: 45px;
    line-height: 1;
}
h1.page-title.reg{
    font-size: 35px;
}
h1.page-title.smaller{
    font-size: 30px;
}

h1.page-title.xs{
    font-size: 18px;
}
.page-sub-title{
  font-size: 23px;
}

h1.page-title.light-blue span, .light-blue{
  color: #0E99C7;
}
.blue-green{
  color: #137a9a;
}
.azure-blue{
  color:#1879B6;
}
.gold{
  color:#D1B060;
}
.white{
  color: #fff !important;
}

p.large{
  font-size: 20px;
}
@media only screen and (max-width: 1100px) {
  h1.page-title{
      font-size: 38px;
  }
  h1.page-title.reg{
      font-size: 30px;
  }
  h1.page-title.smaller{
      font-size: 25px;
  }
  p.large{
    font-size: 18px;
  }
}
h1.page-title span{
    /* background-color: #FACBCC; */
    padding:5px 10px;
    /*color:#0E80A3;*/
/*    text-transform:uppercase;*/
}
h1.page-title span{
    padding:5px 0;
}
span.highlight-pink{
  /*background-color: #FACBCC;*/
}
span.highlight,
span span.hightlight{
  color:#2B3F80 !important;
  font-weight: 600;
}
.page-header-container{
    position: absolute;
    top: 0;
    float:left;
    width: 245px;
    z-index: 9;
 }
 @media only screen and (max-width: 1100px) {
  .page-header-container{
    width: 225px;
  }
}
 .page-header-container img{
     float:left;
     width:100%;
 }
 .page-title-margin-fixer{
     margin-top:-2px;
 }
 .parent-vertical-middle{
    display: table;
    width: 100%;
    height: 100%;
    position: relative;
}
.vertical-middle{
    display: table-cell;
    vertical-align: middle;
}
/** HOMEPAGE **/
 .home-header-logo-wrap{
  position: fixed;
  right: 25px;
  top: 25px;
 }
 .home-header-logo-container{
   float:left;
    width:120px;
 }
 .home-header-logo-container img{
   float:left;
   width:100%;
 }
 .Center-Container {
  position: relative;
  float:left;
  width: 100%;
  height: inherit;
}
 .Absolute-Center {
  width: 100%;
  height: 50%;
  margin: auto;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
}
.hide{
  opacity:0;
}
.displayNone{
  display:none;
}

.home-menu-active-container, 
.home-menu-container{
  text-align:center;
}
.home-menu-logo{
  float:left;
  width:100%;
}
.home-menu-logo img{
  width:210px;
  margin-top: -50px;
}
.home-menu-tagline{
  float:left;
  width:100%;
}
.home-menu-tagline h1{
  font-size:150px;
  margin-top: -80px;
  color:#014DA2;
  text-shadow: 1px 1px 20px #FFF, 0 0 25px #FFF, 0 0 5px #FFF;
}
.home-menu-tagline a{
  font-family: 'gothambold';
  font-size:18px;
  color:#014DA2;
  text-shadow: 1px 1px 2px #FFF, 0 0 25px #FFF, 0 0 5px #FFF;
}
.home-menu-active-container img{
  width:350px;
}
.home-menu-wrap{
  position: absolute;
  width: 180px;
  width: 180px;
  height: 180px;
}
.home-menu-1{
  top: 75px;
  left: 80px;
}
.home-menu-2{
  top: -130px;
  left: 190px;
}
.home-menu-2 img{
  width:100px !important;
}
.home-menu-3{
  top: -130px;
  right: 190px;
  
}
.home-menu-3 img{
  width: 70px !important;
  margin-top: 10px;
}
.home-menu-4{
  top: 270px;
  left: 190px;
}
.home-menu-4 img{
  width: 90px !important;
  margin-top: 12px;
}
.home-menu-5{
  top: 75px;
  right: 80px;
}
.home-menu-5 img{
  width: 70px !important;
}
.home-menu-6{
  top: 270px;
  right: 190px;
  /*top: 270px;
  left: 190px;*/
}
.home-menu-6 img{
  width: 75px !important;
    margin-top: 4px;
}
.home-menu-disabled .home-menu-title{
  opacity:0.3;
}
.home-menu-bg{
  background: #2b9ced;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0.8;
}
.home-menu-wrap:not(.home-menu-disabled):hover > .home-menu-bg{
  opacity:0.5;
}
.home-menu{
  position: relative;
    padding: 20px;
}
.home-menu-image{
  min-height:66px;
}
.home-menu-image img{
  width: 50px;
  margin-bottom:15px;
}
.home-menu-title{
  float: left;
  width: 100%;
  line-height: 0.9;
}
.home-menu-title span{
  color:#fff;
  font-size: 13px;
  padding:2px;
}
.footer-notes-wrap{
  font-family: 'gothamlight';
  position: fixed;
  bottom: 25px;
  left: 25px;
  line-height:0.9;
}
.footer-notes-wrap-withsidebar{
  left: 65px;
  position: fixed;
  bottom: 15px;
  line-height: 0.9;
}
.footer-notes-wrap-withsidebar,
.footer-notes-wrap span{
  font-size:13px;
}
@media only screen and (max-width: 1100px) {
  .footer-notes-wrap-withsidebar,
  .footer-notes-wrap span{
    font-size:11px;
  }
}

 /** TOPIC 1 **/
 .topic-1-diagram{
    width: 80%;
    text-align: center;
    margin: 0 auto;
}
 .topic-1-diagram img{
     float:left;
     width:100%;
 }
 .topic-1-badges-container{
     width:80%;
     margin:0 auto 20px;
 }
 .topic-1-badges-container [class*="col-"]{
    text-align:center;
    margin-top:20px;
}

.topic-1-badges-container img{
    width:90%;
}
.topic-1-badge{
    width: 80%;
    margin: 0 auto;
}

.section-nav-container{
  position:fixed;
  bottom:0;
  right:0;
  z-index: 999;
}
.section-nav-container{
  margin: 15px 15px 10px;
}
.section-nav-notes{
  float: left;
  margin-top: 16px;
  font-family: "GOTHAM-BOLD";
  font-size:13px;
}
.section-nav-container img{
  width:15px;
  float:left;
}
.section-nav-container a{
  margin-left: 10px;
  float: left;
  padding: 8px 9px;
  border-radius: 25px;
  margin-top: 7px;
  background:#fff;
}
.section-nav-container a.nav-disabled{
  background:#fff;
  opacity:0.3;
}
.section-nav-container a:not(.nav-disabled):hover{
  opacity:0.3;
}

/*TOPIC 1-2**/
.content-bg-transparent{
  background: #fff;
  border-radius: 20px;
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.3;
}
.topic-content-container,
.topic-1-slide-2-container{
  width: 100%;
  position: relative;
  float: left;
}
.topic-content,
.topic-1-slide-2-content{
  padding:20px;
  position:relative;
  z-index:2;
}
.page-sub-title-container{
  text-align:center;
}
h1.page-sub-title{
  font-size: 23px;
  font-weight:normal;
  /*font-family: "GothamCondensed-Bold";*/
}
.topic-1-slide-2-content .page-sub-title{
  /*font-family: "Gotham-Medium";*/
  
}
h1.page-sub-title span{
  /* background-color: #FACBCC; */
  padding:5px 10px;
  color:#0E80A3;
}
h1.page-sub-title span span.highlight{
  color:#2B3F80;
  padding:5px 0;
}
.topic-1-2-diagram-container{
  margin-top: 20px;
  position: relative;
}
.topic-1-2-diagram-image{
  width: 40%;
  margin: 0 auto;
}
.topic-1-2-diagram-image img{
  float: left;
  width: 100%;
}
.topic-1-2-diagram-title{
  float:left;
  width:100%;
  text-align:center;
  margin-top:20px;
}
.topic-1-2-diagram-title h1{
  font-size: 18px;
  text-transform:uppercase;
}
.topic-1-2-diagram-title span{
  /* background-color: #FACBCC; */
  padding:5px 10px;
  color:#0E80A3;
}
.topic-1-2-diagram-desc{
  float:left;
  width:100%;
  text-align:center;
  margin:20px 0;
}
.topic-1-2-diagram-desc span{
  font-size:16px;
  margin:10px auto;
  width:50%;
}
.topic-1-2-diagram{
  padding:0 20px;
  position: relative;
}

 .gradient-separator{
  border-width: 0 5px 0 0;
    border-style: solid;
    border-image: linear-gradient( to left, rgba(237,217,157,1), rgba(218,189,116,1) ) 1 100%;
    position: absolute;
    right: -5%;
    width: 5px;
    height: 100%;
} 

.topic-1-2-diagram-container:before{
  content: "";
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  height: 5px;
  border-radius: 2px;
  background: linear-gradient(0deg, rgba(237,217,157,1) 35%, rgba(218,189,116,1) 100%);
}
.topic-1-2-diagram-desc2{
  float:left;
  text-align:center;
  width:100%;
  margin-top:20px;
}
.topic-1-2-diagram-desc2 h1{
  font-size:18px;
}

.topic-1-2-diagram-desc2 ul{
  width: 50%;
  margin: 0 auto;
}
.topic-1-2-diagram-desc2 ul li{
  font-size:16px;
  /* list-style-image: url('../images/li-image.png'); */
  position:relative;
  list-style-type: none;
  
}
/* .topic-1-2-diagram-desc2 ul li:before{
  content: "";
  position: absolute;
  top: -1px;
  left: 50px;
  width: 17px;
  height: 22px;
  background-image: url(../images/li-image.png);
} */
.topic-1-2-diagram-desc2 ul li img{
  width: 11px;
  margin-right: 10px;
}
.page-content-container{
  position:relative;
}
.page-content-notes-wrap{
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.page-content-notes-wrap .icon{
  max-width: 8px;
}
.page-content-notes-wrap.clinical{
  max-width: 400px;
}
.page-content-notes-wrap span{
  font-size:10px;
}

.page-content-notes-wrap.clinical span{
  font-size:8px;
}

/** TOPIC 1-3 **/
.video-wrap video{
    width: 100%;
    height: 95vh;
}

.video-wrap.content-video video{
  height: 450px;
}

.video-wrap.content-video-small video{
  height: 230px;
}

.video-wrap.content-video-inherit video{
  height: inherit;
}

.video-wrap.video-stretch{
  position: relative;
  height: 450px;
  width: 100%;
  overflow: hidden;
}

.video-wrap.video-stretch.content-video-small{
  height: 200px;
}

.video-wrap.video-stretch video{
  height: auto;
  min-height: 450px;
  position: absolute;
  width: 100%;
  object-fit: cover;
}

.video-wrap.video-stretch.content-video-small video{
  min-height: 200px;
}

.video-wrap.clically-proven-video video{
    max-width: 500px;
    height: 420px;
    display: block;
    margin: 0 auto;
}


/** TOPIC 2-2 **/
.timelines-container{
  position: relative;
  width: auto;
  height: 600px;
  background-image: url(../images/topic-2-2-badge.png);
  background-size: 85%;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 100px;
}
.timelines-container .baby-img{
  background-image: url(../images/topic-2-2-baby.png);
  background-size: 82%;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}
.miles-lines{
  position: absolute;
  display: flex;
  align-items: center;
}
.miles-lines-1{
  top: 100px;
  right: 5px;
}
.miles-lines-1 img{
  width: 30px;
}
.miles-lines-text{
  padding: 0 10px;
  font-size: 13px;
}
.miles-lines-text-left{
  margin-top: -80px;
  text-align: right;
}
.miles-lines-text-left-smaller{
  margin-top: -20px;
  text-align: right;
}
.miles-lines-text-right{
  margin-bottom: -90px;
}
.miles-lines-2{
  top: 240px;
  right: -70px;
}
.miles-lines-2 img{
  width: 265px;
}
.miles-lines-3{
  top: 370px;
  right: 5px;
}
.miles-lines-3 img{
  max-width: 340px;
}
.miles-lines-4{
  top: 430px;
  right: 0;
}
.miles-lines-4 img{
  width: 360px;
}
@media only screen and (max-width: 1200px) {
  .miles-lines-1 {
      top: 160px;
      right: -20px;
  }
  .miles-lines-1 img {
      width: 20px;
  }
  .miles-lines-2 {
      top: 270px;
      right: -70px;
  }
  .miles-lines-2 img {
      width: 210px;
  }
  .miles-lines-3 {
      top: 370px;
      right: -25px;
  }
  .miles-lines-3 img {
      max-width: 300px;
  }
  .miles-lines-4 {
      top: 430px;
      right: 0;
  }
  .miles-lines-4 img {
      width: 330px;
  }
}
.topic-2-2-content{
  min-height: 400px;
  background-size: 42%;
  background-repeat: no-repeat;
  background-position: top;
  margin-top: 113px;
}
.topic-2-2-content .page-sub-title-container{
  text-align: center;
  margin-top: 54px;
  float: left;
  width: 100%;
  margin-bottom: 10px;
}
.topic-2-2-content .page-sub-title{
  color: #0E80A3;
  font-size: 42px;
}
.topic-2-2-content .page-desc-container{
  width: 250px;
  text-align: center;
  margin: 10px auto;
  font-size: 14px;
}
.topic-2-2-content .page-desc-container p{
  color: #2B3F80;
}
.custom-btn{
  background: rgb(208,176,104);
  background: linear-gradient(90deg, rgba(208,176,104,1) 0%, rgba(237,219,162,1) 100%);
    padding: 10px 30px;
    border-radius: 50px;
    color: #fff;
    display: inline;
    font-size: 14px;
    text-align: center;
}
.custom-btn-blue{
  background: rgb(54,75,142);
  background: linear-gradient(90deg, rgba(54,75,142,1) 0%, rgba(99,130,176,1) 100%);
}
@media only screen and (max-width: 1100px) {
  .custom-btn{
    font-size: 12px;
  }
}
.custom-btn:hover{
  color:#fff;
  opacity:0.7;
}

.btn-wrap{
  float: left;
  width: 100%;
  margin-top: 30px;
}

.btn-wrap.full{
  display: flex;
}

.btn-wrap.full .custom-btn{
  width: 100%;
}
.topic-2-2-content .page-buttons-container{
  float: left;
  width: 100%;
  margin-top: 82px;
  text-align: center;
}
.topic-2-2-content .page-buttons-container a{
  padding: 15px 70px;
  font-size:14px;
  color: #fff;
}

/** TOPIC 2-3 **/
.big-page-title{
  font-size:42px;
}
.topic-content-image{
  float:left;
  width:100%;
  text-align:center;
  margin-bottom:10px;
}
.topic-content-image img{
  width:70%;
}
.topic-button-container{
  width:90%;
  margin:0 auto;
}
.topic-button-container a{
  float: left;
  width: 100%;
  text-align: center;
  text-transform:uppercase;
  margin-top:10px;
  margin-left: -30px;
}

/** TOPIC 2-5 **/
.big-page-title2{
  font-size: 32px;
}
.small-page-title{
  font-size:16px;
  text-transform: capitalize !important;
}
.topic-badge-container{
    float: left;
    width: 100%;
    min-height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.topic-badge-title{
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 45px;
  min-height: 42px;
}
.topic-badge-graph{
  width: 70%;
    margin: 0 auto;
}
.topic-badge-graph img{
  float: left;
    width: 100%;
    margin-top: 25px;
}
.topic-badge-desc{
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 75px;
}
.popup-opener-wrap{
  position: fixed;
    bottom: 0;
    left: 190px;
    width: 204px;
}
.popup-opener-wrap a{
  width:100%;
  float:left;
  background-image: url(../images/popup-opener-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 15px;
    color:#fff;
    font-family:Gotham-Medium;
    font-size:13px;
}
.topic-2-4 img{
  max-height: 320px;
}
.topic-2-6 img.logo-content{
  max-width: 200px;
}
.popup-wrap.smaller-wrap .popup-container{
    width: 600px;
    height: auto;
    margin-top: 20%;
}
.popup-wrap.smaller-wrap .popup-content{
  height: auto;
}
@media only screen and (max-width: 1100px) {
  .topic-badge-desc{
    margin-top: 15px;
  }
  .topic-badge-container{
    min-height: 330px;
  }
}
/* Topic 3 */
.topic-3-1-img-1 img{
    max-height: 600px;
}
.topic-3-1-content{
    background-image: url(../images/topic-3-1-img2.png);
    background-size: 50%;
    background-position: top;
    background-repeat: no-repeat;
    float: left;
    width: 100%;
    padding: 40px 0;
}
.bottom-links{
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center !important;
    min-height: 50px;
}
.bottom-links.right{
  justify-content: flex-end !important;
}
.bottom-links ul{
    margin-left: 120px;
    padding-right: 100px;
}
.bottom-links ul li{
  display: inline-block;
  padding: 0 10px;
}
.bottom-links ul li::after{
  content: '|';
  color: #AE986B;
  padding-left: 20px;
}
.bottom-links ul li:last-child::after{
  content: '';
}
.bottom-links ul li a{
   color: #2B3F8E;
   font-family: 'gothambook';
   font-size: 14px;
}
.custom-btn-bottom{
  background: rgb(14,153,199);
  background: linear-gradient(90deg, rgba(14,153,199,1) 0%, rgba(198,203,228,1) 100%);
  padding: 20px 20px 10px 20px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  color: #fff;
}
.custom-btn-bottom:hover{
  color: #fff;
}
.topic-3-1 .btn-wrap{
  margin-top: 180px;
}
.references-wrap{
    position: fixed;
    bottom: 0;
}
.references-wrap p{
  font-size: 10px;
}
.topic-3-3 img{
    max-width: 400px;
}
@media only screen and (max-width: 1100px) {
  .bottom-links ul li a{
     font-size: 12px;
  }
  .topic-3-1-img-1 img{
      max-height: 450px;
  }
  .topic-3-1 .btn-wrap{
    margin-top: 130px;
  }
  .custom-btn-bottom{
    font-size: 13px;
  }
  .topic-3-3 img{
      max-width: 340px;
  }
}
.content-list{
  margin-left: 0;
}
.content-list li{
    font-size: 1em;
    line-height: 1.7;
    list-style-type: none;
    display: flex;
    align-items: center;
}
.content-list li:before{
  content: '';
  background-image: url('../images/list-image-dark-blue.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  float: left;
  margin-right: 10px;
}
.content-icon-list{
  margin-left: 0;
}
.content-icon-list li{
    display: inline-block;
    width: 50%;
    float: left;
    min-height: 170px;
}
.content-icon-list li div{
  padding: 0 10px;
}
.content-icon-list li img{
  height: 70px;
}
.content-icon-list li p{
  font-size: 14px;
}
.topic-3-4 img.img-content{
  max-height: 460px;
}
.topic-3-page-6{
    margin-top: -50px;
}
.topic-3-6-content{
  position: relative;
  width: 350px;
  height: 450px;
  display: block;
  margin: 0 auto;
  margin-top: 80px;
  padding-left: 50px;
}
.topic-3-6-content .kid{
  background-image: url('../images/topic-3-6-kid.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 330px;
  height: 850px;
  position: absolute;
  margin-top: -30%;
  right: 28px;
}
@media only screen and (max-width: 1024px) {
  .topic-3-6-content .kid{
    width: 300px;
    right: 0;
  }
}
@media only screen and (max-width: 987px) {
  .topic-3-6-content .kid{
    width: 300px;
    right: 0;
  }
}
.topic-3-6-content .shield{
  background-image: url('../images/topic-3-6-shield.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: inherit;
  z-index: 2;
  position: relative;
}
.topic-3-6-content .vitamins{
  position: absolute;
  width: 100px;
  z-index: 3;
}
.topic-3-6-content .vitamins.vitaminA{
  top: 25px;
  left: 0;
}
.topic-3-6-content .vitamins.vitaminC{
  top: 65px;
  right: -50px;
}
.topic-3-6-content .vitamins.vitaminD{
  top: 215px;
  right: -50px;
}
.topic-3-6-content .vitaminIron{
    bottom: -20px;
    left: 170px;
}
.page-title-left{
  text-align:left !important;
}
.video-container{
    width: 100%;
    min-height: 40vh;
    float: left;
    /*background: #2B3880;*/
    position: relative;
    margin-bottom: 90px;
}
@media only screen and (max-width: 1100px) {
  .bottom-links ul{
    margin-left: 15px;
  }
  .bottom-links ul li{
    padding: 0 5px;
  }
  .bottom-links ul li::after{
    content: '|';
    padding-left: 15px;
  }
  .bottom-links ul li a{
    font-size: 13px;
  }
  .topic-3-4 img.img-content{
    max-height: 380px;
  }
  .content-icon-list li{
    min-height: 140px;
  }
  .content-icon-list li p{
    font-size: 12px;
  }
  .content-icon-list li img{
    height: 60px;
  }
  .topic-3-page-6{
      margin-top: -90px;
  }
  .topic-3-6-content{
    position: relative;
    width: 280px;
    height: 380px;
    margin-top: 60px;
  }
  .topic-3-6-content .vitamins{
    width: 80px;
  }
  .topic-3-6-content .vitamins.vitaminA{
    top: 19px;
    left: 10px;
  }
  .topic-3-6-content .vitamins.vitaminC{
    top: 50px;
    right: -40px;
  }
  .topic-3-6-content .vitamins.vitaminD{
    top: 170px;
    right: -40px;
  }
  .topic-3-6-content .vitaminIron{
      bottom: 0;
      left: 145px;
  }
  .video-container{
      min-height: 35vh;
  }
}
.video-surface-image{
  position: absolute;
  bottom: -30%;
  width: 80%;
  left: 10%;
}
.topic-3-7-badge-container{
  text-align:center;
}
.topic-3-7-badge{
  margin-bottom:10px;
}
.topic-3-7-badge-container img{
  width:35%;
}
.topic-3-8-content{

    float: left;
    width: 100%;
    padding: 40px 0;
}
.topic-3-8-content span.gold{
  font-weight:bold;
}
.topic-3-8 .btn-wrap a{
  padding: 20px 50px !important;
    font-size: 20px;
    float: left;
    width: 100%;
    margin-left: -40px;
    margin-bottom:10px;
}
@media only screen and (max-width: 1100px) {
  .topic-3-8 .btn-wrap a{
    padding: 10px 40px !important;
  }
}
.topic-3-8 .btn-wrap a img{
  width: 40px;
    float: left;
}
.topic-3-8 .btn-wrap a span{
  float: left;
    margin: 10px 0px 10px 10px;
}
.topic-3-8-btn-container{
  width: 295px;
    margin: 0 auto;
}
.topic-3-8-btn2 img{
  margin-top: 9px;
}
.topic-3-9-content{
  background-size: 40% 40%;
  background-position: left bottom;
  background-repeat: no-repeat;
  min-height: 500px;
}
@media only screen and (max-width: 1100px) {
  .topic-3-9-content{
    min-height: 450px;
  }
}
.topic-3-10-content h1.page-title{
  font-family:'gothambook';
  font-size: 26px;
}
.topic-3-10-content.topic-3-10-content-left p{
  color:#666666;
  padding-bottom:30%;
}
.topic-3-10-content-main{
  background-position: bottom left 70px;
  background-size: 45% 79%;
  background-repeat: no-repeat;
  min-height: 500px;
}
@media only screen and (max-width: 1100px) {
  .topic-3-10-content h1.page-title{
    font-size: 23px;
  }
  .topic-3-10-content-main{
    min-height: 450px;
  }
}
.topic-3-10-content{
  padding-left:15%;
}
.topic-3-10-content2{
  padding-left: 10%;
}
.topic-3-12 .page-title-container{
  margin-top: 0%;
}
.topic-3-12 .page-title span{
  font-size:80px;
  color:#fff;
}
.topic-3-12 .topic-container img{
  width: 100px;
  margin-top: 30px;
}
@media only screen and (max-width: 1100px) {
  .topic-3-12 .page-title span{
    font-size: 50px;
  }
}
.topic-3-12 .topic-container{
  position:relative;
}
.topic-3-12-badge{
  position: absolute;
}
.topic-3-12-badge1{
  top: -45px;
  left: -130px;
}
.topic-3-12-badge span{
  float: left;
  margin-top: 90px;
  text-align:center;
  margin-right:10px;
}
.topic-3-12-badge1 span{
  margin-top: 80px;
}
.topic-3-12-badge2 span{
  margin-top:65px;
}
.topic-3-12-badge2{
  top: 74px;
  left: -164px;
}
.topic-3-12-badge3{
  top: 205px;
  left: -178px;
}
.topic-3-12-badge3 span{
  margin-top:80px;
}
.topic-3-12-badge4{
  top: 300px;
  left: -110px;
}
.topic-3-12-badge4 span{
  margin-top:80px;
}
.topic-3-12-badge-desc{
  text-align: center;
  bottom: 0;
  margin-top: 85%;
  float: left;
  width: 100%;
  position: inherit;
  margin-left:-50px;
}
.topic-3-12-badge-desc p{
  color:#fff !important;
  font-weight:bold;
  text-transform:uppercase;
}
.topic-3-13-img img{
  max-height:500px;
}
.topic-3-13-badge{
  /*display: flex;*/
  float: left;
  width: 100%;
  margin-bottom: 30px;
}
.topic-3-13-badge img{
  float:left;
  width:110px;
  max-height: 130px;
  margin-top:-10px;
}
.topic-3-13-badge-text{
  float: left;
    margin-left: 58px;
    width: 300px;
    border-radius: 25px;
    background: rgb(134,177,206);
    background: linear-gradient(
90deg
, rgba(134,177,206,1) 0%, rgba(196,213,230,1) 100%);
}
.topic-3-13-badge-text p{
  float: left;
  width: 100%;
  color:#fff;
  margin:10px 0;
}
.reference-small-text{
  font-size:11px;
}
.topic-3-13 .page-title span{
  text-transform:uppercase;
}
.topic-3-14 .page-title span{
  text-transform:uppercase;
}
.topic-3-14-badge{
  float: left;
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
.topic-3-14-badge img{
  width: 55px;
}
.topic-3-14-badge span{
  font-size: 11px;
  float: left;
  width: 100%;
  font-weight: bold;
}
.topic-3-14-award-container{
    display: flex;
    width: 100%;
    margin: 20px auto 0;
}
.topic-3-14-award-inner-container{
    display: grid;
    margin: 0 auto;
}
.topic-3-14-award{
  width: 100%;
    float:left;

}
.topic-3-14-award img{
  width: 160px;
    float: left;
    margin-top: -24px;
}
.topic-3-14-award-desc{
  float: left;
  background: #fff;
  border-radius: 25px;
  padding: 5px 30px;
  text-align: center;
  min-height: 40px;
  min-width: 350px;
}
.topic-3-14-award-desc .parent-vertical-middle{
  min-height: 40px;
}
.topic-3-14-award-desc span{
  font-size:11px;
}
.topic-3-14-award-pac img{
  width: 120px;
  margin: 0 10px 0 30px;
}
.topic-3-14 .margin-bottom-reg{
  margin-bottom:60px;
}
.topic-3-14-img img{
  max-height: 250px;
  width:100%;
}
.topic-3-14-content img{
  max-height: 320px;
}
@media only screen and (max-width: 1200px) {
   .topic-3-12-badge-desc{
      margin-top: 100%;
   }
}
@media only screen and (max-width: 1100px) {
 .topic-3-12-badge1{
    top: -45px;
    left: -140px;
 }
 .topic-3-12-badge1 span{
    margin-top: 30px;
 }
 .topic-3-12-badge2{
    top: 64px;
    left: -158px;
 }
 .topic-3-12-badge2 span{
    margin-top: 25px;
 }
 .topic-3-12-badge3{
    top: 200px;
    left: -165px;
 }
 .topic-3-12-badge3 span{
    margin-top: 30px;
 }
 .topic-3-12-badge4{
    top: 290px;
    left: -125px;
 }
 .topic-3-12-badge4 span{
    margin-top: 30px;
 }
 .topic-3-12 .topic-container img{
    width: 75px;
 }
 .topic-3-12-badge-desc{
    margin-top: 100%;
 }
 .topic-3-13-badge img{
    width: 90px;
 }
 .topic-3-13-badge-text{
    margin-left: 28px;
    width: 250px;
 }
 .topic-3-13-img img{
    max-height:400px;
  }
  .topic-3-14-img img{
    max-height: 210px;
  }
  .topic-3-14-content img{
    max-height: 280px;
  }
  .topic-3-14-badge img{
    width: 50px;
  }
  .topic-3-14-badge span{
    font-size: 11px;
  }
  .topic-3-14-award-desc span{
    font-size: 10px;
  }
  .topic-3-14-award-pac img{
    width: 130px;
  }
  .topic-3-14-award img{
    width: 170px;
  }
}
@media only screen and (max-width: 1024px) {
  .topic-3-12-badge1{
    top: -55px;
  }
  .topic-3-12-badge2{
    top: 54px;
  }
  .topic-3-12-badge3{
    top: 180px;
  }
  .topic-3-12-badge4{
    top: 270px;
    left: -130px;
  }
}
@media only screen and (max-width: 1100px) {
   .topic-3-13-badge img{
      width: 80px;
   }
   .topic-3-13-badge-text{
      margin-left: 20px;
      width: 200px;
   }
}
.popup-wrap{
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  z-index: 9999;
  right: 0;
  display:none;
  
}
.popup-wrap.active{
  opacity:0;
  display:block;
}
.popup-bg{
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    opacity: 0.7;
}
.popup-container{
  position: relative;
  z-index: 10;
}
.popup-container-title{
  width: 100%;
  align-items: center;
  justify-content: left;
  min-height: 50px;
  display: flex;
  margin-top: 5px;
  padding-left: 50px;
}
.popup-content{
  float: left;
  width: 100%;
  height: 90vh;
  /*background-color: #b2dbfa;*/
  background-image: url('../images/topic-2-5-bg.png');
  background-size: cover;
  margin-top: -1px;
  border-radius: 25px;
  overflow: auto;
  position:relative;
  padding: 10px 20px;
}
.popup-container .page-title{
  text-transform: uppercase;
}
.popup-container .sub-title{
  text-transform: uppercase;
}
.popup-badges-container{
  width: 80%;
    margin: 0 auto;
}
.popup-badge{
  float: left;
    width: 20%;
    margin-top:10px;
}
.popup-badge img{
  width:55%;
  margin:0 auto;
}
.popup-badge span{
  float:left;
  width:100%;
  font-size:13px;
  margin-top:10px;
  position:relative;
}
.popup-badge-img{
  position: absolute;
  top: 36px;
  width: 250%;
  left: -76%;
}
.popup-nav-container{
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 15px;
}
.popup-nav-container a{
  margin-left: 10px;
  float: left;
  padding: 8px 9px;
  border-radius: 25px;
  margin-top: 7px;
  background: #fff;
}
.popup-nav-container a.nav-disabled{
  background:#fff;
  opacity:0.3;
}
.popup-nav-container a:not(.nav-disabled):hover {
  opacity:0.3;
}
.popup-nav-container img{
  width: 15px;
    float: left;
}
.popup-padding{
  padding:0 20px;
  height:100%;
}
.popup-title{
  line-height:0.9;
  text-transform:none !important;
}
.popup-reducesizeimg{
  float: left;
  width: 100%;
  text-align: right;
}
.popup-content .video-wrap video{
  height: 500px;
}
.popup-reducesizeimg img{
  width: 85%;
}
.popup-img-title{
  text-align: center;
    float: left;
    width: 100%;
    margin-bottom:10px;
}
.popup-img-title span{
  font-size: 20px;
}
.our-inspiration-infrastructure img{
  max-height: 180px;
}

/* Animation */
@keyframes fromtop{
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  30%{
    opacity: 0;
  }
  50%{
    opacity: .5;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animatetop{
  -webkit-animation-name: fromtop;
  -webkit-animation-duration: .9s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0;
  -moz-animation-name: fromtop;
  -moz-animation-duration: .9s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: normal;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-delay: 0;
  -o-animation-name: fromtop;
  -o-animation-duration: .9s;
  -o-animation-iteration-count: 1;
  -o-animation-direction: normal;
  -o-animation-timing-function: ease-in-out;
  -o-animation-delay: 0;
  animation-name: fromtop;
  animation-duration: .9s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-delay: 0;
  animation-fill-mode: none;
}
@keyframes scale{
  0% {
    opacity: 0;
    transform: scale(.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scale-lower{
  0% {
    transform: scale(.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scale-lower-infinite{
  0% {
    transform: scale(.95);
  }
  100% {
    transform: scale(1);
  }
}
.animatescale{
  -webkit-animation-name: scale;
  -webkit-animation-duration: .9s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0;
  -moz-animation-name: scale;
  -moz-animation-duration: .9s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: normal;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-delay: 0;
  -o-animation-name: scale;
  -o-animation-duration: .9s;
  -o-animation-iteration-count: 1;
  -o-animation-direction: normal;
  -o-animation-delay: 0;
  -o-animation-timing-function: ease-in-out;
  animation-name: scale;
  animation-duration: .9s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-delay: 0;
  animation-fill-mode: none;
}

.animatescale-infinite{
  -webkit-animation-name: scale-lower;
  -webkit-animation-duration: .8s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate-reverse;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-name: scale-lower;
  -webkit-animation-delay: 2s;
  -moz-animation-duration: .8s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: alternate-reverse;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-delay: 2s;
  -o-animation-name: scale-lower;
  -o-animation-duration: .8s;
  -o-animation-iteration-count: infinite;
  -o-animation-direction: alternate-reverse;
  -o-animation-delay: 2s;
  -o-animation-timing-function: ease-in-out;
  animation-name: scale-lower;
  animation-duration: .8s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
  animation-timing-function: ease-in-out;
  animation-delay: 2s;
  animation-fill-mode: none;
}

.animatescale-lower-infinite{
   -webkit-animation-name: scale-lower-infinite;
  -webkit-animation-duration: .8s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate-reverse;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-name: scale-lower-infinite;
  -webkit-animation-delay: 0s;
  -moz-animation-duration: .8s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: alternate-reverse;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-delay: 0s;
  -o-animation-name: scale-lower-infinite;
  -o-animation-duration: .8s;
  -o-animation-iteration-count: infinite;
  -o-animation-direction: alternate-reverse;
  -o-animation-delay: 0s;
  -o-animation-timing-function: ease-in-out;
  animation-name: scale-lower-infinite;
  animation-duration: .8s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-fill-mode: none;
}

@keyframes show{
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animateshow{
  opacity: 0;
  -webkit-animation-name: show;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 0;
  -moz-animation-name: show;
  -moz-animation-duration: 1s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: normal;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-delay: 0;
  -moz-animation-fill-mode: forwards;
  -o-animation-name: show;
  -o-animation-duration: 1s;
  -o-animation-iteration-count: 1;
  -o-animation-direction: normal;
  -o-animation-delay: 0;
  -o-animation-timing-function: ease-in-out;
  -o-animation-fill-mode: forwards;
  animation-name: show;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

.delayhalf{
    animation-delay: .5s;
}

.delay1{
    animation-delay: 1s;
}

.delay1half{
    animation-delay: 1.5s;
}

.delay2{
    animation-delay: 2s;
}

.delay2half{
    animation-delay: 2.5s;
}
.delay3{
    animation-delay: 3s;
}

.delay3half{
    animation-delay: 3.5s;
}

.topic-2-6 .page-content-container,
.topic-2-1 .page-content-container{
    position:relative;
    float: left;
    width: 100%;
    min-height: 425px;
    padding: 50px;
}
.topic-2-1 .page-content-container h1 span{
  color:#CFE4F4;
}
.topic-blur-bg{
  background:#fff;
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  opacity:0.4;
  border-radius:25px;
}
.topic-blur-badge-bg{
  background-position: center;
  background-size: 100% 100%;
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
}
.topic-blur-content{
  position:relative;
  z-index:1;
}
.popup-content-container{
  display:none;
}
.content ul{
  margin-left: 2em;
}
.content-image{
  max-height: 400px;
}
.content-image.smaller{
  max-height: 300px;
}
.content-border{
    border-left: 2px solid #2B3F80;
    padding-left: 40px;
}
.repeater-button{
    bottom: 8%;
    right: 8%;
}
.full-screen{
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .repeater-button {
    bottom: 10%;
  }
}
/* Topic 4 */
.topic-4-1 .percent{
  font-family: 'gotham_condensedbold', sans-serif;
  font-size: 110px;
  line-height: .9;
}
.large-wrap{
  width: 90%;
  margin: 0 auto;
}
.med-wrap{
  width: 80%;
  margin: 0 auto;
}
.small-wrap{
  width: 70%;
  margin: 0 auto;
}
.xs-wrap{
  width: 60%;
  margin: 0 auto;
}
.topic-4-1 .count{
  font-family: 'gotham_condensedbold', sans-serif;
  font-size: 80px;
}
.topic-4-1 .between-text{
  display: inline-block;
  width: 15px;
  margin: 0 20px 0px 10px;
}
.topic-4-1 .between-text b{
  margin-bottom: 10px;
  float: left;
}
.topic-4-1 .bottom-text{
  display: block;
  margin-top: -15px;
  font-size: 20px;
}
.topic-4-1 .badge-column{
  display: flex;
  text-align: center;
  justify-content: center;
}
.topic-4-1 .badge-column-single{
  display: inline-block;
  width: 20%;
}
.topic-4-1 .badge-column-single img{
  width: 70px;
}
.topic-4-1 .badge-column-single span{
    display: block;
}
.topic-4-1 .badge-column-single span.badge-percent{
  font-size: 35px;
}
.capital-letter{
  text-transform: uppercase;
}
.small-line-height{
  line-height: 1;
}
.popup-wrap.full-title .popup-content{
  padding: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: linear-gradient( 228deg, rgba(200,232,251,1) 0%, rgba(246,250,253,1) 100%);
  height: 80vh;
}
.popup-wrap.full-title .popup-container-title{
  padding: 0;
}
.popup-wrap.full-title .custom-btn-bottom{
  width: 100%;
  background: linear-gradient(90deg, rgba(14,153,199,1) 0%, rgba(86,198,224,1) 100%);
  text-align: center;
  font-family: 'gothambold';
  font-size: 33px;
}
.popup-wrap.full-title .popup-bg{
  opacity: 0.1;
}
.popup-wrap.full-title .popup-container{
  margin-top: 3%;
}
.topic-4-1-img img{
  max-width: 400px;
}
.topic-4-1-count-wrap{
  display: flex;
  justify-content: center;
}
.topic-4-1-count{
  background: linear-gradient(90deg, rgba(14,153,199,1) 0%, rgba(86,198,224,1) 100%);
  padding: 10px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  float: left;
  color: #fff;
  margin-right: 10px;
}
.topic-4-1-count span{
    float: left;
    margin-top: -5px;
}
.topic-4-1-count-wrap p{
    float: left;
    margin-left: 10px;
    width: 60%;
}
.topic-4-1-bottom-content{
    width: 45%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.topic-4-1-bottom-content img{
    width: 80px;
    float: left;
    margin-right: 20px;
}
.topic-4-1-bottom-content p{
  text-align: left;
}
.popup-wrap.full-title .popup-nav-container{
    position: static;
    bottom: auto;
    right: auto;
    padding: 0;
}
.popup-wrap.full-title .popup-nav-container a{
  background: transparent;
}
.popup-wrap.full-title .popup-nav-container a:first-child{
    position: absolute;
    left: 10px;
    bottom: 50%;
}
.popup-wrap.full-title .popup-nav-container a:last-child{
    position: absolute;
    right: 10px;
    bottom: 50%;
}
.popup-wrap.full-title .popup-nav-container img{
    width: 25px;
}
.topic-4-1-popup2-img{
  max-width: 750px;
}
.topic-4-1-transparent-wrap{
  background: rgba(255,255,255,.4);
  border-radius: 30px;
  padding: 20px;
}
.topic-4-1-popup3-bg{
    background-image: url(../images/topic-4-1-popup-3.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 400px 0;
    min-height: 550px;
}
.topic-4-1-popup .page-buttons-container{
    text-align: center;
    margin-top: -30px;
}
.topic-4-1-popup .content-list li{
    align-items: baseline;
    margin-bottom: 10px;
}
.topic-4-1-popup .content-list li:before{
    min-width: 8px;
    width: 8px;
}
.topic-4-1-popup4-bg{
  background-image: url(../images/topic-4-1-popup-4.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 400px 0;
  min-height: 550px;
}
.topic-4-2-icon{
  width: 80px;
}
.topic-4-3 img{
  max-height: 400px;
}
.topic-4-4-graph{
  float: left;
  width: 100%;
  margin-top: 25px;
}
.topic-4-4-column{
  background: linear-gradient(90deg, rgba(14,160,206,1) 0%, rgba(107,183,218,1) 100%);
  width: 33.333%;
  float: left;
  padding: 5px 0;
}
.topic-4-4-column.left-column{
  border-top-left-radius: 30px;
}
.topic-4-4-column.right-column{
  border-top-right-radius: 30px;
}
.topic-4-4-column.left-column-bottom{
  border-bottom-left-radius: 30px;
}
.topic-4-4-column.right-column-bottom{
  border-bottom-right-radius: 30px;
}
.topic-4-4-column img{
  width: 65px;
  margin-top: -40px;
}
.topic-4-4-graph *{
  color: #fff;
}
.topic-4-4-full-column{
  background: linear-gradient(90deg, rgba(43,63,152,1) 0%, rgba(14,160,206,1) 100%);
  float: left;
  width: 100%;
  padding: 10px 0 15px 0;
}
.topic-4-4-full-column .btn-wrap{
  margin-top: 10px;
}
.topic-4-4-column-inside-wrap{
  padding: 0 30px;
}
.column-bottom{
  min-height: 210px;
}
.topic-4-4-column .content-list li{
  margin-bottom: 5px;
}
.topic-4-4-column .content-list li:before{
    content: '';
    background-image: url(../images/topic-4-4-bullets.png);
    min-width: 10px;
    width: 10px;
}
@media only screen and (max-width: 1200px) {
  .topic-4-1-popup3-bg, .topic-4-1-popup4-bg{
      background-position: 300px 0;
      min-height: 450px;
  }
}
@media only screen and (max-width: 1000px) {
  .topic-4-1-popup3-bg, .topic-4-1-popup4-bg{
      background-position: 250px 0;
      min-height: 400px;
  }
}
/* Topic 5 */
.topic-5-1-col-2 .page-content-container{
  height: 100%;
  width:100%;
}
.topic-5-1-col-2 .topic-blur-badge-bg{
  width: 200%;
    margin-left: -81%;
    background-position: center 30px;
    background-size: 90% 110%;
}
.topic-5-1-col-2 .topic-blur-content{
margin-left: -40%;
padding-top: 76px;
}
.topic-5-1-col-1 .page-title-container{
  margin-bottom:0;
}
.topic-5-1-col-1 .btn-wrap{
  position:relative;
  z-index:999;
    width: 96%;
    margin-top: 0px;
    margin-left: 10px;
}
.topic-5-1-col-1 .custom-btn{
  border-radius: 10px;
  margin-right:20px;
  padding: 15px;
}
.topic-5-1-col-1 .custom-btn span{
  background: url(../images/badge-icon.png) no-repeat 5% center;
  background-size: 15px;
  /* padding: 27px; */
  padding: 5px 0px 5px 40px;
}
.bg-gradient{
  background: rgb(51,78,159);
  background: linear-gradient(90deg, rgba(51,78,159,1) 0%, rgba(97,164,207,1) 100%);
  border-radius: 50px;
  color: #fff;
  display: inline;
  font-size: 14px;
  text-align: center;
}
.bubble-container{
  float:left;
  width:100%;
}
.bubble-title{
  width: 250px;
    padding: 10px 20px;
}
.bubble-content{
  background:#eaf4fa;
  width:100%;
  min-height:100px;
  border-radius: 25px;
float:left;
}
.bubble-content p{
  padding: 20px 30px;
}
.topic-5-1-popup-img{
  max-width: 800px;
}
.yellow-blue-gradient-bg{
  background: linear-gradient(270deg, rgba(14,160,206,1) 0%, rgba(237,216,157,1) 100%);
}
.gradient-bottom-content{
  width: 100%;
  float: left;
  border-radius: 30px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
}
.gradient-bottom-content .content-list li{
  line-height: 1.5;
}
.gradient-bottom-content .content-list li:before{
    content: '';
    background-image: url(../images/topic-4-4-bullets.png);
    min-width: 10px;
    width: 10px;
}
.gradient-bottom-content *{
  color: #fff;
}
.gradient-bottom-content-left-wrap{
  width: 40%;
  float: left;
}
.gradient-bottom-content-right-wrap{
  width: 60%;
  float: left;
}
.popup-wrap .popup-content.dark-gradient{
  background: linear-gradient(25deg, rgba(75,156,203,1) 0%, rgba(246,250,253,1) 100%);
}
.img-height-xxs img{
  max-height: 160px;
}
.img-height-xs img{
  max-height: 250px;
}
.img-height-small img{
  max-height: 300px;
}
.img-height-med img{
  max-height: 400px;
}
.img-height-reg img{
  max-height: 450px;
}
.content-gradient-light-blue{
  background: linear-gradient(267deg, rgba(107,181,216,1) 0%, rgba(205,226,242,1) 100%);
  padding: 20px;
  border-radius: 30px;
  float: left;
  width: 100%;
}
.content-border-gold{
  border-left: 2px solid #938068;
}
.content-gradient-sky-blue{
  background: linear-gradient(229deg, rgba(107,182,217,1) 0%, rgba(206,227,243,1) 100%);
  width: 100%;
  float: left;
  border-radius: 30px;
  padding: 10px;
}
.disabled-font{
  font-family: 'Verdana', sans-serif !important;
}