/*--------------------- Copyright (c) 2022 ----------------------- 
[Master Stylesheet] 
Product: Image Buzz - Free Stock Images WordPress Plugin
-------------------------------------------------------------------*/

/* 1. Global CSS Start */

:root {
    --buzz-global-family:  'DM Sans', sans-serif;
    --buzz-global-color: #7d889c;
    --buzz-global-size: 18px;
    --buzz-secondary: #edf8fa;
    --buzz-title-family:  'DM Sans', sans-serif;
    --buzz-title-color: #0c021a;
    --buzz-title-size: 32px;
    --buzz-body-bg: #ffffff;
    --buzz-primary: #029E9D;
    --buzz-white: #ffffff;
    --buzz-transition: all 0.3s;
    --buzz-dark: #161f37;
    --buzz-dark-text: #95a1b8;
}
* {
    outline: 0 !important;
}

body {
    font-family: var(--buzz-global-family);
    font-weight: 500;
    font-size: var(--buzz-global-size);
    line-height: 1.8;
    background: var(--buzz-body-bg);
    color: var(--buzz-global-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body::-webkit-scrollbar {
    width: 6px;
}
body::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--buzz-primary);
}
/* Preloader */
.buzz-preloader {
    background-color: var(--buzz-white);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2147483647;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.buzz-preloader-content {
    max-width: 380px;
    width: 100%;
    text-align: center;
}
.buzz-preloader-content img {
    -webkit-animation: threesixtyrotate 2s linear infinite;
    -moz-animation: threesixtyrotate 2s linear infinite;
    -o-animation: threesixtyrotate 2s linear infinite;
    -ms-animation: threesixtyrotate 2s linear infinite;
    animation: threesixtyrotate 2s linear infinite;
}
@-webkit-keyframes threesixtyrotate {
    100% {
      -webkit-transform: rotateY(360deg);
    }
  }
  @-moz-keyframes threesixtyrotate {
    100% {
      -moz-transform: rotateY(360deg);
    }
  }
  @keyframes threesixtyrotate {
    100% {
      transform: rotateY(360deg);    
    }
  }
  .buzz-preloader-content span {
    display: block;
    font-size: 42px;
    font-weight: 900;
    text-transform: capitalize;
    color: var(--buzz-title-color);
    -webkit-animation: shrink 2s linear infinite;
    -moz-animation: shrink 2s linear infinite;
    -o-animation: shrink 2s linear infinite;
    -ms-animation: shrink 2s linear infinite;
    animation: shrink 2s linear infinite;
}
@keyframes shrink {
    0%,
    100% {
        letter-spacing: 3px;
    }
    50% {
        letter-spacing: 0px;
    }
}
/** Top Button CSS **/
#scroll {
    position: fixed;
    right: 15px;
    bottom: 15px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 36px;
    z-index: 9;
    visibility: hidden;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
    background: var(--buzz-primary);
    color: var(--buzz-white);
    font-size: 40px;
    border-radius: 50%;
    border: 2px solid #029190;
        line-height: 1;
    padding-top: 7px;
}
#scroll.active {
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    animation: bounce 2s linear infinite;
    -webkit-animation: bounce 2s linear infinite;
    -moz-animation: bounce 2s linear infinite;
}
#scroll img {
    height: 30px;
}
#scroll:hover {
    box-shadow: 0 0 0 25px var(--buzz-title-color) inset;
    border-color: transparent;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0px);
    }
}
/* Link & Buttons */
a {
    color: var(--buzz-global-color);
}
a:hover,
a:focus,
button,
button:hover {
    color: var(--buzz-primary);
}
a,
a:hover,
a:focus,
button,
button:hover {
    text-decoration: none;
    -webkit-transition: var(--buzz-transition);
    -moz-transition: var(--buzz-transition);
    -ms-transition: var(--buzz-transition);
    -o-transition: var(--buzz-transition);
    transition: var(--buzz-transition);
}
/* General (img inputs heading )*/
img {
    max-width: 100%;
    height: auto;
}
input,textarea,select,button,button:focus,button:hover,label,.form-control:focus {
    box-shadow: none;
}
.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,
h6 {
    margin-bottom: 10px;
    color: var(--buzz-title-color);
    font-family: var( --buzz-title-family);
    line-height: 1.4;
}
strong {
    font-weight: 800;
}
ul,ol {
    margin: 0;
    padding: 0 0 0 10px;
    list-style: none;
}/* Button*/
.buzz-btn {
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
    font-weight: 600;
    border: 2px solid var(--buzz-white);
    outline: none;
    border-radius: 50px;
    color: var(--buzz-white);
    background-color: var(--buzz-primary);
    padding: 15px 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    min-width: 180px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
}
.buzz-btn:hover, .buzz-btn:focus {
    color: var(--buzz-primary);
    border: 2px solid var(--buzz-primary);
    letter-spacing: 0;
    background: var(--buzz-white);
}
.buzz-dark-btn {
    background: #037676;
    color: var(--buzz-white) !important;
    border-color: #037676;
}
.buzz-dark-btn:hover, .buzz-dark-btn:focus {
    background: #037676;
    color: var(--buzz-white) !important;
    border-color: #037676;
}

.has-bg {
    background: #edf8fa !important;
}

/* Main CSS*/
.main-wrapper {
    overflow: hidden;
}
/* Banner CSS */
.buzz-banner-wrapper {
    background: var(--buzz-primary);
    background: url(../images/banner-bg.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 0 160px;
    margin: 0;
}
.buzz-banner-wrapper .container-fluid {
    max-width: 1760px;
}
.buzz-banner-wrapper .container {
    position: relative;
    z-index: 1;
}
.buzz-title-budget {
    display: inline-block;
    background: rgb(255 255 255 / 10%);
    color: var(--buzz-white);
    font-size: 20px;
    padding: 20px 30px;
    border-radius: 80px;
    font-weight: 700;
    max-width: 820px;
    text-transform: capitalize;
    line-height: 1.4;
    position: relative;
    border: 2px solid var(--buzz-primary);
    box-shadow: 0 -5px 0px rgb(19 195 194);
}
.buzz-title-budget:after {
    content: "";
    position: absolute;
    top: -20px;
    right: -30px;
    width: 40px;
    height: 40px;
    background: url(../images/icon-shap.png);
    background-position: center;
    background-repeat: no-repeat;
}
.buzz-dual-btn {
    margin: 20px 0 0;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 30px;
}
.buzz-banner-title {
    font-size: 48px;
    font-weight: 900;
    margin: 14px 0 0;
    text-transform: capitalize;
    color: var(--buzz-white);
    max-width: 680px;
}
.buzz-banner-title span {
    font-weight: 900;
    color: #ffd016;
}
.buzz-banner-content .logo {
    margin: 0 0 40px;
}
.buzz-banner-content .logo img {
    max-height: 80px;
}
.buzz-banner-content .buzz-budget {
    max-width: 80%;
    font-size: 24px;
    margin: auto;
}
.buzz-intro-img-row {
    position: relative;
    text-align: center;
}

/* Title */
.buzz-title {
    max-width: 580px;
    margin: 0 auto 50px;
}
.buzz-title h4 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
    position: relative;
}
.has-dark-bg {
    color: var(--buzz-white);
    background: #082626;
}
.has-dark-bg .buzz-title h4, .has-dark-bg h4 {
    color: var(--buzz-white);
}
/* Features boxes */
.buzz-features-box-wrapper {
    padding: 68px 0 37px;
}
.buzz-features-box {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    box-shadow: 0px 0px 30px 0px rgb(193 157 216 / 16%);
    border-radius: 10px;
    padding: 60px 20px;
    width: 100%;
    margin: 0 0 30px;
    background-color: var(--buzz-white);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.buzz-features-box:before, 
.buzz-features-box:after {
    position: absolute;
    background-color: var(--buzz-primary);
    background: repeating-linear-gradient( -45deg,var(--buzz-primary), var(--buzz-primary) 2px, transparent  2px, transparent 10px );
    left: 35px;
    right: 35px;
    top: -10px;
    content: '';
    height: 10px;
    border-radius: 15px 15px 0 0;
    visibility: hidden;
    opacity: 0;
}
.buzz-features-box:hover:before {
    visibility: visible;
    opacity: 1;
}
body .buzz-features-box:after {
    top: auto;
    bottom: -10px;
    border-radius: 0 0 15px 15px;
}
.buzz-features-box:hover:after {
    visibility: visible;
    opacity: 1;
}
.buzz-feature-icon {
    margin: 0 0 20px;
}
.buzz-features-box:hover {
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.buzz-features-box h4 {
    font-size: 20px;
    font-weight: 700;
    width: 100%;
}
.buzz-features-box:hover:before, .buzz-features-box:hover:after, 
.buzz-features-box:before, .buzz-features-box:after {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* Colors */
.buzz-features-box-wrapper .row .col-12:nth-child(1) .buzz-features-box:before,
.buzz-features-box-wrapper .row .col-12:nth-child(1) .buzz-features-box:after {
    background: #fda605;
}
.buzz-features-box-wrapper .row .col-12:nth-child(2) .buzz-features-box:before,
.buzz-features-box-wrapper .row .col-12:nth-child(2) .buzz-features-box:after {
    background: #39ddd2;
}
.buzz-features-box-wrapper .row .col-12:nth-child(3) .buzz-features-box:before,
.buzz-features-box-wrapper .row .col-12:nth-child(3) .buzz-features-box:after {
    background: #fb6ea5;
}
.buzz-features-box-wrapper .row .col-12:nth-child(4) .buzz-features-box:before,
.buzz-features-box-wrapper .row .col-12:nth-child(4) .buzz-features-box:after {
    background: #a8ea53;
}
.buzz-features-box-wrapper .row .col-12:nth-child(5) .buzz-features-box:before,
.buzz-features-box-wrapper .row .col-12:nth-child(5) .buzz-features-box:after {
    background: #f079fa;
}
.buzz-features-box-wrapper .row .col-12:nth-child(6) .buzz-features-box:before,
.buzz-features-box-wrapper .row .col-12:nth-child(6) .buzz-features-box:after {
    background: #8488fd;
}
.buzz-features-box-wrapper .row .col-12:nth-child(7) .buzz-features-box:before,
.buzz-features-box-wrapper .row .col-12:nth-child(7) .buzz-features-box:after {
    background: #5cc45c;
}
.buzz-features-box-wrapper .row .col-12:nth-child(8) .buzz-features-box:before,
.buzz-features-box-wrapper .row .col-12:nth-child(8) .buzz-features-box:after {
    background: #0fd9ff;
}
.buzz-features-box-wrapper .row .col-12:nth-child(9) .buzz-features-box:before,
.buzz-features-box-wrapper .row .col-12:nth-child(9) .buzz-features-box:after {
    background: #5cc45c;
}
/* Footer */
.buzz-footer-wrapper {
    background: #082626;
    padding: 6px 0 5px;
    border-top: 1px solid #0c3434;
}
.buzz-footer-copyright {
    padding: 15px 20px;
    font-weight: 500;
    color: var(--buzz-white);
}
.buzz-footer-copyright p {
    margin: 0;
}
/* Step */
.buzz-steps-wrapper {
    padding: 68px 0 50px;
    position: relative;
}
.buzz-step-box h4 {
    font-weight: 900;
}
.buzz-steps-wrapper:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url(../images/curves.png);
    background-repeat: repeat;
    background-position: center;
    opacity: .1;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.colored-text {
    background: linear-gradient(91.45deg, #791df7 41.49%, #F525E7 111.82%);
    background-clip: border-box;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}
/* Support */
.buzz-support-wrapper {
    padding: 80px 0 50px;
}
.buzz-support-wrapper h4 {
    text-align: left;
}
.buzz-support-wrapper .buzz-title {
    margin: 0 0 20px;
}
.buzz-thank-wrap {
    padding: 50px 0 0;
    margin: 0 auto 20px;
}
/* about */
.buzz-about-wrapper {
    padding: 80px 0 50px;
}
.buzz-step-box ul {
    margin: 0 0 30px;
    padding: 0;
}
.buzz-step-box ul li {
    padding-left: 30px;
    margin: 0 0 10px;
    position: relative;
}
.buzz-step-box ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    background: url(../images/check.png);
    width: 20px;
    height: 20px;
    background-size: 100%;
}
.buzz-about-wrapper h4 {
    text-align: left;
}
.buzz-about-wrapper .buzz-title {
    margin: 0 0 20px;
}
/* Call To Action */
.buzz-call-to-action {
    background: #082626;
    position: relative;
    padding: 80px 00 30px;
}
.buzz-call-to-action .buzz-title {
    max-width: 980px;
}
.buzz-call-to-action .buzz-title .buzz-dual-btn {
    justify-content: center;
}
.buzz-call-to-action .buzz-title a.logo {
    margin: 0 0 20px;
    display: inline-block;
}
.buzz-call-to-action .buzz-title a.logo img {
    height: 60px;
}
.buzz-steps-wrapper .container {
    position: relative;
    z-index: 1;
}


/* Arrow */
.buzz-moving-arrow {
	position: relative;
}
.buzz-arrow-down {
    display: block;
    height: 90px;
}
.buzz-arrow-down>span {
	position: absolute;
	width: 90px;
	height: 27px;
	opacity: 0;
	transform: scale(0.3);
	animation: move-arrow 3s ease-out infinite;
	left: 0;
	right: 0;
	margin: auto;
}
.buzz-arrow-down>span:first-child {
	animation: move-arrow 3s ease-out 1s infinite;
}
.buzz-arrow-down>span:nth-child(2) {
	animation: move-arrow 3s ease-out 2s infinite;
}
@keyframes move-arrow {
	25% {
		opacity: 1;
	}

	33.3% {
		opacity: 1;
		transform: translateY(20px);
	}

	66.6% {
		opacity: 1;
		transform: translateY(40px);
	}

	100% {
		opacity: 0;
		transform: translateY(60px) scale(0.5);
	}
}
/** Responsive CSS Start **/
@media(min-width:1400px) {
    .container {
        max-width: 1200px;
    }
}
@media(min-width:1200px) {
    .buzz-arrow-down {
        margin-bottom: -50px;
    }
}
@media(max-width:1399.98px) {
    .buzz-banner-title {
        font-size: 36px;
        margin: 21px auto 0;
    }
    .buzz-title h4 {
        font-size: 34px;
    }
}
@media(max-width:991.98px) {
    .buzz-banner-title {
        font-size: 26px;
    }
    .buzz-title h4 {
        font-size: 24px;
    }
}
@media(max-width:767.98px) {
    .buzz-banner-title {
        font-size: 26px;
    }
    .buzz-steps-wrapper .center-row {
        flex-direction: column-reverse;
    }
    .buzz-step-box p {
        font-size: 18px;
        padding: 20px 20px;
    }
    .buzz-title-budget {
        font-size: 16px;
        padding: 10px 30px;
    }
    .buzz-banner-content .logo img {
        max-height: 60px;
    }
    .buzz-title-budget {
        max-width: 80%;
    }
}