/* HEADER */
header.container {
    position: sticky;
    top: 0;
    background: white;
    padding: 0;
    z-index: 100;
    box-shadow: 0 10px 20px 0 rgba(79,35,35,.08);
    width: 100%;
    height: 95px;
}
.header-logo {
    display: flex;
    justify-items: center;
    align-items: center;
}
.header-button {
    display: grid;
    place-items: center;
}
header .toggle-menu {
    display: none;
}
.header-navigation {
    display: flex;
    align-self: flex-end;
    align-items: center;
}
    .header-navigation a {
        text-decoration: none;
    }
header > .row > .header-navigation a.navbtn {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #2b2350;
    line-height: 85px;
    margin: 0 15px;
    padding: 5px 0;
}
header > .row > .header-navigation > .dropdown > .dropdown-content a.navbtn:hover,
header > .row > .header-navigation a.navbtn:hover {
    color: #7052FB;
}
    header .button:hover {
        background-color: blue;
        color: white;
    }
/* 
HEADER DROPMENU 
*/
.dropdown, .sub-dropdown {
    position: relative;
    display: inline-block;
    float: left;
}
.dropdown-content  {
    display: none;
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    width: 240px;
    line-height: 50px;
    padding: 30px;
    top: 85px;
    min-width: 240px;
    border-radius: 7px;
    animation-name: dropdown;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    
}
    header > .row > .header-navigation > .dropdown > .dropdown-content a.navbtn {
        line-height: 30px;
        color: #8f8b9e;
    }
.header-navigation > .dropdown > .dropdown-content > .dropdown > .dropdown-content {
    display: none;
    top: -23px;
    left: 160px;
}
.dropdown:hover .dropdown-content {
    display: grid;
}
.header-navigation > .dropdown > .dropdown-content > .dropdown:hover > .dropdown-content {
    display: grid;
}
@keyframes dropdown {
    0% {
        margin-top: 10px;
        opacity: 0;
    }
    100% {
        margin-top: 0;
        opacity: 1;
    }
}

/* HERO */
.container.hero > .row {
    grid-column: 2 / span 2;
    position: relative;
}
.hero .hero-left > p {
    margin: 0 15px 40px 15px;
}
.hero .hero-left > .discount {
    display: inline-block;
    margin: 0 15px 10px;
    border: 1px solid #9292922e;
    padding: 4px 15px;
    border-radius: 3px;
    box-shadow: 0 7px 25px 0 rgba(22,53,76,0.05);
}
    .hero .hero-left > .discount > b {
        color: #7052FB;
    }
    .hero .hero-left > h1 {
        font-size: 55px;
        line-height: 70px;
        font-weight: 400;
        margin: 0 15px 20px 15px;
        color: #2b2350
    }
    .hero .hero-left > .hero-links > a.button {
        display: inline-block;
        margin: 0 10px 0 15px;
    }
        .hero .hero-left > .hero-links > a.button:hover {
            box-shadow: none;
        }
        .hero .hero-left > .hero-links > a.white:hover {
        background-color: #7052FB;
        color: #fff;
        box-shadow: 0 10px 25px 0 rgba(112,111,111,0.3);
    }
.hero .hero-right {
    position: relative;
}
    .hero .hero-right > img {
        width: 100%;
        display: inline-block;
        border: 1px solid #f3f3f3ab;
        border-radius: 10px;
        box-shadow: 0 30px 60px 0 rgba(0,11,40,0.14);
        margin: 50px 0 0 0;
    }
        .hero .hero-right > .hero-bg > img {
            position: absolute;
            width: 100%;
            z-index: -1;
            top: -25px;
            right: 0;
            bottom: 0;
        }

/* HOMEPAGE ABOUT */
.home-about .home-about-card {
    display: inline-block;
    width: 87%;
    box-shadow: 0 15px 25px 0 rgba(131,131,131,0.1);
    margin-bottom: 50px;
    padding: 30px 35px;
}
.home-about .home-about-card .title {
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #a55cef;
}
    .home-about .home-about-card > .card-header {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #fff5f6;
        margin-bottom: 40px;
    }
        .home-about .home-about-card > .card-header > i {
            color: #a55cef;
        }
    .home-about .left-block {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
        .home-about .left-block > .left-row {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .home-about .left-block > .right-row {
            display: grid;
            grid-template-rows: 1fr 1fr;
            justify-items: center;
        }
    .home-about .right-block {
        display: inline-block;
        padding: 20px;
        margin-top: 150px;
    }
        .home-about .right-block > .title {
            width: 100%;
            text-align: left;
            margin-bottom: 20px;
            line-height: 1.4;
            font-weight: 600;
        }
        .home-about .right-block > b {
            font-size: 18px;
        }
        .home-about .right-block > p {
            margin: 20px 0 30px 0;
        }
        .home-about .right-block > .button:hover {
            box-shadow: none;
        }

/* FEATURE */
.feature .feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
    .feature .feature-block > .box {
        display: flex;
        padding: 20px;
        justify-content: center;
        margin-top: 40px;
    
    }
        .feature .feature-block > .box > .left {
            display: inline-block;
            width: 70px;
            height: 70px;
            float: left;
            background-color: tomato;
            padding: 20px;
            border-radius: 50px 50px  6px  50px;
        }
        .feature .feature-block > .box > .right{
            display: inline-block;
            float: left;
            margin-left: 15px;
        }
            .feature .feature-block > .box > .right > h3{
                
                font-size: 20px;
            }
            .feature .feature-block > .box > .right > p{
                margin-top: 20px;
                font-size: 17px;
            }
    .feature .feature-block > .fa {
        align-items: center;
        text-align: center;   
    }

/* APP */
.app .left-column {
    display: inline-block;
    padding-top: 50px;
    padding-bottom: 100px;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}
    .app .left-column > .left-column-title {
        text-align: left;
        margin-bottom: 25px;
        line-height: 40px;
    }
    .app .left-column > .left-column-paragraph {
        margin-bottom: 45px;
    }
    .app .left-column > .left-column-buttons > .button.white.round {
        margin-right: 20px;
    }
        .app .left-column > .left-column-buttons > .button.white.round > .fab {
            color: #7052fb;
            margin-right: 10px;
            line-height: 28px;
            transition: 0.3s;
        }
        .app .left-column > .left-column-buttons > .button.white.round:hover {
            color: white;
            background-color: #7052fb;
            box-shadow: -1px 3px 10px black;

        }
        .app .left-column > .left-column-buttons > .button.white.round:hover .fab {
            color: white;
        }
.app .right-column {
    position: relative;
    display: inline-block;
    padding-left: 15px;
    padding-right: 15px;
}
    .app .right-column > .mobile-1 {
        z-index: 2;
        margin-left: 70px;
        max-width: 300px;
    }
    .app .right-column > .mobile-2 {
        position: absolute;
        max-width: 300px;
        z-index: -1;
        right: -10px;
        top: -50px;
    }
/* PROJECTS */
    .projects > .row > .title {
        margin-bottom: 20px;
        text-align: center;
        width: 80%;
        float: none;
        margin: auto;
    }
    .projects .countup-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        text-align: center;
        font-weight: 600;
    }
    .counter  {
     text-align: center;
    margin-top: 20px;
    }
    .counter > .proj-numb,
    .counter > .proj-let{
        display: inline;
        width: 100%;
        font-size: 50px;
        font-weight: bold;
    }
/* FAQ */
    .faq > .row > .title {
        margin: 20px 0;
        color: #2e2c38;
    }
    .faq > .row > .faq-box {
        display: inline-block;
        width: 66%;
        margin: 0 17%;
    }
        .faq > .row > .faq-box > .qa {
                margin: 0 15px;
            }
            .faq .qa > .question-and-icon {
                display: inline-block;
                width: 100%;
                padding: 18px 20px;
                margin: 5px 0;
                background-color: #fcfcfc;
                border-radius: 4px;
                position: relative;
                cursor: pointer;
            }
                .faq .qa > .question-and-icon:hover {
                    text-decoration: underline;
                }
                .faq .qa > .question-and-icon > p.question {
                    font-size: 20px;
                    text-decoration: none;
                    font-weight: 500;
                    color: #2b2350;
                }
                .faq .qa > .question-and-icon > i {
                    position: absolute;
                    top: 40%;
                    right: 2%;
                    color: #aaa;
                }
                    .faq .qa > .question-and-icon > i.violet {
                        color: #B374FB;
                        transform: rotate(180deg);
                    }
            .faq .qa > p.answer {
                font-size: 16px;
                padding: 20px 20px 10px;
            }
                .faq .qa > p.hidden {
                display: none;
            }
            .faq .qa.show > p {
                display: none;
            }
            .faq .qa.show > p.hidden {
                display: inline-block;
            }
/* TESTIMONIALS */
.testimonials{
    background-image: url(../img/mini-test-bg.png);
    background-repeat: no-repeat;
    background-size: cover; 
}
.testimonials .testimonial-block
{
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 650px 1fr;
    justify-content: center; 
    margin-top: 90px;   
  }
    .testimonials .arrow-left{
        grid-column: 1/2;
        align-self: center;
    }
    .testimonials .center {
        grid-column: 2/3;
    }
    .testimonials .arrow-right{
        grid-column: 3/4;
        align-self: center;
    }
    .testimonials .fas:hover{
        color: #B374FB;
        cursor: pointer;
    }
        .testimonials .testimonial-block > .center > h2{
            font-size: 20px;
        }
        .testimonials .testimonial-block > .center > .p {
            margin: 20px;
            font-size: 20px;
            line-height: 35px;
        }
        .testimonials .testimonial-block > .center > .p> b {
            font-size: 20px;
            line-height: 35px;
            margin: 0;
        }
        .testimonials .testimonial-block > .center > .clients {
            margin: 0;
            font-size: 15px;
        }
        .testimonials .testimonial-block > .center > .name {
            margin-bottom: 0;
            margin-top: 20px;
        }
        .testimonials .testimonial-block > .center > .imagin{
            display: inline;
        }
        .testimonials .testimonial-block > .center > .imagin > img{
            border-radius: 50%;
            box-shadow: 0 18px 25px 0 rgba(112,111,111,0.3);
        }
/* OUR TEAM */
.our-team > .row {
    padding: 80px 0;
    text-align: center;
}
.our-team > .row > p {
    justify-self: center;
    width: 50%;
}
.our-team .our-team-bg {
    position: absolute;
    left: -20%;
    z-index: -1;
}
.our-team .our-team-bg > img {
    width: 100%;
}
.our-team .our-team-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 20px;
}
    .our-team .our-team-block > .profile {
        width: 100%;
        position: relative;
        display: flex;
        justify-content: center;
        padding: 10px;
        overflow: hidden;
        
    }
        .our-team .our-team-block > .profile > img {
            width: 100%;
            border-radius: 5px;
            background-color: #494949;
            background-size: auto;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px 0 rgba(0,11,40,0.14);
        }
        .our-team .our-team-block > .profile > .profile-social {
            visibility: hidden;
            position: absolute;
            display: flex;
            justify-content: center;
            top: calc((100% / 2) - 46px);
        }
            .our-team .our-team-block > .profile > .profile-social > a {
                text-decoration: none;
             }
            .our-team .our-team-block > .profile > .profile-social > a > i {
                height: 42px;
                width: 42px;
                color: white;
                display: flex;
                justify-content: center;
                align-items: center;
                border: 1px solid white;
                border-radius: 50%;
                margin: 3px;
             }
        .our-team .our-team-block > .profile > .profile-name-position {
            position: absolute;
            visibility: hidden;
            bottom: -110px;
            background-color: white;
            width: calc(100% - 20px);
            padding: 20px;
            text-align: center;
            height: calc(100% / 3.5);
            border-radius: 0 0 3px 3px;
            transition-duration: 2s;
            
        }
            .our-team .our-team-block > .profile > .profile-name-position > span {
                    width: 100%;
                    display: block;
                    margin-top: 10px;
                    font-size: 18px;
            }
            .our-team .our-team-block > .profile > .profile-name-position > span:first-of-type {
                font-weight: 800;
                font-size: 20px;
            }
        /* Hover */
        .our-team > .row > .our-team-block > .profile > .profile-social > a > i:hover {
            background-color: #fff;
            color: #FB6638;
          }
        .our-team .our-team-block > .profile:hover .profile-social {
            visibility: visible;
        }
        .our-team .our-team-block > .profile:hover .profile-name-position {
            visibility: visible;
            bottom: 30px;
        }
        .our-team .our-team-block > .profile:hover {
            opacity: 0.9;
        }

/* ADDRESS */
        .address .adrs {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
        }
        .address .adrs-box-wrap {
                padding-left: 15px;
                padding-right: 15px;
            }
            .adrs-box-wrap {
                padding-left: 15px;
                padding-right: 15px;
                transition: 0.3s;
            }
            .adrs-box-wrap:hover {
                box-shadow: 1px 1px 25px;
                transform: scale(0.9);
            }
                .address .adrs-box {
                    padding: 10px;
                    text-align: center;
                    height: 100%;
                }
                    .address .adrs-box-titles {
                        font-size: 20px;
                        margin-bottom: 5px;
                    }
                        .address .adrs-icons {
                            display: flex;
                            width: 110px;
                            border-radius: 30px;
                            height: 110px;
                            justify-content: center;
                            align-items: center;
                            margin: 16px auto;
                        }
                            .address .adrs-icons > .fas {
                                font-size: 45px;
                                color: gray;
                            }
                            .address .adrs-social {
                                margin-top: 15px;
                            }
                            .address .adrs-social > a > .fab {
                                line-height: 30px;
                                padding: 0px 15px;
                                font-size: 20px;
                                color: gray;
                            }
                            .address .adrs-contacts,
                            .address .adrs-paragraphs,
                            .address .adrs-titles {
                                margin-bottom: 5px;
                                display: block;
                                width: 100%;
                                text-decoration: none;
                            }
                            .address .adrs-contacts:hover {
                                color: #007bff;
                            }
/* FOOTER */
footer {
    background-color: #FBF7FF;
}
    footer > .row {
        padding-left: calc((100% - 1200px) / 2);
        padding-right: calc((100% - 1200px) / 2);
    }
    footer .footer-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 15px;
        padding: 100px 0 60px 0;
        margin: 0 15px;
    }
        footer .footer-row p {
            color: #2b2350d9;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 38px;
        }
        footer .footer-row nav {
            display: block;
        }
            footer .footer-row nav ul {
                list-style-type: none;
            }
            footer .footer-row nav a {
                line-height: 30px;
                text-decoration: none;
                font-weight: 500;
                color: #9694a1;
            }
                footer .footer-row nav a:hover {
                    color: #7052FB;
                }
            footer .footer-row nav ul {
                margin-bottom: 10px;
            }        
    footer .footer-paragraf > img {
        margin-bottom: 25px;
    }
    footer .footer-paragraf > p {
        font-size: 16px;
        font-weight: 400;
        width: 95%;
    }
    footer .copyright-section {
        border-top: 1px solid #e4d9d9;
        padding: 30px 0;
        display: flex;
        justify-content: space-between;
    }
        footer .copyright-section p {
            font-size: 16px;
        }
        footer .copyright-section > p > a {
            text-decoration: none;
            color: #7052FB;
            font-weight: 500;
        }
        footer .copyright-section > .footer-socials {
            display: flex;
        }
         footer .copyright-section > .footer-socials > a  { 
             text-decoration: none;
             padding-right: 15px;
         }
            footer .copyright-section > .footer-socials > a > i {
                width: 45px;
                height: 45px;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                border: 1px solid #dadada;
                text-decoration: none;
                transition: all 0.3s;
                color: #9694a1;
            }
                footer .copyright-section > .footer-socials > a:last-of-type {
                    padding-right: 0;
                }
                footer .copyright-section > .footer-socials > a > i:hover {
                    background-color: #7052FB;
                    color: #fff;
                }

@media (max-width: 990px) {
/* HEADER */
header .header-navigation {
    display: none;
}
header .toggle-menu {
    display: flex;
    justify-self: end;
    margin-top: 25px;
}
    header .toggle-menu:hover {
        cursor: pointer;
    }
header .header-button {
    display: none;
}
/* HERO */
.container.hero > .row {
    grid-column: 2 / 3;
}
/* HOMEPAGE ABOUT */
.homer-about .left-block {
    grid-template-columns: 1fr;
}
.homer-about .right-block {
    margin-top: 0;
}
.homer-about .home-about-card {
    width: 100%;
}
/* FEATURE */
.feature .feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* APP */
.app .right-column {
    display: block;
    float: left;
    width: 100%;
}
    .app .right-column > .mobile-1 {
        margin-left: 0px;
    }
    .app .right-column > .mobile-2 {
        right: 203px;
    }
.app .left-column {
    display: block;
    width: 100%;
}
/* PROJECTS */
.projects .countup-wrap {
    grid-template-columns: 1fr 1fr;
}
/* FAQ */
.FAQ > .row > .title {
    font-size: 28px;
}
/* TESTIMONIALS */
.testimonials{
    height: 600px;
}
.testimonials .testimonial-block{
    grid-template-columns: 1fr 550px 1fr; 
  }
/* OUR TEAM */
.our-team .our-team-block {
    grid-template-columns: 1fr 1fr;
}
.our-team .our-team-block > .profile:nth-child(n+3) {
    display: none;
}
/* ADDRESS */
.address .adrs-box > .adrs-icons {
    margin: 0 auto;
}
/* FOOTER */
footer > .row {
    padding-left: calc((100% - 720px) / 2);
    padding-right: calc((100% - 720px) / 2);
}
footer .footer-row {
    grid-template-columns: 1fr 1fr;
    margin: 0;
}
}

@media (max-width: 750px) {
/* HEADER */
    
/* HERO */

/* HOMEPAGE ABOUT */

/* FEATURE */
.feature .feature-block {
    display: grid;
    grid-template-columns: 1fr ;
 }

/* APP */
.app .right-column > .mobile-2 {
    right: 10px;
}
/* PROJECTS */

/* FAQ */
.FAQ > .row > .title {
    font-size: 26px;
    padding: 0 20px;
}
.FAQ > .row > .FAQ-box {
    display: inline-block;
    width: 100%;
    margin: 0;
}
/* TESTIMONIALS */
.testimonials{
    height: 550px;
}
.testimonials .testimonial-block{
    grid-template-columns: 1fr 450px 1fr; 
  }
.testimonials .testimonial-block > .center > .p {
    font-size: 15px;
    line-height: 25px;
}
/* OUR TEAM */
.our-team .our-team-block {
    grid-template-columns: 1fr;
}
.our-team .our-team-block > .profile:nth-child(n+2) {
    display: none;
}
/* ADDRESS */
    .address .adrs {
        display: block;
    }
        .address .adrs-contacts > .adrs-box-wrap > .adrs-box > .adrs-icons {
            margin: 16px 190px;
        }
/* FOOTER */
footer > .row {
    padding-left: calc((100% - 540px) / 2);
    padding-right: calc((100% - 540px) / 2);
}
    footer .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
        margin: 0;
    }
    footer .footer-paragraf > img { 
        display: block;
    }
        footer.footer-paragraf > p {
            width: 100%;
        }
        footer .copyright-section {
        display: block;
        text-align: center;
    }
        footer .copyright-section > .footer-socials {
            justify-content: center;
        }
}

@media (max-width: 540px) {
/* HEADER */

/* HERO */
.hero .hero-links > a {
    width: calc(88% / 2);
}
/* HOMEPAGE ABOUT */

/* FEATURE */

/* APP */
.app .right-column > .mobile-2 {
    right: 20px;
}
/* PROJECTS */
.projects .countup-wrap {
    display: block;
}
/* FAQ */

/* TESTIMONIALS */
.testimonials{
    height: 600px;
}
.testimonials .testimonial-block{
    grid-template-columns: 1fr 350px 1fr; 
  }
  .testimonials .testimonial-block > .center > .p {
    font-size: 15px;
    line-height: 25px;
}

/* OUR TEAM */

/* ADDRESS */
.address .adrs-box > .adrs-icons {
    margin: auto;
}
    .address .adrs-contacts {
        width: 100%;
    }
}

