body,
html {
    /*height: 100%;*/
    font-family: "Rubik", sans-serif;
    overflow-x: hidden;
    font-size: 15px;
    background: #fff;
    line-height: 1.4;
    font-weight: 400 !important;
}

/*---------------Font Start---------------*/
.font-weight-bold,
.fw-bold {
    font-weight: 700 !important;
    font-family: "Rubik", sans-serif;
}
.font-weight-semibold,
.fw-semibold {
    font-weight: 600 !important;
    font-family: "Rubik", sans-serif;
}
.font-weight-medium,
.fw-medium {
    font-weight: 500 !important;
    font-family: "Rubik", sans-serif;
}
.font-weight-normal,
.fw-normal {
    font-weight: 400 !important;
    font-family: "Rubik", sans-serif;
}
.font-weight-light,
.fw-light {
    font-weight: 300 !important;
    font-family: "Rubik", 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.4;
}
.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: #d5d5d5 !important;
}
.text-dark {
    color: #202020 !important;
}
.text-muted-light {
    color: #d9d9d9 !important;
}
.text-success {
    color: #1d652a !important;
}
.text-danger {
    color: #fff455 !important;
}
/*---------------Text Color End---------------*/

/*---------------Button Start---------------*/
.btn.focus,
.btn:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.btn-warning {
    color: #fff;
    background-color: #1d652a;
    -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: #a7c957;
    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);
    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: #a7c957;
    border-color: #a7c957;
}

.btn-outline-danger {
    color: #fff455;
    border-color: #fff455;
}
.btn-check:active + .btn-outline-danger,
.btn-check:checked + .btn-outline-danger,
.btn-outline-danger.active,
.btn-outline-danger:hover,
.btn-outline-danger.dropdown-toggle.show,
.btn-outline-danger:active {
    color: #000;
    background-color: #fff455;
    border-color: #fff455;
}

/*.btn-light {-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); color: #202020; 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; background-color: #fff455; border-color: #fff455;}
.btn-light::before {content: ''; position: absolute; top: 0; left: 0; background: #1D652A; 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); 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,.btn-light:active:focus {background-color: #1d652a; border-color: #1d652a; color: #fff;}*/

.btn-dark {
    color: #14161a;
    background-color: #fff455;
    border-color: #fff455;
}
.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;
}
/*.btn-dark::before {content: ''; position: absolute; top: 0; left: 0; background: #3c3711; 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); 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: #fff;
    color: #1a1e21;
}

.btn-outline-light:hover,
.btn-check:focus + .btn-outline-light,
.btn-outline-light:focus,
.btn-outline-light:active:focus {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: #202020;
}

.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: #212529;
    border-color: #212529;
}
.btn-outline-dark:hover {
    background-color: #212529;
    border-color: #212529;
}

.btn-danger {
    color: #090b05;
    background-color: #fff455;
    border-color: #fff455;
}
.btn-danger:hover,
.btn-check:active + .btn-danger:focus,
.btn-check:checked + .btn-danger:focus,
.btn-danger.active:focus,
.btn-danger:active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    color: #090b05;
    background-color: #fff;
    border-color: #fff;
}

/*.btn-outline-dark:hover .bg-dark,
.btn-check:focus + .btn-outline-light .bg-dark,
.btn-outline-light:focus .bg-dark,
.btn-outline-light:active:focus .bg-dark,
.btn-outline-dark:active .bg-dark {background-color: #FFF455 !important;}*/

/*.btn-light.contact-header {background-color: #2baf36;	color: #fff;}
.btn-light.contact-header::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); bottom: 0px; right: -1px;}
.btn-light.contact-header:hover::before {opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0);}
.btn-light.contact-header:hover, .btn-check.contact-header:focus + .btn-light.contact-header, .btn-light.contact-header:focus,.btn-light.contact-header:active:focus {background-color: #fff; border-color: #fff; color: #333;}*/

/*---------------Button End---------------*/

/*---------------BG Background Start---------------*/
.bg-yellow {
    background-color: #fff455 !important;
}
.bg-yellow-light {
    background-color: #faffaf !important;
}
.bg-dark {
    background-color: #090b05 !important;
}
.bg-light {
    background-color: #f4f4f4 !important;
}
.bg-success {
    background-color: #1d652a !important;
}
.bg-success-light {
    background-color: #a7c957 !important;
}
.bg-gray {
    background-color: #424344 !important;
}
/*#F4F4F4*/
/*---------------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: 15rem;
    padding-bottom: 15rem;
}
.home-banner::before {
    position: absolute;
    background: rgba(0, 9, 2, 0.2);
    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: -12vw; 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: 16vw;	bottom: -15.5vw; z-index: 0; content: ""; display: block; position: absolute; left: 0; right: 0; background-size: 100%;	margin-left: 0rem; margin-right: -1rem;}*/
.navbar-light .navbar-nav .nav-link {
    color: rgb(15, 15, 15);
    padding-right: 1rem;
    padding-left: 1rem;
    letter-spacing: 1px;
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
}
/*.annablog {padding-top: 20.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: 30px;
}
.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 5px;
    background: #e3e3e3;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 0.2s ease;
    border-radius: 0px;
    border: 2px solid #e3e3e3;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #fff455;
    border-color: #fff455;
}

/*.happy-customers::before {
	background: url(../images/happy-customers-top.svg) center bottom no-repeat;
	height: 15.2vw;
	margin-top: -15.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: 21rem; padding-top: 0.2rem; }*/
/*.happy-customers-img > div {margin: -22rem -7rem 0px -7rem;}*/
/*.customers-btn {margin-bottom: -54px; position: relative; z-index: 2; bottom: -40px;}*/
/*.happy-customers-img > div {
	margin-right: -5rem;
}*/
/*.clients-text {letter-spacing: 1px;}*/
.whychoose {
    padding: 5rem 12rem;
}
.whychoose::before {
    background: rgba(0, 0, 0, 0.8);
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.whychoose > div {
    z-index: 3;
}
/*.whychoose-bg::after {
	position: absolute;
	content: "";
	display: block;
	top: 20px;
	left: 20px;
	right: -20px;
	bottom: -20px;
	border: 1px solid #fff;
}
.whychoose-bg{background: rgba(255, 255, 255, 1); 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: 6.5rem 0 0rem;}*/
.accordionhome .accordion-item {
    background-color: transparent;
    margin-bottom: 4px;
    border: none !important;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button::after {
    background: #14161a;
    height: 2px;
    width: 14px;
    left: auto;
    position: absolute;
    right: 19px;
}
.accordion-button::before {
    content: "";
    width: 2px;
    height: 14px;
    content: "";
    margin-left: auto;
    position: absolute;
    right: 25px;
    background: #14161a;
    display: block;
}
.accordion-button:not(.collapsed) {
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
    background: #14161a;
    height: 2px;
    width: 14px;
}
.accordion-button:not(.collapsed)::before {
    display: none;
}
.accordionhome .accordion-item .accordion-button {
    /* border-radius: 40px !important; */
    background-color: #f4f4f4;
    padding-right: 36px;
    color: #202020 !important;
    padding-top: 12px;
    padding-bottom: 12px;
    border: 1px solid rgba(223, 223, 223, 0.8) !important;
}
.accordionhome .accordion-item .accordion-collapse {
    background: #fff;
}
.accordionhome .accordion-button:not(.collapsed) {
    background-color: #fff455 !important;
    border-color: #f0e43c !important;
    color: #14161a !important;
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.accordion-button:not(.collapsed) {
    color: #fff !important;
}
.footer-logo img {
    max-width: 240px;
}

header.fixed-tops {
    background: rgba(0, 0, 0, 0.8);
}
header.header-top {
    background: #fff;
    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 {
    color: #fff !important;
    background-color: #14161a;
}

/*.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 #FFF; color: #FFF;}*/
.navbar-light .navbar-nav li.nav-item:hover .nav-link,
.navbar-light .navbar-nav li.nav-item .nav-link.active {
    /* border: 1px solid #FFF; */
    color: #fff;
    background-color: #14161a;
}
.banner-btn {
    z-index: 3;
}
.contact-header {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
    letter-spacing: 1px;
}

.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%;
    }
}

.blogbox img {
    -webkit-transition: opacity 0.55s, -webkit-transform 0.55s;
    transition: opacity 0.55s, transform 0.55s;
}

.blogbox:hover img {
    opacity: 1;
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
}

/*.blog-col:hover h5 a {color: #fff455 !important;}*/
/*.callnow:hover {background-color: #1d652a !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: 14rem;
    padding-bottom: 10rem;
}
/*.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.8) 100%
    );
}
.bloglist-box:hover {
    background-color: #fff455 !important;
}
.bloglist-box:hover .comments {
    color: #14161a !important;
}
/*.blogdetails-big {margin-top: -248px;}*/
.call-banner a {
    min-width: 298px;
}
.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: #fff;
    height: 2px;
    width: 50px;
    content: "";
    display: block;
    margin: 10px auto 14px;
}
.servicesbox_b {
    bottom: 0;
    background: #14161a;
}
.servicesbox_b::after {
    width: 0px;
    height: 0px;
    content: "";
    position: absolute;
    left: 25px;
    bottom: -16px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #14161a;
}

.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: #ecbc3b !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:hover .dropdown-menu {
    display: block;
    background-color: #14161a;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    border-radius: 0 !important;
}
.dropdown-item:focus,
.dropdown-item:hover {
    color: #fff;
    background-color: #14161a;
}
.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    clear: both;
    font-weight: 400;
    color: #fff;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid rgb(60, 60, 60);
}

.dropdown-item:hover {
    background-color: #fff455;
    color: #14161a;
}

/*.blog_row .blogbox {
	max-width: 160px;
}*/
footer.footer-bg .footercoppy {
    /*margin-top: 4rem;*/
    padding-bottom: 5rem;
    padding-top: 5rem;
}

/*.callnow-white .fw-medium {
	letter-spacing: 3px;
}*/
/*.btn-outline-light:hover .bg-white {
	background-color: #A7C957 !important;
}*/
.btn-outline-light:hover .bg-white,
.btn-check:focus + .btn-outline-light .bg-white,
.btn-outline-light:focus .bg-white,
.btn-outline-light:active:focus .bg-white,
.btn-outline-light:active .bg-white {
    background-color: #ddd !important;
}

.header-top .logos {
    position: relative;
    background: #14161a;
    padding-top: 14px;
    padding-bottom: 14px;
    height: 72px;
    line-height: 34px;
}
.header-top .logos::before {
    background: #14161a;
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: 10000px;
    bottom: 0;
}
.header-top .logos::after {
    width: 0;
    height: 0;
    border-top: 72px solid #14161a;
    border-top-color: #14161a;
    border-right: 65px solid transparent !important;
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
}

.banner_dcs {
    border-left: 5px solid #fff455;
    padding: 5rem 0rem 5rem 5rem;
}
.banner_dcs::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 45px;
    width: 150px;
    border-top: 5px solid #fff455;
    border-right: 5px solid #fff455;
}
.banner_dcs::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 45px;
    width: 150px;
    border-bottom: 5px solid #fff455;
    border-right: 5px solid #fff455;
}

.customer-support {
    margin-top: -80px;
}
.callnow-white .call-nowbox {
    border-right: 1px solid #333;
}
.blogbox::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.blogbox .textbox-blog {
    bottom: 0;
    z-index: 3;
}
.blogbox .textbox-blog .date-blog {
    letter-spacing: 3px;
}

.customer-support .bg-yellow {
    border-top-left-radius: 80px !important;
    padding: 4rem 0rem 4rem 4rem !important;
    z-index: 2;
}
.customer-support::after {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    background: #fff455;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
}

.playerreview {
    padding-left: 28.5rem;
}

.footercoppys {
    background-color: #fff455 !important;
}

.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;
}
