/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  font-family: "DM Sans", sans-serif;
  background-color: white;
}

p {
  font-family: "DM Sans", sans-serif;
  font-weight:800;
  font-size:18px;
}

.row ul li {
  font-family: "DM Sans", sans-serif;
  font-weight:800;
  font-size:14px;
  margin-left:20px;
  list-style: disc!important;
}

.small-print {
    font-size:14px;
    line-height:16px;
}

.row .bullet-b {
    font-size: 22px;
    font-weight:800;
    color:#222a3b;
}

#sub-title {
    font-size:26px;
    margin-top:80px;
}

body, html {
  /* important */
  height: 100%;
}

a,
.row a {
  font-weight:800;   
  color:inherit;
  text-decoration: none;
}

.row a:hover,
a:hover {
  color: #009c99;
  text-decoration: none;
}

h1 {
  font-family: "DM Sans", sans-serif;
  font-weight:800;    
  font-size:60px;
}

.row h2 {
  font-family: "DM Sans", sans-serif;
  font-size:20px;
  font-weight:800;
  margin-top:20px;
}

.row h3 {
  font-family: "DM Sans", sans-serif;
  font-size:28px;
  font-weight: 800;
}

.row h4 {
  font-family: "DM Sans", sans-serif;
  font-size:30px;
  font-weight: 800;
  margin:50px 0;    
}

.row h5 {
  font-family: "DM Sans", sans-serif;
  font-size:24px;
  font-weight: 800;
  margin: 20px 0 0 0;    
}

@media only screen and (max-width: 768px) {
h1 {
  font-family: "DM Sans", sans-serif;
  font-size:80px;
} 
h3 {
  font-family: "DM Sans", sans-serif;
  font-size:30px;
}
#sub-title {
    font-size:20px;
    margin-top:100px;
    font-weight:200;
}    
}




/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

.open-table {
border-collapse: collapse;
border-spacing: 0;
border: 1px solid #ddd;
margin-bottom: 20px;
width: 100%;
}

.open-table tr td {
border: 1px solid #ddd;
padding:10px;
}

.row.lendo-video {
    padding-top:50px;
    width:100%;
    margin-left:0;
}

.lendo-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .lendo-video iframe {
    width: 100%;
    height: 600px; }
    @media (max-width: 992px) {
      .lendo-video iframe {
        height: 400px; } }
    @media (max-width: 768px) {
      .lendo-video iframe {
        height: 200px; } }

.center-img {
    max-width:100px;
    margin:20px auto;
}

#text-left h3,
#text-left h4,
#text-left p {
}

    .icon-block {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin:10px 0;
      width:100%;}
      .icon-block img {
        -ms-flex-item-align: start;
            align-self: flex-start;
          max-width:30px;
        padding-top: 5px; }
      .icon-block p {
        font-size: 18px;
        font-weight: 800;
        width: 100%;
        margin-left: 7px;
        margin-top: 3px;
        margin-bottom: 0px;
        line-height: 150%; }

#map {
    width:80%;
    margin: 0 10%;
}

.lendo-banner {
    position:absolute;
    width:100%;
    max-width:50%;
    right:25%;
    top:-5vh;
}

.lendo-banner img{
    width:100%;
}

@media (max-width: 768px) {
 .lendo-banner {
    position:absolute;
    width:80%;
    max-width:600px;
    right:10%;
    top:-3vh;
}     
}

.header-btns {
    margin:0 auto 50px auto;
    padding:10px;
    max-width:400px;
    width:80%;
    display: flex;
}

.header-btns h1 {
    border-radius:10px;
    font-size:20px;
    color:#fff;
    border:1px solid #6c7895;
    padding:10px;
    margin:10px;
}

.header-btns a:hover {
    text-decoration: none;
}

.header-btns h1:hover {
    color:#000;
    background-color:#ffffff;
    border:1px solid #6c7895;
}

@media (max-width: 992px) {
.header-btns h1 {
       display:none;
}
}

.btn-outline {
    border-radius:10px;
    border:1px solid #6c7895;
    margin-top:20px;
}

.btn-outline:hover {
    color:#fff;
}

.get-btn {
    border-radius:10px;
    font-size:20px;
    color:#fff;
    border:1px solid #6c7895;
    padding:10px;
    margin:10px;
    width:60%;
}

.get-btn:hover {
    color:#000;
    background-color:#ffffff;
    border:1px solid #6c7895;
}

.sm-more-btn {
    border-radius:10px;
    border:1px solid #6c7895;
    font-size: 14px;
    padding:4px;
}

#grayskull {
    -webkit-filter: grayscale(100%);/* Safari 6.0 - 9.0 */
    filter: grayscale(100%);    
}

#ftr-links a {
    padding:0 10px;
    color:#ffffff!important;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgb(153,153,153);
background: linear-gradient(235deg, rgba(153,153,153,1) 0%, rgba(242,242,242,1) 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  height: 60px;
  padding-top:0;
  margin: 10px 0 0 5%;
}
.cd-header #cd-logo img {
  display: block;
  height:40px;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 60px;
  }
  .cd-header #cd-logo { 
    margin: 10px 0 0 5%;
  }   
}

.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../img/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(60px);
  -moz-transform: translateY(60px);
  -ms-transform: translateY(60px);
  -o-transform: translateY(60px);
  transform: translateY(60px);
  background-color:rgba(46,45,44,.9);
  height:100vh; 
  padding-top:50px;
}

.cd-main-nav a {
  font-family: "DM Sans", sans-serif;   
  font-weight: 1000;
  display: block;
  height: 80px;
  font-size:20px;
  line-height: 40px;
  padding-top:20px;
  color: #fff;
  text-align: center;
}

.cd-main-nav a:hover {
  text-decoration: none; 
  color:#009c99;
}

/* Dropdown Menu */
.cd-main-nav ul li ul { 
    position: absolute;
    top:64px;
    width: 30%;
    margin:0;
    padding:0;
    display: none; 
}
.cd-main-nav ul li ul li { 
    text-align: left;
    width: 100%;
    position:relative;
}
.cd-main-nav ul li ul a { 
    padding: 10px; 
    background: #fff;
}
.cd-main-nav ul li:hover ul { 
    display: block;
    left:auto;
    right:auto; 
}

/* My late night media q */
@media only screen and (max-width: 768px) {
    
/* Dropdown Menu */
.cd-main-nav ul li ul { 
    position: absolute;
    top:64px;
    width: 30%;
    margin:0;
    padding:0;
    display: none; 
}
.cd-main-nav ul li ul li { 
    text-align: left;
    width: 100%;
    position:relative;
}
.cd-main-nav ul li ul a { 
    padding: 10px; 
    background: #fff;
}
.cd-main-nav ul li:hover ul { 
    display: block;
    left:auto;
    right:auto; 
}    
    
.no-touch .cd-main-nav .book-btn a {
    background-image: linear-gradient(to bottom right, #fff200, #0099ff);
    color:#fff;
    width:80%;
    margin:0 auto;
    text-align: center;
    border-radius: 10px;
} 
}

@media only screen and (min-width: 768px) {
  .cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
    position: static;
    width: auto;
    padding-top:5px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 50px;
  }
  .cd-main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 1000;
    font-size: 18px;
  }
  .no-touch .cd-main-nav a:hover {
    color: #009c99;  
    text-decoration: none;
  }
}

.hero-logo {
  margin-top:70vh;
}


.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.cd-main-content p {  
}
    
.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  font-family: "DM Sans", sans-serif;
  max-width: 1400px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../img/shard-london.jpg");
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../img/st-pauls-aerieal.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../img/twes-london-skyline.jpg");
}
.cd-fixed-bg.cd-bg-4 {
  background-image: url("../img/twes-london-skyline1.jpg");
}
@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
        font-family: "DM Sans", sans-serif;
        font-weight: 200;
        font-size:60px;
        text-transform: uppercase;
        padding-top:60vh;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-weight: 200;
  }
}

.cd-fixed-bg.cd-bg-1:before,
.cd-fixed-bg.cd-bg-2:before,
.cd-fixed-bg.cd-bg-3:before,
.cd-fixed-bg.cd-bg-4:before,
.cd-fixed-bg.cd-bg-5:before,
.cd-fixed-bg.cd-bg-6:before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
background: rgb(46,45,44);
background: linear-gradient(180deg, rgba(46,45,44,0) 0%, rgba(17,17,17,1) 90%);
		opacity: 0.9;
}

.cd-scrolling-bg {
  position: relative;
  min-height: auto;
  padding: 2em 0;
  line-height: 1.6;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  z-index: 2;
  overflow-x: hidden;
}
.cd-scrolling-bg.cd-color-1 {
  background-color: #ffffff;
  color: #2e2d2c;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #2e2d2c;
  color: #ffffff;    
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #009c99;
  color: #2e2d2c;
}
.cd-scrolling-bg.cd-color-3 a:hover{
  color: #fff;
}

.cd-scrolling-bg.cd-color-4 {
  background-color: #dadada;
  color: #2e2d2c;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 4em 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}


         .btn-grad {background-image: linear-gradient(to right, #009c99 0%, #2e2d2c  51%, #009c99  100%)}
         .btn-grad {
            max-width:200px;
            margin: 10px;
            padding: 5px 15px;
            text-align: center;
            text-transform: none;
            transition: 0.5s;
            background-size: 200% auto;
            color: #fff!important;            
            border-radius: 20px;
            display: block;
          }

          .btn-grad:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
          }
         
