/* CSS Index
------------------------------------
01. Template Default CSS
02. header css
03. banner CSS
04. feature CSS
05. solution CSS
06. template CSS
07. pricing CSS
08. clients CSS
09. login registration CSS
10. footer CSS

*/

/* ====================================================
  Google Fonts
==================================================== */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/* ..................................
 01. Template Default CSS
.................................. */

body {
    font-family: "Open Sans", sans-serif;
    color: #6a6a8e;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(166, 175, 189, 0.3);
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: #e8e8e8;
}

body::-webkit-scrollbar-thumb {
    background-image: linear-gradient(45deg, #ffbd84, #ff1f8e);
}

a,
.button {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

input,
input:focus,
a:focus,
button:focus {
    outline: none;
}

a,
a:hover {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #050748;
}

ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

/* ..................................
 02. header css
.................................. */
header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
    padding: 5px 15px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

header.active {
    position: fixed;
    background: #fff;
    box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.08);
}

.navbar-nav {
    width: 100%;
    align-items: center;
}

.navbar-brand {
    max-width: 250px;
    margin-right: 30px;
    font-size: 26px;
    color: #050748;
    font-weight: 700;
}

.navbar-brand img {
    max-width: 100%;
}

.nav-link {
    font-size: 16px;
    color: #050748;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0 !important;
    margin: 0 15px;
    position: relative;
}

.nav-link:not(.button)::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    height: 2px;
    width: 0;
    background: #050748;
    transition: 0.45s;
    -webkit-transition: 0.45s;
    -moz-transition: 0.45s;
    -ms-transition: 0.45s;
    -o-transition: 0.45s;
}

.nav-link:not(.button):hover::before {
    width: 60%;
}

.button {
    display: inline-block;
    outline: none;
    border: none;
    color: #fff !important;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.button::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -130px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: block;
    transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
}

.button:hover::before {
    top: -10%;
    right: -80px;
}

.button i {
    margin-left: 5px;
    font-size: 12px;
}

.btn-bg-1 {
    background: linear-gradient(to right, #ffbd84 0, #ff1f8e 100%);
    box-shadow: 0 10px 15px 0 rgba(175, 0, 87, 0.2);
}

.btn-bg-2 {
    background: linear-gradient(to right, #673ab7 0, #2196f3 100%);
    box-shadow: 0 10px 15px 0 rgba(56, 0, 189, 0.2);
}

.btn-bg-3 {
    background: linear-gradient(to right, #f92c8b 0, #b02cd6 100%);
    box-shadow: 0 10px 15px 0 rgba(175, 0, 202, 0.2);
}

#nav-sign-in-btn {
    color: #050748 !important;
    font-size: 16px;
    margin-right: 20px;
}

#nav-sign-up-btn {
    font-size: 17px;
    width: 150px;
    height: 50px;
    line-height: 50px;
}

/* ..................................
 03. banner CSS
.................................. */
.banner {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 100vh;
    background: #c7ecff;
    background: -moz-linear-gradient(top, #c7ecff 0, #f9efff 100%);
    background: -webkit-linear-gradient(top, #c7ecff 0, #f9efff 100%);
    background: linear-gradient(to bottom, #c7ecff 0, #f9efff 100%);
}

.banner::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    height: 100%;
    background: url(../img/banner-shape.png) left 0 no-repeat;
    background-size: contain;
}

.banner-img {
    text-align: center;
}

.banner-img img {
    max-width: 100%;
}

.banner-content h1 {
    font-size: 60px;
    margin-bottom: 30px;
    font-weight: 700;
}

.banner-content h1 span {
    color: #e91e63;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 35px;
}

.benner-btn-group {
    display: flex;
}

.benner-btn-group a:not(:last-child) {
    margin-right: 25px;
}

.banner-btn {
    width: 200px;
    height: 60px;
    line-height: 60px;
}

.banner-btn i {
    animation: arrowanim 2s infinite;
    -webkit-animation: arrowanim 2s infinite;
}

.modal {
    padding-right: 0 !important;
}

.get-quote-form-wrapper {
    border-radius: 20px;
}

.get-quote-form {
    padding: 30px 10px;
}

.get-quote-form-header {
    padding: 0 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.get-quote-form-header h5 {
    font-size: 30px;
    margin-bottom: 0;
}

.get-quote-form-header button {
    width: 30px;
    height: 30px;
    line-height: 25px;
    border-radius: 50%;
    background: linear-gradient(to right, #ffbd84 0, #ff1f8e 100%);
    text-shadow: none;
    opacity: 0.7;
}

.get-quote-form-header button :hover {
    opacity: 1;
}

.get-quote-form-header button span {
    font-size: 18px;
    color: #ffffff;
}

.get-quote-form-body {
    padding: 0 15px;
}

.single-form-input {
    margin-bottom: 15px;
}

.single-form-input input,
.single-form-input select,
.single-form-input textarea {
    width: 100%;
    height: 50px;
    outline: none;
    border: 2px solid transparent;
    padding: 0 15px;
    border-bottom: 2px solid #e6e6e6;
    border-radius: 10px;
    color: #172b43;
    font-size: 15px;
    background: #fff;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.single-form-input input:focus,
.single-form-input select:focus,
.single-form-input textarea:focus {
    border: 2px solid #e91e63;
}

.single-form-input textarea {
    height: 90px;
    resize: none;
}

.full-width-btn {
    width: 100%;
    height: 50px;
}

@keyframes arrowanim {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(8px, 0);
    }
}

@-webkit-keyframes arrowanim {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(8px, 0);
    }
}

/* ..................................
 04. feature CSS
.................................. */
.feature {
    background: linear-gradient(to top, #f6f6f6, #fdfdfd);
}

.sec-pad-top {
    padding-top: 100px;
}

.sec-pad-bottom {
    padding-bottom: 100px;
}

.feature-gutter > [class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
}

.feature-item {
    border-radius: 6px;
    box-shadow: 0 3.4px 2.7px -30px rgba(0, 0, 0, 0.059),
        0 8.2px 8.9px -30px rgba(0, 0, 0, 0.071),
        0 25px 40px -30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    height: 200px;
    padding: 30px 25px;
    margin-bottom: 20px;
}

.feature-intro {
    background: linear-gradient(to right, #9c27b0 0, #673ab7 100%);
}

.feature-intro h3 {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.feature-intro p {
    font-size: 17px;
    color: #fff;
    line-height: 27px;
}

.feature-box {
    background: #f3f5ff;
    border-bottom: 4px solid #b0bdff;
}

.feature-box:hover {
    padding: 20px 25px;
}

.feature-box-1 {
    background: #f3f5ff;
    border-bottom: 4px solid #b0bdff;
}

.feature-box-2 {
    background: #fff3e6;
    border-bottom: 4px solid #ffc093;
}

.feature-box-3 {
    background: #fbeefd;
    border-bottom: 4px solid #f6bcff;
}

.feature-box-4 {
    background: #effdff;
    border-bottom: 4px solid #9ff3ff;
}

.feature-box-5 {
    background: #f7ffdf;
    border-bottom: 4px solid #d4ff52;
}

.feature-box h4 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 15px;
    line-height: 24px;
    display: none;
}

.feature-box:hover p {
    display: block;
}

.feature-box img {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
    transition: 0.3s height;
    -webkit-transition: 0.3s height;
    -moz-transition: 0.3s height;
    -ms-transition: 0.3s height;
    -o-transition: 0.3s height;
}

.feature-box:hover img {
    height: 0;
}

/* ..................................
 05. solution CSS
.................................. */
.solution {
    position: relative;
}

.solution:before {
    content: "";
    background: url(../img/dot_bg.png);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title p {
    color: #e60072;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 15px;
}

.section-title h3 {
    font-size: 40px;
    line-height: 52px;
    text-transform: capitalize;
}

.solution-item {
    background: #fff;
    padding: 30px;
    border-radius: 40px 8px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    box-shadow: 0 11px 20px rgb(123 149 162 / 15%);
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}

.solution-item:hover {
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
}

.solution-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
}

.solution-item h4 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.solution-item p {
    font-size: 17px;
    line-height: 28px;
}

.c2a {
    margin-top: 60px;
    text-align: center;
}

.c2a p {
    font-size: 30px;
    color: #050748;
    margin-bottom: 25px;
}

.c2a p span {
    font-weight: 700;
}

.big-btn {
    padding: 16px 32px;
}

/* ..................................
 06. template CSS
.................................. */
.template {
    background: #fff;
    position: relative;
    z-index: 1;
}

.template:before {
    content: "";
    background: url(../img/dot-pattern.png);
    position: absolute;
    height: 400px;
    right: 0;
    left: 0;
    top: 0;
    z-index: -1;
    background-size: auto;
}

.single-template {
    margin-bottom: 40px;
}

.single-template-img {
    border-radius: 8px;
    background: #f3f9ff;
    -webkit-box-shadow: 0 3.4px 2.7px -30px rgba(0, 0, 0, 0.059),
        0 8.2px 8.9px -30px rgba(0, 0, 0, 0.071),
        0 25px 40px -30px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3.4px 2.7px -30px rgba(0, 0, 0, 0.059),
        0 8.2px 8.9px -30px rgba(0, 0, 0, 0.071),
        0 25px 40px -30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-bottom: 25px;
}

.single-template-img img {
    width: 100%;
    transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
}

.single-template:hover .single-template-img img {
    transform: scale(1.05);
}

.single-template-content h4 {
    font-size: 22px;
    margin: 0 0 10px;
}

.single-template-content p {
    font-size: 17px;
    margin-bottom: 0;
}

/* ..................................
 07. pricing CSS
.................................. */
.pricing {
    background: #fff6f3;
    background: linear-gradient(to bottom, #fff6f3 0, #fffefb 100%);
}

.pricing-table {
    background: #fff;
    height: calc(100% - 56px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin-bottom: 56px;
    padding: 30px 30px 0;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: -15px 30px 30px #f2f2f2, 15px -10px 20px #f3f3f3;
    box-shadow: -15px 30px 30px #f2f2f2, 15px -10px 20px #f3f3f3;
    position: relative;
}

.pricing-table.best-plan {
    background: linear-gradient(to bottom, #c1eeff 0, #f5faff 100%);
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
}

.pricing-table img {
    background: #e9f8ff;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    padding: 10px;
    border: 8px solid #fbfbfb;
    animation: border-transform 6s linear infinite;
    -webkit-animation: border-transform 6s linear infinite;
}

.pricing-table.best-plan img {
    background: #ccf0ff;
    border: 8px solid #e9f8ff;
}

.pricing-table .title {
    margin: 30px 0 10px;
    font-size: 16px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    display: block;
    letter-spacing: 0.5px;
}

.pricing-table .title-sub {
    margin: 0 0 30px;
    font-size: 17px;
}

.pricing-table .inner-table h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ff1f8e;
    margin-bottom: 3px;
}

.pricing-table.best-plan .inner-table h2 {
    color: #2a89ea;
}

sup {
    top: -0.5em;
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

.pricing-table .inner-table p.duration {
    color: #72729a;
    font-weight: 500;
    margin-bottom: 0;
}

.pricing-table .inner-table .details {
    margin-top: 35px;
    padding-top: 28px;
    padding-bottom: 30px;
    line-height: 42px;
    border-top: 1px solid #e5e5e5;
}

.pricing-button {
    margin-bottom: -26px;
}

@keyframes border-transform {
    0%,
    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }

    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }

    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }

    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }

    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }

    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }

    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}

/* ..................................
 08. clients CSS
.................................. */
.clients {
    background: linear-gradient(to bottom, #fffaf5 0, #f8ecff 100%);
}

.single-client {
    background: #fff;
    padding: 0 15px;
    max-height: 150px;
    min-height: 150px;
    border: 1px solid #d4f0ff;
    border-radius: 8px;
    -webkit-box-shadow: -20px 20px 40px #ece0f2, 20px -20px 40px #fff8ff;
    box-shadow: -20px 20px 40px #ece0f2, 20px -20px 40px #fff8ff;
    align-items: center;
    display: flex;
    position: relative;
}

.single-client img {
    margin: 0 auto;
    display: block;
    width: auto !important;
    max-width: 100%;
    max-height: 90px;
}

.client-slider.owl-carousel .owl-stage {
    padding: 0 0 55px;
}

.c2a.alt {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.c2a.alt p {
    margin-bottom: 0;
    margin-right: 20px;
}

/* ..................................
 09. login registration CSS
.................................. */
.log-reg-page {
    width: 100%;
    min-height: 100vh;
    background: #343a40;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
}

.log-reg-box {
    box-shadow: 20px 20px 60px #1a1d20, -20px -20px 60px #31363d;
    background: #fff;
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.log-reg-intro {
    background: linear-gradient(to right, #3f36b9 0, #20206b 100%);
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
}

.log-reg-intro h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 18px;
}

.log-reg-intro p {
    color: #fff;
    font-size: 17px;
    margin-bottom: 30px;
}

.log-reg-btn-alt {
    padding: 12px 35px;
    border: 2px solid #fff;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.log-reg-btn-alt:hover {
    background: #fff;
}

.log-reg-form {
    min-height: 500px;
    background-image: linear-gradient(
        45deg,
        #ff0048 0,
        #ff3870 50%,
        #c300c3 100%
    ) !important;
    padding: 80px 50px;
    text-align: center;
}

.log-reg-form h3 {
    font-size: 38px;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 30px;
}

.log-reg-form-input {
    display: inline-flex;
    align-items: stretch;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.log-reg-form-input input {
    background: #ebebeb;
    height: 45px;
    width: 280px;
    border-radius: 40px;
    border: none;
    outline: none;
    padding: 10px 10px 10px 50px;
    position: relative;
}

.log-reg-form-input input:focus {
    border: 1px solid #673ab7;
}

.log-reg-form-input input + i {
    position: absolute;
    left: 5px;
    top: 5px;
    background-image: linear-gradient(
        45deg,
        #ff0048 0,
        #ff3870 50%,
        #c300c3 100%
    ) !important;
    color: #fff;
    font-size: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    line-height: 35px;
}

.remember-check label {
    color: #fff;
}

.forgot-pass {
    margin-top: 10px;
    margin-bottom: 30px;
    display: inline-block;
    color: #eeeeee;
    font-weight: 700;
    padding-bottom: 5px;
    border-bottom: 2px solid #eeeeee;
}

.forgot-pass:hover {
    color: #fff;
    border-bottom: 2px solid #fff;
}

.log-reg-btn {
    padding: 12px 45px;
}

/* ..................................
 10. footer CSS
.................................. */
footer {
    background: #fff;
    padding: 70px 0 0;
}

.footer-block {
    margin-bottom: 30px;
}

.footer-logo {
    width: 250px;
    height: 60px;
    font-size: 20px;
    color: #050748;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 100%;
    max-height: 100%;
}

.footer-block p {
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 20px;
}

.foot-title {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
}

.footer-menu li {
    padding: 0 0 5px;
}

.footer-menu li a {
    color: #6a6a8e;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    padding: 3px 0;
    position: relative;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    z-index: 1;
}

.footer-menu li a::after {
    content: "";
    width: 0;
    height: 1px;
    bottom: 0;
    position: absolute;
    left: auto;
    right: 0;
    z-index: -1;
    -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    background: currentColor;
}

.footer-menu li a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.footer-menu li a:hover {
    color: #ff1f8e;
}

.single-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.single-contact i {
    margin: 0 13px 0 0;
    font-size: 21px;
    position: relative;
    top: 2px;
    width: 25px;
}

.single-contact .details {
    flex: 1;
}

.single-contact .details h6 {
    font-size: 18px;
    color: #6a6a8e;
    margin-bottom: 5px;
}

.copyright {
    margin-top: 50px;
    padding: 30px 0;
    background: #f8f9fa;
    text-align: center;
}

.copyright p {
    font-size: 17px;
    margin-bottom: 0;
}
