@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

* {
    transition: all 0.5s linear;
    font-family: 'Open Sans',
    sans-serif;
    font-weight: 400;
    color: #212529;
    line-height: 2em;
}

html, body {
    scroll-behavior: smooth;
    font-size: 100%;
}

@media (min-width: 1200px) {
    .container {
        max-width: 997px;
    }
}

/* Fonts */
.poppins-400 {
    font-family: 'Poppins',
        sans-serif;
    font-weight: 400;
}

.poppins-500 {
    font-family: 'Poppins',
        sans-serif;
    font-weight: 500;
}

.poppins-600 {
    font-family: 'Poppins',
        sans-serif;
    font-weight: 600;
}

.poppins-700 {
    font-family: 'Poppins',
    sans-serif;
    font-weight: 700;
}

.open-sans-400 {
    font-family: 'Open Sans',
    sans-serif;
    font-weight: 400;
}

.open-sans-500 {
    font-family: 'Open Sans',
        sans-serif;
    font-weight: 500;
}

.open-sans-600 {
    font-family: 'Open Sans',
        sans-serif;
    font-weight: 600;
}

.open-sans-700 {
    font-family: 'Open Sans',
        sans-serif;
    font-weight: 700;
}

/* Navbar */
nav.navbar {
    background-color: #2c2c2c;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
    padding: 0.8rem 1rem;
}

@media (min-width: 992px) { 
    .navbar-expand-lg .nav-item {
        padding-right: 0.8rem;
        padding-left: 0.8rem;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0;
    }
}

.logo {
    width: 160px;
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-size: 20px;
    position: relative;
}

@keyframes width-decrease {
    from {
        width: 100%
    }

    to {
        width: 0%;
    }
}

@keyframes width-increase {
    from { width: 0% }
    to { width: 100%; }
}

.navbar-nav .nav-link.blur::after {
    content: "";
    border-bottom: 3px solid #34d6b7;
    width: 0%;
    position: absolute;
    bottom: 0;
    left: 0;
    animation: width-decrease 0.5s linear;
}

.navbar-nav .nav-link.active {
    color: #34d6b7;
}

.navbar-nav .nav-link.hover::after, .navbar-nav .nav-link.active::after {
    content: "";
    border-bottom: 3px solid #34d6b7;
    width: 100%;
    position: absolute;
    bottom: 10px;
    left: 0;
    animation: width-increase 0.5s linear;
}

.navbar-toggler {
    color: #34d6b7;
    outline: 0 !important;
    font-size: 24px;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        font-size: 16px;
        text-align: center;
    }
}

/* Footer */
footer {
    background-color: #2c2c2c;
    padding: 2rem 0;
}

.footer-heading a {
    color: #ffffff;
    font-size: 24px;
}

.footer-link {
    color: #ffffff;
    display: block;
    margin: 1rem 0;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.social-links a,
.social-links a i {
    color: #666;
    font-size: 24px;
}

.social-links a:hover,
.social-links a i:hover {
    text-decoration: none;
    color: #34d6b7;
}

/* Other Sections */
.section-1 {
    padding: 2rem 0;
    background-image: linear-gradient(181deg, rgba(14, 214, 177, 0.93) 73%, rgba(52, 214, 183, 0.72) 100%),
    url(../images/filmmaking_home.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.section-1 .heading {
    font-size: 64px;
    color: #ffffff;
    line-height: 1.3em;
    text-shadow: 0em 0.08em 0em rgba(0, 0, 0, 0.4);
    padding-top: 90px;
}

.section-1-btn-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.section-1-btn-wrapper .hire-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #e09900;
    color: white;
    cursor: pointer;
    font-family: Helvetica,
    Arial,
    sans-serif;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    margin: 0;
    height: 50px;
    padding: 0px 33px;
    border-radius: 7px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0em 0.1em 0em rgba(0, 0, 0, 0.4);
    margin-right: 6rem;
}

.section-1-btn-wrapper .create-account-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #ffffff;
    color: #34d6b7;
    cursor: pointer;
    font-family: Helvetica,
    Arial,
    sans-serif;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    margin: 0;
    height: 50px;
    padding: 0px 33px;
    border-radius: 7px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767.98px) {
    .section-1 .heading {
        font-size: 45px;
        padding-top: 40px;
    }
}

.section-2 {
    padding: 5rem 0;
}

.section-2 .heading {
    font-size: 36px;
    color: #263954;
    line-height: 1.4em;
}

.section-2 .heading span {
    color: #34d6b7;
}

.section-2 hr {
    display: block;
    width: 50px;
    margin: 2rem auto;
    border-color: #34d6b7;
    border-width: 2px;
}

.step-number {
    font-size: 75px;
}

.section-3 {
    padding: 6rem 0;
    background-color: #34d6b7;
}

.section-3 .heading {
    font-size: 40px;
    color: #ffffff;
}

.section-3 .text {
    font-size: 20px;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .section-3 {
        padding: 4rem 0;
    }

    .section-3 .heading {
        font-size: 30px;
    }

    .section-3 .text {
        font-size: 16px;
    }
}

.section-3-btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.section-3-btn-wrapper .hire-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #4f8fb3;
    color: white;
    cursor: pointer;
    font-family: Helvetica,
    Arial,
    sans-serif;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    margin: 0;
    height: 50px;
    padding: 0px 33px;
    border-radius: 7px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-3-btn-wrapper .create-account-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #ffffff;
    color: #34d6b7;
    cursor: pointer;
    font-family: Helvetica,
    Arial,
    sans-serif;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    margin: 0;
    height: 50px;
    padding: 0px 33px;
    border-radius: 7px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-4 {
    padding: 4rem 0;
}

.section-4 .heading {
    letter-spacing: -1px;
    line-height: 1.5em;
    font-size: 40px;
}

.section-4 .heading span {
    color: #34d6b7;
    text-decoration: underline;
}

.testemonial-text {
    font-style: italic;
    line-height: 1.8em;
    padding-left: 15px;
    border-left: 5px solid #34d6b7;
}

.section-5 {
    background-color: #34d6b7;
    padding: 4rem 0;
}

.section-5 .heading {
    font-size: 21px;
    line-height: 1.2em;
    color: #ffffff;
}

.form-input {
    display: block;
    outline: 0 !important;
    font-size: 16px;
    border-radius: 5px 5px 5px 5px;
    overflow: hidden;
    border-width: 1px;
    border-color: rgba(44, 44, 44, 0.33);
    background-color: #ffffff;
    width: 100%;
    padding: 14px 4%;
    color: #666;
    box-shadow: 0px 2px 35px -11px rgba(0, 0, 0, 0.3);
}

.subscribe-btn {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    background-color: #e09900;
    padding: 10px 0;
    border: 2px solid transparent;
    border-radius: 4px;
    box-shadow: 0px 2px 36px -11px rgba(0, 0, 0, 0.67);
    cursor: pointer;
}

.section-6 {
    background-color: #34d6b7;
    padding: 5rem 0;
}

.section-6 .text-top {
    color: #ffffff;
    font-size: 18px;
    text-shadow: 0.08em 0.08em 0.08em rgba(0, 0, 0, 0.4);
}

.section-6 .heading {
    font-size: 55px;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.5em;
    text-shadow: 0.22rem 0.46rem 0.15rem rgba(0, 0, 0, 0.4);
}

.section-6 .text-down {
    font-size: 29px;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.5em;
    text-shadow: 0.22rem 0.46rem 0.15rem rgba(0, 0, 0, 0.4);
}

.section-7 {
    padding: 5rem 0;
}

.section-7 hr {
    display: block;
    width: 300px;
    margin: 4rem auto;
    border-color: #34d6b7;
}

.section-heading {
    font-size: 34px;
}

.section-7 .story-text {
    text-align: center;
    font-size: 18px;
    border-left: 5px solid #34d6b7;
    padding: 1.5rem 0;
}

.section-8 {
    background-color: #f9f9f9;
    padding: 6rem 0;
}

.section-8 .section-heading span {
    text-decoration: underline;
}

.section-9,
.section-11 {
    padding: 6rem 0;
}

.section-11 hr {
    display: block;
    border-color: #34d6b7;
    margin: 3rem auto;
    width: 250px;
}

.section-11 .person-name {
    font-size: 29px;
}

.section-11 img {
    width: 300px;
}

@media (max-width: 767.98px) {
    .section-11 img {
        width: 200px;
        display: block;
        margin: auto;
    }
}

.section-12 {
    position: relative;
}

.section-12::before {
    content: "";
    width: 100%;
    height: 65%;
    background-color: #2c2c2c;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.section-12 .container {
    background-color: #34d6b7;
    padding: 2rem 2rem 3rem;
    border-radius: 6px;
}

.section-12 .text {
    color: #ffffff;
    font-size: 35px;
}

.section-12 .hire-btn {
    display: block;
    text-decoration: none;
    background-color: #e09900;
    color: white;
    cursor: pointer;
    font-family: Helvetica,
    Arial,
    sans-serif;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    margin: 0;
    height: 50px;
    padding: 0px 33px;
    border-radius: 7px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767.98px) {
    .section-12 .hire-btn {
        max-width: 70%;
    }
}

.section-13 {
    background-image: linear-gradient(86deg, rgba(44, 44, 44, 0.9) 56%, rgba(52, 214, 183, 0.72) 100%),
        url(../images/studio_1200.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.section-13 .heading {
    text-shadow: 0em 0.08em 0em rgba(0, 0, 0, 0.4);
    color: #ffffff;
    font-size: 64px;
    line-height: 1.3em;
}

@media (max-width: 767.98px) {
    .section-13 .heading {
        font-size: 40px;
    }
}

.section-13,
.section-14,
.section-15 {
    padding: 6rem 0;
}

.section-14 .special-text {
    border-left: 5px solid #34d6b7;
    padding-left: 15px;
}

.section-15 {
    background-color: #f7f7f7;
}

.section-15 hr {
    border-color: #34d6b7;
    border-width: 2px;
    width: 50px;
}

.section-15 .box-shadow {
    background-color: #ffffff;
    border-radius: 3px 3px 3px 3px;
    overflow: hidden;
    box-shadow: 0px 2px 25px -16px rgba(0, 0, 0, 0.3);
    padding: 2rem;
}

.section-15 .button {
    display: inline-block;
    color: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 3px;
    font-size: 18px;
    background-color: #34d6b7;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
    padding: 0.3rem 1rem;
    text-align: center;  
    font-size: 18px;
}

.section-15 .button:hover {
    background: #29aa8e;
    text-decoration: none;
}

.section-16 {
    background-blend-mode: overlay;
    background-color: initial ;
    background-image: url(../images/geometric-bg-overlay-01.jpg),
    linear-gradient(135deg, #34d6b7 0%, #086acc 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
}

.section-16 .heading {
    font-size: 45px;
    color: #ffffff;
    line-height: 1.3em;
}

.section-16 .text {
    color: #ffffff;
    font-size: 23px;
}

.chat-banner-wrapper {
    color: #959baf;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    padding: 2rem;
    box-shadow: 0px 12px 18px -6px rgba(34, 56, 101, 0.12);
    margin-bottom: -14rem;
}

.chat-banner-wrapper .fa-tag {
    font-size: 96px;
    color: #29aa8e;
}

.chat-banner-wrapper .title {
    color: #535b7c;
    font-size: 24px;
}

.chat-banner-wrapper .help-text {
    color: #959baf;
    font-size: 16px;
    line-height: 29px;
}

.section-17 {
    padding: 16rem 0 4rem;
}

.section-17 .heading {
    font-size: 35px;
}

.section-18 {
    background-image: radial-gradient(circle at center, #34d6b7 0%, #2ab9d6 100%);
    padding: 6rem 0;
}

.section-18 .heading {
    font-size: 75px;
    color: #ffffff;
    line-height: 1.4em;
    text-align: center;
    text-shadow: 0em 0.08em 0em rgba(0, 0, 0, 0.4);
}

@media (max-width: 1199.98px) {
    .section-18 .heading {
        font-size: 60px;
    }
}

@media (max-width: 991.98px) {
    .section-18 .heading {
        font-size: 50px;
    }
}

@media (max-width: 767.98px) {
    .section-18 .heading {
        font-size: 40px;
    }
}

.section-18 hr {
    border-color: #ffffff;
    width: 150px;
}

.section-18 li {
    color: #ffffff;
    font-size: 23px;
    line-height: 26px;
    margin-bottom: 1.5rem;
}

label[for='agreement'] {
    color: #000000;
    cursor: pointer;
}

label[for='agreement'] input[type='checkbox'] {
    margin-right: 0.5rem;
}

label[for='agreement'] a {
    color: #007a5f;
}

.section-18 .form-input {
    padding: 7px 4%;
}

.signup-btn {
    width: 100%;
    background-color: #e09900;
    color: white;
    padding: 10px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
    font-size: 15px;
    font-weight: bold;
}

.signup-btn:hover {
    background-color: #45a049;
}

.section-19 {
    background-image: linear-gradient(86deg, rgba(44, 44, 44, 0.9) 56%, rgba(52, 214, 183, 0.72) 100%),
    url(../images/studio_1200_2.jpg);
    padding: 6rem 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.section-19 .heading {
    font-size: 64px;
    color: #ffffff;
    line-height: 1.3em;
    text-shadow: 0em 0.08em 0em rgba(0, 0, 0, 0.4);
}

.section-20 {
    background-image: linear-gradient(180deg, rgba(52, 214, 183, 0.88) 0%, rgba(52, 214, 183, 0.57) 100%),
        url(../images/Piano-Blur-Blog.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 6rem 0 3rem;
}

.section-20 .upper-text {
    color: #ffffff;
    font-size: 24px;
}

.section-20 .heading {
    color: #ffffff;
    letter-spacing: -1px;
    font-size: 55px;
    line-height: 2.5em;
    text-shadow: 0.22rem 0.46rem 0.15rem rgba(0, 0, 0, 0.4);
}

@media (max-width: 767.98px) {
    .section-20 .heading {
        font-size: 40px;
        line-height: 1.2em;
    }
}

.section-21,
.section-22 {
    padding: 6rem 0;
}

.section-22 {
    background-image: linear-gradient(86deg, rgba(44, 44, 44, 0.9) 56%, rgba(52, 214, 183, 0.72) 100%),
        url(../images/studio_1200.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-22 .heading {
    color: #ffffff;
    font-size: 64px;
}

@media (max-width: 1199.98px) {
    .section-22 .heading {
        font-size: 50px;
    }
}

@media (max-width: 991.98px) {
    .section-22 .heading {
        font-size: 40px;
    }
}

.sub-heading {
    font-size: 34px;
}

.main-title {
    font-size: 29px;
}

.main-sub-title {
    font-size: 21px;
}

.section-23 {
    padding: 6rem 0;
}

.section-23 .text-top {
    color: #888888;
}

.section-23 .heading {
    font-size: 67px;
}

@media (max-width: 1199.98px) {
    .section-23 .heading {
        font-size: 52px;
    }
}

@media (max-width: 991.98px) {
    .section-23 .heading {
        font-size: 40px;
    }
}

.section-24 {
    background-color: #f7f7f7;
    padding: 6rem 0;
}

.section-24 .heading {
    font-size: 36px;
    line-height: 45px;
    border-top: 8px solid #2c2c2c;
}

.faq-wrapper {
    border-bottom: 4px solid #2c2c2c;
    padding: 1rem 0;
}

.faq-wrapper:nth-of-type(1) {
    border-top: 4px solid #2c2c2c;
}

.faq-wrapper button {
    display: block;
    background: transparent;
    border: none;
    outline: 0 !important;
    cursor: pointer;
    font-size: 24px;
    line-height: 36px;
    position: relative;
    width: 100%;
    text-align: left;
}

.faq-wrapper button .fa-plus-circle {
    display: none;
}

.faq-wrapper button .fas {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.faq-wrapper button .fa-minus-circle {
    display: block;
}

.faq-wrapper button.collapsed .fa-plus-circle {
    display: block;
}

.faq-wrapper button.collapsed .fa-minus-circle {
    display: none;
}

.faq-wrapper .answer {
    color: #666666;
    font-size: 18px;
    padding: 1.5rem 0;
}

#accordion,
#accordion * {
    transition-duration: 0s !important;
}

.section-25 {
    background-blend-mode: multiply;
    background-image: linear-gradient(#15776a, #15776a),
    url(../images/composer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 10rem 0;
}

.section-25 .heading {
    color: #ffffff;
    font-size: 36px;
}

.section-25 .text {
    color: #ffffff;
    font-size: 28px;
}

.section-25 .text a {
    color: #34d6b7;
}

.section-25 .social-links a {
    margin-right: 2rem;
}

.section-25 .social-links a,
.section-25 .social-links a i {
    color: #ffffff;

}