/*
    The Landing Page v1.0    
*/

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 auto;
}

.header {
    width: 100%;
    height: auto;
    padding: 8px 24px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s ease-in-out all;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.header.active {
    background-color: #fff;
    box-shadow: 0px 0px 10px -1px #00000063;
}

.banner {
    width: 100%;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.brand-contact-btn {
    display: inline-block;
    padding: 10px 24px;
    margin: 0px 0 0px 48px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #16a0bd;
}

.banner__content {
    width: 100%;
    min-height: 100vh;
    padding: 155px 87px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner__tiles h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}

.tile-row {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tile-col {
    padding: 0 16px;
}

.tiles {
    padding: 0;
    margin: 0;
    list-style: none;
}

.tiles > li a {
    width: auto;
    padding: 10px 20px;
    margin: 0px 0px 35px 0px;
    background-color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color: #0996c1;
    border-radius: 35px;
    font-size: 22px;
}

.tiles > li a.tiles__unstyle {
    background-color: transparent;
    color: #fff;
}

.tiles > li a > img {
    margin-right: 16px;
}

.banner-form-wrapper input,
.banner-form-wrapper select {
    width: 100%;
    display: block;
    margin: 20px auto;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    padding: 16px 16px;
    outline: none;
}

.banner-form-wrapper form {
    background-color: #fff;
    padding: 40px 48px;
    border-radius: 8px;
    box-shadow: 0px 0px 20px -5px #00000082;
}

h5 {
    font-size: 26px;
    margin-bottom: 38px;
}

.banner-form-wrapper input[type=button] {
    display: block;
    width: fit-content;
    padding: 20px 30px;
    background-color: #e31a3c;
    color: #fff;
    border: none;
    box-shadow: 0px 0px 10px 5px #cfcfcf;
    text-transform: uppercase;
	border-radius: 10rem;
}

.card-wrapper > h5 {
    text-align: center;
    font-size: 24px;
}

ul.cards {
    width: 100%;
    max-width: 1190px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
}

ul.cards > li {
    padding: 16px 16px;
}

ul.cards > li > img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px #000000;
}


/* Why Choose Us */
.whyCus-row {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.whyCus-col {
    flex: 1;
    padding: 0 1rem;
}

.whyCus-bg {
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.whyCus-col > h3 {
    font-size: 40px;
    color: #444444;
}

.whyCus-col > p {
    color: #010101;
}

.whyCus-col.whyCus-bg > img {
    width: 100%;
    max-width: 70%;
    margin: 2px auto;
    vertical-align: bottom;
    display: block;
}

.whyCus-key-features-wrapper {
    padding: 16px 16px;
    margin: 64px 0;
    background-color: #f4f2f3;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 0px #0000003b;
}

.whyCus-key-features-wrapper h3 {
    padding-left: 58px;
    margin-bottom: 16px;
    font-weight: 500;
    color: #030303;
}

ul.whyCus-key-features {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.whyCus-key-features > li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
}

ul.whyCus-key-features > li > img {
    width: 30px;
    height: 30px;
    margin: 0 15px;
}

ul.whyCus-key-features > li > span {
    line-height: 1.65;
}

/* Why Choose Us Ends */
/* About */
.about__row {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
}

.about-col {
    padding: 69px;
    flex: 1;
}

.about-col h5 {
    font-size: 20px;
    color: #a7e343;
    font-weight: 400;
}

.about h3 {
    font-size: 26px;
    color: #00c7fa;
}

.about-col p {
    color: #fff;
}

.about-col button {
    width: max-content;
    padding: 12px 24px;
    margin: 0 auto;
    display: block;
    border: 0;
    color: #fff;
    font-size: 20px;
    border-radius: 34px;
    background-color: #e31a3c;    
}

.about-col img.about-avatar {
    padding: 16px;
    border-radius: 100%;
    border: 4px dotted #fff;
}

.client-review {
    padding-bottom: 170px;
    margin-bottom: 100px;
}

.client-review > h2 {
    margin: 26px 0;
    text-align: center;
    font-size: 32px;
    color: #444444;
}

.slider-wrapper {
    width: 80%;
    padding: 1px 1px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slide-item > h4 {
    color: #d38103;
    text-align: center;
    font-size: 26px;
}

.slider-controller {
    width: 55px;
    height: 55px;
    padding: 16px;
    margin: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 3px solid #bdbdbd;
    font-size: 30px;
    color: #bdbdbd;
}

.slide-item {
    padding: 16px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 1px 1px 20px -5px #000;
}
/* About Ends*/
/* Contact Section */
.contact {
    padding: 102px 175px;
}

.contact > h3 {
    text-align: center;
    font-size: 32px;
    color: #444444;
}

.contact p {
    color: #9e9e9e;
    text-align: center;
}

.contact-row {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
}

.contact-col {
    padding: 0 32px;
    flex: 1;
}

.contact-form-wrapper input, .contact-form-wrapper select {
    width: 100%;
    display: block;
    margin: 20px auto;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    padding: 16px 16px;
    outline: none;
}

.contact-form-wrapper input[type="button"] {
    display: block;
    width: fit-content;
    padding: 20px 30px;
    background-color: #e31a3c;
    color: #fff;
    border: none;
    box-shadow: 0px 0px 10px 5px #cfcfcf;
    text-transform: uppercase;
    border-radius: 35px;
}

.video-wrapper > img {
    width: 100%;
    vertical-align: bottom;
}

.video-wrapper {
    border-radius: 8px;
    overflow: hidden;
}

.video-description {
    padding: 14px;
    text-align: revert;
    margin: 0;
    background-color: #c16a01;
    color: #fff !important;
    border-top: 1px solid #fff;
}
/* Contact Section Ends */
/* Clients Before After */
.clients-before-after {
    padding: 3rem 0;
	overflow: hidden;
}

.clients-before-after h3 {
    margin: 86px 0;
    text-align: center;
    font-size: 32px;
    color: #444444;
}

ul.gigi-slides {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

li.gigi-slide-item {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

li.gigi-slide-item.active {
    overflow: visible;
}

li.gigi-slide-item img {
    width: 100%;
}

li.gigi-slide-item.active > img {
    transform: scale(1.135);
}

/* Clients Before After Ends*/
/* Footer */
.footer__top {
    padding: 16px;
    margin: 0 auto;
    background-image: linear-gradient(to right, #4ebeae, #0593c1);
}

.footer__top > p {
    color: #fff;
    text-align: center;
    font-size: 23px;
}

.footer__bottom {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.footer__row {
    max-width: 88%;
    padding: 16px;
    margin: 0 auto;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    position: relative;
}

.footer__row:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background-image: linear-gradient(to right, #50bfae, #0493bf);
    bottom: 0;
}

.footer__col {
    flex: 1;
    padding: 16px 0;
}

.footer__col.bordered {
    max-width: 1px;
    background-image: linear-gradient(to bottom, #50bfae, #0493bf);
    margin: 16px 70px;
}

.footer__col > p {
    color: #fff;
}

.green-highlighted {
    color: #d1ff00;
}

.footer__desclaimer {
    padding: 16px;
    text-align: center;
    color: #fff;
}

.footer__desclaimer > .red {
    color: #ff1210;
}

.footer__copy-right {
    padding: 22px 0;
    text-align: center;
    color: #b1d60a;
    font-size: 13px;
}
/* Footer Ends */


/* Media Queries */
@media(max-width: 768px) {

    .header {
        padding: 10px;
    }

    a.brand-logo > img {
        max-width: 162px;
    }

    a.brand-contact-btn {
        margin: 0;
        padding: 6px 10px;
        font-size: 12px;
    }

    .banner__content {
        padding: 64px 12px;
        flex-direction: column;
    }

    .banner__tiles h1 {
        font-size: 24px;
    }

    .tile-row {
        align-items: flex-start;
    }

    .banner__content {
        padding: 64px 12px;
        flex-direction: column;
    }

    .banner__tiles h1 {
        font-size: 24px;
    }

    .tile-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .tiles > li a {
        justify-content: space-around;
        font-size: 18px;        
    }

    .tiles > li {
        padding: 0 8px;
    }

    ul.cards {
        flex-direction: column;
    }

    li.each-card {
        text-align: center;
    }

    .whyCus {
        padding: 55px 0;
    }

    .whyCus-row {
        width: 100%;
        max-width: 1132px;
        margin: 0 auto;
		flex-direction: column;
    }

    .whyCus-col {
        flex: 1;
        padding: 0 32px;
    }

    .whyCus-key-features-wrapper {
        padding: 30px 0;
        margin: 32px 0px;
    }

    .about__row {
        flex-direction: column;
    }

    .about-col {
        padding: 16px;
    }

    .about-col h5 {
        margin: 14px 0;
    }

    .about-col p {
        font-size: 14px;
    }

    img.about-avatar {        
        max-width: 312px;
        margin: -15px auto;
        display: block;
    }

    .slider-wrapper {
        width: 95%;
    }

    .slider-controller {
        position: absolute;
        font-size: 18px;
        border-width: 2px;
        width: 25px;
        height: 25px;
        margin: 0;
    }

    .slides {
        width: 95%;
    }

    .slide-item > p {
        padding: 0 40px;
        margin: 0 auto;
    }

    .slider-controller.next {
        right: -5px;
    }

    .slider-controller.previous {
        left: -5px;
    }

    .client-review {
        padding-bottom: 88px;
        margin-bottom: 56px;
    }

    .clients-before-after h3 {
        margin: 42px 0;
    }
    
    .contact {
        padding: 32px 8px;
    }

    .contact-row {
        flex-direction: column;
    }
    
    .footer__top > p {
        font-size: 14px;
    }
    .footer__row {
        max-width: 100%;
        flex-direction: column;
    }

    .footer__row:after {
        position: static;
    }

    .footer__col.bordered {
        display: none;
    }
}
/* Media Queries Ends */

.banner-form-wrapper {
    color: #3e3f3a;
}

video {
	vertical-align: bottom;
}

.embed-responsive {
    width: 100%;
    max-width: 100%;    
}