
body {
  margin: 0;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  position: absolute;
  padding-left: 20px;
  float: left;
  line-height: 70px;
  text-transform: uppercase;
  font-size: 1.4em;
}

.brand a,
.brand a:visited {
  color: #463f3f;
  text-decoration: none;
}

.logo-main {
    width:75%;
    height:75%;
}

nav {
  font-family: 'Playfair Display', 'Times New Roman', Times, serif;
  font-weight: 500;
  font-size: 1.1em;
  line-height: 0.9;
  float: right;
  letter-spacing: 0.068rem;
  float: right;
}

.city {display:none}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  float: left;
  position: relative;
}

nav ul li a {
  display: block;
  padding: 0 20px;
  line-height: 80px;
  background: #ffffff;
  color: #333;
  text-decoration: none;
  /*
  The full path of this code is nav ul li a:not(:only-child):after. This means that the code will apply to any a tag in our nav list that is NOT an only child, aka any dropdown. The :after means it comes after the output of the tag. I’ve decided that to specify any nav item as a dropdown, it will be followed by a unicode arrow – ▾ (#9662).
  */
}

nav ul li a:hover {
  background: #333A57;
  color: #88BAC8;
}

nav ul li ul li {
  min-width: 190px;
}

nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav-dropdown {
  position: absolute;
  z-index: 1;
  /* Guarantees that the dropdown will display on top of any content. */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  height: 70px;
  width: 70px;
}

@media only screen and (max-width: 800px) {
  .nav-mobile {
    display: block;
  }

  nav {
    width: 100%;
    padding: 70px 0 15px;
  }

  nav ul {
    display: none;
  }

  nav ul li {
    float: none;
  }

  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }

  nav ul li ul li a {
    padding-left: 30px;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #463f3f;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
  top: -10px;
}

#nav-toggle span:after {
  bottom: -10px;
}

#nav-toggle.active span {
  background-color: transparent;
}

#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 800px) {
  .nav-list {
    display: block !important;
  
  }
}
/* 
.navigation – the outer wrapper for the navbar. Specifies the height and color, and will stretch the full width of the viewport.
*/
.navigation {
  height: 70px;
  background: #ffffff;
  margin: 10px;
}

/*
.nav-container – the inner wrapper for the navbar. Defines how far the actual content should stretch.
*/
.nav-container {
  max-width: 1000px;
  margin: 0 auto;
}

.hero {
  background-image: url(../img/background.jpg);
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  background-color: #ff5733;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.MVPdark {
  display: flex;
  background-color: #000;
  padding: 100px 0;
}

.MVPdarkImage {
  flex: 1;
 
}

.MVPdarkText {
  flex: 1;
}

.features h2 {
  text-align: center;
  margin-bottom: 40px;
}

.feature {
  text-align: center;
  margin-bottom: 40px;
}

.feature h3 {
  font-size: 2em;
}

.feature p {
  font-size: 1.1em;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}


.hero {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  height: 70vh;
  overflow: hidden;
  position: relative;
  width: 100%;
  background-image: url('../img/hero-banner.png?crop=entropy&dpr=2&fit=crop&fm=jpg&h=700&ixjsv=2.1.0&ixlib=rb-0.3.5&q=50&w=1300');
}
@media screen and (min-width: 640px) {
  .hero {
    background-position: 50% 0;
  }
}
.hero:after {
  background-color: rgba(62, 92, 135, 0.5);
  bottom: 0;
  content: "";
  left: -2000%;
  position: absolute;
  right: -2000%;
  top: 0;
  z-index: 1;
}

.hero-container {
  box-sizing: border-box;
  height: auto;
  padding: 0px 50px;
  position: relative;
  z-index: 2;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-duration: 1.2s;
}

@media screen and (min-width: 640px) {
  .hero-container {
    height: 100%;
  }
}
.hero-container p {
  color: white;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 6px;
  opacity: 0.8;
  text-transform: uppercase;
  text-align: left;
}

@media screen and (max-width: 726px) {
  .hero-container p {
    height: 100%;
    text-align: center;
  }
}

.hero-button {
  background: rgba(255, 255, 255, 0.8);
  color: #44575b;
  font-size: 14px;
  float: left;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 30px;
  padding: 20px 40px;
  text-decoration: none;
}

@media screen and (max-width: 726px) {
  .hero-button {
    float: none;
    vertical-align: -2rem;
}
}

.hero-title {
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 7vw;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.1;
  margin: 5px 0;
  text-align: left;
  width: 85%;
  text-shadow: 2px 2px #000;
}

@media screen and (max-width: 726px) {
  .hero-title {
    font-size: 10vw;
    text-align: center;
    width: 100%;
  }
}

.main-content {
  height: auto;
  padding: 30px 50px;
  position: relative;
  width: 60%;
}

.main-content p {
  color: #25373D;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.5;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-12px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-12px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.animate {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.2, 0.3, 0.25, 0.9);
          animation-timing-function: cubic-bezier(0.2, 0.3, 0.25, 0.9);
}

.delay {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-400 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-500 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-600 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay-700 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.delay-800 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}


.inspirebox1 {
      display: flex;
      background-color: #414c57;
      align-items: center;
     
    }

    .inspireboxUnder1 {
      display: flex;
      background-color: #414c57;
      
     
    }

    .headleft1 {
      flex: 1;
    text-align: right;
    font-family: 'Playfair Display', 'Times New Roman', Times, serif;
    font-weight: 500;
    margin: 20px 0px 20px 20px;
    font-size: 2.5rem;
    letter-spacing: 0.035em;
    color: #fff;
    }

    .headright1 {
       flex: 4;
       background-color: #414c57;
       
    }

    .headrightbox {
      width: 95%;
    border: 1px solid #fff;
    padding: 1px;
    margin: 20px 10px 10px 10px;
    background-color: #fff;

    }

    .inspirepicbox1 {
      flex: 1;
      margin: auto;
  
    }

    .inspirepic {
      width: 100%;
      height:100%;
    }

    .inspirepic2 {
      width: 80%;
      height:100%;
    }

    @media only screen and (max-width: 800px) {
      .page-picleft {
      flex-direction: column;
    }   

    .inspireboxUnder1 {
      display: flex;
      background-color: #414c57;
      flex-direction: column;
        
    }

    .inspirepicbox1 {
      flex: 1;
      background: url(../img/curiosity.png);
    background-size:cover;
    background-position: inherit;
    margin: 0% 0%;
    max-height: 500px;
}
  
    .inspirepic {
      visibility: hidden;
    }

    .inspirepic2 {
      visibility: hidden;
    }

    .inspiretext1 {
text-align: center;
width: 100%;
    }
  }

    .inspiretext1 {
        flex: 4;
        margin: 0% 0%;
        background-color: #414c57;
        color:#fff;
    }

    .inspiretext1 h1 {
      font-family: 'Playfair Display', 'Times New Roman', Times, serif;
      font-size: 2.87rem;
    color: #ffc367;
    font-weight: 500;
    margin: 1% 4% 5% 2%;
    width: 90%;
    }

    .inspiretext1 p {
      font-family: "Noto Sans", Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.012rem;
    line-height: 1.78em;
    font-weight: 300;
    margin: 1% 4% 5% 2%;
    width: 90%;
    }


    .headright2 {
       flex: 4;
       background-color: #ffc367;
       
    }

    .headrightbox2 {
      width: 95%;
    border: 1px solid #000;
    padding: 1px;
    margin: 20px 10px 10px 10px;
    background-color: #000;

    }

    .inspirebox2 {
      display: flex;
      background-color: #ffc367;
      align-items: center;
     
    }

    .inspireboxUnder2 {
      display: flex;
      background-color: #ffc367;
      
     
    }

    .headleft2 {
      flex: 1;
    text-align: left;
    font-family: 'Playfair Display', 'Times New Roman', Times, serif;
    font-weight: 500;
    margin: 20px 20px 20px 0px;
    font-size: 2.5rem;
    letter-spacing: 0.035em;
    color: #000;
    }

    .headright2 {
       flex: 4;
       background-color: #ffc367;
       
    }


    .inspirepicbox2 {
      flex: 1;
      margin: 0px 20px 10px 0px;
  
    }

    .inspiretext2 {
        flex: 4;
        margin: 0% 5%;
        background-color: #ffc367;
        color:#000;
        text-align: right;
    }

    @media only screen and (max-width: 800px) {
 

    .inspireboxUnder2 {
      display: flex;
      background-color: #ffc367;
      flex-direction: column-reverse;
        
    }

    .inspirepicbox2 {
      flex: 1;
      background: url(../img/creativity.png);
    background-size:cover;
    background-position: inherit;
    margin: 0% 0%;
    max-height: 500px;
}
  

    .inspiretext2 {
text-align: center;
width: 75%;
    }

    .inspiretext2 p {
text-align: center;
width: 70%;
    }
  }



    .inspiretext2 h1 {
      font-family: 'Playfair Display', 'Times New Roman', Times, serif;
      font-size: 2.87rem;
      color: #18244d;
    font-weight: 500;
    margin: 1% 2% 5% 4%;
    width: 100%;
    }

    .inspiretext2 p {
      font-family: "Noto Sans", Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.012rem;
    line-height: 1.78em;
    font-weight: 300;
    margin: 1% 2% 5% 4%;
    width: 100%;
    }



    .inspirebox3 {
      display: flex;
      background-color: #18244d;
      align-items: center;
     
    }

    .inspireboxUnder3 {
      display: flex;
      background-color: #18244d;
      
     
    }

    .headleft3 {
      flex: 1;
    text-align: right;
    font-family: 'Playfair Display', 'Times New Roman', Times, serif;
    font-weight: 500;
    margin: 20px 0px 20px 20px;
    font-size: 2.5rem;
    letter-spacing: 0.035em;
    color: #fff;
    }

    .headright3 {
       flex: 4;
       background-color: #18244d;
       
    }


    .inspirepicbox3 {
      flex: 1;
      margin: auto;
  
    }


    @media only screen and (max-width: 800px) {
 

    .inspireboxUnder3 {
      display: flex;
      background-color: #18244d;
      flex-direction: column;
        
    }

    .inspirepicbox3 {
      flex: 1;
      background: url(../img/empathy.png);
    background-size:cover;
    background-position: inherit;
    margin: 0% 0%;
    max-height: 500px;
}
  

    .inspiretext3 {
text-align: center;
width: 100%;
    }
  }

    .inspiretext3 {
        flex: 4;
        margin: 0% 0%;
        background-color: #18244d;
        color:#fff;
    }

    .inspiretext3 h1 {
      font-family: 'Playfair Display', 'Times New Roman', Times, serif;
      font-size: 2.87rem;
      color: #fffeb3;
    font-weight: 500;
    margin: 1% 4% 5% 2%;
    width: 90%;
    }

    .inspiretext3 p {
      font-family: "Noto Sans", Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.012rem;
    line-height: 1.78em;
    font-weight: 300;
    margin: 1% 4% 5% 2%;
    width: 90%;
    }


    .headrightbox {
      width: 95%;
    border: 1px solid #fff;
    padding: 1px;
    margin: 20px 10px 10px 10px;
    background-color: #fff;

    }


    .headright4 {
       flex: 4;
       background-color: #14452f;
       
    }

    .headrightbox4 {
      width: 95%;
    border: 1px solid #fff;
    padding: 1px;
    margin: 20px 10px 10px 10px;
    background-color: #fff;

    }

    .inspirebox4 {
      display: flex;
      background-color: #14452f;
      align-items: center;
     
    }

    .inspireboxUnder4 {
      display: flex;
      background-color: #14452f;
      
     
    }

    .headleft4 {
      flex: 1;
    text-align: left;
    font-family: 'Playfair Display', 'Times New Roman', Times, serif;
    font-weight: 500;
    margin: 20px 20px 20px 0px;
    font-size: 2.5rem;
    letter-spacing: 0.035em;
    color: #fff;
    }

    .headright4 {
       flex: 4;
       background-color: #14452f;
       
    }


    .inspirepicbox4 {
      flex: 1;
      margin: 0px 20px 10px 0px;
  
    }

    .inspiretext4 {
        flex: 4;
        margin: 0% 5%;
        background-color: #14452f;
        color:#fff;
        text-align: right;
    }

    @media only screen and (max-width: 800px) {
 

    .inspireboxUnder4 {
      display: flex;
      background-color: #14452f;
      flex-direction: column-reverse;
        
    }

    .inspirepicbox4 {
      flex: 1;
      background: url(../img/resilience.png);
    background-size:cover;
    background-position: inherit;
    margin: 0% 0%;
    max-height: 500px;
}
  

    .inspiretext4 {
text-align: center;
width: 75%;
    }

    .inspiretext4 p {
text-align: center;
width: 70%;
    }

    .inspiretext4 h1 {
text-align: center;
    }
  }



    .inspiretext4 h1 {
      font-family: 'Playfair Display', 'Times New Roman', Times, serif;
      font-size: 2.87rem;
      color: #ffc367;
    font-weight: 500;
    margin: 1% 2% 5% 4%;
    width: 100%;
    }

    .inspiretext4 p {
      font-family: "Noto Sans", Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.012rem;
    line-height: 1.78em;
    font-weight: 300;
    margin: 1% 2% 5% 4%;
    width: 100%;
    }

    
    .mainbenefit {
      display:flex;
      width:100%;
      align-items: center;
      text-align: center;
      background-color: #0e140f;
      color: #fff;
    }

    
    .benefitdark {
flex:1 75%;
margin:5% 20%;

    }

    .PlayfairHeadline-md-top {
font-family: Cinzel,'Playfair Display','Times New Roman', Times, serif;
font-weight: 400;
font-size: 2.2em;
line-height: 0.9;
    }

    .PlayfairHeadline-md {
font-family: 'Playfair Display','Times New Roman', Times, serif;
font-weight: 400;
font-size: 2.2em;
line-height: 0.9;
    }

    .swcontainer {
            display: flex;
            cursor: pointer;
        }

        
.swcontainer .swbtn {
	position: relative;
	width: 200px;
	height: 40px;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
    padding-left: 30px;
}
.swcontainer .swbtn a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	padding: 10px;
	letter-spacing: 1px;
	text-decoration: none;
	overflow: hidden;
	color: #fff;
	font-weight: 400px;
	z-index: 1;
	transition: 0.5s;
	backdrop-filter: blur(15px);
}
.swcontainer .swbtn:hover a {
	letter-spacing: 3px;
}
.swcontainer .swbtn a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
	transform: skewX(45deg) translate(0);
	transition: 0.5s;
	filter: blur(0px);
}
.swcontainer .swbtn:hover a::before {
	transform: skewX(45deg) translate(200px);
}
.swcontainer .swbtn::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	bottom: -5px;
	width: 30px;
	height: 10px;
	background: #2db2ff;
	border-radius: 10px;
	transition: 0.5s;
	transition-delay: 0.5;
}
.swcontainer .swbtn:hover::before /*lightup button*/ {
	bottom: 0;
	height: 50%;
	width: 80%;
	border-radius: 30px;
}

.swcontainer .swbtn::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	top: -5px;
	width: 30px;
	height: 10px;
	background: #2db2ff;
	border-radius: 10px;
	transition: 0.5s;
	transition-delay: 0.5;
}
.swcontainer .swbtn:hover::after /*lightup button*/ {
	top: 0;
	height: 50%;
	width: 80%;
	border-radius: 30px;
}
.swcontainer .swbtn:nth-child(1)::before, /*chnage 1*/
.swcontainer .swbtn:nth-child(1)::after {
	background: #2db2ff;
	box-shadow: 0 0 5px #2db2ff, 0 0 15px #2db2ff, 0 0 30px #2db2ff,
		0 0 60px #2db2ff;
}
.swcontainer .swbtn:nth-child(2)::before, /* 2*/
.swcontainer .swbtn:nth-child(2)::after {
	background: #2db2ff;
	box-shadow: 0 0 5px #2db2ff, 0 0 15px #2db2ff, 0 0 30px #2db2ff,
		0 0 60px #2db2ff;
}
.swcontainer .swbtn:nth-child(3)::before, /* 3*/
.swcontainer .swbtn:nth-child(3)::after {
	background: #1eff45;
	box-shadow: 0 0 5px #1eff45, 0 0 15px #1eff45, 0 0 30px #1eff45,
		0 0 60px #1eff45;
}


.page-two {
      width:100%;
    height:100%;
    background-color: #fff;
  
  }
 
    .page-picleft {
      display:flex;
    }

    .swpage-pic2 {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background: url(../img/Journal-Of-Synchronicities.png);
    background-size:cover;
     background-position: center;
    }

    .swpage-pic3 {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background: url(../img/Journal-Of-Manifesting.png);
    background-size:cover;
     background-position: center;
    }

    .swpage-pic4 {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background: url(../img/Journal-Of-Appreciation.png);
    background-size:cover;
     background-position: center;
    }

    .swpage-pic5 {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background: url(../img/Hypnotherapy.png);
    background-size:cover;
     background-position: center;
    }
    
       .swpage-pic6 {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background: url(../img/EC4.png);
    background-size:cover;
     background-position: center;
    }
    
       .swpage-pic7 {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background: url(../img/EC5.png);
    background-size:cover;
     background-position: center;
    }
    
       .swpage-pic8 {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background: url(../img/EC6.png);
    background-size:cover;
     background-position: center;
    }
    
    @media only screen and (max-width: 800px) {
      .page-picleft {
      flex-direction: column;
    }   

    .page-picright {
      flex-direction: column-reverse;
    }  
    
    .swpage-pic {
     
      padding: 60px;
            
    }

    .swpage-pic2 {
     
     padding: 60px;
           
   }

   .swpage-pic3 {
     
     padding: 60px;
           
   }

   .swpage-pic4 {
     
     padding: 60px;
           
   }

   .swpage-pic5 {
     
     padding: 60px;
           
   }
   
      .swpage-pic6 {
     
     padding: 60px;
           
   }

   .swpage-pic7 {
     
     padding: 60px;
           
   }

   .swpage-pic8 {
     
     padding: 60px;
           
   }


}

    .page-picright {
      display:flex;
    }

    .page-pic {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background:linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,1)), url(../img/rtt-half.png);
    background-size:cover;
     background-position: center;
    }

    .swpage-pic {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background: url(../img/Energy-Centre-Cards.png);
    background-size:cover;
     background-position: center;
    }

    .page-pic2 {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background:linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,1)), url(../img/rtt-half2.png);
    background-size:cover;
     background-position: center;
    }

    .page-pic {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background:linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,1)), url(../img/rtt-half.png);
    background-size:cover;
     background-position: center;
    }

    .page-pic2 {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background:linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,1)), url(../img/rtt-half2.png);
    background-size:cover;
     background-position: center;
    }

    .page-pic3 {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background:linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,1)), url(../img/rtt-half3.png);
    background-size:cover;
     background-position: center;
    }

    .page-pic4 {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background:linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,1)), url(../img/rtt-half4.png);
    background-size:cover;
     background-position: center;
    }

    .page-pic5 {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background:linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,1)), url(../img/rtt-half5.png);
    background-size:cover;
     background-position: center;
    }

    .page-pic6 {
      flex: 0.5 50%;
      position: relative;
      min-height: 200px;
            background:linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,1)), url(../img/rtt-half6.png);
    background-size:cover;
     background-position: center;
    }
    .page-text {
      flex: 0.5 50%;

    }

    .page-text-wrap {
      margin:auto;
      padding:15%;

    }

    .contactcontainer {
        
        display: flex;
        width: 90%;
        align-items: center;
        padding: 1rem;
    }
      .contactpage {
        flex:1;
        padding: 25px;
      }
        svg {
          flex:1;
            max-width: 100%;
            height: auto;
            margin-bottom: 2rem;
        }
        
         
        .contactform {
          flex:1;
            width: 100%;
        }
        
        .contactform form {
            width: 100%;
        }
        
        .contactform form .title {
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .contactform form .form-group {
            position: relative;
            margin-bottom: 1.5rem;
        }
        
        .contactform form .form-control {
            width: 80%;
            padding: 1rem;
            border-radius: 2rem;
            border: none;
            background-color: #f2f6f8;
            box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
            font-family: "Noto Sans", Helvetica, Arial, sans-serif;
        }
        
        .contactform form .form-control:focus {
            background-color: #d0e8f3;
            outline: none;
        }
        
        .contactform form .icon {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 1.5rem;
            color: #57565c;
        }
        
        .checklist {
            margin-bottom: 1.5rem;
        }
        
        .checklist .content-row {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        
        .checklist .content-row input[type="checkbox"] {
            margin-right: 0.5rem;
        }
        
        .form-group.message {
            margin-bottom: 2rem;
        }

        .text-center {
text-align: center;

        }
        
        .contactform .btn.btn-primary {
          font-family: "Noto Sans", Arial, Helvetica, sans-serif;
          font-size: 1rem;
          text-shadow: 0.4px 0.4px #333;
            width: 100%;
            max-width: 200px;
            margin: 0 auto;
            font-weight: bold;
            height: 3rem;
            border: none;
            border-radius: 3rem;
            background-image: linear-gradient(131deg, #ffd340, #ff923c, #ff923c, #ff923c);
            background-size: 300% 100%;
            transition: all 0.3s ease-in-out;
        }
        
        .contactform .btn.btn-primary:hover:enabled {
            box-shadow: 0 0.5em 0.5em -0.4em #ff923cba;
            background-size: 100% 100%;
            transform: translateY(-0.15em);
        }

        @media only screen and (max-width: 764px) {
          .contactcontainer {
        
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }
}
   
.redspan {
  color: #CD1D25;
}


/* CSS */
.button-58 {
  align-items: center;
  background-color: #06f;
  border: 2px solid #06f;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  fill: #000;
  font-family: Inter,sans-serif;
  font-size: 16px;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  letter-spacing: -.8px;
  line-height: 24px;
  min-width: 140px;
  outline: 0;
  padding: 0 17px;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-58:focus {
  color: #171e29;
}

.button-58:hover {
  background-color: #3385ff;
  border-color: #3385ff;
  fill: #06f;
}

.button-58:active {
  background-color: #3385ff;
  border-color: #3385ff;
  fill: #06f;
}

@media (min-width: 768px) {
  .button-58 {
    min-width: 170px;
  }
}

.thankyou {
	display: flex;
	margin: 5%;
	align-items:center;
}

.thankyou-inside {
	flex: 1;
	width: 50%;
	padding: 10px;
	text-align: center;
}

.thankyou-inside h1 {
	font-family: 'Playfair Display', 'Times New Roman', Times, serif;
      font-size: 2.87rem;
    color: #000;
    font-weight: 500;
    margin: 1% 4% 5% 2%;
    width: 90%;
}

.thankyou-inside p {
	font-family: "Noto Sans", Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.012rem;
    line-height: 1.78em;
    font-weight: 300;
    margin: 1% 4% 5% 2%;
    width: 90%;
}
