body,
html {
    /*height: 100%;*/
    font-family: "Raleway", sans-serif;
    overflow-x: hidden;
    font-size: 14px;
    background: #fff;
    line-height: 1.2;
    font-weight: 400 !important;
}

/*---------------Font Start---------------*/
.font-weight-bold,
.fw-bold {
    font-weight: 700 !important;
    font-family: "Roboto Condensed", sans-serif;
}
.font-weight-semibold,
.fw-semibold {
    font-weight: 600 !important;
    font-family: "Roboto Condensed", sans-serif;
}
.font-weight-medium,
.fw-medium {
    font-weight: 500 !important;
    font-family: "Roboto Condensed", sans-serif;
}
.font-weight-normal,
.fw-normal {
    font-weight: 400 !important;
    font-family: "Raleway", sans-serif;
}
.font-weight-light,
.fw-light {
    font-weight: 300 !important;
    font-family: "Roboto Condensed", sans-serif;
}
/*---------------Font familly End---------------*/

/*---------------Font Size---------------*/
.font-size-10 {
    font-size: 10px;
}
.font-size-11 {
    font-size: 11px;
}
.font-size-12 {
    font-size: 12px;
}
.font-size-13 {
    font-size: 13px;
}
.font-size-14 {
    font-size: 14px;
}
.font-size-15 {
    font-size: 15px;
}
.font-size-16 {
    font-size: 16px;
}
.font-size-17 {
    font-size: 17px;
}
.font-size-18 {
    font-size: 18px;
}
.font-size-19 {
    font-size: 19px;
}
.font-size-20 {
    font-size: 20px;
}
.font-size-21 {
    font-size: 21px;
}
.font-size-22 {
    font-size: 22px;
}
.font-size-23 {
    font-size: 23px;
}
.font-size-24 {
    font-size: 24px;
}
.font-size-25 {
    font-size: 25px;
}
.font-size-26 {
    font-size: 26px;
}
.font-size-27 {
    font-size: 27px;
}
.font-size-28 {
    font-size: 28px;
}
.font-size-30 {
    font-size: 30px;
}
.font-size-32 {
    font-size: 32px;
}
.font-size-34 {
    font-size: 34px;
}
.font-size-36 {
    font-size: 36px;
}
.font-size-38 {
    font-size: 38px;
}
.font-size-40 {
    font-size: 40px;
}
.font-size-42 {
    font-size: 42px;
}
.font-size-45 {
    font-size: 45px;
}
.font-size-50 {
    font-size: 50px;
}
.font-size-52 {
    font-size: 52px;
}
.font-size-60 {
    font-size: 60px;
}
.font-size-80 {
    font-size: 80px;
}
.line-hight-1 {
    line-height: 1.1;
}
.line-hight-2 {
    line-height: 1.3;
}
.line-hight-3 {
    line-height: 1.5;
}
.line-hight-4 {
    line-height: 1.8;
}
.line-hight-normal {
    line-height: normal;
}
.leter1 {
    letter-spacing: 1px;
}
.shadow-sm {
    box-shadow: 0 0.125rem 1.25rem rgba(0, 0, 0, 0.075) !important;
}
/*.rounded {border-radius: 1.2rem !important;}*/
.navbar-toggler:focus {
    box-shadow: none !important;
}
/*---------------Font Size End---------------*/

.form-control {
    height: calc(2em + 0.75rem + 2px);
    font-size: 14px;
}
.form-control:focus {
    box-shadow: none;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    outline: none !important;
}

.custom-file-input {
    height: calc(2em + 0.75rem + 2px);
}
.custom-file-label {
    height: calc(2em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    line-height: 2;
    font-size: 14px;
}
.custom-file-label::after {
    height: calc(2em + 0.75rem);
    padding: 0.375rem 0.75rem;
    line-height: 2;
}

/*---------------Text Color Start---------------*/
.text-primary {
    color: #138bd7 !important;
}
.text-muted {
    color: #686868 !important;
}
.text-dark {
    color: #1a2130 !important;
}
.text-yellow {
    color: #ffcb00 !important;
}
.text-yellow-light {
    color: #fff455 !important;
}
.text-blue {
    color: #dfc45d;
}
/*---------------Text Color End---------------*/

/*---------------Button Start---------------*/
.btn.focus,
.btn:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.btn-warning {
    color: #1a2130;
    background-color: #ffda33;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    border: none;
}
.btn-warning::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    opacity: 0;
    -webkit-transform: scale3d(0.7, 1, 1);
    transform: scale3d(0.7, 1, 1);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    transition-timing-function: ease, ease;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    border-radius: 50rem !important;
    bottom: 0px;
    right: -1px;
}
.btn-warning:hover::before {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.btn-warning:hover,
.btn-check:focus + .btn-warning,
.btn-warning:focus {
    background-color: #ffda33;
    border-color: #ffda33;
}

.btn-light {
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    border: none;
}
.btn-light::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #1a2130;
    z-index: -1;
    opacity: 0;
    -webkit-transform: scale3d(0.7, 1, 1);
    transform: scale3d(0.7, 1, 1);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    transition-timing-function: ease, ease;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    border-radius: 0rem !important;
    bottom: 0px;
    right: -1px;
}
.btn-light:hover::before {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.btn-light:hover,
.btn-check:focus + .btn-light,
.btn-light:focus {
    background-color: #1a2130;
    border-color: #1a2130;
    color: #fff;
}

.btn-dark {
    background-color: #1a2130;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    border: none;
}
.btn-dark {
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    border: none;
}
.btn-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    z-index: -1;
    opacity: 0;
    -webkit-transform: scale3d(0.7, 1, 1);
    transform: scale3d(0.7, 1, 1);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    transition-timing-function: ease, ease;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    border-radius: 0rem !important;
    bottom: 0px;
    right: -1px;
}
.btn-dark:hover::before {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.btn-dark:hover,
.btn-check:focus + .btn-dark,
.btn-dark:focus {
    background-color: #000;
}

.btn-outline-dark {
    color: #c19a02;
    border-color: #c19a02;
}
.btn-outline-dark:hover,
.btn-check:active + .btn-outline-dark,
.btn-check:checked + .btn-outline-dark,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show,
.btn-outline-dark:active {
    color: #fff;
    background-color: #c19a02;
    border-color: #c19a02;
}

/*---------------Button End---------------*/

/*---------------BG Background Start---------------*/
.bg-yellow {
    background-color: #fefbd8 !important;
}
.bg-yellow-light {
    background-color: #fbf8dd !important;
}
.bg-dark {
    background-color: #1a2130 !important;
}
.bg-light {
    background-color: #f9fafc !important;
}
.bg-greenlight {
    background-color: #f5e7b2 !important;
}
.bg-blue {
    background: #dfc45d !important;
}
/*---------------BG Background End---------------*/

/*body.pad {padding-top: 86px;}*/

.homepad {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.header-top .logo-header img {
    max-width: 140px;
}
.home-banner {
    background-size: cover !important;
    padding-top: 12rem;
    padding-bottom: 12rem;
}
/*.home-banner::before {position: absolute; background: rgba(0, 0, 0, 0.6); left: 0; right: 0; top: 0; bottom: 0;	display: block;	content: ""; z-index: 0;}*/
/*.customer-support::before {background: url(../images/customersupport-top.svg) center bottom no-repeat; height: 13vw; top: -12.9vw; z-index: 0; content: "";	display: block; position: absolute;	left: 0; right: 0; background-size: 100%; margin-left: -2rem; margin-right: -2rem;}
.customer-support::after {background: url(../images/customersupport-bottom.svg) center top no-repeat; height: 12.2vw; bottom: -11.9vw; z-index: 0; content: ""; display: block; position: absolute; left: 0; right: 0; background-size: 100%; margin-left: -2rem; margin-right: -2rem;}*/
.navbar-light .navbar-nav .nav-link {
    color: rgb(8, 5, 1);
    padding-right: 0.8rem;
    padding-left: 0.8rem;
}
/*.annablog {padding-top: 11.5rem;}*/
/*.heading-text {background: linear-gradient(90deg, #FFE954 0%, #E8B100 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }*/

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    margin-top: 20px;
}
.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 5px;
    background: #010101;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 0.2s ease;
    border-radius: 0px;
    border: 2px solid #010101;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #ffda33;
    border-color: #ffda33;
}

/*.happy-customers::before {background: url(../images/happy-customers-top.svg) center bottom no-repeat; height: 50vw; margin-top: -50.2vw; z-index: 0; content: ""; display: block; position: relative; left: 0; right: 0; background-size: 100%; margin-left: -2rem; margin-right: -2rem;}
.happy-customers::after {background: url(../images/happy-customers-bottom.svg) center top no-repeat; height: 50vw; margin-bottom: -50.2vw; z-index: 1; content: "";	display: block;	position: relative;	left: 0; right: 0; background-size: 100%; margin-left: -2rem; margin-right: -2rem;}*/
.happy-customers {
    margin-top: 7rem;
    /* padding-top: 0.2rem; */
    /* padding-bottom: 0.2rem; */
}
.happy-customers-img > div {
    margin: -7rem 0rem 0px 0rem;
}
/*.customers-btn {margin-bottom: -54px; position: relative; z-index: 2; bottom: -40px;}*/
.clients-text {
    letter-spacing: 1px;
}
/*.whychoose {padding-top: 27rem; padding-bottom: 10rem;}*/
/*.whychoose-bg{background: rgba(254, 194, 0, 0.93); z-index: 2;}*/

.steplist li {
    padding-left: 27px;
}
.steplist li .number {
    left: 0;
}

/*.steps-section::after {background: url(../images/steps-bottom-img.svg) center bottom no-repeat; height: 16vw; bottom: -15vw; z-index: 0; content: ""; display: block; position: absolute; left: 0; right: 0; background-size: 100%; margin-left: -2rem; margin-right: -2rem;}*/
/*.steps-section .steps-btn {margin: 0 auto; left: 0; right: 0; max-width: 280px;	bottom: -30px; z-index: 3;}*/

.footer-bg {
}
footer.footer-bg {
    padding: 5rem 0 3rem;
    background-color: #1a2130;
}
.accordionhome .accordion-item {
    background-color: transparent;
    margin-bottom: 5px;
    border: none !important;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button::after {
    background: #686868;
    height: 2px;
    width: 14px;
    left: auto;
    position: absolute;
    right: 22px;
}
.accordion-button::before {
    content: "";
    width: 2px;
    height: 14px;
    content: "";
    margin-left: auto;
    position: absolute;
    right: 28px;
    background: #686868;
    display: block;
}
.accordion-button:not(.collapsed) {
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
    background: #1a2130;
    height: 2px;
    width: 14px;
}
.accordion-button:not(.collapsed)::before {
    display: none;
}
.accordionhome .accordion-item .accordion-button {
    border-radius: 4px !important;
    background-color: #f2f2f2;
    padding-right: 40px;
}
.accordion-button:not(.collapsed) {
    background-color: #ffeead !important;
}
.accordion-button:not(.collapsed) {
    color: #1a2130 !important;
}
.footer-logo img {
    max-width: 180px;
}

header.fixed-tops {
    background: rgba(20, 22, 26, 0.94);
    padding-top: 0.3rem !important;
    padding-bottom: 0.3rem !important;
}
header.header-top {
    background-color: transparent;
    z-index: initial;
    position: relative;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
header.fixed-tops .logo-header img {
    max-width: 110px;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    border: 1px solid #20252f;
    color: #ffda33;
    background-color: #20252f;
}

.navbar-light .navbar-nav .nav-link {
    border: 1px solid transparent;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    border: 1px solid #dfc45d;
    color: #000;
    background-color: #dfc45d;
}
.banner-btn {
    z-index: 3;
}
/*.contact-header {padding-top: 9px !important; padding-bottom: 9px !important;}*/

.blogbox::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(
        left,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.blogbox:hover::before {
    -webkit-animation: shine 0.75s;
    animation: shine 0.75s;
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
.blog-col:hover h5 a {
    /* color: #FFDA33 !important; */
    text-decoration: underline !important;
}
/*.callnow:hover {background-color: #0010fd !important;}*/
.callnow-yellow {
    z-index: 3;
}
.callnow-yellow:hover {
    background-color: #fff !important;
}
/*.customerservice-img::before {background: url(../images/customerservice-img.svg) right center no-repeat; top: -10rem; z-index: 2; content: "";	position: absolute;	right: 0; background-size: 60%;	bottom: -10rem;	width: 20%;}
.happy-customers-bg::before {background: url(../images/customerservice-img.svg) right center no-repeat; top: -10rem; z-index: 2; content: "";	position: absolute;	right: 0; background-size: 60%;	bottom: -10rem;	width: 34%;}*/
.callnow {
    position: relative;
    z-index: 3;
}
.breadcrumb-item + .breadcrumb-item::before {
    background: url(../images/breadcrumb-icon.png) center no-repeat;
    content: "";
    width: 18px;
    height: 12px;
    position: relative;
    bottom: -4px;
    margin-right: 10px;
    margin-left: 4px;
}
.banner-inner {
    padding-top: 8rem;
    padding-bottom: 8rem;
    z-index: 2;
}
/*.green-bilar{background: url(../images/green-bilar.svg) left top no-repeat; background-size: 40%;}
.services-tribhuj{background: url(../images/services-tribhuj.svg) right center no-repeat; background-size: 30%;}*/
.allposts a {
    border: 1px solid transparent;
}
.allposts a.active,
.allposts a:hover {
    border: 1px solid #fff;
}
/*.blog-list-pad {padding-top: 17rem;}*/
.search-box button {
    top: 8px;
    left: 8px;
}

.bloglist-share {
    width: 40px;
    top: 15px;
    right: 15px;
    z-index: 3;
}
.bloglist-share a {
    width: 40px;
    height: 40px;
    text-align: center;
}
.criket-user {
    bottom: 15px;
    left: 15px;
}
.criket-user img {
    border: 2px solid #fff;
    max-width: 40px;
}
.bloglist-box .blogbox::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    content: "";
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.9) 100%
    );
}
.bloglist-box:hover {
    background-color: #fff455 !important;
}
.bloglist-box:hover .comments {
    color: #1a2130 !important;
}
/*.blogdetails-big {margin-top: -248px;}*/
.call-banner a {
    min-width: 262px;
}
.call-banner {
    background-position: 90% 60% !important;
    background-size: cover !important;
}

.servicesbox {
    top: 0;
    bottom: 0;
    width: 50%;
    display: flex;
}
.servicesbox h5::after {
    background: #333;
    height: 2px;
    width: 50px;
    content: "";
    display: block;
    margin: 10px auto 14px;
}

.servicesbox_l {
    left: 0;
    background: #ffe44a;
}
.servicesbox_l::after {
    width: 0px;
    height: 0px;
    content: "";
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 24px solid #ffe44a;
    position: absolute;
    right: -23px;
    top: 30px;
}
.servicesbox_r {
    right: 0;
    background: #fff;
}
.servicesbox_r::before {
    width: 0px;
    height: 0px;
    content: "";
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 24px solid #fff;
    position: absolute;
    left: -23px;
    top: 30px;
}

.servicesbox-send {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    height: 50%;
}
.servicesbox-send h5::after {
    background: #333;
    height: 2px;
    width: 50px;
    content: "";
    display: block;
    margin: 10px auto 14px;
}
.servicesbox_b {
    bottom: 0;
    background: #fff455;
}
.servicesbox_b::after {
    width: 0px;
    height: 0px;
    content: "";
    position: absolute;
    left: 30px;
    bottom: -24px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 24px solid #fff455;
}

.socialmedia-icon a {
    background: url(../images/socialmedia.png) no-repeat;
    width: 20px;
    height: 21px;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
.socialmedia-icon a.ig {
    background-position: 0px 0;
}
.socialmedia-icon a.ig:hover {
    background-position: 0px -38px;
}
.socialmedia-icon a.pt {
    background-position: -47px 0;
}
.socialmedia-icon a.pt:hover {
    background-position: -47px -38px;
}
.socialmedia-icon a.wa {
    background-position: -92px 0;
}
.socialmedia-icon a.wa:hover {
    background-position: -92px -38px;
}
.socialmedia-icon a.sd {
    background-position: -137px 0;
}
.socialmedia-icon a.sd:hover {
    background-position: -137px -38px;
}

.link a:hover {
    color: #ffda33 !important;
}
.search-box {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}
.select-drop::after {
    content: "";
    border: solid #424242;
    border-width: 0 3px 3px 0;
    padding: 4px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    right: 22px;
    top: 50%;
    margin-top: -8px;
    z-index: 0;
}
.datepicker-icon {
    background-image: url(../images/date-icon.png);
    background-repeat: no-repeat;
    background-position: right 15px bottom 8px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}

@media (min-width: 1366px) {
    .container {
        max-width: 1100px;
    }
}

.nav-item {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
}
.nav-item .dropdown-menu {
    padding: 0;
    border: none;
    border-radius: 0;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    text-transform: capitalize;
    font-family: "Raleway", sans-serif;
}

.dropdown-item:hover {
    background-color: #dfc45d;
}

.bannertop::before {
    background: url(../images/banner-bg.png) no-repeat;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 56%;
    z-index: 1;
    background-position: center right;
}
.home-banner > div {
    z-index: 5;
}

header.header-top::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
}
header.header-top .navbar {
    z-index: 5;
    position: relative;
}
/*header.header-top .logo-header {
	background: #20252f;
	padding: 8px 12px 10px !important;
	border-radius: 4px;
}*/
.sc_blogger_item_button a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog-col .sc_blogger_item_button .link_text {
    position: relative;
    margin-top: 1px;
    margin-right: 0;
    display: inline-block;
    vertical-align: middle;
    text-indent: -110px;
    visibility: hidden;
    white-space: nowrap;
    opacity: 0;
    -webkit-transition: visibility 0.4s ease, margin-right 0.4s ease-out,
        text-indent 0.5s ease-out, color 0.4s ease, opacity 0.4s ease;
    transition: visibility 0.4s ease, margin-right 0.4s ease-out,
        text-indent 0.5s ease-out, color 0.4s ease, opacity 0.4s ease;
    will-change: visibility, margin-right, text-indent, color, opacity;
}

.blog-col:hover .sc_blogger_item_button .link_text {
    opacity: 1;
    text-indent: 0;
    margin-right: 9px;
    visibility: visible;
    -webkit-transition: visibility 0.4s ease, margin-right 0.3s ease-out,
        text-indent 0.4s ease-out, opacity 0.4s ease;
    transition: visibility 0.4s ease, margin-right 0.3s ease-out,
        text-indent 0.4s ease-out, opacity 0.4s ease;
}
.success-stories {
    margin-top: -11rem;
}

.annablog {
    padding-bottom: 10rem !important;
}

.happy-customers_r {
    padding-right: 24rem;
    padding-top: 3.5rem;
    padding-bottom: 2rem;
}
.happy-customers::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10%;
    background-color: #fff;
}

.happy-customers-img {
    padding-bottom: 5rem;
}

.callnow .rounded-circle {
    padding: 10px !important;
}
.whychoose {
    padding-top: 10rem !important;
    margin-top: -5rem;
    padding-bottom: 10rem !important;
}
.whychoose-img {
    z-index: 1;
}
.about-pad {
    margin-top: -12rem;
}
.about-text-pad {
    margin-top: -6rem;
}

.contact-header {
    padding: 10px 20px;
    color: #1a2130 !important;
    display: inline-flex;
    align-items: center;
    animation: animationGradient 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    letter-spacing: 0.6px;
    background: linear-gradient(
        60deg,
        #dfc45d,
        #fff8a9,
        #dfc45d,
        #dfc45d,
        #fff8a9,
        #dfc45d,
        #ffeead,
        #fff
    );
    background-size: 300% 300%;
    transition: 0.4s linear;
}
@keyframes animationGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 50% 100%;
    }
}
.contact-header:hover {
    transform: scale(1.05);
}

.btn-buttons {
    position: relative;
    min-width: 140px;
}
.btn-buttons:before {
    display: inline-block;
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 100%;
    position: absolute;
    bottom: -4px;
    left: 0px;
    background: #117dff;
    animation: slide-x2 infinite 4s linear;
}

.btn-buttons::after {
    display: inline-block;
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 100%;
    position: absolute;
    top: -4px;
    right: 0px;
    background: #9600fd;
    animation: slide-x infinite 4s linear;
}

@-webkit-keyframes slide-x {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
    50% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    100% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
}

@keyframes slide-x {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
    50% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    100% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
}

@-webkit-keyframes slide-x2 {
    0% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
}

@keyframes slide-x2 {
    0% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
}

.callnow .rounded-circle {
    position: relative;
}
.callnow .rounded-circle span {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /*background-color: #FFF455;*/
    z-index: 1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    transition: border-color 0.3s linear;
    -webkit-transition: border-color 0.3s linear;
    -moz-transition: border-color 0.3s linear;
    -o-transition: border-color 0.3s linear;
    -ms-transition: border-color 0.3s linear;
}
.callnow .rounded-circle .circle-1 {
    animation: circle-fade-before 2s infinite ease-in-out;
    -webkit-animation: circle-fade-before 2s infinite ease-in-out;
}
.callnow .rounded-circle .circle-2 {
    animation: circle-fade-after 2s infinite ease-in-out;
    -webkit-animation: circle-fade-after 2s infinite ease-in-out;
}
.callnow .rounded-circle img {
    z-index: 2;
}
@keyframes circle-fade-before {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}
@keyframes circle-fade-after {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.bullet-icon {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bullet-icon li {
    position: relative;
    padding-left: 26px;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.bullet-icon li::before {
    content: "";
    display: block;
    background: url(../images/blut-icon.png);
    position: absolute;
    width: 16px;
    height: 18px;
    left: 0;
    top: 1px;
    background-size: 100%;
    background-repeat: no-repeat;
}

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 1000;
}

.whatsapp-btn img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-btn img:hover {
    transform: scale(1.1);
}

/* testimonial */

.testimonial-card * {
    padding: 0 !important;
    margin: 0 !important;
}

.testimonial-card {
    background-color: #3c454c;
    transition: background-color 0.5s ease;
    cursor: pointer;
}

.testimonial-card:hover {
    background-color: #ffc300;
}

.testimonial-card .testimonial-star {
    color: #ffc300 !important;
}

.testimonial-card:hover .testimonial-star {
    color: #3c454c !important;
}
