/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    list-style-type: none;
}

:root {
    --main-color: #7b68ee;
    --main-bgColor: rgb(250, 252, 255);
    --main-fontFamily: 'Kumbh Sans', sans-serif;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a {
    text-decoration: none;
}

/* Start Navbar */



.logo {
    position: relative;
}

.logo img {
    display: none;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.logo-white {
    display: block;
}

nav.black .logo-white {
    display: none;
}

nav.black .logo-black {
    display: block;
}

.logo-black {
    display: none;
}

header nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    -webkit-transition: background 0.5s, color 0.5s, -webkit-box-shadow 0.5s;
    transition: background 0.5s, color 0.5s, -webkit-box-shadow 0.5s;
    -o-transition: background 0.5s, color 0.5s, box-shadow 0.5s;
    transition: background 0.5s, color 0.5s, box-shadow 0.5s;
    transition: background 0.5s, color 0.5s, box-shadow 0.5s, -webkit-box-shadow 0.5s;
}

nav.black {
    background: #fff;
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); 
}

nav.black .nav-link {
    color: #000 !important;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.navbar-nav .nav-link:hover {
    color: var(--main-color); 
}

.navbar-toggler-icon {
    -webkit-transition: background-image 0.5s;
    -o-transition: background-image 0.5s;
    transition: background-image 0.5s; 
}


.dropdown-menu {
    background: #fff;
}

header nav.black .dropdown-menu {
    background: #fff;
}

header nav.black .dropdown-item {
    color: #000 !important;
}

.dropdown-item {
    color: #000;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.dropdown-item:hover {
    background: #444;
    color: #fff; 
}

.navbar-toggler {
    border-color: #fff;
    -webkit-transition: border-color 0.5s;
    -o-transition: border-color 0.5s;
    transition: border-color 0.5s; 
}

nav.black .navbar-toggler {
    border-color: #000;
}

.nav-btn button {
    background-color: #fff;
    color: var(--main-color);
    border: 2px solid var(--main-color); 
    -webkit-transition: all 0.5s; 
    -o-transition: all 0.5s; 
    transition: all 0.5s;
}

.nav-btn button:hover {
    background-color: var(--main-color);
    color: #fff;
}














/* End Navbar */




.home-section {
    height: 100vh;
    background-image: url(../images/home-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.home-section .content {
    color: #fff;
}

.home-section .content h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.home-section .content h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    font-family: var(--main-fontFamily);
}

.home-section .content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    font-family: var(--main-fontFamily);
}

.home-section .content .banner-btn {
    margin-top: 30px;
}

.default-btn {
    background-color: #fff;
    color: black;
    border: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 30px;
    text-align: center;
}

.home-section .default-btn {
    color: var(--main-color);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.home-section .default-btn:hover {
    background-color: #ff561d;
    color: #fff;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table .d-table-cell {
    vertical-align: middle;
}

.home-section .content .banner-btn .video-box {
    position: relative;
}

.home-section .content .banner-btn .video-box::before {
    content: "";
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    position: absolute;
    left: 15%;
    top: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
            animation: pulse-border 1500ms ease-out infinite;
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.home-section .content .banner-btn .video-box i {
    width: 50px;
    height: 50px;
    background-color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50%;
    font-size: 22px;
    padding-left: 3px;
    cursor: pointer;
}

.home-section .content .banner-btn span {
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}



/* Services */

.services-section .section-title,
.portfolio .section-title,
.price-section .section-title,
.team-section .section-title,
.testimonial-section .section-title,
.hire-section .section-title,
.blog-section .section-title,
.contact-section .section-title,
.contact-info-section .section-title,
.partner-section .section-title {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.services-section .section-title h6,
.portfolio .section-title h6,
.price-section .section-title h6,
.team-section .section-title h6,
.testimonial-section .section-title h6,
.hire-section .section-title h6,
.blog-section .section-title h6,
.contact-section .section-title h6,
.partner-section .section-title h6,
.contact-info-section .section-title h6,
.about-section .about-content .before {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ff9800;
    position: relative;
}

.services-section .section-title h6::before,
.portfolio .section-title h6::before,
.price-section .section-title h6::before,
.team-section .section-title h6::before,
.testimonial-section .section-title h6::before,
.hire-section .section-title h6::before,
.blog-section .section-title h6::before,
.contact-section .section-title h6::before,
.contact-info-section .section-title h6::before,
.partner-section .section-title h6::before,
.about-section .about-content .before::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #ff9800;
    position: absolute;
    top: 6px;
    left: -15px;
}

.services-section .section-title h2,
.portfolio .section-title h2,
.price-section .section-title h2,
.team-section .section-title h2,
.testimonial-section .section-title h2,
.hire-section .section-title h2,
.blog-section .section-title h2,
.contact-section .section-title h2,
.contact-info-section .section-title h2,
.partner-section .section-title h2 {
    margin-top: 20px;
    color: #404040;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--main-fontFamily);
}

.services-section .single-service {
    padding: 35px 30px;
    margin-top: 30px;
    text-align: left;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all ease 0.75s;
    -o-transition: all ease 0.75s;
    transition: all ease 0.75s;
}

.services-section .single-service::before {
    content: "";
    width: 0;
    background-color: var(--main-color);
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    z-index: -1;
    -webkit-transition: all ease 0.75s;
    -o-transition: all ease 0.75s;
    transition: all ease 0.75s;

}

.services-section .single-service:hover::before {
    width: 100%;
    height: 100%;
    left: 0;
    right: auto;
}


.services-icon i {
    font-size: 50px;
    color: var(--main-color);
    -webkit-transition: all ease 0.75s;
    -o-transition: all ease 0.75s;
    transition: all ease 0.75s;
}

.single-service h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--main-fontFamily);
    line-height: 1.4;
}

.services-btn a,
.blog-btn a {
    color: var(--main-color);
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.services-btn i,
.blog-btn i {
    color: var(--main-color);
    margin-right: 10px;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.services-btn:hover i,
.blog-btn:hover i {
    -webkit-transform: translateX(5px);
        -ms-transform: translateX(5px);
            transform: translateX(5px);
}

.services-section .single-service:hover i,
.services-section .single-service:hover a,
.services-section .single-service:hover {
    color: #fff;
}



/* Counter */
.counter {
    background-image: url(../images/banner-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    color: #fff;
}

.counter::before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: #052b62;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
}

.counter-content h2 {
    font-size: 45px;
    font-weight: 700;
    font-family: var(--main-fontFamily);
    line-height: 1.4;
}

.counter-content h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--main-fontFamily);
    line-height: 1.4;
}



/* overview */
.overview-section,
.faq-section {
    background-color: var(--main-bgColor);
}

.overview-section .overview-content h6,
.faq-section .faq-content h6 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff9800;
    position: relative;
    margin-left: 20px;
}

.overview-section .overview-content h6::before,
.faq-section .faq-content h6::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #ff9800;
    position: absolute;
    top: 6px;
    left: -20px;
}

.overview-section .overview-content h2,
.faq-section .faq-content h2 {
    color: #404040;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--main-fontFamily);
}

.overview-section .overview-content ul {
    list-style-type: none;
    padding-left: 0;
}

.overview-section .overview-content ul li {
    width: 50%;
    margin-top: 15px;
    padding-right: 20px;
}

.overview-content .features-list li span {
    color: #404040;
    font-size: 16px;
    font-weight: 500;
    z-index: 1;
    padding: 15px;
    border-radius: 5px;
    display: block;
    background-color: #fff;
    border-left: 2px solid var(--main-color);
    -webkit-box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
            box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
}

.overview-content .features-list li span::before {
    content: "";
    width: 0;
    height: 100%;
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 3px;
    background-color: var(--main-color);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.overview-content .features-list li span:hover {
    color: #fff;
}

.overview-content .features-list li span:hover::before {
    width: 100%;
}




/* Portfolio */
.portfolio .portfolio-item {
    margin-top: 30px;
    position: relative;
}

.portfolio .portfolio-item .overlay {
    background-color: #fff;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -30px;
    padding: 15px 20px;
    overflow: hidden;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
}

.portfolio .portfolio-item .overlay p {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: translateX(-15px);
        -ms-transform: translateX(-15px);
            transform: translateX(-15px);
    visibility: hidden;
}

.portfolio .portfolio-item .overlay h3 {
    font-size: 18px;
    font-weight: 700;
    opacity: 0;
    -webkit-transform: translateX(15px);
        -ms-transform: translateX(15px);
            transform: translateX(15px);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    visibility: hidden;
}

.portfolio .portfolio-item .overlay h3 a {
    color: #1b1b1b;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.portfolio .portfolio-item .overlay h3 a:hover {
    color: var(--main-color);
}

.portfolio .portfolio-item .overlay .arrow {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    color: #fff;
    height: 100%;
    font-size: 25px;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background-color: var(--main-color);
}

.portfolio-item:hover .overlay {
    bottom: 10px;
    opacity: 1;
}

.portfolio-item:hover .overlay h3,
.portfolio-item:hover .overlay p,
.portfolio-item:hover .overlay .arrow {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
}




/* Pricing */
.price-section {
    background-color: var(--main-bgColor);
}

.pricing-content {
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.pricing-content:hover {
    -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
            transform: translateY(-15px);
}

.pricing-top-bg {
    color: #fff;
    padding: 30px 0;
    min-height: 245px;
    background-image: url(../images/pricing-wave.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.pricing-top-bg h3 {
    font-size: 25px;
}

.pricing-top-bg h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--main-fontFamily);
}

.pricing-top-bg h2 p {
    font-size: 15px;
    font-weight: 500;
}


.price-text ul li {
    list-style: none;
    font-size: 16px;
    padding: 10px 0;
    border-top: 1px dashed #dfe4e8;
}

.price-text ul .offer-none {
    color: #b7b7b7;
}

.price-btn .default-btn {
    margin-bottom: 30px;
    background-color: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.price-btn .default-btn:hover {
    background-color: #fff;
    color: var(--main-color);
}



/* Team */
.team-section .card {
    position: relative;
}

.team-section .card .team-image {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.team-section .card .team-image img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.team-section .card .team-image::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000000ba;
    position: absolute;
    offset: 0;
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 5px;
}

.team-section .card .team-image:hover::before {
    opacity: 1;
}

.team-section .card .team-image:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

.team-section .card .social-media {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 20px;
}

.team-section .card .social-media a i {
    font-size: 18px;
    height: 40px;
    width: 40px;
    background-color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.team-section .card .social-media a i:hover {
    background-color: var(--main-color);
    color: #fff;
}

.team-section .card .team-image:hover a i {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    opacity: 1;
}


.team-section .card .card-body h3 {
    font-size: 18px;
    font-weight: 600;
}

.team-section .card .card-body span {
    color: #5764ec;
    font-size: 16px;
    font-weight: 500;
}



/* Testimonial */
.single-testimonial {
    background-color: #fafafa;
    padding: 35px 15px;
    border-radius: 5px;
}

.testimonial-section .rating ul li {
    list-style-type: none;
    color: #ffce39;
    font-size: 16px;
}

.testimonial-section .image img {
    width: 90%;
    border-radius: 50%;
    border: 5px solid #fff;
    border-left-color: var(--main-color);
    border-bottom-color: var(--main-color);
}

.testimonial-section .info h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}

.testimonial-section .info span {
    color: #5764ec;
    font-size: 16px;
    font-weight: 500;
}




/* FAQ */
.faq-accordion button {
    color: var(--main-color);
    font-size: 15px;
}

.faq-accordion p {
    color: rgb(116, 113, 113);
}



/* Hire */
.hire-section {
    background-image: url(../images/banner-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    color: #fff;
}

.hire-section::before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: #052b62;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
}

.hire-section .section-title h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin: 15px 0;
}

.hire-section .section-title p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    font-family: var(--main-fontFamily);
}

.hire-btn .btn-one {
    background-color: var(--main-color);
    color: #fff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.hire-btn .btn-one:hover {
    background-color: #3e57d0;
}

.hire-btn .btn-two:hover {
    background-color: #3e57d0;
    color: #fff;
}

.hire-btn .btn-two {
    background-color: #fff;
    color: var(--main-color);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}





/* blog */
.blog-section {
    background-color: var(--main-bgColor);
}

.blog-section .blog-content ul li {
    list-style-type: none;
    margin-right: 15px;
}

.blog-section .blog-content ul li a {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.blog-section .blog-content ul li a i {
    color: var(--main-color);
}

.blog-section .blog-content h3 a p {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    color: #000;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-section .blog-content h3 a p:hover {
    color: var(--main-color);
}

.blog-section .blog-content .blog-btn a {
    font-size: 16px;
    font-weight: 600;
}

.blog-section .more-btn a {
    background-color: var(--main-color);
    color: #fff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-section .more-btn a:hover {
    background-color: #3e57d0;
}




/* Contact */
.contact-section .contact-form .form-group .form-control {
    height: 55px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #f5f5f5;
    border-left: 3px solid #7b68ee;
    background-color: #f5f5f5;
}

.contact-section .contact-btn .default-btn {
    background-color: var(--main-color);
    color: #fff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.contact-section .contact-btn .default-btn:hover {
    background-color: #3e57d0;
}
.contact-info-content{
    padding: 45px 20px;
    text-align: center;
    border-radius: 5px;
    border-bottom: 3px solid #7b68ee;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    margin-top: 30px;
}
.contact-info-content h5{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-content a{
    font-weight: 600;
    color: #000;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.contact-info-content a:hover{
    color: var(--main-color);
}

/* partner */
.partner-section {
    background-color: var(--main-bgColor);
}



/* Footer */
.footer {
    background-color: #052b62;
}

.newsletter-form {
    position: relative;
}

.newsletter-form .submit {
    background-color: var(--main-color);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.newsletter-form .submit:hover {
    background-color: #ff9800;
    border-color: #ff9800;
}

.footer .subscribe {
    position: relative;
    color: #fff;
}

.footer .subscribe h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--main-fontFamily);
}

.footer .subscribe p {
    font-size: 16px;
    font-weight: 400;
}

.footer .subscribe::after {
    content: "";
    width: 100%;
    height: 0.5px;
    background-color: #191616;
    position: absolute;
    top: 100%;
}

.footer .head h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    font-family: var(--main-fontFamily);
}

.footer .foot .social-media a i {
    font-size: 18px;
    height: 40px;
    width: 40px;
    background-color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.footer .foot .social-media a i:hover {
    background-color: var(--main-color);
    color: #fff;
}

.footer .contact-info i {
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.footer .contact-info h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}


.footer .contact-info span,
.footer .contact-info span a {
    color: #ececec;
    font-size: 15px;
    font-weight: 400;
}


.footer .single-footer ul li {
    margin-top: 20px;
}

.footer .single-footer ul li a {
    color: #fff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.footer .single-footer ul li a:hover {
    color: var(--main-color);
}

.footer .single-footer p {
    color: #fff;
    margin-top: 30px;
    padding: 0 10px;
}

.footer .single-footer .social-media li {
    margin-left: 10px;
}

.footer .single-footer .social-media li i {
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: var(--main-color);
    border-radius: 5px;
    line-height: 35px;
    text-align: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.footer .single-footer .social-media li i:hover {
    background-color: var(--main-color);
    color: #fff;
}

.footer .foot {
    position: relative;
}

.footer .foot::after {
    content: "";
    width: 100%;
    height: 0.5px;
    background-color: #191616;
    position: absolute;
    top: 100%;
}


/* Copy Right */
.copy-right {
    background-color: #052b62;
    padding: 0 0 30px;
}

.copy-right .l::after {
    content: "";
    width: 2px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: 110%;
}





/* About Section */
.about-section-bg,
.services-section-bg,
.portfolio-section-bg,
.team-section-bg,
.pricing-section-bg,
.plog-section-bg,
.contact-section-bg {
    height: 450px;
    background-image: url(../images/banner-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.about-section-bg::before,
.services-section-bg::before,
.portfolio-section-bg::before,
.team-section-bg::before,
.pricing-section-bg::before,
.plog-section-bg::before,
.contact-section-bg::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #052b62;
    position: absolute;
    offset: 0;
    opacity: 0.5;
}

.about-section-bg .page-title,
.services-section-bg .page-title,
.portfolio-section-bg .page-title,
.team-section-bg .page-title,
.pricing-section-bg .page-title,
.plog-section-bg .page-title,
.contact-section-bg .page-title {
    margin-top: 50px;
}

.about-section-bg .page-title h2,
.services-section-bg .page-title h2,
.portfolio-section-bg .page-title h2,
.team-section-bg .page-title h2,
.pricing-section-bg .page-title h2,
.plog-section-bg .page-title h2,
.contact-section-bg .page-title h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    z-index: 20;
}

.about-section .about-content .before {
    margin-left: 15px;
}

.about-section .about-content h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--main-fontFamily);
}

.about-section .about-content .about-btn button {
    background-color: var(--main-color);
    color: #fff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.about-section .about-content .about-btn button:hover {
    background-color: #3e57d0;
}



/* Go Top */
.go-top {
	color: #ffffff;
	position: fixed;
	z-index: 4;
	top: 0;
	right: 30px;
	width: 45px;
	height: 45px;
	opacity: 0;
	visibility: hidden;
	text-align: center;
	line-height: 45px;
	border-radius: 3px;
	background-color: #7b68ee;
	-webkit-transition: .9s;
	-o-transition: .9s;
	transition: .9s;
	cursor: pointer;
}

.go-top.active {
	top: 95%;
	-webkit-transform: translateY(-98%);
	-ms-transform: translateY(-98%);
	    transform: translateY(-98%);
	opacity: 1;
	visibility: visible;
}

.go-top i {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	    transform: translateY(-50%);
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	margin: 0 auto;
}

.go-top i:last-child {
	top: 60%;
	opacity: 0;
	visibility: hidden;
}

.go-top::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	border-radius: 3px;
	background-color: #ff9800;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.go-top:hover, .go-top:focus {
	color: #ffffff;
}

.go-top:hover::before, .go-top:focus::before {
	opacity: 1;
	visibility: visible;
}

.go-top:hover i:first-child, .go-top:focus i:first-child {
	top: 0;
	opacity: 0;
	visibility: hidden;
}

.go-top:hover i:last-child, .go-top:focus i:last-child {
	top: 50%;
	opacity: 1;
	visibility: visible;
}