/* ------------------------------------------------------ */
/* BASIC SETUP */
/* ------------------------------------------------------ */

* {
    margin: 0;
    padding: 0; 
    box-sizing: border-box; 
}

html {
    font-family: "Open Sans", "Arial", sans-serif;
    font-size: 20px;
    color: #555; 
    background-color: #fff; 
    font-weight: 300; 
    text-rendering: optimizeLegibility;
}

body {
    overflow-x: hidden;
}

.mobile-menu-block {
    display: none;
}


#overlay-black {
    position: fixed; 
    height: 100vh;
    width: 100%; 
    background: black;
    opacity: 0.5;
    z-index: 1;
    display: none;
}


@media only screen and (max-width: 1000px) {
  
    html {
        font-size: 14px;
    }
    
    .mobile-menu-block {
        width: 80%;
        height: 100vh;
        background: white;
        position: fixed;
        top: 0;
        z-index: 3;
    }
    
    .mobile-menu-block h3 {
        font-size: 160%;
        padding: 20px 0 20px 20px;
        border-bottom: 1px solid #e3ebf1;
    }
    
    .mobile-menu-block li {
        display: block;
        font-size: 120%;
    }
    
    .mobile-menu-block li a:link, 
    .mobile-menu-block li a:visited {
        display: inline-block;
        padding: 20px 0 20px 20px;
        width: 100%;
        font-weight: 400;
        text-decoration: none;
        color: #7b8498;
    }

    .mobile-menu-block li a:hover, 
    .mobile-menu-block li a:active {
        background-color: #e3ebf1;
        
    }
    
    .mobile-menu-list-element ion-icon {
        color: #7b8498;
        float: right;
        display: inline-block;
        font-size: 150%;
    }
    
    .cancel-icon {
        display: none;
    }
    
}

/* ------------------------------------------------------ */
/* REUSABLES */
/* ------------------------------------------------------ */

h1, h2, h3 {
    font-weight: 900; 
    /*text-transform: uppercase;*/
    /*word-spacing: 4px; */
    /*letter-spacing: 1px; */
}

h1 {
    color: #fff; 
    margin: 0 0 20px 0; 
    font-size: 300%; 
}

h2 {
    color: #7b8498;
    font-weight: 900;
    margin-top: 40px;
    font-size: 160%;
    text-align: center;
}

h2:after {
    display: block; 
    height: 2px; 
    background-color: #7b8498;
    content: " ";
    width: 75px;
    margin: 0 auto;
    margin-top: 20px;
}

h3 {
    color: #7b8498;
}

p {
    font-weight: 100; 
    color: white;
}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
}

li {
    list-style: none;
    display: inline-block;
}

.row {
    max-width: 1140px; 
    margin: 0 auto; 
}

ion-icon {
  font-size: 250%;
    color: #46a0e6;
}

@media only screen and (max-width: 900px) {
    p {
        font-size: 120%;
    }
    
    h2 {
        font-size: 192%;
    }
}

/* ------------------------------------------------------ */
/* BUTTONS */
/* ------------------------------------------------------ */

.btn:link, 
.btn:visited {
    display: inline-block;
    padding: 15px 45px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 200px;
    border: 2px solid #3b5998;
    transition: background-color 0.5s, border 0.5s, color 0.5s;
}

.btn:hover, 
.btn:active {
    background-color: #2f477a;
    border: 2px solid #2f477a;
    color: white;
}

/* ------------------------------------------------------ */
/* HEADER */
/* ------------------------------------------------------ */

header {
    background-image: linear-gradient(336deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(hero-img.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.logo {
    color: white; 
    font-size: 140%;
    display: inline-block;
    float: left; 
    margin-top: 5px; 
    font-weight: 900;
    width: 40%;
}

.mobile-menu {
    display: none;
}

.main-nav {
    float: right; 
    margin-top: 25px; 
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0; 
    color: #fff; 
    text-decoration: none;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s; 
    margin-left: 20px;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #3b5998;
}

.hero-text-box {
    position: absolute; 
    width: 1140px; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -60%);
    text-align: center;
}

.hero-text-box p {
    margin-bottom: 30px;
    line-height: 150%;
}

.btn-full {
    background-color: #3b5998;
    color: white;
}

.btn-ghost {
    color: #E50914;
    margin-left: 20px;
    color: white;
}

.nav-row {
    position: relative; 
    z-index: 2;
}

.logo-img {
    width: 70%;
}

@media only screen and (max-width: 1000px) {
  
    .mobile-menu {
        display: inline-block;
        float: right;
        margin-top: 20px;
        margin-right: 20px;
        user-select: none;
        cursor: pointer;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu ion-icon {
        color: white;
    }
    
    .mobile-menu ion-icon:after {
        top:-5px;
    }
    
    .logo {
        margin-left: 20px;
    }
    
    .hero-text-box h1 {
        font-size: 280%;
    }
    
    .hero-text-box {
        width: 90%;
    }
    
    .logo-img {
        width: 250px;
        margin-top: 5px;
    }
    
}

/* ------------------------------------------------------ */
/* BACKGROUNDS */
/* ------------------------------------------------------ */

.section-backgrounds {
    background: #f6f7fa; 
    border-bottom: 1px solid #e3ebf1; 
    padding: 0 0 45px 0;
    
}

.section-backgrounds h2 {
    padding-bottom: 5%; 
    
}

.company-list {
    text-align: center;
}

.company-list li {
    margin-right: 6%;
    max-width: 15%;
}

.jp-img {
    max-width: 110%;
    height: auto;
    width: auto;
    margin-bottom: 40%;
}

.uchicago-img {
    max-width: 100%;
    height: auto;
    width: auto;
    margin-bottom: 40%;
}

.rbc-img {
    max-width: 70%;
    height: auto;
    width: auto;
    margin-bottom: 40%;
}

.booth-img {
    max-width: 100%;
    height: auto;
    width: auto;
    margin-bottom: 40%;
}

.lazard-img {
    max-width: 90%;
    height: auto;
    width: auto;
}

.goldman-img {
    max-width: 90%;
    height: auto;
    width: auto;
}

.cs-img {
    max-width: 110%;
    height: auto;
    width: auto;
}

.google-img {
    max-width: 100%;
    height: auto;
    width: auto;
}

.background-break {
    display:none;
}

@media only screen and (max-width: 650px) {
    
    .section-backgrounds {
        padding: 0% 0 5% 0;
    }
    
    .section-backgrounds h2 {
        margin-top: 6%;
        padding-bottom: 8%;
    }
  
    .company-list li {
        max-width: 28%;
        margin-left: 8%;
        margin-right: 8%;
    }
    
    .background-break {
        display: block;
        height: 10%;
    }
    
    .jp-img {
        margin-bottom: 30%;
    }
    
    .uchicago-img {
        margin-bottom: 30%;
    }
    
    .booth-img {
       margin-bottom: 30%; 
    }
    
    .rbc-img {
       margin-bottom: 30%; 
    }
    
    .goldman-img {
       margin-bottom: 30%; 
    }
    
    .lazard-img {
        margin-bottom: 30%;
    }
    
    .cs-img {
        margin-bottom: 30%;
    }
    
    .google-img {
        margin-bottom: 30%;
    }
    
    
}

/* ------------------------------------------------------ */
/* DESCRIPTION */
/* ------------------------------------------------------ */

.section-description {
    text-align: center;
    background: #f6f7fa;
    padding-bottom: 2%;
}

.section-description-services {
    border-top: 1px solid #e3ebf1;
}

.section-description img {
    margin-top: 10%; 
    margin-right: 20px;
    width: 105%;
}

.section-description h2 {
    margin-top: 11%; 
    color: #7b8498;
}

.section-description p {
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #7b8498; 
    font-size: 90%;
}

.section-description ul {
    list-style-type: square;
}

.section-description li {
    text-align: left;
    display: block;
    margin-bottom: 30px;
    padding: 0 20px 0 40px;
    line-height: 125%;
    list-style: square;
}

p ion-icon {
    font-size: 120%;
    color: #7b8498;
}

.phone-description {
    display: none;
}

@media only screen and (max-width: 650px) {
    
    .phone-description {
        display: block;
        padding-bottom: 3%;
    }
    
    .computer-description {
        display: none;
    }
    
    .phone-description img {
        width: 50%;
        height: auto;
        margin-top: 5%;
        margin-bottom: 0%;
    }
    
    .phone-description h2 {
        margin-top: 1%;
    }
    
    .section-description p {
        font-size: 120%;
        line-height: 150%;
    }
    
    .section-description {
        padding: 5% 0;
    }
    
    .header-description {
        max-width: 90%;
        margin: 0 auto;
    }
   
    
}

/* ------------------------------------------------------ */
/* WORKS */
/* ------------------------------------------------------ */

.section-works {
    text-align: center;
    background: white;
    padding: 1% 0 1.5% 0;
}

.section-works-grey {
    background: #f6f7fa;
}

.section-works p {
    margin-top: 20px;
    font-weight: 400;
    color: #7b8498;
}

.works-box {
    line-height: 150%;
    margin: 30px 0 60px 0;
}

@media only screen and (max-width: 650px) {
    
    .section-works {
        padding-right: 5%; 
        padding-left: 5%;
    }
    
    .section-works h3 {
        font-size: 150%;
    }
    
    .section-works p {
        width: 80%;
        margin: 20px auto 0 auto;
    }

}

/* ------------------------------------------------------ */
/* PROBLEM */
/* ------------------------------------------------------ */

.section-problem {
    background-image: linear-gradient(336deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(blackhole.jpg);
    background-size: cover;
    background-position: center;
    padding-bottom: 5%;

}

.row-problem {
    padding-top: 25px;
}

.row-problem h2 {
    color: white;
    margin-bottom: 30px;
}

.row-problem h2:after {
    background: white;
}

.row-problem p {
    line-height: 170%;
    margin-bottom: 20px;
    padding: 0px 0px 20px 0px;
    border-bottom: 1px solid #e3ebf1;
}

.row-problem-list {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

.row-problem-list a {
    margin-top: 20px;
}

@media only screen and (max-width: 650px) {
    
    .section-problem {
        padding-top: 0%; 
        padding-bottom: 8%;
    }
    
    .row-problem {
        padding-top: 0;
    }
    
    
}

/* ------------------------------------------------------ */
/* PRODUCTS */
/* ------------------------------------------------------ */

.section-products {
    background: #f6f7fa;
}

.section-products p {
    margin-top: 20px;
    font-weight: 400;
    color: #7b8498;
    line-height: 150%;
    text-align: center;
    font-size: 90%;
}

.product-block {
    position: relative;
    background: white;
    line-height: 150%;
    margin: 30px 0 60px 0;
    text-align: center;
    padding: 20px 0px 0px 0px;
    border-top: 1px solid #e3ebf1;
    border-right: 1px solid #e3ebf1;
    border-left: 1px solid #e3ebf1;
}

.product-block p {
    padding: 0 15px 0 15px;
    color: #7b8498;
}

.product-block h1 {
    margin-top: 50px;
    color: #7b8498;
}

.product-block .btn {
    /*padding: 15px 60px;*/
    padding: 15px 0;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 10px;
    background: #46a0e6;
    border: 2px solid #46a0e6;
    font-size: 80%;
    cursor: pointer;
}

.product-block ul {
    margin-top: 20px;
}

.product-block li {
    width: 100%;
}

.product-block-description-grey {
    background: #f6f7fa; 
    border-top: 1px solid #e3ebf1;
    border-bottom: 1px solid #e3ebf1;
}

.product-block-description-grey p {
    padding-bottom: 20px;
}

.product-block-description-white {
    background: white; 
}

.product-block-description-white p {
    padding-bottom: 20px;
}

#cover-letter-box {
    border-bottom: 1px solid #e3ebf1;
}

.phone-products {
    display: none;
}

.btn-checkout {
    border-radius: 200px;
    cursor: pointer;
}

.checkout-box {
    width: 60%;
    text-align: center;
    margin: 0 auto;
}

.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
}

.ribbon::before,
.ribbon::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 5px solid #2980b9;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 15px 0;
    background-color: #3498db;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    color: #fff;
    font: 700 18px/1 'Open Sans', sans-serif;
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
    text-align: center;
}

.ribbon-top-left {
    position: absolute;
    top: -10px;
    left: -10px;
}

.ribbon-top-left::before,
.ribbon-top-left::after {
    border-top-color: transparent;
    border-left-color: transparent;
}

.ribbon-top-left::before {
    top: 0;
    right: 0;
}

.ribbon-top-left::after {
    bottom: 0;
    left: 0;
}

.ribbon-top-left span {
    right: -25px;
    top: 30px;
    transform: rotate(-45deg);
}

@media only screen and (max-width: 900px) {
    
    .section-products {
        padding-right: 5%; 
        padding-left: 5%;
    }
    
    .btn-order {
        width: 100%;
        display: block;
    }
    
    .computer-products {
        display: none;
    }
    
    .phone-products {
        display: block;
    }
    
    .phone-product-top {
        margin-bottom: 0%;
    }
    
    .phone-product-middle {
        margin-bottom: 0%;
    }
    
    .phone-products h3 {
        padding: 20px 0 10px 0;
        font-size: 150%;
    }
    
    .section-products p {
        font-size: 120%;
    }
    
    .phone-products h1 {
        font-size: 400%;
    }
    
    .checkout-box {
        width: 40%;
        text-align: center;
        margin: 0 auto;
    }
    
    .phone-products .btn {
        width: 100%;
        padding: 15px 0;
        font-size: 110%;
        cursor: pointer;
    }
    
}

/* ------------------------------------------------------ */
/* FAQs */
/* ------------------------------------------------------ */

.faq-drop-down {
    margin-top: 30px;
    margin-bottom: 60px; 
}

.faq-button-box {
    border-bottom: 1px solid #e3ebf1;
}

.collapsible {
  color: #7b8498;
  cursor: pointer;
  padding: 30px 18px 30px 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
    background-color: white;
    line-height: 150%;
}

.active, .collapsible:hover {
  color: #46a0e6;
}

.collapsible:after {
  content: '\02795'; 
  font-size: 13px;
  color: #7b8498;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796";
}

.content {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
    line-height: 150%;
    width: 90%;
}

.content p{
    color: #7b8498;
    padding: 0 0 10px 0; 
}

@media only screen and (max-width: 650px) {
    
    .collapsible {
        font-size: 120%;
    }
    
}


/* ------------------------------------------------------ */
/* FOOTER */
/* ------------------------------------------------------ */

.section-footer {
    padding-top: 50px;
    background-color: #1d1f21;
}

.footer h2{
    color: white;
    margin-bottom: 20px;
}

.footer h2:after {
    background-color: white;
}

.footer p {
    text-align: center;
}

.footer-questions {
    margin-bottom: 40px;
    line-height: 150%;
}

.footer-elements {
    margin-top: 20px;
    padding-bottom: 60px;
}

.footer-elements li {
    text-align: center;
    display: block;
    margin: 10px 0 10px 0;
}

.footer-link:link, .footer-link:visited, .footer-link:hover, .footer-link:active {
    color: white;
}

.footer-subtitle {
    padding-bottom: 20px;
    border-bottom: 1px solid #7b8498;
    margin-top: 20px; 
}

.footer-logo-box {
    text-align: center;
    
}

.footer-logo {
    width: 40%;
}

#copyright {
    margin-bottom: 30px;
}

@media only screen and (max-width: 650px) {
    .section-footer {
        padding-right: 5%;
        padding-left: 5%;
    }
    
    .footer a {
        font-size: 120%;
    }
    
    .footer-subtitle {
        margin-top: 40px; 
    }
    
    .footer-logo-box {
        text-align: center;
        padding-top: 5%;
    }

    .footer-logo {
        width: 60%;
    }
    
}

/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* THIS IS A NEW ASSET = HEADER */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */

.header {
    background-image: linear-gradient(336deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(product-page-image.jpg);
    background-size: cover;
    background-position: 0% 30%;
    height: 55vh;
}

.header-text h1 {
    font-size: 250%;
    text-align: center;
    margin-top: 100px;
}

.header-text p {
    text-align: center;
    line-height: 150%;
    width: 70%;
    margin: 0 auto;
}

.header-row label {
    position: relative;
    z-index: 2;
}

.mobile-products-section {
    display: none;
}

.header-section-products .section-products {
    background: none;
}

@media only screen and (max-width: 900px) {
    
    .header-text h1 {
        width: 90%;
        margin: 0 auto;
        padding-top: 15%;
        padding-bottom: 2%;
    }
    
    .mobile-products-section {
        display: block;
        background: #f6f7fa;
        padding: 2% 0 2% 0;
    }
    
    .products-different-section {
        display: none;
    }
    
    .mobile-products-section .product-block {
        margin: 3% 5% 3% 5%;
    }
    
    .mobile-products-section .product-block h3 {
        font-size: 150%;
        margin: 3% 0 0 0;
    }
    
    .mobile-products-section .product-block p {
        line-height: 150%; 
        font-weight: 400;
        padding-top: 3%;
    }
    
    .mobile-products-section .product-block h1 {
        font-size: 400%;
    }
    
    .product-block .btn {
        font-size: 110%;
    }
    
}

/* ------------------------------------------------------ */
/* PRODUCT PAGE - BACKGROUNDS */
/* ------------------------------------------------------ */

.section-backgrounds-two {
    border-top: 1px solid #e3ebf1;
    background: #f6f7fa;
    padding: 2% 0 3% 0; 
}

.section-backgrounds-two h2 {
    margin-top: 0;
    padding-bottom: 3%;
}

@media only screen and (max-width: 650px) {
    
    .section-backgrounds-two {
        padding: 8% 0 5% 0;
    }
        
    .section-backgrounds-two h2 {
        margin-top: 0;
        margin-bottom: 5%;
    }
}

/* ------------------------------------------------------ */
/* PRODUCT PAGE - WHY US */
/* ------------------------------------------------------ */

.section-why-us {
    background: #f6f7fa;
}

.section-why-us h2 {
    margin-top: 40px;
}

.why-box {
    text-align: center;
    line-height: 150%;
    margin: 30px 0 60px 0;
}

.why-box p {
    color: #7b8498;
    font-weight: 400;
}

.why-box h3 {
    margin-top: 20px;
}
    

/* ------------------------------------------------------ */
/* PRODUCT PAGE - RESUME COURSE */
/* ------------------------------------------------------ */

.course-header-text h1 {
    font-size: 250%;
    text-align: center;
    margin-top: 120px;
}

.course-header-text p {
    text-align: center;
    line-height: 150%;
    width: 85%;
    margin: 0 auto;
}

.course-header-internal-text {
    margin: 0 auto;
    width: 80%;
    text-align: center;
}

.course-header-text a {
    margin-top: 20px;
}

.section-course-features {
    background: #f6f7fa;
    padding-bottom: 40px;
    border-bottom: 1px solid #e3ebf1;
}

.section-course-features p {
    color: #7b8498;
    line-height: 150%;
    font-weight: 400;
}

.feature-img {
    border-radius: 10px;
    box-shadow: 0px 5px 5px #7b8498; 
    width: 60%;
}

.row-feature {
    padding-top: 40px;
}

.col-feature {
    width: 70%;
    float: right;
    margin-right: 20px;
}

.col-feature h3 {
    font-size: 150%;
    margin-bottom: 20px;
}

.section-course-product {
    background: #f6f7fa;
    padding-bottom: 40px;
}

.section-course-product h2 {
    margin-bottom: 30px;
}

.course-product {
    background: white; 
    border-top: 1px solid #e3ebf1;
    border-right: 1px solid #e3ebf1;
    border-left: 1px solid #e3ebf1;
    width: 40%; 
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
}

.course-product h3 {
    font-size: 140%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.course-product h1 {
    color: #7b8498;
}

.course-product p {
    font-weight: 400; 
    color: #7b8498;
    line-height: 150%; 
    width: 80%;
    margin: 0 auto;
    padding: 20px 0 20px 0;
}

.course-product .btn {
    background: #46a0e6;
    border: 2px solid #46a0e6;
    margin-bottom: 10px;
    width: 100%;
    padding: 12px 0;
}
    
.row-feature-mobile {
    display: none;
}

#paypal-button-resume-course {
    margin-bottom: 30px;
    max-width: 100%;
}

#paypal-button-cover-course {
    margin-bottom: 30px;
    max-width: 100%;
}
    
@media only screen and (max-width: 900px) {
    
    .course-header-internal-text h1 {
        width: 90%;
        margin: 0 auto;
        padding-top: 15%;
        padding-bottom: 2%;
    }  
    
    .row-feature {
        display: none;
    }
    
    .row-feature-mobile {
        display: block;
    }
    
    .row-feature-mobile .col-feature {
        float: none;
        margin: 0 auto;
        max-width: 90%;
    }
    
    .course-product {
        width: 80%;
    }
    
    .feature-img {
        width: 90%;
    }
    
    .course-product .btn {
        width: 100%;
        padding: 8% 0;
        font-size: 110%;
        cursor: pointer;
    }
    
}

/* ------------------------------------------------------ */
/* ASSET - BENEFITS */
/* ------------------------------------------------------ */

.section-benefits {
    background: #f6f7fa; 
    border-top: 1px solid #e3ebf1;
}

.benefits-box {
    text-align: center;
    margin: 30px 0 50px 0;
}

.benefits-box p {
    color: #7b8498;
    line-height: 150%;
    font-weight: 400; 
    width: 80%; 
    margin: 0 auto;
}

.benefits-box h3 {
    margin-bottom: 10px;
    font-size: 120%;
    margin-top: 10px;
}
    
    @media only screen and (max-width: 650px) {
        .benefits-box h3 {
            font-size: 150%;
        }
    }
    

/* ------------------------------------------------------ */
/* ASSET - TESTIMONIALS */
/* ------------------------------------------------------ */

.section-testimonials {
    background-image: linear-gradient(336deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(blackhole.jpg);
    background-size: cover;
    background-position: center;
}

.section-testimonials h2 {
    color: white;
    padding-top: 15px;
    font-size: 175%;
}

.section-testimonials h2:after {
    background: white;
}

.slideshow-container {
  position: relative;
  background: none;
}

.mySlides {
    display: none;
  padding: 90px 80px 130px 80px;
  text-align: center;
    width: 50%;
    margin: 0 auto;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}

.dot-container {
  text-align: center;
  padding: 20px;
  background: #ddd;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active-t, .dot:hover {
  background-color: #717171;
}

q {
    font-style: italic;
    font-weight: 400;
    color: white;
    line-height: 150%;
}

.author {
color: cornflowerblue;
margin-top: 20px;
}

@media only screen and (max-width: 650px) {
    .mySlides {
        width: 100%;
    } 
    
    .section-testimonials h2 {
        width: 80%;
        padding-top: 6%;
        margin: 0 auto;
    }
}

/* ------------------------------------------------------ */
/* PAGE - ABOUT US */
/* ------------------------------------------------------ */

.section-about {
    background: #f6f7fa;
    border-bottom: 1px solid #e3ebf1;
    padding: 1% 0;
}

.section-about h2 {
    margin-top: 0px;
    font-size: 150%;
    margin-bottom: 20px;
}

.section-about p {
    color: #7b8498;
    line-height: 150%;
    text-align: center;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0px 5px 5px #7b8498;
    width: 80%;
    height: auto;
    display: block; 
    margin: 0 auto;
}

.about {
    padding: 40px 0 40px 0;
}

.section-about-phone {
    display: none;
}

@media only screen and (max-width: 650px) {
    .section-about {
        display: none;
    }
    
    .section-about-phone {
        display: block;
        background: #f6f7fa;
        border-bottom: 1px solid #e3ebf1; 
        padding: 5%;
    }
    
    .section-about-phone p {
        color: #7b8498;
        line-height: 150%;
        text-align: center;
        margin-bottom: 5%;
    }
    
    .section-about-phone h2 {
        padding-bottom: 5%;
    }
    
}

/* ------------------------------------------------------ */
/* PAGE - TERMS OF SERVICE */
/* ------------------------------------------------------ */

.section-terms-body p {
    line-height: 150%; 
    color: #7b8498;
    width: 80%; 
    margin: 0 auto;
}

.section-terms-body h2 {
    margin-bottom: 40px;
}

.section-terms-body {
    padding-bottom: 40px;
}

/* ------------------------------------------------------ */
/* ASSET - PLACEMENT */
/* ------------------------------------------------------ */

.section-placement {
    padding-bottom: 40px;
    background: white;
}

.section-placement h2 {
    margin-bottom: 20px;
}

.section-placement p {
    color: #7b8498;
    line-height: 150%;
}

.section-placement ul {
    text-align: center;
}

.placement-disclaimer {
    margin-top: 20px;
}

.placement-disclaimer p {
    font-size: 80%;
    width: 50%;
    text-align: center;
    margin: 0 auto;
}

@media only screen and (max-width: 650px) {
    
    .placement-list {
        width: 90%;
    }
    
    .placement-disclaimer {
        margin-top: 10px;
    }
    
    .placement-disclaimer p {
        font-size: 100%;
        width: 90%;
    }
    
    .placement-list ul li {
        margin-bottom: 10px;
    }
    
}


